.bt2 .tn-atom {
  backdrop-filter: blur(10px) !important;
    background: rgba(46, 46, 46, 0.6) !important;
}


.dashed a {
    text-decoration: underline!important;
    text-decoration-style: dashed!important;
}

.dashed a:hover {
    text-decoration-style: solid !important;
}

.head_menu a:hover, .head_menu .t-active {
        color: #03a535 !important;
}


.moby_menu a:hover, .moby_menu .t-active {
        color: #2E2E2E !important;
}

.t-popup__container {
    border-radius: 8px;
}


.t-feed__col-grid__post-wrapper {
    border-radius: 8px;
}


.t-feed__col-grid__post-wrapper .t-feed__post-bgimg {
    border-radius: 8px;
}



.t-store .t-container {
    max-width: 1380px !important;
}

.t-store .t-col_4 {
    max-width: 420px !important;
}

.t-store__card__bgimg, .t-store__card__bgimg_second {
        border-radius: 9px;
}


.uc-abonem .t786__descr {
    background: #03a535;
    display: inline-block;
    color: #fff;
    padding: 2px 20px 3px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
}


@media screen and (min-width: 1440px) {
.t786__container {
        max-width: 1384px!important;
}
}

@media screen and (min-width: 480px) {
    .t786__price_old {
        font-size: 20px!important;
        font-weight: 600!important;
    }
}

.tour_img .tn-atom:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%; /* одна треть высоты */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-radius: 0 0 9px 9px;
}


       .wave_btn .tn-atom{
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

        .wave_btn .tn-atom:before {
            content: '';
            position: absolute;
            top: -50%;
            left: 0;
            width: 160px;
            height: 120px;
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 0 100px rgba(255,255,255,.35);
            pointer-events: none;
            background: rgba(255, 255, 255, .35);
            animation: wave-animation 3s infinite; /* Увеличиваем продолжительность анимации */
        }

        @keyframes wave-animation {
            0% {
                opacity: 1;
                transform: scale3d(.2,.2,1);
            }
            40% {
                opacity: 0;
                transform: scale3d(1.1,1.1,1);
            }
            90% {
                opacity: 0; /* Оставляем элемент невидимым */
                transform: scale3d(1.1,1.1,1);
            }
            100% {
                opacity: 0; /* Оставляем элемент невидимым */
                transform: scale3d(1.1,1.1,1);
            }
        }