.tv_item {

    display: flex;

    align-items: center;

    gap: 10px;

}

.tv_info {

    display: flex;

    align-items: center;

    gap: 12px;

}

.tv_name,

.tv_desc {

    display: inline-block;

}











#tariffsContainer {

    display: grid;

    grid-template-columns: repeat(4, minmax(280px, 1fr));

    gap: 24px;

    align-items: start;

}
@media (max-width: 1100px) {

    #tariffsContainer {

        grid-template-columns: repeat(2, minmax(280px, 1fr));

    }

}
@media (max-width: 768px) {

    #tariffsContainer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .price_row {

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 10px;
            flex-direction: column;

    }

}



/* cookie*/
#cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 15px;

    max-width: 320px;

    background: #ffffff;
    color: #222;

    padding: 12px 14px;

    border-radius: 14px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);

    z-index: 99999;

    font-size: 14px;
    line-height: 1.4;
}


#cookie-ok {
    margin-top: 10px;

    background: #00b956;
    color: white;

    border: none;
    border-radius: 10px;

    padding: 8px 14px;

    cursor: pointer;

    font-size: 14px;
    font-weight: bold;
}

#cookie-ok:hover {
    background: #00994a;
}


#cookie-close {

    position: absolute;

    top: 8px;

    right: 10px;

    border: none;

    background: transparent;

    font-size: 16px;

    cursor: pointer;

    color: #777;

}

#cookie-close:hover {

    color: #000;

}


.otsrup_har {
    margin: 0px;
}




html,
body {
    max-width: 1480px;
    margin: 0 auto;
    font-family: 'Rubik', sans-serif;
}

@media (max-width: 768px) {

    html,
    body {
        font-size: 16px;
        padding: 5px;
    }
}




.divider {
    position: relative;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: lightgray;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .divider {
        position: relative;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: lightgray;
        margin: 0px 0;
        border: none;
        border-radius: 5px;
    }
}


.openRegionMenu {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: rgb(4, 169, 59);
    /* Синий фон */
    color: #fff;
    /* Белый текст */
    border: none;
    /* Без рамки */
    padding: 10px 20px;
    /* Отступы */
    font-size: 16px;
    /* Размер шрифта */
    border-radius: 8px;
    /* Скругление углов */
    cursor: pointer;
    /* Курсор при наведении */
    transition: background-color 0.3s ease;
    /* Плавный hover */
}

@media (max-width: 768px) {
    .openRegionMenu {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: rgb(4, 169, 59);
        /* Синий фон */
        color: #fff;
        /* Белый текст */
        border: none;
        /* Без рамки */
        padding: 10px 20px;
        /* Отступы */
        font-size: 16px;
        /* Размер шрифта */
        border-radius: 8px;
        /* Скругление углов */
        cursor: pointer;
        /* Курсор при наведении */
        transition: background-color 0.3s ease;
        /* Плавный hover */
    }

}





.openRegionMenu:hover {
    background-color: rgb(1, 145, 49);
    /* Темнее при наведении */
}

.openRegionMenu:active {
    background-color: rgb(2, 95, 33);
    /* Еще темнее при нажатии */
}

.openRegionMenu:focus {
    outline: none;
    /* Убираем стандартную рамку */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    /* Кастомное выделение */
}



.openRegionMenu_yes {
    background-color: rgb(4, 169, 59);
    /* Синий фон */
    color: #fff;
    /* Белый текст */
    border: none;
    /* Без рамки */
    padding: 10px 20px;
    /* Отступы */
    font-size: 16px;
    /* Размер шрифта */
    border-radius: 8px;
    /* Скругление углов */
    cursor: pointer;
    /* Курсор при наведении */
    transition: background-color 0.3s ease;
    /* Плавный hover */
}

.openRegionMenu_yes:hover {
    background-color: rgb(1, 145, 49);
    /* Темнее при наведении */
}

.openRegionMenu_yes:active {
    background-color: rgb(2, 95, 33);
    /* Еще темнее при нажатии */
}

.openRegionMenu_yes:focus {
    outline: none;
    /* Убираем стандартную рамку */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
    /* Кастомное выделение */
}








/* Шапка*/



.ubrat_stil_botn {
    all: unset;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ubrat_stil_botn {
        all: unset;
        cursor: pointer;
        margin-bottom: 5px;
    }
}




/* Стили для всех кнопок */
.dom_int_mob {
    background-color: rgb(4, 169, 59);

    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, border 0.3s;
    /* Плавные переходы */
}

/* Стили для кнопки, когда она выбрана (класс 'selected') */
.dom_int_mob.selected {
    background-color: #c300ffb3;
    color: white;
}

/* Стили для кнопки, когда она не выбрана (класс 'deselected') */
.dom_int_mob.deselected {
    background-color: rgb(4, 169, 59);
    color: #ffffff;

}

/* Дополнительные эффекты для кнопок при наведении */
.dom_int_mob:hover {
    background-color: #c300ffb3;

}

#container1 {
    display: block;
    opacity: 1;
    transform: scale(1);
    align-items: center;
}


.container {
    display: none;
    /* По умолчанию скрыты */


    opacity: 0;
    /* Начальное состояние */
    transform: scale(0.95);
    /* Лёгкое уменьшение */
    transition: opacity 0.5s ease, transform 0.3s ease;
}


.navig_page {
    padding: 1%;
}

.glav_nadp {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    color: #434343;
}

.glav_nadp:hover {
    color: #333;
    border-bottom: 2px solid black;
}







.conteyner_header2 {
    box-sizing: content-box;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}





@media (max-width: 768px) {


    .conteyner_header2 {
        box-sizing: content-box;
        margin: 0 auto;
        padding-left: 0px;
        padding-right: 0px;
    }

}


@media (max-width: 768px) {

    .con_logo_mf {
        transform: scale(0.6) translateX(-20%);
        /* Смещаем влево на 50% от текущего положения */
    }
}


.head_nadp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0px;
    padding-bottom: 0px;
}

@media (max-width: 768px) {
    .head_nadp {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: -25px;
        /* Вместо padding, используем margin для отрицательных значений */
        margin-bottom: -25px;
    }
}


.mf_logo {
    height: 26px;
    min-height: 26px;
}

.noom_obl {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


@media (max-width: 768px) {


    .noom_obl {


        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center
    }
}

.noom {
    display: flex;

}


@media (max-width: 768px) {

    .noom {
        display: flex;
        justify-content: center;
    }
}

/*реклама в шапке*/
.cont_zel_wrapper {

    padding-left: 80px;
    padding-right: 80px;
}

@media (max-width: 768px) {
    .cont_zel_wrapper {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.cont_zel {
    font-weight: bold;

    padding-right: 80px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background-color: #00b956;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .cont_zel {
        font-weight: bold;

        padding-left: 0px;
        padding-right: 0px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        background-color: #00b956;
        border-radius: 20px;
        /* Устанавливает закругление для всех углов */
        display: flex;
        justify-content: center;
        align-items: center;
        justify-content: space-between;
        gap: 5px;
        flex-direction: column;
    }
}











.rek_photo_img {
    padding-right: 30px;
    width: 300px;
    height: 300px;
}

@media (max-width: 768px) {
    .rek_photo_img {
        padding-right: 0px;
        width: 170px;
        height: 170px;
    }
}


.rek_text1 {
    font-size: 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: center;
}


@media (max-width: 768px) {

    .rek_text1 {
        font-size: 20px;
        color: #ffffff;
        display: flex;
        justify-content: center;
    }

}


.rek_text2 {
    font-size: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    text-align: center;
}


@media (max-width: 768px) {

    .rek_text2 {
        font-size: 15px;
        color: #ffffff;
        display: flex;
        justify-content: center;

    }
}

.cont_rek_botn_podk {
    color: white;
    font-weight: bold;
    background-color: #c300ffb3;
    border-radius: 25px;
    padding: 15px;
    /* Увеличит контейнер на 5px со всех сторон */
}


.cont_rek_botn_podk:hover {
    background-color: #9333a4;
}

.rek_botn_podr:hover {
    color: rgba(34, 0, 114, 0.5);
}


/*регион тарифов*/
.obshiuy_cont {

    margin: 10px;
}

.cont_tar_reg {
    margin: 10px;
}

.tip_tar_cont {

    gap: 20px
}


@media (max-width: 768px) {

    .tip_tar_cont {

        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

}

.dom_int_mob,
.dom_int {
    display: flex;
    font-weight: bold;
    padding: 15px;

    background-color: #c300ffb3;
    border-radius: 25px;
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {

    .dom_int_mob,
    .dom_int {
        font-weight: normal;
        display: flex;
        padding: 8px;

        background-color: #c300ffb3;
        border-radius: 15px;
        color: #ffffff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }


}


.dom_int_mob_g,
.dom_int_g {
    display: flex;
    padding: 15px;

    background-color: #c300ffb3;
    border-radius: 25px;
    color: #ffffff;
}





/* Основной стиль */
.line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 равные колонки */
    gap: 1%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .line {
        display: block;
        margin-top: 0px;
        max-width: 400px;
        margin: auto;
    }
}

.box {
    display: flex;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid black;
    text-align: center;
    border-radius: 20px;

}


@media (max-width: 768px) {


    .box {
        display: flex;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid black;
        text-align: center;
        border-radius: 20px;
        margin-top: 10px;

    }

}


.box_otst {
    display: flex;
    width: 100%;

    border-radius: 20px;
    flex-direction: column;
    /* Это важно для вертикального расположения элементов */
}


.box_top_cont {

    width: 100%;
    color: rgb(35, 35, 35);
    background: linear-gradient(250.19deg, #cfcdf9 25.18%, #c1f9d9 74.83%);
    border-radius: 20px;
}

.box_top_contt {
    width: 100%;
    background-color: #28a745;
    border-radius: 20px;
    color: rgb(255, 255, 255);
}

.box_top_cont_otst_cont {
    padding: 2%;
}

@media (max-width: 768px) {
    .box_top_cont_otst_cont {
        padding: 0%;
    }
}



.tarif_name {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    /* исправлено */
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    .tarif_name {
        font-size: 17px;
        line-height: 1.2;
        /* тоже исправлено */
    }
}




/* Карточка параметров тарифа */
.card_cpnt {
    display: flex;
    flex-direction: column;

    justify-content: left;

    align-items: flex-start;


    width: 98%;

    margin: auto;
    height: 100%;

    text-align: center;

}



.znach_text {
    display: flex;
    justify-content: left;
    align-items: center;


}

.znach {
    width: 35px;
    height: 35px;
    gap: 20px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 768px) {

    .znach {
        width: 25px;
        height: 25px;
        gap: 20px;
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


}


/* Цена и подключение*/

.cont_prise_pod {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2% 0;
}


@media (max-width: 768px) {
    .cont_prise_pod {
        display: flex;
        
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
}



@media (max-width: 768px) {

    .price-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

}







.cont_ptise_dotn_podrob {
    margin-top: auto;

    display: flex;
    width: 100%;
    flex-direction: column;

    justify-content: center;

}

.strikethrough {
    position: relative;
    display: inline-block;
    font-size: 25px;

}

@media (max-width: 768px) {

    .strikethrough {
        position: relative;
        display: inline-block;
        font-size: 16px;

    }

}



.strikethrough::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: red;
    transform: rotate(-15deg);
}

.price-text {
    font-size: 20px;
    

}


@media (max-width: 768px) {

    .price-text {
        font-size: 16px;
        display: flex;
    flex-direction: column;
        align-items: center;

        justify-content: center;
    }

}



.price {
    font-size: 35px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 7px;
    white-space: nowrap;
    /* <--- добавили */
}

@media (max-width: 768px) {
    .price {
        font-size: 20px;
        font-weight: bold;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        /* <--- и здесь тоже */
    }
}



.cont_skorost {

    display: flex;

    justify-content: center;

    width: 100%;

}

.skorost_otst_2blok {

    display: flex;

    justify-content: center;

    margin: 0 auto;

}

.cont_2botn {

    display: grid;

    grid-template-columns: repeat(2, auto);

    gap: 10px;

    justify-content: center;

    width: fit-content;

    font-weight: bold;

}



.skor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    cursor: pointer;
}


.skor.active {
    background-color: #c300ffb3;
    color: white;
}

/* .skor.selected {
    background-color: #c300ffb3;
    color: white;
} */


.skor {
    padding: 10px 20px;
    background-color: #249000;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.skor:hover {
    background-color: #c300ffb3;
}

@media (max-width: 768px) {
    .skor {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 30px;
        cursor: pointer;
    }


    .skor.active {
        background-color: #c300ffb3;
        color: white;
    }

    /* .skor.selected {
        background-color: #c300ffb3;
        color: white;
    } */


    .skor {
        padding: 10px 30px;
        background-color: #249000;
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 15px;
        font-size: 15px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .skor:hover {
        background-color: #c300ffb3;
    }
}




/* Подключение и подробнее*/

.podcl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.botn_podkl {
    font-weight: bold;
    padding: 10px 20px;
    background-color: #249000;
    color: #fff;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.botn_podkl:hover {
    background-color: #7bff00;
}


.podrobn_podcl {
    display: flex;

    width: 100%;

}

.podrobnee {

    color: #007bff;
    text-decoration: none;
    border-bottom: 2px dotted #007bff;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 2px;
    display: inline-block;
    margin: 10px auto;
}

.podrobnee:hover {
    color: #0ad41b;
    border-bottom: 2px dotted #0ad41b;
}



/* ПЕРСОНАЛЬЫНЙ ТАРИФ */

.cont_for_rashir {
    display: flex;
    justify-content: center;


    width: 80%;

    margin: auto;
}

.internet-offer {
    margin-top: 10px;
    justify-content: center;
    padding: 20px;
    text-align: center;

    margin-bottom: 20px;
    /* Отступ снизу */
}



@media (max-width: 768px) {

    .internet-offer {
        margin-top: 5px;
        justify-content: center;
        padding: 0px;

        text-align: center;

        margin-bottom: 0px;
    }


}

.internet-offer_2 {
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    color: #ffffff;
}

.purpul {
    color: #a100d8
}

.internet-offer h3 {

    font-weight: bold;
}

.internet-offer input {
    width: 30%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}


@media (max-width: 768px) {

    .internet-offer input {
        width: auto;
        padding: 10px;
        margin-top: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }


}




.internet-offer button {
    font-weight: bold;
    font-size: 20px;
    width: 80%;
    padding: 10px;
    margin-top: 10px;
    background-color: #a100d8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.zvezdochca {
    font-size: 12px;
}


.internet-offer button:hover {
    background-color: #c300ffb3;
}

#responseMessage {
    margin-top: 10px;
    font-size: 14px;
    color: green;
}







.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.message-box {
    background: white;
    padding: 30px;
    /* Увеличим отступы внутри */
    border-radius: 15px;
    /* Сделаем рамку чуть плавнее */
    font-size: 22px;
    /* Чуть больше текста */
    text-align: center;
    color: #333;
    position: relative;

    width: 50%;

}

@media (max-width: 768px) {
    .message-box {
        background: white;
        padding: 30px;
        border-radius: 15px;
        font-size: 16px;
        text-align: center;
        color: #333;
        position: relative;

        width: 100%;

    }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: none;
}

.cont_imya_tel {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cont_imya_tel {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        width: 80%;
        margin: 0 auto;
    }
}








.cont_imya,
.cont_tel {
    display: flex;
    flex-direction: column;
    font-size: 25px;
    font-weight: bold;
    align-items: flex-start;
}

@media (max-width: 768px) {

    .cont_imya,
    .cont_tel {
        display: flex;
        flex-direction: column;
        font-size: 15px;
        font-weight: bold;
        align-items: flex-start;
    }


}


label {
    font-size: 16px;
    margin-bottom: 5px;
}

input {
    
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 16px;
}


@media (max-width: 768px) {
    input {
        
        border: 2px solid #333;
        border-radius: 5px;
        font-size: 16px;
    }
}




.connect-btn {
    font-weight: bold;
    width: 60%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.connect-btn:hover {
    background-color: #218838;
}



.shag_bool {
    display: flex;
    font-weight: bold;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
}




.cont_for_3top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 1%;
    align-items: stretch;
}



@media (max-width: 768px) {

    .cont_for_3top {

        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 1%;
        align-items: stretch;
        flex-direction: column;
    }




}



.cont_iz3 {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .cont_iz3 {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 5px;
        border-radius: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    }

}






.circle {
    width: 60px;
    height: 60px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    justify-content: center;

    align-items: center;

}


.footer {

    background: rgb(36, 38, 37);

    color: #fff;

    width: 100vw;

    position: relative;

    left: 50%;

    transform: translateX(-50%);

    padding: 20px 0;

}

.cont_footer {
    max-width: 1480px;
    margin: 0 auto;
    height: 100%;
    padding-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
}

@media (max-width: 768px) {
    .cont_footer {
        padding-bottom: 20px;


        padding-left: 5px;
        padding-right: 5px;
    }
}



.logo_and_inf {
    display: flex;

    gap: 1%;
    list-style: none;
}

@media (max-width: 768px) {
    .logo_and_inf {
        display: flex;
        margin-bottom: 10px;

        gap: 1%;
        list-style: none;
    }

}







.ligo_mf_dovn {
    display: flex;
}

.inf_site {
    display: flex;
    justify-content: space-between;
    max-width: 60%;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .inf_site {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        margin-top: 20px;
    }

}


.cont_text_inftel_and_tel {
    display: flex;

    flex-direction: column;
}

.cont_text_inftel {
    display: flex;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .cont_text_inftel {
        display: flex;
        font-size: 15px;
        font-weight: bold;
    }

}











.inf_site_cookies {
    font-size: 15px;
    text-align: justify;

}

@media (max-width: 768px) {

    .inf_site_cookies {

        font-size: 15px;
        text-align: justify;

    }


}

/* Основной стиль для ссылки */
.href_for_policy {
    color: #c8c8c8;
    text-decoration: none;
}

/* Стиль для ссылки при наведении */
.href_for_policy:hover {
    text-decoration: underline;
}



.tariff-helper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tariff-helper__box {
    margin-top: 10px;
    background-color: #00b956;
    border-radius: 20px;
    color: #fff;
    padding: 20px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.tariff-helper__reset-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background 0.3s;
}

.tariff-helper__reset-btn:hover {
    background-color: #ffffff22;
}

.tariff-helper__title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.tariff-helper__desc {
    margin: 5px 0;
}

.tariff-helper__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.tariff-helper__btn {
    padding: 10px 15px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.tariff-helper__btn.violet {
    background-color: #c300ffb3;
    color: #fff;
}

.tariff-helper__btn.violet:hover {
    background-color: #a100d8;
}

.tariff-helper__btn.white {
    background-color: #ffffff;
    color: #00b956;
}

.tariff-helper__btn.white:hover {
    background-color: #e6f6ee;
}

.tariff-helper__content {
    margin-top: 20px;
}

.tariff-helper__form-btn {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    color: #00b956;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.tariff-helper__form-btn:hover {
    background-color: #e6f6ee;
}


.botn_phone-form {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(135deg, #a100d8, #6c00ff);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    text-align: center;
}

.botn_phone-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.botn_phone-form:active {
    transform: scale(0.96);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}


.toggle-container_ind {
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
    margin: 5px 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nemnog_temnee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eeeeee;
    padding: 16px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nemnog_temnee:hover {
    background-color: #e0e0e0;
}

.left_spec_black {
    display: flex;
    justify-content: space-between;
    /* Добавить */
    align-items: center;
    width: 100%;
    /* Добавить */
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.right_spec {
    display: flex;
    align-items: center;
}

.toggleBtn {
    background: #5ec954;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggleBtn::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.toggleBtn.active::before {
    transform: rotate(225deg);
}

.menu_ne_green {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.menu_ne_green.open {
    max-height: 10000px;
    padding: 16px 20px;
}

.menu_ne_green p {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: #333;
}

.document_cont {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .document_cont {
        padding: 0 10px;
    }

    .left_spec_black {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 18px;
        font-weight: bold;
        margin: 0;
    }
}


.pdf-link-button {
    display: block;
    margin-bottom: 10px;
}

/* === Стилизация выпадающего меню регионов === */
.regionMenu {
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(40, 185, 60, 0.10);
    padding: 8px 0;
    margin-top: 6px;
    z-index: 1000;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s;
}

.regionMenu .regionOption {
    padding: 12px 24px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    color: #222;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    text-align: left;
}

.regionMenu .regionOption:hover,
.regionMenu .regionOption:focus {
    background: #e8fbe9;
    color: #28b93c;
}

.regionMenu .regionOption.selected {
    background: #28b93c;
    color: #fff;
}

@media (max-width: 768px) {
    .regionMenu {
        min-width: 90vw;
        max-width: 98vw;
        left: 50% !important;
        transform: translateX(-50%);
        font-size: 17px;
        padding: 6px 0;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
        margin-top: 10px;
    }

    .regionMenu .regionOption {
        padding: 18px 10px;
        font-size: 17px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .regionMenu .regionOption:last-child {
        border-bottom: none;
    }
}

#regionConfirmBar {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

@media (max-width: 768px) {
    #regionConfirmBar {
        font-size: 16px;
    }
}











.text-mobile {
    display: none;
}

@media (max-width: 768px) {
    .text-desktop {
        display: none;
    }

    .text-mobile {
        display: inline;
    }
}