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.
947 lines
106 KiB
CSS
947 lines
106 KiB
CSS
7 months ago
|
.wpforms-toggle-control {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
margin: 0 1px;
|
||
|
line-height: 1;
|
||
|
color: #50575e;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox] {
|
||
|
position: absolute;
|
||
|
overflow: hidden;
|
||
|
height: 0;
|
||
|
width: 0;
|
||
|
border: none !important;
|
||
|
box-shadow: none !important;
|
||
|
margin: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:hover, .wpforms-toggle-control input[type=checkbox]:focus {
|
||
|
border: none !important;
|
||
|
box-shadow: none !important;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:hover + label.wpforms-toggle-control-icon {
|
||
|
background-color: #646970;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:focus + label.wpforms-toggle-control-icon {
|
||
|
background-color: #646970;
|
||
|
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #8c8f94;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:checked + label.wpforms-toggle-control-icon {
|
||
|
background-color: #056aab;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:checked + label.wpforms-toggle-control-icon:after {
|
||
|
left: calc( 100% - 2px);
|
||
|
transform: translateX(-100%);
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:checked:hover + label.wpforms-toggle-control-icon {
|
||
|
background-color: #04558a;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:checked:focus + label.wpforms-toggle-control-icon {
|
||
|
box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #04558a;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:disabled + label.wpforms-toggle-control-icon {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control input[type=checkbox]:disabled:hover + label.wpforms-toggle-control-icon, .wpforms-toggle-control input[type=checkbox]:disabled:focus + label.wpforms-toggle-control-icon {
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control span,
|
||
|
.wpforms-toggle-control label {
|
||
|
display: inline-block;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control .wpforms-toggle-control-label {
|
||
|
margin: 0 0 0 6px;
|
||
|
max-width: calc( 100% - 65px);
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control .wpforms-toggle-control-status {
|
||
|
color: #50575e;
|
||
|
font-size: 12px;
|
||
|
line-height: 17px;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control .wpforms-toggle-control-icon {
|
||
|
background-color: #8c8f94;
|
||
|
border-radius: 8.5px;
|
||
|
cursor: pointer;
|
||
|
display: inline-block;
|
||
|
height: 17px;
|
||
|
position: relative;
|
||
|
text-indent: -9999px;
|
||
|
width: 27px;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control .wpforms-toggle-control-icon:after {
|
||
|
background: #ffffff;
|
||
|
border-radius: 50%;
|
||
|
content: "";
|
||
|
height: 13px;
|
||
|
left: 2px;
|
||
|
position: absolute;
|
||
|
top: 2px;
|
||
|
width: 13px;
|
||
|
transition: all 0.25s ease-out;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control:hover input:checked + label.wpforms-toggle-control-icon {
|
||
|
background-color: #215d8f;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control:hover .wpforms-toggle-control-icon {
|
||
|
background-color: #8c8f94;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control.wpforms-important .wpforms-toggle-control-icon {
|
||
|
background-color: #d63638;
|
||
|
}
|
||
|
|
||
|
.wpforms-admin-settings .wpforms-setting-row .wpforms-toggle-desc {
|
||
|
margin: 8px 0 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm *,
|
||
|
body div.jconfirm *::before,
|
||
|
body div.jconfirm *::after {
|
||
|
-webkit-box-sizing: border-box;
|
||
|
-moz-box-sizing: border-box;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(2, 1fr);
|
||
|
justify-items: center;
|
||
|
animation: none;
|
||
|
background: #ffffff;
|
||
|
border-radius: 6px;
|
||
|
border-top-style: solid;
|
||
|
border-top-width: 4px;
|
||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
|
||
|
padding-top: 34px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c,
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane,
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
|
||
|
grid-column: 1 / -1;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default {
|
||
|
border-top-width: 0;
|
||
|
padding-top: 25px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default .jconfirm-title-c .jconfirm-icon-c {
|
||
|
font-size: 44px;
|
||
|
margin-bottom: -6px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm {
|
||
|
background-color: #e27730;
|
||
|
border-color: #e27730;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-default button.btn-confirm:hover {
|
||
|
background-color: #cd6622;
|
||
|
border-color: #cd6622;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red {
|
||
|
border-top-color: #d63638 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
|
||
|
color: #d63638 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm {
|
||
|
background-color: #d63638;
|
||
|
border-color: #d63638;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-red button.btn-confirm:hover {
|
||
|
background-color: #b32d2e;
|
||
|
border-color: #b32d2e;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange {
|
||
|
border-top-color: #e27730 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
|
||
|
color: #e27730 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm {
|
||
|
background-color: #e27730;
|
||
|
border-color: #e27730;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange button.btn-confirm:hover {
|
||
|
background-color: #cd6622;
|
||
|
border-color: #cd6622;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow {
|
||
|
border-top-color: #ffb900 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow .jconfirm-title-c .jconfirm-icon-c {
|
||
|
color: #ffb900 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm {
|
||
|
background-color: #ffb900;
|
||
|
border-color: #ffb900;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-yellow button.btn-confirm:hover {
|
||
|
background-color: #ffaa00;
|
||
|
border-color: #ffaa00;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue {
|
||
|
border-top-color: #0399ed !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
|
||
|
color: #0399ed !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm {
|
||
|
background-color: #0399ed;
|
||
|
border-color: #0399ed;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-blue button.btn-confirm:hover {
|
||
|
background-color: #036aab;
|
||
|
border-color: #036aab;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green {
|
||
|
border-top-color: #00a32a !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
|
||
|
color: #00a32a !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm {
|
||
|
background-color: #00a32a;
|
||
|
border-color: #00a32a;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-green button.btn-confirm:hover {
|
||
|
background-color: #008a20;
|
||
|
border-color: #008a20;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon {
|
||
|
color: transparent;
|
||
|
font-family: FontAwesome;
|
||
|
height: 14px;
|
||
|
opacity: 1;
|
||
|
right: 10px;
|
||
|
top: 10px;
|
||
|
width: 14px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:after {
|
||
|
color: #bbbbbb;
|
||
|
content: "\f00d";
|
||
|
font-size: 16px;
|
||
|
left: 0;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-closeIcon:hover:after {
|
||
|
color: #777777 !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c {
|
||
|
margin: 0 0 20px 0;
|
||
|
padding: 0;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
|
||
|
font-size: 47px;
|
||
|
margin: 0;
|
||
|
-ms-transform: none !important;
|
||
|
transform: none !important;
|
||
|
-webkit-transition: none !important;
|
||
|
transition: none !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-icon-c + .jconfirm-title {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-title-c .jconfirm-title {
|
||
|
color: #444444;
|
||
|
display: block;
|
||
|
line-height: 30px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane {
|
||
|
display: block;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content {
|
||
|
color: #444444;
|
||
|
font-size: 16px;
|
||
|
line-height: 24px;
|
||
|
margin-bottom: 0;
|
||
|
overflow: inherit;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content.lite-upgrade p {
|
||
|
color: #777777;
|
||
|
font-size: 18px;
|
||
|
padding: 0 20px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p {
|
||
|
font-size: inherit;
|
||
|
line-height: inherit;
|
||
|
margin: 0 0 16px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p:last-of-type {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.large {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content p.small {
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=text],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=number],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=email],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=url],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=password],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=search],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content input[type=tel],
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content textarea,
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane .jconfirm-content select {
|
||
|
margin: 10px 2px;
|
||
|
width: calc(100% - 4px);
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .already-purchased {
|
||
|
display: block;
|
||
|
grid-row: 5;
|
||
|
grid-column: 1 / -1;
|
||
|
color: #bbbbbb;
|
||
|
font-size: 14px;
|
||
|
margin-top: 15px;
|
||
|
text-decoration: underline;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .already-purchased:hover {
|
||
|
color: #777777;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .discount-note {
|
||
|
grid-row: 4;
|
||
|
grid-column: 1 / -1;
|
||
|
margin: 25px 0 0 0;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .discount-note p {
|
||
|
background-color: #fcf9e8;
|
||
|
color: #777777;
|
||
|
font-size: 16px;
|
||
|
margin: 0 -30px;
|
||
|
padding: 22px 52px 12px 52px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .discount-note p:after {
|
||
|
top: -16px;
|
||
|
background-color: #ffffff;
|
||
|
border-radius: 50%;
|
||
|
color: #00a32a;
|
||
|
content: "\f058";
|
||
|
display: inline-block;
|
||
|
font: normal normal normal 14px FontAwesome;
|
||
|
font-size: 26px;
|
||
|
margin-right: -18px;
|
||
|
padding: 5px 6px;
|
||
|
position: absolute;
|
||
|
right: 50%;
|
||
|
text-rendering: auto;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .discount-note span {
|
||
|
color: #00a32a;
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .discount-note a {
|
||
|
color: #777777;
|
||
|
display: block;
|
||
|
margin-top: 12px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .feature-video {
|
||
|
margin: 30px 0 0 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .pro-feature-video {
|
||
|
margin: 15px 0 10px 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box input[type=text]:not(.choices__input) {
|
||
|
display: block;
|
||
|
width: 99%;
|
||
|
border: 1px solid #d6d6d6;
|
||
|
padding: 10px !important;
|
||
|
box-shadow: none;
|
||
|
margin: 10px 1px 1px 1px !important;
|
||
|
line-height: 1 !important;
|
||
|
outline: 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box input[type=text]:not(.choices__input):focus {
|
||
|
border-color: #007cba;
|
||
|
box-shadow: 0 0 0 1px #007cba;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box #wpforms-edu-modal-license-key {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
|
||
|
margin-top: -10px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button {
|
||
|
min-width: 83px;
|
||
|
background: #f8f8f8;
|
||
|
border: 1px solid #cccccc;
|
||
|
border-radius: 4px;
|
||
|
color: #777777;
|
||
|
font-size: 16px;
|
||
|
font-weight: 600;
|
||
|
line-height: 20px;
|
||
|
outline: none;
|
||
|
padding: 11px 17px;
|
||
|
text-transform: none;
|
||
|
margin: 10px;
|
||
|
transition-property: all;
|
||
|
transition-duration: 0.15s;
|
||
|
transition-timing-function: ease-out;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button:hover {
|
||
|
background: #eeeeee;
|
||
|
border-color: #cccccc;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button[disabled] {
|
||
|
cursor: no-drop;
|
||
|
pointer-events: none;
|
||
|
opacity: .25;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-confirm {
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.hidden + button {
|
||
|
margin-left: 0;
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-block {
|
||
|
display: block;
|
||
|
margin: 0 0 10px 0 !important;
|
||
|
text-align: center;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-normal-case {
|
||
|
text-transform: none !important;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button i {
|
||
|
margin: 0 10px 0 0;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box .error {
|
||
|
color: #d63638;
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box.wpforms-providers-account-add-modal .jconfirm-content .description {
|
||
|
font-size: 13px;
|
||
|
line-height: 1.4;
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box #wpforms-embed-shortcode {
|
||
|
margin: 20px 0;
|
||
|
text-align: center;
|
||
|
font-size: 24px;
|
||
|
padding: 8px 5px;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box #wpforms-embed-shortcode:disabled {
|
||
|
color: #333333;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm .jconfirm-box-container .jconfirm-box button[disabled] {
|
||
|
cursor: no-drop;
|
||
|
}
|
||
|
|
||
|
body div.jconfirm.jconfirm-wpforms-education .jconfirm-content-pane {
|
||
|
height: auto !important;
|
||
|
min-height: fit-content;
|
||
|
}
|
||
|
|
||
|
.choices {
|
||
|
font-size: 16px;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.choices input[type=text].choices__input:not(.wpforms-hidden) {
|
||
|
display: inline-block !important;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .jconfirm-box {
|
||
|
padding-bottom: 0;
|
||
|
padding-top: 30px;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .already-purchased {
|
||
|
display: block;
|
||
|
grid-row: 4;
|
||
|
grid-column: 1 / 2;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .already-purchased:hover {
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .discount-note {
|
||
|
grid-row: 5;
|
||
|
margin: 20px 0 0;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .discount-note p {
|
||
|
margin: 0 -30px;
|
||
|
padding: 20px 52px;
|
||
|
border-radius: 0 0 6px 6px;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .discount-note p:after {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .feature-video, body .jconfirm.has-video div.jconfirm-box-container .pro-feature-video {
|
||
|
grid-row: 1 / span 4;
|
||
|
grid-column-start: 2;
|
||
|
margin-top: 0;
|
||
|
margin-left: 15px;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .jconfirm-title-c,
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .jconfirm-content-pane,
|
||
|
body .jconfirm.has-video div.jconfirm-box-container .jconfirm-buttons {
|
||
|
grid-column: 1 / 2;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.upgrade-modal .jconfirm-box-container div.jconfirm-box {
|
||
|
padding-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.upgrade-modal .jconfirm-box-container div.jconfirm-box .pro-feature-video {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
body .jconfirm.upgrade-modal .jconfirm-box-container div.jconfirm-box .jconfirm-buttons {
|
||
|
padding-bottom: 0;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 1023px) {
|
||
|
body .jconfirm.has-video div.jconfirm-box {
|
||
|
grid-template-columns: repeat(1, 1fr);
|
||
|
}
|
||
|
body .jconfirm.has-video .feature-video, body .jconfirm.has-video .pro-feature-video {
|
||
|
display: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal {
|
||
|
overflow: hidden;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-bg {
|
||
|
animation: 0.3s ease-out 0s 1 normal wpforms-jconfirm-bg-fade-in;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-cell {
|
||
|
overflow-y: auto;
|
||
|
max-height: 100vh;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-holder {
|
||
|
animation: 0.3s ease-out 0s 1 normal wpforms-jconfirm-scale;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box {
|
||
|
border-top: none;
|
||
|
border-radius: 6px;
|
||
|
box-shadow: 0 5px 60px rgba(0, 0, 0, 0.25);
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content-pane {
|
||
|
margin-bottom: 25px;
|
||
|
height: auto !important;
|
||
|
min-height: fit-content;
|
||
|
max-height: fit-content !important;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content {
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content img.wpforms-mascot {
|
||
|
height: 63px !important;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content h2,
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content h4 {
|
||
|
font-weight: 600;
|
||
|
font-size: 24px;
|
||
|
line-height: 22px;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content h2 {
|
||
|
margin: 30px 0 10px 0;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content h4 {
|
||
|
line-height: 24px;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content p {
|
||
|
font-size: 16px;
|
||
|
line-height: 22px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features {
|
||
|
margin: 30px 0 25px 0;
|
||
|
padding: 10px 30px;
|
||
|
background: #f8f8f8;
|
||
|
border-radius: 4px;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
padding: 20px 0;
|
||
|
border-bottom: 1px solid #e4e4e4;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section img {
|
||
|
max-height: 24px;
|
||
|
max-width: 24px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section:nth-child(2) img {
|
||
|
margin-left: -4px;
|
||
|
max-width: 30px;
|
||
|
width: 30px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section:nth-child(3) img {
|
||
|
margin-left: -1px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section aside {
|
||
|
width: calc( 100% - 44px);
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section aside h4 {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content .wpforms-features section aside p {
|
||
|
font-size: 14px;
|
||
|
line-height: 20px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content footer {
|
||
|
font-size: 13px;
|
||
|
line-height: 20px;
|
||
|
max-width: 370px;
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-content .wpforms-settings-lite-connect-modal-content footer a {
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons {
|
||
|
margin-top: -10px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button {
|
||
|
font-style: normal;
|
||
|
font-weight: 600;
|
||
|
font-size: 16px;
|
||
|
line-height: 42px;
|
||
|
border-radius: 4px;
|
||
|
padding: 0 17px;
|
||
|
color: #777777;
|
||
|
border-color: #f8f8f8;
|
||
|
background: #f8f8f8;
|
||
|
text-transform: capitalize;
|
||
|
min-width: 83px;
|
||
|
margin: 10px;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button:hover {
|
||
|
background: #eeeeee;
|
||
|
border-color: #eeeeee;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box .jconfirm-buttons button.btn-default {
|
||
|
margin-left: 20px;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-buttons button.btn-confirm {
|
||
|
color: #ffffff;
|
||
|
background: #e27730;
|
||
|
border-color: #e27730;
|
||
|
}
|
||
|
|
||
|
body.wpforms-setting-lite-connect-modal .jconfirm .jconfirm-box-container .jconfirm-box.jconfirm-type-orange .jconfirm-buttons button.btn-confirm:hover {
|
||
|
background: #cd6622;
|
||
|
border-color: #cd6622;
|
||
|
}
|
||
|
|
||
|
@keyframes wpforms-jconfirm-scale {
|
||
|
0% {
|
||
|
transform: scale(0.5);
|
||
|
opacity: 0;
|
||
|
}
|
||
|
100% {
|
||
|
transform: scale(1);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes wpforms-jconfirm-bg-fade-in {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: .6;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.wpforms-education-lite-connect-wrapper .wpforms-education-lite-connect-setting,
|
||
|
.wpforms-education-lite-connect-wrapper .wpforms-education-lite-connect-enabled-info {
|
||
|
transition: opacity 0.25s ease-out;
|
||
|
}
|
||
|
|
||
|
.wpforms-education-lite-connect-wrapper .wpforms-education-lite-connect-setting.wpforms-hidden,
|
||
|
.wpforms-education-lite-connect-wrapper .wpforms-education-lite-connect-enabled-info.wpforms-hidden {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.wpforms-toggle-control.wpforms-setting-lite-connect-auto-save-toggle .wpforms-toggle-control-label, .wpforms-toggle-control.wpforms-setting-lite-connect-auto-save-toggle .wpforms-toggle-control-icon {
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block {
|
||
|
margin: 0;
|
||
|
padding: 10px;
|
||
|
background: #fafafa;
|
||
|
border-bottom: 1px solid #f0f0f1;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block .wpforms-toggle-control-status {
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block .wpforms-education-lite-connect-enabled-info {
|
||
|
text-align: left;
|
||
|
font-size: 13px;
|
||
|
line-height: 14px;
|
||
|
color: #a7aaad;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block .wpforms-education-lite-connect-enabled-info img {
|
||
|
margin-right: 5px;
|
||
|
width: 14px;
|
||
|
height: 14px;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block .wpforms-education-lite-connect-enabled-info span {
|
||
|
vertical-align: top;
|
||
|
}
|
||
|
|
||
|
#wpforms-dash-widget-lite-connect-block .wpforms-education-lite-connect-enabled-info a {
|
||
|
float: right;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar {
|
||
|
background: #f8f8f8;
|
||
|
height: 44px;
|
||
|
padding: 0;
|
||
|
position: fixed;
|
||
|
top: calc(var(--wpforms-admin-bar-height) - 45px);
|
||
|
width: 100%;
|
||
|
z-index: 55;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
transition: top 0.25s ease-out;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-toggle-control {
|
||
|
white-space: nowrap;
|
||
|
margin: 0 10px 0 0;
|
||
|
line-height: 17px;
|
||
|
height: 17px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-toggle-control input:not(:checked) + .wpforms-toggle-control-icon {
|
||
|
background-color: #d63638;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-toggle-control:hover input:not(:checked) + .wpforms-toggle-control-icon {
|
||
|
background-color: #b32d2e;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-toggle-control-label {
|
||
|
font-weight: 500;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #444444;
|
||
|
vertical-align: 3px;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar p {
|
||
|
font-weight: normal;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #777777;
|
||
|
margin: 0;
|
||
|
padding-left: 10px;
|
||
|
border-left: 1px solid #bbbbbb;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-education-lite-connect-enabled-info {
|
||
|
font-weight: 500;
|
||
|
margin: 0 10px 0 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-education-lite-connect-enabled-info img {
|
||
|
margin: 0 6px 0 0;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-hidden-element {
|
||
|
margin-right: auto;
|
||
|
visibility: hidden;
|
||
|
width: 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-dismiss-button {
|
||
|
margin-left: auto;
|
||
|
margin-right: 22px;
|
||
|
color: #a6a6a6;
|
||
|
}
|
||
|
|
||
|
#wpforms-builder-lite-connect-top-bar .wpforms-dismiss-button:hover {
|
||
|
color: #777777;
|
||
|
}
|
||
|
|
||
|
#wpforms-challenge-popup-lite-connect {
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
#wpforms-challenge-popup-lite-connect h3 img {
|
||
|
width: 24px;
|
||
|
height: 24px;
|
||
|
}
|
||
|
|
||
|
#wpforms-challenge-popup-lite-connect hr {
|
||
|
margin: 20px 0;
|
||
|
}
|
||
|
|
||
|
#wpforms-challenge-popup-lite-connect .wpforms-toggle-control .wpforms-toggle-control-label {
|
||
|
font-weight: normal;
|
||
|
font-size: 14px;
|
||
|
line-height: 17px;
|
||
|
color: #444444;
|
||
|
}
|
||
|
|
||
|
#wpforms-challenge-popup-lite-connect .wpforms-education-lite-connect-enabled-info img {
|
||
|
margin: 0 6px 0 0;
|
||
|
width: 17px;
|
||
|
height: 17px;
|
||
|
vertical-align: bottom;
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNzZXRzL2xpdGUvY3NzL2Rhc2hib2FyZC1lZHVjYXRpb24uY3NzIiwic291cmNlcyI6WyJhc3NldHMvbGl0ZS9zY3NzL2Rhc2hib2FyZC1lZHVjYXRpb24uc2NzcyIsImFzc2V0cy9zY3NzL2FkbWluL192YXJpYWJsZXMuc2NzcyIsImFzc2V0cy9zY3NzL192YXJpYWJsZXMuc2NzcyIsImFzc2V0cy9zY3NzL2FkbWluL19jb2xvcnMuc2NzcyIsImFzc2V0cy9zY3NzL2FkbWluL190b2dnbGUtY29udHJvbC5zY3NzIiwiYXNzZXRzL3Njc3MvYnVpbGRlci9wYXJ0aWFscy9fbWl4aW5zLnNjc3MiLCJhc3NldHMvc2Nzcy9hZG1pbi9fY29uZmlybS5zY3NzIiwiYXNzZXRzL2xpdGUvc2Nzcy9hZG1pbi9fZWR1Y2F0aW9uLWxpdGUtY29ubmVjdC5zY3NzIl0sInNvdXJjZXNDb250ZW50IjpbIi8vIFdQRm9ybXMgTGl0ZSBhZG1pbiBzdHlsZXMuXG4vL1xuLy8gRWR1Y2F0aW9uIHN0eWxlcyBmb3IgdGhlIHBsYWNlcyBvdXRzaWRlIFdQRm9ybXMuXG4vL1xuLy8gQHNpbmNlIDEuNy40XG5cbkBpbXBvcnQgJy4uLy4uLy4uL2Fzc2V0cy9zY3NzL2FkbWluL3ZhcmlhYmxlcyc7XG5AaW1wb3J0ICcuLi8uLi8uLi9hc3NldHMvc2Nzcy9hZG1pbi90b2dnbGUtY29udHJvbCc7XG5AaW1wb3J0ICcuLi8uLi8uLi9hc3NldHMvc2Nzcy9idWlsZGVyL3BhcnRpYWxzL21peGlucyc7XG5AaW1wb3J0ICcuLi8uLi8uLi9hc3NldHMvc2Nzcy9hZG1pbi9jb25maXJtJztcblxuQGltcG9ydCAnYWRtaW4vZWR1Y2F0aW9uLWxpdGUtY29ubmVjdCc7XG4iLCIvLyBXUEZvcm1zIGFkbWluIHN0eWxlcy5cbi8vXG4vLyBWYXJpYWJsZXMuXG4vL1xuLy8gQHNpbmNlIDEuNy40XG5cbkBpbXBvcnQgJy4uL3ZhcmlhYmxlcyc7XG5AaW1wb3J0ICdjb2xvcnMnO1xuXG4vLyBGb250cy5cbiRmb250X2ZhOiBGb250QXdlc29tZTtcblxuLy8gRm9udCBzaXplcy5cbiRmb250X3NpemVfMnhzOiAxMXB4O1xuJGZvbnRfc2l6ZV94czogIDEycHg7XG4kZm9udF9zaXplX3NzOiAgMTNweDtcbiRmb250X3NpemVfczogICAxNHB4O1xuJGZvbnRfc2l6ZV9tOiAgIDE2cHg7XG4kZm9udF9zaXplX2w6ICAgMThweDtcbiRmb250X3NpemVfbGw6ICAyMHB4O1xuJGZvbnRfc2l6ZV94bDogIDI0cHg7XG4kZm9udF9zaXplX3h4bDogMjhweDtcblxuLy8gU3BhY2luZy5cbiRzcGFjaW5nX3hzOiAgNXB4O1xuJHNwYWNpbmdfc3M6ICA4cHg7XG4kc3BhY2luZ19zOiAgIDEwcHg7XG4kc3BhY2luZ19tczogIDE1cHg7XG4kc3BhY2luZ19tOiAgIDIwcHg7XG4kc3BhY2luZ19sOiAgIDMwcHg7XG4kc3BhY2luZ194bDogIDQwcHg7XG4kc3BhY2luZ194eGw6IDUwcHg7XG5cbi8vIEZpZ21hIG1hcHBpbmcuXG4kc3BhY2luZzogKFxuXHQnc20nOiAkc3BhY2luZ19zLFxuXHQnbWQnOiAkc3BhY2luZ19tLFxuXHQnbGcnOiAkc3BhY2luZ19sLFxuXHQneGwnOiAkc3BhY2luZ194eGwsXG4pO1xuXG4vLyBCb3JkZXIgcmFkaXVzLlxuJGJvcmRlcl9yYWRpdXNfeHM6IDNweDtcbiRib3JkZXJfcmFkaXVzX3M6ICA0cHg7XG4kYm9yZGVyX3JhZGl1c19tOiAgNnB4O1xuJGJvcmRlcl9yYWRpdXNfbDogIDlweDtcblxuLy8gRmlnbWEgbWFwcHBpbmcuXG4kcmFkaXVzOiAoXG5cdCdyYWRpdXMtdGFibGUnOiAkYm9yZGVyX3JhZGl1c19zLFxuXHQncmFkaXVzLWJhZGdlJzogJGJvcmRlcl9yYWRpdXNfeHMsXG5cdCdyYWRpdXMtZmllbGQnOiAkYm9yZGVyX3JhZGl1c19zLFxuXHQncmFkaXVzLWJ1dHRvbic6ICRib3JkZXJfcmFkaXVzX3MsXG4pO1xuXG4vLyBCb3JkZXIuXG4kYm9yZGVyX3N0ZDogMXB4IHNvbGlkICRjb2xvcl9ib3JkZXI7XG5cbi8vIFRyYW5zaXRpb25zLlxuJHRyYW5zaXRpb25fc2xvd2VzdDogLjUwcztcbiR0cmFuc2l0aW9uX3Nsb3dlcjogIC40MHM7XG4kdHJhbnNpdGlvbl9zbG93OiAgICAuMjVzO1xuJHRyYW5zaXRpb25fbm9ybWFsOiAgLjE1cztcbiR0cmFuc2l0aW9uX2Zhc3Q6ICAgIC4wNXM7XG5cbi8vIENob2ljZXMuXG4kY2hvaWNlcy1ib3JkZXItcmFkaXVzOiA0cHg7XG5cbi8vIEJyZWFrcG9pbnRzLlxuJGJyZWFrcG9pbnRzOiAoXG5cdCd4cy1waG9uZSc6ICAzMjBweCxcblx0J3Bob25lJzogICAgIDYwMHB4LFxuXHQnaXBhZCc6ICAgICAgNzY4cHgsXG5cdCd0YWJsZXQnOiAgICA3ODJweCxcblx0J2Rlc2t0b3AnOiAgIDk2MHB4LFxuXHQnbC1kZXNrdG9wJzogMTI4MHB4LFxuKTtcbiIsIi8vIFRPRE86IGdldCByaWQgb2YgdGhlc2UgbGVnYWN5IHZhcnMgYW5kIHRoaXMgZmlsZS4gQWxsIHZhcmlhYmxlcyBzaG91bGQgYmUgZGVmaW5lZCBpbiAuL2FkbWluL192YXJpYWJsZXMuc2Nzcy5cblxuLy8gTGVnYWN5IHZhcmlhYmxlcy5cbiRvcmFuZ2U6ICNlMjc3MzA7XG4kYWx0b3JhbmdlOiAjZGY3NzM5O1xuJGRhcmtvcmFuZ2U6ICNiODVhMWI7XG4kZ3JlZW46ICMyYTliMzk7XG4kYmx1ZTogIzBlNmNhZDtcbiRsaWdodEJsdWU6ICNlYmYzZmI7XG5cbiR0cmFuc2l0aW9uX2R1cmF0aW9uOiAwLjNzO1xuJGhvdmVyX3RyYW5zaXRpb25fZHVyYXRpb246IDAuMDVzO1xuXG4vLyBGb250IGZhbWlseS5cbiRmb250X2dlbmVyYWw6IC1hcHBsZS1zeXN0ZW0sIEJsaW5rTWFjU3lzdGVtRm9udCwgXCJTZWdvZSBVSVwiLCBSb2JvdG8sIE94eWdlbi1TYW5zLCBVYnVudHUsIENhbnRhcmVsbCwgXCJIZWx2ZXRpY2EgTmV1ZVwiLCBzYW5zLXNlcmlmO1xuXG4vLyBDb2xvcnMgYnkgbmFtZTpcbiRjb2xvcl93aGl0ZTogICAgICAgICAgICAgICAgICAgICAjZmZmZmZmO1xuXG4kY29sb3JfZGFya19yZWQ6ICAgICAgICAgICAgICAgICAgI2IzMmQyZTtcbiRjb2xvcl9yZWQ6ICAgICAgICAgICAgICAgICAgICAgICAjZDYzNjM4O1xuXG4kY29sb3JfZGFya19ncmVlbjogICAgICAgICAgICAgICAgIzAwOGEyMDtcbiRjb2xvcl9ncmVlbjogICAgICAgICAgICAgICAgICAgICAjMDBhMzJhO1xuXG4kY29sb3JfYmx1ZTogICAgICAgICAgICAgICAgICAgICAgIzAzNmFhYjtcbiRjb2xvcl9icmlnaHRfYmx1ZTogICAgICAgICAgICAgICAjMDM5OWVkO1xuXG4kY29s
|