You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
491 lines
53 KiB
CSS
491 lines
53 KiB
CSS
7 months ago
|
div.wpforms-container .wpforms-form .choices {
|
||
|
position: relative;
|
||
|
margin-bottom: 24px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices ::-webkit-input-placeholder {
|
||
|
color: #999999;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices ::-moz-placeholder {
|
||
|
color: #999999;
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices ::placeholder {
|
||
|
color: #999999;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices:last-child {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices.is-disabled .choices__inner,
|
||
|
div.wpforms-container .wpforms-form .choices.is-disabled .choices__input {
|
||
|
background-color: #bbbbbb;
|
||
|
cursor: not-allowed;
|
||
|
user-select: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices [hidden] {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices * {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices.is-open .choices__inner {
|
||
|
border-radius: 4px 4px 0 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices.is-open.is-flipped .choices__inner {
|
||
|
border-radius: 0 0 4px 4px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] input.choices__input {
|
||
|
display: block;
|
||
|
width: calc(100% - 20px) !important;
|
||
|
margin: 10px !important;
|
||
|
padding: 7px 12px !important;
|
||
|
box-sizing: border-box !important;
|
||
|
border: 1px solid #8c8f94 !important;
|
||
|
border-radius: 4px !important;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] input.choices__input:focus {
|
||
|
border: 1px solid #056aab !important;
|
||
|
box-shadow: 0 0 0 1px #056aab !important;
|
||
|
outline: none !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button {
|
||
|
background-image: url("../images/cross-inverse.svg");
|
||
|
padding: 0;
|
||
|
background-size: 8px;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
right: 0;
|
||
|
margin-top: -10px;
|
||
|
margin-right: 25px;
|
||
|
height: 20px;
|
||
|
width: 20px;
|
||
|
border-radius: 10em;
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button:hover, div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button:focus {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button:focus {
|
||
|
box-shadow: 0 0 0 2px #036aab;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__item[data-value=''] .choices__button {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"]:after {
|
||
|
content: "";
|
||
|
height: 0;
|
||
|
width: 0;
|
||
|
border-style: solid;
|
||
|
border-color: currentColor transparent transparent transparent;
|
||
|
border-width: 5px;
|
||
|
position: absolute;
|
||
|
right: 11.5px;
|
||
|
top: 50%;
|
||
|
margin-top: -2.5px;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"].is-open:after {
|
||
|
border-color: transparent transparent currentColor transparent;
|
||
|
margin-top: -7.5px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"][dir="rtl"]:after {
|
||
|
left: 11.5px;
|
||
|
right: auto;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-one"][dir="rtl"] .choices__button {
|
||
|
right: auto;
|
||
|
left: 0;
|
||
|
margin-left: 25px;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__inner {
|
||
|
padding-right: 24px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__inner .choices__input {
|
||
|
padding: 0 4px !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"]:after {
|
||
|
content: "";
|
||
|
height: 0;
|
||
|
width: 0;
|
||
|
border-style: solid;
|
||
|
border-color: currentColor transparent transparent transparent;
|
||
|
border-width: 5px;
|
||
|
position: absolute;
|
||
|
right: 11.5px;
|
||
|
top: 50%;
|
||
|
margin-top: -2.5px;
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"].is-open:after {
|
||
|
border-color: transparent transparent currentColor transparent;
|
||
|
margin-top: -7.5px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__inner,
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__inner {
|
||
|
cursor: text;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__button,
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__button {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
vertical-align: baseline;
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 0;
|
||
|
margin-left: 5px;
|
||
|
padding: 0;
|
||
|
background-color: transparent;
|
||
|
background-image: url("../images/cross.svg");
|
||
|
background-size: 12px;
|
||
|
background-position: center center;
|
||
|
background-repeat: no-repeat;
|
||
|
width: 12px;
|
||
|
height: 12px;
|
||
|
line-height: 1;
|
||
|
opacity: .75;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__button:hover, div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__button:focus,
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__button:hover,
|
||
|
div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__button:focus {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__inner {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
background-color: #ffffff;
|
||
|
padding: 6px 6px 0;
|
||
|
border: 1px solid #8c8f94;
|
||
|
overflow: hidden;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list {
|
||
|
margin: 0;
|
||
|
padding-left: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--single {
|
||
|
display: inline-block;
|
||
|
vertical-align: baseline;
|
||
|
width: 100%;
|
||
|
padding: 0 16px 4px 4px;
|
||
|
font-size: 0.875em;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--single .choices__item {
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
padding-right: 20px;
|
||
|
white-space: nowrap;
|
||
|
color: #2c3338;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--single .choices__item[data-value=''] {
|
||
|
padding-right: 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--multiple {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--multiple .choices__item {
|
||
|
display: inline-grid;
|
||
|
align-items: center;
|
||
|
border-radius: 2px;
|
||
|
padding: 4px 7px;
|
||
|
font-size: .75em;
|
||
|
line-height: 1;
|
||
|
font-weight: 400;
|
||
|
margin: 0 6px 4px 0;
|
||
|
background-color: #036aab;
|
||
|
border: 1px solid #036aab;
|
||
|
color: #ffffff;
|
||
|
word-break: break-word;
|
||
|
grid-template-columns: 1fr calc( 12px + 5px);
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--multiple .choices__item.is-highlighted {
|
||
|
background-color: #036aab;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .is-disabled .choices__list--multiple .choices__item {
|
||
|
background-color: #bbbbbb;
|
||
|
border: 1px solid #bbbbbb;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown {
|
||
|
display: none;
|
||
|
z-index: 2;
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
background-color: #ffffff;
|
||
|
border: 1px solid #8c8f94;
|
||
|
top: 100%;
|
||
|
margin-top: -1px;
|
||
|
border-bottom-left-radius: 4px;
|
||
|
border-bottom-right-radius: 4px;
|
||
|
overflow: hidden;
|
||
|
overflow-wrap: break-word;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown.is-active {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__list {
|
||
|
position: relative;
|
||
|
max-height: 300px;
|
||
|
overflow: auto;
|
||
|
-webkit-overflow-scrolling: touch;
|
||
|
will-change: scroll-position;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item {
|
||
|
position: relative;
|
||
|
vertical-align: top;
|
||
|
padding: 10px;
|
||
|
font-size: .875em;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 640px) {
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable:after {
|
||
|
content: attr(data-select-text);
|
||
|
font-size: .75em;
|
||
|
line-height: 1;
|
||
|
opacity: 0;
|
||
|
position: absolute;
|
||
|
right: 10px;
|
||
|
top: 50%;
|
||
|
transform: translateY(-50%);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable.is-highlighted {
|
||
|
background-color: #f6f6f6;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown .choices__placeholder {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .is-flipped .choices__list--dropdown {
|
||
|
top: auto;
|
||
|
bottom: 100%;
|
||
|
margin-top: 0;
|
||
|
margin-bottom: -1px;
|
||
|
border-radius: 4px 4px 0 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__item {
|
||
|
cursor: default;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__item--selectable {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__item--disabled {
|
||
|
cursor: not-allowed;
|
||
|
user-select: none;
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__heading {
|
||
|
font-weight: 600;
|
||
|
font-size: .75em;
|
||
|
text-transform: uppercase;
|
||
|
padding: 10px;
|
||
|
border-top: 1px solid #b4b6b9;
|
||
|
border-bottom: 1px solid #b4b6b9;
|
||
|
color: #a6a6a6;
|
||
|
}
|
||
|
|
||
|
.choices__group[data-value="hidden"] > div.wpforms-container .wpforms-form .choices__heading {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__button {
|
||
|
text-indent: -9999px;
|
||
|
-webkit-appearance: none;
|
||
|
appearance: none;
|
||
|
border: 0;
|
||
|
background-color: transparent;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__button:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__input {
|
||
|
display: inline-block;
|
||
|
background-color: transparent;
|
||
|
margin: 0 0 4px 0 !important;
|
||
|
border: 0 !important;
|
||
|
border-radius: 0 !important;
|
||
|
max-width: 100%;
|
||
|
min-height: 0 !important;
|
||
|
width: auto !important;
|
||
|
padding: 2px 4px !important;
|
||
|
height: auto !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__input--hidden {
|
||
|
clip: rect(1px, 1px, 1px, 1px) !important;
|
||
|
clip-path: inset(50%) !important;
|
||
|
height: 1px !important;
|
||
|
margin: -1px !important;
|
||
|
overflow: hidden !important;
|
||
|
padding: 0 !important;
|
||
|
position: absolute !important;
|
||
|
width: 1px !important;
|
||
|
min-width: auto !important;
|
||
|
word-wrap: normal !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices .choices__inner input.choices__input:focus {
|
||
|
outline: none !important;
|
||
|
box-shadow: none !important;
|
||
|
border: none !important;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__placeholder {
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form #wpforms-admin-form-embed-wizard .choices.is-open.is-flipped .choices__inner {
|
||
|
border-radius: 4px 4px 0 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form #wpforms-admin-form-embed-wizard .is-flipped .choices__list--dropdown {
|
||
|
border-radius: inherit;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form #wpforms-admin-form-embed-wizard .choices[data-type*="select-one"]:after {
|
||
|
border: none;
|
||
|
background: #ffffff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23777%22%2F%3E%3C%2Fsvg%3E) no-repeat center;
|
||
|
background-size: 16px 16px;
|
||
|
cursor: pointer;
|
||
|
width: 16px;
|
||
|
height: 16px;
|
||
|
top: 13px;
|
||
|
right: 8px;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form #wpforms-admin-form-embed-wizard .choices[data-type*="select-one"].is-flipped:after {
|
||
|
transform: rotate(180deg);
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices__list--dropdown {
|
||
|
min-width: 250px;
|
||
|
}
|
||
|
|
||
|
div.wpforms-container .wpforms-form .choices.is-disabled[data-type*="select-multiple"] .choices__button, div.wpforms-container .wpforms-form .choices.is-disabled[data-type*="text"] .choices__button {
|
||
|
border-left: 1px solid rgba(0, 0, 0, 0.25);
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__inner {
|
||
|
padding-right: 4px;
|
||
|
padding-left: 24px;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"]:after {
|
||
|
right: auto;
|
||
|
left: 11.5px;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--single {
|
||
|
padding-right: 4px;
|
||
|
padding-left: 16px;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--multiple .choices__item {
|
||
|
margin-right: 0;
|
||
|
margin-left: 3.75px;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--multiple .choices__item[data-deletable] {
|
||
|
padding-right: 10px;
|
||
|
padding-left: 5px;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item {
|
||
|
text-align: right;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__input {
|
||
|
padding-right: 2px !important;
|
||
|
padding-left: 0 !important;
|
||
|
}
|
||
|
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices[data-type*="select-multiple"] .choices__button, body.rtl div.wpforms-container .wpforms-form .choices[data-type*="text"] .choices__button {
|
||
|
margin-right: 2px;
|
||
|
margin-left: -1px;
|
||
|
border-right: 1px solid #024b79;
|
||
|
border-left: none;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 640px) {
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable {
|
||
|
text-align: right;
|
||
|
padding-left: 100px;
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
body.rtl div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable:after {
|
||
|
right: auto;
|
||
|
left: 10px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNzZXRzL2Nzcy9jaG9pY2VzLmNzcyIsInNvdXJjZXMiOlsiYXNzZXRzL3Njc3MvY2hvaWNlcy5zY3NzIiwiYXNzZXRzL3Njc3MvX3ZhcmlhYmxlcy5zY3NzIiwiYXNzZXRzL3Njc3MvdmVuZG9yL3BhcnRpYWxzL2Nob2ljZXMvX3ZhcmlhYmxlcy5zY3NzIiwiYXNzZXRzL3Njc3MvdmVuZG9yL3BhcnRpYWxzL2Nob2ljZXMvX3N0eWxlcy5zY3NzIiwiYXNzZXRzL3Njc3MvdmVuZG9yL3BhcnRpYWxzL2Nob2ljZXMvX3J0bC5zY3NzIl0sInNvdXJjZXNDb250ZW50IjpbIi8vIENob2ljZXMuanMgc3R5bGVzIGZvciBwdWJsaWMtZmFjaW5nIGFyZWEuXG5cbiRjaG9pY2VzLXJ0bC1zZWxlY3RvcjogJyYnO1xuXG5AaW1wb3J0ICd2YXJpYWJsZXMnO1xuQGltcG9ydCAndmVuZG9yL3BhcnRpYWxzL2Nob2ljZXMvdmFyaWFibGVzJztcblxuZGl2LndwZm9ybXMtY29udGFpbmVyIC53cGZvcm1zLWZvcm0ge1xuXHRAaW1wb3J0ICd2ZW5kb3IvcGFydGlhbHMvY2hvaWNlcy9zdHlsZXMnO1xuXG5cdC8vIElmIHRoZSBmaWVsZCBzaXplIGlzIHNldCB0byBzbWFsbCBmb3IgbW9kZXJuIGRyb3Bkb3duIGZpZWxkLCB0aGUgZHJvcGRvd24gbGlzdCBvZiBjaG9pY2VzIHdpZHRoXG5cdC8vIGlzIHRvbyBzbWFsbCB0byBhY2NvbW1vZGF0ZSB0aGUgYWN0dWFsIHZhbHVlIGFuZCBcIlByZXNzIHRvIHNlbGVjdFwiIGhpbnQuIFNldHRpbmcgYG1pbi13aWR0aGBcblx0Ly8gdG8gYSByZWFzb25hYmxlIHNpemUgZml4ZXMgdGhpcy5cblx0LiN7JGNob2ljZXMtc2VsZWN0b3J9X19saXN0LS1kcm9wZG93biB7XG5cdFx0bWluLXdpZHRoOiAyNTBweDtcblx0fVxuXG5cdC8vIEZpeCBkZWxldGUgY2hvaWNlIGJ1dHRvbiAoY3Jvc3MpIGZvciBkaXNhYmxlZCBzdGF0ZS5cblx0LiN7JGNob2ljZXMtc2VsZWN0b3J9LmlzLWRpc2FibGVkIHtcblx0XHQmW2RhdGEtdHlwZSo9XCJzZWxlY3QtbXVsdGlwbGVcIl0sXG5cdFx0JltkYXRhLXR5cGUqPVwidGV4dFwiXSB7XG5cdFx0XHQuY2hvaWNlc19fYnV0dG9uIHtcblx0XHRcdFx0Ym9yZGVyLWxlZnQ6IDFweCBzb2xpZCByZ2JhKCAwLCAwLCAwLCAwLjI1ICk7XG5cdFx0XHRcdGN1cnNvcjogbm90LWFsbG93ZWQ7XG5cdFx0XHR9XG5cdFx0fVxuXHR9XG59XG5cbmJvZHkucnRsIGRpdi53cGZvcm1zLWNvbnRhaW5lciAud3Bmb3Jtcy1mb3JtIHtcbiAgQGltcG9ydCAndmVuZG9yL3BhcnRpYWxzL2Nob2ljZXMvcnRsJztcbn1cbiIsIi8vIFRPRE86IGdldCByaWQgb2YgdGhlc2UgbGVnYWN5IHZhcnMgYW5kIHRoaXMgZmlsZS4gQWxsIHZhcmlhYmxlcyBzaG91bGQgYmUgZGVmaW5lZCBpbiAuL2FkbWluL192YXJpYWJsZXMuc2Nzcy5cblxuLy8gTGVnYWN5IHZhcmlhYmxlcy5cbiRvcmFuZ2U6ICNlMjc3MzA7XG4kYWx0b3JhbmdlOiAjZGY3NzM5O1xuJGRhcmtvcmFuZ2U6ICNiODVhMWI7XG4kZ3JlZW46ICMyYTliMzk7XG4kYmx1ZTogIzBlNmNhZDtcbiRsaWdodEJsdWU6ICNlYmYzZmI7XG5cbiR0cmFuc2l0aW9uX2R1cmF0aW9uOiAwLjNzO1xuJGhvdmVyX3RyYW5zaXRpb25fZHVyYXRpb246IDAuMDVzO1xuXG4vLyBGb250IGZhbWlseS5cbiRmb250X2dlbmVyYWw6IC1hcHBsZS1zeXN0ZW0sIEJsaW5rTWFjU3lzdGVtRm9udCwgXCJTZWdvZSBVSVwiLCBSb2JvdG8sIE94eWdlbi1TYW5zLCBVYnVudHUsIENhbnRhcmVsbCwgXCJIZWx2ZXRpY2EgTmV1ZVwiLCBzYW5zLXNlcmlmO1xuXG4vLyBDb2xvcnMgYnkgbmFtZTpcbiRjb2xvcl93aGl0ZTogICAgICAgICAgICAgICAgICAgICAjZmZmZmZmO1xuXG4kY29sb3JfZGFya19yZWQ6ICAgICAgICAgICAgICAgICAgI2IzMmQyZTtcbiRjb2xvcl9yZWQ6ICAgICAgICAgICAgICAgICAgICAgICAjZDYzNjM4O1xuXG4kY29sb3JfZGFya19ncmVlbjogICAgICAgICAgICAgICAgIzAwOGEyMDtcbiRjb2xvcl9ncmVlbjogICAgICAgICAgICAgICAgICAgICAjMDBhMzJhO1xuXG4kY29sb3JfYmx1ZTogICAgICAgICAgICAgICAgICAgICAgIzAzNmFhYjtcbiRjb2xvcl9icmlnaHRfYmx1ZTogICAgICAgICAgICAgICAjMDM5OWVkO1xuXG4kY29sb3JfZGFya19vcmFuZ2U6ICAgICAgICAgICAgICAgI2NkNjYyMjtcbiRjb2xvcl9vcmFuZ2U6ICAgICAgICAgICAgICAgICAgICAjZTI3NzMwO1xuXG4kY29sb3JfZGFya195ZWxsb3c6ICAgICAgICAgICAgICAgI2ZmYWEwMDtcbiRjb2xvcl95ZWxsb3c6ICAgICAgICAgICAgICAgICAgICAjZmZiOTAwO1xuJGNvbG9yX2xpZ2h0ZXN0X3llbGxvdzogICAgICAgICAgICNmY2Y5ZTg7XG5cbi8vIENvbG9ycyBieSB1c2FnZTpcbiRjb2xvcl9saWdodF9iYWNrZ3JvdW5kOiAgICAgICAgICAjZjhmOGY4O1xuJGNvbG9yX2xpZ2h0X2JhY2tncm91bmRfaG92ZXI6ICAgICNlZWVlZWU7XG5cbiRjb2xvcl9kaXZpZGVyOiAgICAgICAgICAgICAgICAgICAjZGRkZGRkO1xuJGNvbG9yX2JvcmRlcjogICAgICAgICAgICAgICAgICAgICNjY2NjY2M7XG4kY29sb3JfaGludDogICAgICAgICAgICAgICAgICAgICAgI2JiYmJiYjtcbiRjb2xvcl9wcmltYXJ5X3RleHQ6ICAgICAgICAgICAgICAjNDQ0NDQ0O1xuJGNvbG9yX3NlY29uZGFyeV90ZXh0OiAgICAgICAgICAgICM3Nzc3Nzc7XG5cbiRjb2xvcl9jbG9zZTogICAgICAgICAgICAgICAgICAgICAjYmJiYmJiO1xuJGNvbG9yX2Nsb3NlX2hvdmVyOiAgICAgICAgICAgICAgICM3Nzc3Nzc7XG5cbi8vIEZvbnQgc2l6ZXMuXG4kZm9udF9zaXplX3NzOiAgICAgICAxM3B4O1xuJGZvbnRfc2l6ZV9zOiAgICAgICAgMTRweDtcbiRmb250X3NpemVfbTogICAgICAgIDE2cHg7XG4kZm9udF9zaXplX2w6ICAgICAgICAxOHB4O1xuJGZvbnRfc2l6ZV9sbDogICAgICAgMjBweDtcbiRmb250X3NpemVfeGw6ICAgICAgIDI0cHg7XG5cbi8vIFNwYWNpbmcuXG4kc3BhY2luZ194czogICAgICAgICAgNXB4O1xuJHNwYWNpbmdfc3M6ICAgICAgICAgIDhweDtcbiRzcGFjaW5nX3M6ICAgICAgICAgICAxMHB4O1xuJHNwYWNpbmdfbXM6ICAgICAgICAgIDE1cHg7XG4kc3BhY2lu
|