.policy--text {
    font-size: 14px;
}
.policy--text a{
    color: #6197E5;
    text-decoration: underline;
}
.footer__block .text--white a {
    text-decoration: underline;
}
button{
    cursor: pointer;
}

.documents-slider .swiper-slide {
    cursor: pointer;
}

.plans-item__content strong {
    font-weight: 700;
}
.iti__country-list {
    max-width: 520px;
    overflow-x: hidden;
}
@media screen and (max-width: 600px) {
    .iti__country-list {
        max-width: 80%;
        overflow-x: hidden;
    }
}
.clbck__popup__form__title {
    text-transform: uppercase;
    font-size: 26px;
}



.checkbox {
    border: 1px solid #0e0e0e;
    width: 20px;
    height: 20px;
    background: #fff;
    background-image: url("../image/check.svg");
    -webkit-transition: border 0.3s ease, background-color 0.3s ease;
    -o-transition: border 0.3s ease, background-color 0.3s ease;
    transition: border 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    /* stylelint-disable-next-line order/order */
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
}
.checkbox:checked {
    background-color: #6197e5;
}
.checkbox:hover {
    border-color: #6197e5;
}

.form__block--checkbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    opacity: 1;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.form__block--promocode {
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}

.form__block--hide {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.form__block--block {
    display: block;
}

.form__block--show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}






/* ===== REVIEWS ===== */
.plugin__reviews {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.plugin__reviews__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111;
}

/* Slider */
.plugin__reviews__slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.plugin__reviews__slide {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    box-sizing: border-box;
    height: auto;
}

.plugin__reviews__slide__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.plugin__reviews__slide__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plugin__reviews__slide__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.plugin__reviews__slide__author {
    font-weight: 600;
    font-size: 15px;
    color: #111;
}

.plugin__reviews__slide__date {
    font-size: 12px;
    color: #9ca3af;
}

.plugin__reviews__slide__text {
    font-size: 14px;
    line-height: 1.65;
    color: #374151;
    white-space: pre-line;
}

/* Nav */
.plugin__reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.plugin__reviews__btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.plugin__reviews__btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.plugin__reviews__pagination {
    display: flex;
    gap: 6px;
}

.plugin__reviews__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.plugin__reviews__pagination .swiper-pagination-bullet-active {
    background: #2563eb;
    transform: scale(1.3);
}

/* Empty */
.plugin__reviews__empty {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Notice */
.plugin__reviews__notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #166534;
}

/* Form */
.plugin__reviews__form-wrap {
    margin-top: 32px;
}

.plugin__reviews__form-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.plugin__reviews__form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .plugin__reviews__form__row--two {
        grid-template-columns: 1fr;
    }
}

.plugin__reviews__form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.plugin__reviews__form__field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.plugin__reviews__form__field label span {
    color: #ef4444;
}

.plugin__reviews__form__field input,
.plugin__reviews__form__field textarea {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #111;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    resize: vertical;
}

.plugin__reviews__form__field input:focus,
.plugin__reviews__form__field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}




#ym-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 99998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 28px;
    animation: ymFadeIn .25s ease;
}

#ym-overlay.is-visible {
    display: flex;
}


#ym-overlay {

}
@keyframes ymFadeIn { from{opacity:0} to{opacity:1} }
@keyframes ymFadeOut { from{opacity:1} to{opacity:0} }
@keyframes ymSlideUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

#ym-popup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    padding: 20px 24px;
    max-width: 820px;
    width: calc(100% - 32px);
    display: flex;
    align-items: center;
    gap: 20px;
    animation: ymSlideUp .3s cubic-bezier(.22,.68,0,1.15);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

#ym-popup p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #333;
    flex: 1;
}
#ym-popup a {
    color: #6197e5;

}
#ym-accept {
    white-space: nowrap;
    padding: 10px 22px;
    background: #6197e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
    flex-shrink: 0;
}
#ym-accept:hover { background: #3b6bb0; }
#ym-accept:active { transform: scale(.97); }

@media (max-width: 480px) {
    #ym-popup { flex-direction: column; align-items: stretch; gap: 14px; }
    #ym-accept { width: 100%; text-align: center; }
}