:root {
    --pz-color-mono100: #f8f9fa;
    --pz-color-mono200: #e9ecef;
    --pz-color-mono300: #dee2e6;
    --pz-color-mono400: #ced4da;
    --pz-color-mono500: #adb5bd;
    --pz-color-mono600: #6c757d;
    --pz-color-mono700: #495057;
    --pz-color-mono800: #343a40;
    --pz-color-mono900: #000;
    --pz-color-primary: #f08046;
    --pz-color-primary-light: #f1d1cf;
    --pz-color-secondary: #2bb32a;
    --pz-color-secondary-light: #5ccd6e;
    --pz-text-color: var(--pz-color-mono900);
    --pz-color-border: var(--pz-color-mono400);
    --pz-body-bg: #fff;
    --pz-secondary-bg: var(--pz-color-mono100);
    --pz-font-family: 'Montserrat', sans-serif;
    --pz-font-size: 1.025em;
    --pz-opacity-disabled: 1;
}

/*
@media (prefers-color-scheme: dark) {
	:root {
        color-scheme: dark;
		--pz-body-color: #3d544d;
        --pz-text-color: #fff;
	}
}
:root [data-theme=dark] system | light {

}    
*/

body {
    color: var(--pz-text-color);
    background-color: var(--pz-body-bg);
}

.w-full {
    width: 100% !important;
}

.pz-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    font-family: var(--pz-font-family);
    font-size: var(--pz-font-size);
    font-weight: 700;
    line-height: 24px;
    color: var(--pz-color-mono900);
    background-color: transparent;
    border: 1px solid var(--pz-color-border);
    border-radius: 14px;
    padding: 7px 16px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none !important;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.pz-btn:not(:disabled):hover,
.pz-btn:not(.disabled):hover,
.pz-btn:not(:disabled):active,
.pz-btn:not(.disabled):active {
    opacity: .9;
}
.pz-btn:disabled,
.pz-btn.disabled {
    color: var(--pz-color-mono500) !important;
    background-color: var(--pz-color-mono300) !important;
    border-color: var(--pz-color-mono300) !important;
    opacity: var(--pz-opacity-disabled);
    box-shadow: none !important;
    pointer-events: none;
}

#pay_button {
    color: var(--pz-color-primary);
    background-color: transparent;
    border-color: var(--pz-color-primary);
}

.pz-btn.pz-btn--primary {
    color: #fff;
    background-color: var(--pz-color-primary);
    border-color: var(--pz-color-primary);
}

.pz-btn.pz-btn--secondary {
    color: #fff;
    background-color: var(--pz-color-secondary);
    border-color: var(--pz-color-secondary);
}

.pz-btn.pz-btn--outline-primary {
    color: white;
    background-color: transparent;
    border-color: white;
}
@media (max-width: 767px) {
    .pz-btn.pz-btn--outline-primary {
        color: var(--pz-color-primary);
        background-color: transparent;
        border-color: var(--pz-color-primary);
    }
}
.pz-btn.pz-btn--outline-primary:hover,
.pz-btn.pz-btn--outline-primary:active {
    color: #fff;
    background-color: var(--pz-color-primary);
    border-color: var(--pz-color-primary);
}

.pz-btn.pz-btn--outline-secondary {
    color: var(--pz-color-secondary);
    background-color: transparent;
    border-color: var(--pz-color-secondary);
}
.pz-btn.pz-btn--outline-secondary:hover,
.pz-btn.pz-btn--outline-secondary:active {
    color: #fff;
    background-color: var(--pz-color-secondary);
    border-color: var(--pz-color-secondary);
}

.pz-btn--rounded {
    border-radius: 50px;
}

.pz-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 10px 0;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.pz-header__inner {
    display: flex;
    align-items: center;
}

.pz-header__logo {
    margin-right: 10px;
}

.pz-header__logo img + img {
    display: none;
}
@media (max-width: 767px) {
    .pz-header__logo img {
        display: none;
    }
    .pz-header__logo img + img {
        display: inline;
    }
}

@media (min-width: 768px) {

    .pz-header__actions {
        gap: 20px;
    }
}

.pz-header__actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}
@media (max-width: 767px) {
    .pz-header__actions {
    }
}

.pz-header__phone {
    display: flex;
    align-items: center;
    font-size: 1.3em;
    font-weight: 700;
}
@media (max-width: 767px) {
    .pz-header__phone {
        display: none;
    }
}
.pz-header__phone svg {
    margin-right: 5px;
}
.pz-header__phone a {
    color: var(--pz-text-color);
    cursor: pointer;
}

.pz-header__pay a {
    color: var(--pz-btn-outline-color);
    border-radius: 50px;
}
@media (max-width: 767px) {
    .pz-header__pay a {
        min-height: auto;
        font-size: 13px;
        border-radius: 6px;
        padding: 5px 10px;
        margin-right: 10px;
        margin-left: 10px;
    }

    .pz-header__account a {
        margin-right: 10px;
    }
}

.pz-header__account a {
    min-height: auto;
    border-radius: 6px;
    padding: 8px;
}

.pz-header__toggler button {
    background-color: transparent;
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}
.pz-header__toggler button.navicon {
    width: auto;
    height: auto;
}
.pz-header__toggler button.navicon:before,
.pz-header__toggler button.navicon:after {
    display: none;
}

.pz-intro {
    font-size: var(--pz-font-size);
    background-image: url(../images/pz-intro-light.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 25px 0;
}
@media (min-width: 992px) {
    .pz-intro {
        padding: 60px 0;
    }
}

.pz-intro__inner {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.pz-intro__left {
    width: 100%;
    padding: 0 15px;
}
@media (min-width: 992px) {
    .pz-intro__left {
        flex: 0 1 45%;
        max-width: 45%;
    }
}

.pz-intro__right {
    width: 100%;
    padding: 0 15px;
}
@media (min-width: 992px) {
    .pz-intro__right {
        flex: 0 1 55%;
        max-width: 55%;
    }
}

.pz-intro__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pz-intro__title {
    max-width: 560px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}
@media (min-width: 600px) {
    .pz-intro__title {
        font-size: 48px;
        margin-bottom: 40px;
    }
}
@media (min-width: 1200px) {
    .pz-intro__title {
        font-size: 4.3em;
    }
}

.pz-intro__text {
    margin-bottom: 30px;
}

.pz-intro__img {
    flex-grow: 1;
    background-image: url(../images/pz-intro-img-light.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    margin-bottom: -60px;
}
@media (max-width: 991px) {
    .pz-intro__img {
        display: none;
    }
}

.pz-calculation {
    background-color: var(--pz-secondary-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 24px rgba(0, 0, 0, .1);
}
@media (max-width: 767px) {
    .pz-calculation {
        padding: 20px 10px;
    }
}

.pz-calc-amount-selection {
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    .pz-calc-amount-selection {
        margin-bottom: 20px;
    }
}

.pz-calc-amount-selection__title {
    color: var(--pz-color-mono600);
    margin-bottom: 15px;
    text-align: center;
}

.pz-calc-amount-selection__actions {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.pz-calc-amount-selection__actions button {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 24px;
    font-weight: 400;
    line-height: 18px;
    color: var(--pz-color-primary);
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid var(--pz-color-primary);
    margin: 0 15px;
    padding: 0;
    text-align: center;
}

.pz-calc-items {
    display: flex;
    justify-content: space-between;
}

.pz-calc-item {
    display: flex;
    flex-direction: column;
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid var(--pz-color-primary);
    padding: 5px;
}

.pz-calc-item:not(:last-child) {
    margin-right: 20px;
}

.pz-calc-item[data-term-type="periodic"] {
    border: 1px solid var(--pz-color-secondary);
}
@media (min-width: 768px) {
    .pz-calc-item {
        border-radius: 20px;
        padding: 10px;
    }
}

.pz-calc-item__header {
    background-color: var(--pz-color-primary-light);
    border-radius: 10px 10px 0 0;
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
    padding: 5px;
}
@media (min-width: 768px) {
    .pz-calc-item__header {
        border-radius: 20px 20px 0 0;
        margin-top: -10px;
        margin-left: -10px;
        margin-right: -10px;
        padding: 7px 10px;
    }
}

.pz-calc-item__title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
@media (min-width: 768px) {
    .pz-calc-item__title {
        font-size: 1.5em;
    }
}

.pz-calc-item__body {
    padding: 10px 0;
}

.pz-calc-amount-slider {
    position: relative;
    padding-bottom: 40px;
}

.pz-calc-amount-slider__pos {
    font-size: 0.8em;
    color: var(--pz-color-mono600);
    border: none;
    margin-top: 20px;
    position: absolute;
    top: 0;
    z-index: 2;
}
.pz-calc-amount-slider__pos[data-pos="min"] {
    left: 0;
}
.pz-calc-amount-slider__pos[data-pos="max"] {
    right: 0;
}
.pz-calc-amount-slider .ui_slider {
    flex-grow: 1;
    height: 4px;
    background: var(--pz-color-mono300);
    border: none;
    border-radius: 0;
}
.pz-calc-amount-slider .ui-slider-handle {
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 7.5px solid var(--pz-color-primary);
    border-radius: 50%;
    outline: none !important;
    margin-top: -6px;
    margin-left: -12px;
}
.pz-calc-amount-slider .ui-slider-range {
    background: var(--pz-color-primary);
}

.pz-calc-item-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 50px;
    font-size: 11px;
    border-bottom: 1px solid var(--pz-color-border);
    padding: 5px 0;
    text-align: center;
}
@media (min-width: 768px) {
    .pz-calc-item-result {
        min-height: 60px;
        font-size: 1em;
        padding: 10px 0;
    }
}

.pz-calc-item-result [data-active="true"] {
    color: var(--pz-color-secondary);
}

.pz-calc-item-result__title {
    font-size: 10px;
    color: var(--pz-color-mono600);
}
@media (min-width: 768px) {
    .pz-calc-item-result__title {
        font-size: 14px;
    }
}

.pz-calc-item-result__values {
    display: flex;
}

.pz-calc-item-result__values .pz-calc-item-result__value {
    flex: 1 0 0%;
    width: 100%;
    max-width: 100%;
}

.pz-calc-item-result__value {
    font-weight: 700;
}

.pz-calc-item-result__value.rate-value {
    color: var(--pz-color-primary);
}
.pz-calc-item[data-term-type="periodic"] .pz-calc-item-result__value.rate-value {
    color: var(--pz-color-secondary);
}

.pz-calc-item-result__value.rate-value b {
    line-height: 16px;
}
@media(min-width: 768px) {
    .pz-calc-item-result__value.rate-value b {
        font-size: 1.5em;
        line-height: 16px;
    }
}

.pz-calc-item-term-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
@media (min-width: 768px) {
    .pz-calc-item-term-selection {
        justify-content: center;
        gap: 10px;
    }
}

.pz-calc-item-switch {
    width: 100%;
}
@media (min-width: 768px) {
    .pz-calc-item-switch {
        width: auto;
        order: 2;
    }
    
    .pz-calc-item-term-selection .pz-calc-item-result__value:first-of-type {
        order: 1;
    }
    
    .pz-calc-item-term-selection .pz-calc-item-result__value:last-of-type {
        order: 3;
    }
}

.pz-calc-item-switch button {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 16px;
    background-color: var(--pz-color-mono200);
    border-radius: 50px;
    border: 0;
}
@media (min-width: 768px) {
    .pz-calc-item-switch button {
        width: 60px;
        height: 20px;
    }
}

.pz-calc-item-switch button:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--pz-color-secondary);
    border-radius: 50%;
    border: 3px solid var(--pz-color-secondary-light);
    margin-top: -4px;
    position: absolute;
    top: 0;
    transition: all .2s;
}
.pz-calc-item-switch button[data-dir="left"]:before {
    left: 0;
}
.pz-calc-item-switch button[data-dir="right"]:before {
    left: calc(100% - 24px);
}
@media (min-width: 768px) {
    .pz-calc-item-switch button:before {
        margin-top: -6px;
        width: 34px;
        height: 34px;
    }
    .pz-calc-item-switch button[data-dir="right"]:before {
        left: calc(100% - 34px);
    }
}

.pz-calc-item__footer {
    margin-top: auto;
}
@media (min-width: 768px) {
    .pz-calc-item__footer {
        padding-top: 20px;
    }
}

.pz-calc-item__footer .pz-btn {
    width: 100%;
    font-size: 12px;
    line-height: 1.2;
    white-space: normal;
}
@media (min-width: 768px) {
    .pz-calc-item__footer .pz-btn {
        font-size: 1.125em;
        line-height: 24px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.pz-calc-nav {
    margin-top: 20px;
}
@media (min-width: 768px) {
    .pz-calc-nav {
        margin-top: 30px;
    }
}

.pz-calc-nav__title {
    font-size: 12px;
    margin-bottom: 5px;
    text-align: center;
}
@media (min-width: 768px) {
    .pz-calc-nav__title {
        font-size: 1em;
        margin-bottom: 10px;
    }
}

.pz-calc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .pz-calc-links {
        gap: 10px;
    }
}

.pz-calc-links > div {
    flex: 0 0 calc(50% - 2px);
    max-width: calc(50% - 2px);
    text-align: center;
}
@media (min-width: 768px) {
    .pz-calc-links > div {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
}

.pz-calc-links a {
    font-size: 8px;
    color: var(--pz-text-color);
    text-decoration: underline;
}
@media (min-width: 768px) {
    .pz-calc-links a {
        font-size: 0.8em;
    }
}

.bp_btn_eye i {
    font-size: 24px;
}

.inc_container {
    max-width: 1110px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

#inc_form {
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: #5a73a0;
}

.inc_form-color-span{
    cursor: pointer;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    opacity: .5;
    border: 2px solid #fff
}

.inc_form-size-span{
    cursor: pointer;
    display: block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 16px;
    font-weight: 700;
    font-family: Montserrat,sans-serif;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: transparent;
    opacity: .5;
    border: 2px solid #fff
}

.inc_form_cancel {
    margin-left: auto;
    display: flex;
    height: 57px;
    padding: 20px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 8px;
    color: #081f2d;
    text-align: center;
    font-family: Montserrat,sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    text-transform: uppercase
}

.inc_form-read_only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.inc_form-text {
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 10px;
    background-color: #fff !important;
    border-radius: 8px;
    color: #081f2d !important;
    text-align: center;
    font-family: Montserrat,sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    text-transform: uppercase
}

#inc_form label input[value="theme-contrast"] ~ .inc_form-color-span {
    background-color: #007b47;
}

#inc_form label input[value="theme-black"] ~ .inc_form-color-span {
    background-color: #000;
}

#inc_form label input[value="theme-white"] ~ .inc_form-color-span {
    background-color: #ffffff;
}

#inc_form label input[type="radio"]:checked ~ .inc_form-color-span {
    opacity: 1;
}

#inc_form label input[name="font"]:checked ~ .inc_form-size-span {
    opacity: 1;
}

@media (max-width: 768px) {
    .bp_btn_eye i {
        font-size: 20px;
    }

    .inc_container {
        max-width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        justify-content: center;
    }

    #inc_form {
        padding: 10px;
    }

    .inc_form-color-span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        border-width: 1.5px;
    }

    .inc_form-size-span {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 14px;
        border-width: 1.5px;
    }

    .inc_form_cancel,
    .inc_form-text {
        height: 50px;
        font-size: 12px;
        padding: 15px;
    }

    #inc_form label input[value="theme-contrast"] ~ .inc_form-color-span {
        background-color: #007b47;
    }

    #inc_form label input[value="theme-black"] ~ .inc_form-color-span {
        background-color: #000;
    }

    #inc_form label input[value="theme-white"] ~ .inc_form-color-span {
        background-color: #ffffff;
    }

    #inc_form label input[type="radio"]:checked ~ .inc_form-color-span {
        opacity: 1;
    }

    #inc_form label input[name="font"]:checked ~ .inc_form-size-span {
        opacity: 1;
    }
}

/*.special.theme-black *:not(#inc_form):not(#inc_form *) {*/
/*    filter: grayscale(100%) contrast(100%);*/
/*}*/

body.special.theme-white {
    background-color: white !important;
    color: white !important;
}

.special.theme-white *:not(.inc_form-text):not(.fa-eye) {
    color: black !important;
}

.special.theme-white .pz-header {
    filter: unset !important;
    -webkit-filter: unset !important;
}

.special.theme-white .step {
    background-color: white;
    border: 1px solid black;
}

.special.theme-white .pz-header {
    background-color: white;
}

.special.theme-white #advantages_container {
    background-color: white;
    border: 1px solid black;
}

.special.theme-white .without-label {
    position: relative;
    z-index: 1;
}

.special.theme-white #return-credit {
    background-color: white;
}

.special.theme-white #return-credit_container {
    background: white !important;
    border: 1px solid black !important;
}

.special.theme-white .documents {
    background-color: white;
    border: 1px solid black;
}

.special.theme-white .advantages {
    background-color: white;
}

.special.theme-white .pz-calculation {
    background-color: white;
    border: 1px solid black;
}

.special.theme-white .footer {
    background: white;
    border: 1px solid black;
}

.special.theme-white .navbar-content {
    background: white;
}

.special.theme-white .current-lang {
    background: lightgray;
}

.special.theme-white td {
    background: white;
    border: 1px solid;
}

.special.theme-white #for-nbu {
    background: white;
    border: 1px solid;
}

.special.theme-white .tp_footer_links {
    border: 1px solid;
}

.special.theme-white .term_button {
    background: white;
}

.special.theme-white .downloads {
    background: white;
    border: 1px solid black;
}

.special.theme-white .calculation {
    background: white;
    border: 2px solid black;
}

.special.theme-white .contact-form {
    background: lightgray;
    border: 1px solid black;
}

.special.theme-white .address {
    background: lightgray;
    border: 1px solid black;
}

.special.theme-white th {
    background: white;
    border: 1px solid black;
}

.special.theme-white .wpcf7-form {
    border: 1px solid black;
}

.special.theme-white .dg_seo_text {
    border: 1px solid black;
}

.special.theme-white .periodicity_button {
    background: white;
}

.special.theme-white .pz-header {
    border: 1px solid black;
}

.special.theme-white .b_product_calculator {
    background: white;
}

.special.theme-white .b_product_calculator {
    border: 1px solid black;
}

.special.theme-white .b_pozcalc {
    background: white;
}

body.special.theme-black {
    background-color: black !important;
    color: black !important;
}

.special.theme-black *:not(.inc_form-text):not(.fa-eye) {
    color: white !important;
}

.special.theme-black .pz-header {
    filter: unset !important;
}


.special.theme-black .pz-intro {
    background: black;
}

.special.theme-black #get-credit {
    background: black;
}

.special.theme-black .tp_footer_links {
    background: black;
}

.special.theme-black .policy {
    background: black;
}

.special.theme-black .b_product {
    background: black;
}

.special.theme-black .wrapper {
    background: black;
}

.special.theme-black .contacts {
    background: black;
}


.special.theme-black .step {
    background-color: black;
    border: 1px solid white;
}

.special.theme-black .pz-header {
    background-color: black;
}

.special.theme-black #advantages_container {
    background-color: black;
    border: 1px solid white;
}

.special.theme-black .without-label {
    position: relative;
    z-index: 1;
}

.special.theme-black #return-credit {
    background-color: black;
}

.special.theme-black #return-credit_container {
    background: black !important;
    border: 1px solid white !important;
}

.special.theme-black .documents {
    background-color: black;
    border: 1px solid white;
}

.special.theme-black .advantages {
    background-color: black;
}

.special.theme-black .pz-calculation {
    background-color: black;
    border: 1px solid white;
}

.special.theme-black .footer {
    background: black;
    border: 1px solid white;
}

.special.theme-black .navbar-content {
    background: black;
}

.special.theme-black .current-lang {
    background: darkslategray;
}

.special.theme-black td {
    background: black;
    border: 1px solid;
}

.special.theme-black #for-nbu {
    background: black;
    border: 1px solid;
}

.special.theme-black .tp_footer_links {
    border: 1px solid;
}

.special.theme-black .term_button {
    background: black;
}

.special.theme-black .downloads {
    background: black;
    border: 1px solid white;
}

.special.theme-black .calculation {
    background: black;
    border: 2px solid white;
}

.special.theme-black .contact-form {
    background: darkslategrey;
    border: 1px solid white;
}

.special.theme-black .address {
    background: darkslategrey;
    border: 1px solid white;
}

.special.theme-black th {
    background: black;
    border: 1px solid white;
}

.special.theme-black .wpcf7-form {
    border: 1px solid white;
}

.special.theme-black .dg_seo_text {
    border: 1px solid white;
}

.special.theme-black .periodicity_button {
    background: black;
}

.special.theme-black .pz-header {
    border: 1px solid white;
}

.special.theme-black .b_product_calculator {
    background: black;
}

.special.theme-black .b_product_calculator {
    border: 1px solid white;
}

.special.theme-black .b_pozcalc {
    background: black;
}

.home .figure {
    background-color: unset!important;
}

/*.special.theme-white *:not(#inc_form):not(#inc_form *) {*/
/*    color: #000;*/
/*    -webkit-filter: grayscale(100%);*/
/*    filter: grayscale(100%);*/
/*}*/

.special.theme-white * {
    color: #000;
}

.special.theme-white .box.social span,
.special.theme-white .box.social span:hover,
.special.theme-white .box.social span svg,
.special.theme-white .box.social span:hover svg,
.special.theme-white .box.social span svg circle,
.special.theme-white .box.social span svg circle:hover,
.special.theme-white .box.social span svg path,
.special.theme-white .box.social span svg path:hover,
.special.theme-white .box.social span:hover svg circle,
.special.theme-white .box.social span:hover svg circle:hover,
.special.theme-white .box.social span:hover svg path,
.special.theme-white .box.social span:hover svg path:hover {
    color: #fff !important;
    fill: #fff !important;
}

.special.theme-white .navbar .topnav > ul nav#langSwitcher ul.show li.tm_lang > a span,
.special.theme-white .accordion-item .title,
.special.theme-white .box.social.title,
.special.theme-white .box.social.title.black,
.special.theme-white .btn-tr.btn-white:hover,
.special.theme-white .collection .collection-item.active .title,
.special.theme-white .events-description ul:not(.tab-control) li ul li::before,
.special.theme-white .indicator .link,
.special.theme-white .mark,
.special.theme-white .primary,
.special.theme-white .team .item .title,
.special.theme-white .widget .indicator .value.monetary,
.special.theme-white .widget .share-buttons .btn,
.special.theme-white .widget .share-buttons .btn.btn-grey .fa,
.special.theme-white .widget-article ul:not(.tab-control) li ul li::before,
.special.theme-white .widget-organizationalStructureBoardMemberDetails ul:not(.tab-control) li ul li::before,
.special.theme-white .widget-stabilityCouncil .widget-content .tab-content .box ul:not(.tab-control) li ul li::before,
.special.theme-white .widget-textInfo ul:not(.tab-control) li ul li::before,
.special.theme-white a,
.special.theme-white a:hover,
.special.theme-white input[type=radio]:checked ~ label {
    color: #000;
}

.special.theme-white .btn-download.btd-primary,
.special.theme-white .btn-fl,
.special.theme-white .calendar-day.primary .year,
.special.theme-white .checkbox label input:checked + .check,
.special.theme-white .events-description ul:not(.tab-control) li::before,
.special.theme-white .owl-carousel.new-pagination .owl-nav div,
.special.theme-white .widget-article ul:not(.tab-control) li::before,
.special.theme-white .widget-organizationalStructureBoardMemberDetails ul:not(.tab-control) li::before,
.special.theme-white .widget-stabilityCouncil .widget-content .tab-content .box ul:not(.tab-control) li::before,
.special.theme-white .widget-textInfo ul:not(.tab-control) li::before,
.special.theme-white a.info,
.special.theme-white a.info_institution,
.special.theme-white input[type=radio]:checked + label:before {
    background-color: #000;
}

.special.theme-white .banner,
.special.theme-white .banner-big,
.special.theme-white .banner-small,
.special.theme-white .cover,
.special.theme-white img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.special.theme-white a:focus {
    border: 2px solid #000 !important;
}

.special.theme-white .btn-fl .x:after,
.special.theme-white .btn-fl .x:before,
.special.theme-white .widget .widget-content a.info,
.special.theme-white .widget .widget-title a.info,
.special.theme-white .widget .widget-title a.info_institution {
    background-color: #fff;
}

.special.theme-white .indicator .value .dir.up:before,
.special.theme-white .navbar,
.special.theme-white .widget .tab-control {
    border-bottom-color: #000;
}

.special.theme-white .btn-checkbox label input + span,
.special.theme-white .btn-radio label input + span,
.special.theme-white .navbar .submenu {
    border: 1px solid #000;
}

.special.theme-white .btn-checkbox label input:checked + span,
.special.theme-white .btn-primary.btn-tr.active,
.special.theme-white .btn-primary.btn-tr:hover,
.special.theme-white .btn-radio label input:checked + span,
.special.theme-white .navbar li .counter,
.special.theme-white .slider .item .image .slide-label,
.special.theme-white .tag-new,
.special.theme-white .tag.category,
.special.theme-white .widget .tab-control li.active a,
.special.theme-white .widget .widget-header .widget-title,
.special.theme-white .widget .widget-title a.info:after,
.special.theme-white .widget .widget-title a.info:before,
.special.theme-white .widget .widget-title a.info_institution:after,
.special.theme-white .widget .widget-title a.info_institution:before {
    background-color: #000;
    color: #fff;
}

.special.theme-white .ms-drop ul > li label:hover,
.special.theme-white .ms-drop ul > li label:focus-within {
    background: #000;
    outline: #5A73A0 solid 2px;
}

.special.theme-white .widget-select select {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#000), to(#000)),
    -webkit-gradient(linear, left top, left bottom, from(#d7d7d7), to(#d7d7d7));
    background-image: linear-gradient(#000, #000), linear-gradient(#d7d7d7, #d7d7d7);
}

.special.theme-white #header-search-form input[type=search]::-webkit-search-cancel-button {
    -webkit-filter: invert(100%) sepia(100%) saturate(0);
    filter: invert(100%) sepia(100%) saturate(0);
}

.special.theme-white .m-checkbox label input:checked + span,
.special.theme-white .m-radio label input:checked + span {
    color: #000;
    border-color: #000;
}

.special.theme-white .widget-lustration .widget-title {
    border-color: #000 !important;
}

.special.theme-white .tab-control.nav[role=tablist] li button {
    border-color: #000;
    color: #fff;
}

.special.theme-white .tab-control.nav[role=tablist] li button:focus-visible,
.special.theme-white .tab-control.nav[role=tablist] li button:hover,
.special.theme-white .tab-control.nav[role=tablist] li.active button {
    border-color: #000;
    color: #000;
    background: #fff;
}

.special.theme-white .btn-primary.social .fa-twitter:before,
.special.theme-white .btn-primary.social .fa-twitter:focus-visible:before,
.special.theme-white .btn-primary.social .fa-twitter:hover:before {
    background-color: #fff;
}

.special.theme-white #toTop:focus-visible,
.special.theme-white #toTop:hover {
    background: #fff;
}

.special.theme-white #toTop:focus-visible i,
.special.theme-white #toTop:hover i {
    color: #000;
}

.special.theme-white .details-button .fa-angle-right:before,
.special.theme-white .ms-drop ul > li label {
    color: #000;
}

.special.theme-white .social-buttons .twitter i:before,
.special.theme-white .widget-save .twitter i:before {
    background-color: #fff;
}

.special.theme-white .widget-select select::selection {
    color: #fff;
}

.special.theme-white .widget .widget-content a.info:after,
.special.theme-white .widget .widget-content a.info:before {
    background-color: #fff;
    color: #000;
}

.special.theme-white .datatable tbody th,
.special.theme-white .datatable thead th,
.special.theme-white table tbody th,
.special.theme-white table thead th {
    background-color: #000 !important;
    color: #fff;
}

.special.theme-white .datatable tbody th a.info:before,
.special.theme-white .datatable thead th a.info:before,
.special.theme-white .tag,
.special.theme-white .tag *,
.special.theme-white table tbody th a.info:before,
.special.theme-white table thead th a.info:before {
    background-color: #000 !important;
    color: #fff !important;
}

.special.theme-white .tag {
    border-left: none !important;
}

.special.theme-white .box.indicator {
    background-color: #fff;
    border: 1px solid #000;
}

.special.theme-white .owl-carousel.new-pagination .owl-dots .owl-dot.active span {
    border-width: 8px;
    border-color: #000;
}

.special.theme-white .checkbox label input:checked + .check:before {
    border-color: #fff;
}

.special.theme-white .indicator .value .dir.down:before {
    border-top-color: #000;
}

.special.theme-white .faq_accordion_item {
    border: black 1px solid;
}

.font-size-lg {
    font-size: 1.05em !important;
}

.font-size-xl {
    font-size: 1.1em !important;
}

.inc_form_cancel {
    cursor: pointer;
}

@media (min-width: 767px) {
    #tp_footer_links-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    #tp_footer_links-container a {
        flex-shrink: 0;
    }
}

@media (min-width: 768px) {
    .bp_btn_eye .fa {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .bp_btn_eye .fa {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .antifraud_form {
        background-color: #f8f9fa;
        border: 1px solid #f8f9fa;
        border-radius: 20px;
        padding: 20px;
    }

    .antifraud_form-container {
        display: flex;
        justify-content: space-around;
    }

    .antifraud_form-image {
        margin-top: 30px;
    }

    .antifraud_form-image img {
        border-radius: 20px;
    }

    .feedback_form_inner .wpcf7-form-control {
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .antifraud_form {
        background-color: #f8f9fa;
        border: 1px solid #f8f9fa;
        border-radius: 20px;
        padding: 20px;
    }

    .antifraud_form-container {
        display: flex;
        flex-direction: column;
    }

    .antifraud_form-image {
        margin-top: 30px;
    }

    .antifraud_form-image img {
        height: 100%;
        width: 100%;
        border-radius: 20px;
    }

    .feedback_form_inner .wpcf7-form-control {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .tp_modal_body table {
        line-height: 14px;
    }
}

.pz-header__toggler {
    height: 40px;
}

.pz-header__toggler label {
    cursor: pointer;
    width: auto;

    border: unset;
    border-radius: unset;

    padding: unset;

}

.pz-header__toggler input[type="checkbox"] {
    display: none;
}

.navicon:before {
    display: none;
}

.navicon:after {
    display: none;
}

.navbar .navbar-content {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.navbar .navbar-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pz-header__toggler input[type="checkbox"]:checked + label + .navbar .navbar-content {
    display:block;
    transform: translateX(-100%);
}

.pz-header__toggler input[type="checkbox"] + label + .navbar .navbar-content {
    display: none;
}

.pz-header__toggler input[type="checkbox"]:checked + label + .navbar .navbar-overlay {
    pointer-events: auto;
    opacity: 1;
}

.pz-header__toggler input[type="checkbox"]:checked + label + .navbar {
    pointer-events: auto;
}

.pz-header__toggler input[type="checkbox"]:checked ~ body {
    overflow: hidden;
}

.no-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

.close-button {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}
.close-button::before {
    transform: translateY(-50%) rotate(45deg);
}

.close-button::after {
    transform: translateY(-50%) rotate(-45deg);
}

.close-container {
    position: relative;
    padding: 0px 10px;
    border-radius: 5px;
    right: 30px;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.close-container label {
    display: block;
    margin-bottom: 0px;
    width: 100%;
    height: 100%;
}


@media(max-width: 426px){
    .close-container{
        right: 45px;
    }
}

@media(max-height: 645px)
{
    .close-container{
        right: 15px;
    }
}

@media(max-width: 376px){
.close-container{
    right: 0px;
}
}

@media(max-width: 376px), (max-height: 645px){
    .close-container{
        right: 0px;
    }
}

@media(max-height: 645px)
{
    .close-container{
        right: 15px;
    }
}

@media(max-width: 376px){
    .close-container{
        right: 0px;
    }
}


.btn-first-nav-item {
    margin-bottom: 15px;
}

.load-more-container .white {
    margin-bottom: 20px;
}
.review_content_header{
    display: flex;
    justify-content: space-between;
}

.reviews-title{
    margin-top: 15px;
}

.review_name{
    font-weight: 700;
    font-size: 18px;
}

/* Пагинация отзывов */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.reviews-pagination a,
.reviews-pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #EF6128;
    transition: background 0.2s, color 0.2s;
}

.reviews-pagination a:hover {
    background: #EF6128;
    color: #fff;
}

.reviews-pagination span.current {
    background: #EF6128;
    color: #fff;
    border-color: #EF6128;
}

.reviews-pagination a.page-prev,
.reviews-pagination a.page-next {
    font-weight: bold;
}

.review_form_item{
    margin-top: 15px;
}

.star-rating {
    direction: rtl; /* чтобы 5-я звезда была слева */
    display: inline-flex;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 24px;
    color: #909791;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked ~ label i,
.star-rating label:hover ~ label i,
.star-rating label:hover i {
    color: #FFA526; /* закрашенные */
}

.review_name_input {
    font-size: 18px;
}

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.modal-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 30px 50px;
    border-radius: 8px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 90%;
}

.modal-content p {
    margin: 0 0 20px 0;
    font-weight: 600;
    font-size: 16px;
}

/* Крестик закрытия */
.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* Кнопка закрытия */
#review-modal-btn {
    margin-top: 15px;
    background-color: #EF6128;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#review-modal-btn:hover {
    background-color: #d2541f;
}

.required {
    color: red;
    font-weight: bold;
}

.review-reply {
    margin-left: 30px; /* смещение вправо */
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #EF6128;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.reply-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.reply-content {
    display: flex;
    width: 100%;
}

.reply-body {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.review-text{
    margin-top: 5px;
    margin-bottom: 10px;
}

.review-reply .reply-header {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.review-reply .reply-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.review-reply .reply-name {
    font-weight: bold;
    color: #EF6128;
}

.review-reply .reply-text {
    margin: 0;
}


.review_city_and_name{
    display: flex;
}

.review_city{
    position: relative;
    top: 3px;
    left: 15px;
    color: #EF6128;
    font-size: 14px;
}

.reply-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.reply-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    position: relative;
}
.reply-modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.reply-to-review-btn {
    background: none;
    border: none;
    color: #2271b1; /* стандартный WP-синий */
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.reply-to-review-btn:hover {
    color: #135e96;
    text-decoration: none;
}

.create-reply-modal-btn {
    margin-top: 15px;
}

.reply-modal-input {
    font-size: 15px;
}

.reply-to-admin {
    margin-top: 10px;
    margin-left: 50px;
}

.admin-reply-item {
    padding: 15px;
    margin-top: 5px;
    border-radius: 5px;
    border:solid 1px #EF6128;
}

.reply-feedback {
    margin-top: 15px;
}

.user-reply-item {
    border-radius: 5px;
    border:solid 1px #EF6128;
    padding: 15px;
    margin-top: 10px;
}

.toggle-comments-btn {
    background: none;
    border: none;
    color: #EF6128; /* стандартный WP-синий */
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
    padding: 0;
}

.review-comments-container {
    margin-top: 10px;
    border-left: 2px solid #ddd;
    padding-left: 10px;
}

.toggle-comments-btn:hover {
    background: #e0e0e0;
}
.link-to-mobile {
    padding: 0 5px;
    height: 125px;
}

.link-to-mobile img {
    margin: 0 auto;
}

.link-to-mobile.app-store {
    padding-left: 30px;
}

@media (max-width: 767px) {
    .link-to-mobile {
        width: 100%;
        margin: 10px 0;
    }
    .link-to-mobile.app-store {
        padding-left: unset;
    }
}

.pz-calc-links .native_link_container-full {
    flex-basis: calc(100% - 10px);
    max-width: 100%;
}
