#panel {
    opacity: .1;
    transition: .75s;
    z-index: 3;
}
#panel:hover {
    opacity: 1;
    transition: .75s;
}
body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1, h2, h3, h4, h5, p {
    margin: 0;
}
h1, .h1-like {font-size: clamp(26px, 3vw, 50px); line-height: 125%; font-weight: 400;}
h2, .h2-like {font-size: clamp(28px, 3vw, 40px); line-height: 125%; font-weight: 400;}
h3, .h3-like {font-size: clamp(16px, 2vw, 28px); line-height: 130%; font-weight: 400;}
h4, .h4-like {}
h5, .h5-like {}
p {font-weight: 300; line-height: 125%; b {font-weight: 400;}}
button {
    border: none;
    outline: none;
    font-family: "Ubuntu", sans-serif;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.column-flex {
    flex-direction: column;
}
.spbw {
    justify-content: space-between;
}
.container {
    width: clamp(380px, 73vw, 1398px);
    margin: 0 auto;
}
.content-section {
   margin-bottom: 100px;
}
a {
    color: inherit;
    text-decoration: none;
}
.burger-menu{
    display: none;
}
header {
    gap: 15px;
}
.header-line {
    align-items: center;
    gap: 30px;
}
.city-select {
    position: relative;
    width: fit-content;
    font-family: inherit;
    gap: 10px;
}

.city-select__trigger {
    width: 100%;
    height: auto;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border: none;
	background: transparent;
	gap: 10px;
}

.city-select__value {
    font-size: 18px;
    font-weight: 400;
}

.city-select__icon {
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000' fill='none'/%3E%3C/svg%3E")
        center / contain no-repeat;
    transition: transform 0.25s ease;
}

/* Поворот иконки */
.city-select.is-open .city-select__icon {
    transform: rotate(180deg);
}

/* Выпадающий список */
.city-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    z-index: 20;
}

.city-select.is-open .city-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-select__dropdown li {
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
}

.city-select__dropdown li:hover {
    background: #f5f5f5;
}
.header-dops {
    align-items: center;
    gap: 20px;
}
.logo {
    max-width: 200px;
    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}
.search-field {
    position: relative;
    flex: 1;
    max-width: 70%;
}
.search-field__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23999' stroke-width='2' fill='none'/%3E%3Cline x1='16.65' y1='16.65' x2='21' y2='21' stroke='%23999' stroke-width='2'/%3E%3C/svg%3E")
        center / contain no-repeat;
}
.search-field .search-suggest {
    padding-left: 42px;
    height: 44px;
    width: 100%;
    border: none;
    color: #9E9E9E;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}
.header-nav {
    gap: 40px;
    flex-wrap: nowrap;
    .city-select__trigger {
	gap: 10px;
	flex-wrap: nowrap;
	width: fit-content;
	transition: all .75s;
   }
	.city-select__trigger:hover {
      	  color: #46B3DE;
    	}
}
.header-socials {
    gap: 20px;
    .social-link {
	background: #9E9E9E;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }
}
.header-contacts {
    gap: 20px;
    align-items: center;
}
.blue-btn, .btn-primary {
    padding: 16px 34px;
    background: #46B3DE;
    border-radius: 30px;
	border: 1px solid #46B3DE;
    color: #FFF;
	transition: .75s;
cursor: pointer;
}
.blue-btn:hover {
    background: transparent;
	color: #46B3DE;
	transition: .75s;
}
.btn {
   padding: 16px 34px;
    border-radius: 30px;
    border: 1px solid #46B3DE;
    background: #fff;
    color: #3fa9f5;
    cursor: pointer;
	transition: .75s;
}
.btn:hover {
    background: #46B3DE;
	color: #FFF;
	transition: .75s;
}
.social-link {
transition: .75s;
}
.social-link:hover {
transform: scale(1.2);
transition: .75s;
}
.header-lk {
    display: flex;
    gap: 10px;
}
.header-lk::before {
    content: "";
background: url(/local/templates/estetica-new/includes/profile-circle.svg);
    background-size: cover;
    width: 18px;
    
}
.main-about-content {
    width: 100%;
    gap: 40px;
}
.mainAboutSwiperBox {
    width: calc((100% - 40px) / 2);
    gap: 20px;
}
.mainAboutText {
    width: calc((100% - 40px) / 2);
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}
.main-est__announce {
    font-weight: 300;
    line-height: 125%;
    b {font-weight: 400;} 
}
.mainAboutSwiper {
    width: 100%;
    overflow: clip !important;
    border-radius: 10px;
    .swiper-slide img {object-fit: cover; width: 100%; height: 100%;} 
}
.about-swiper-nav {
    flex-wrap: nowrap;
    justifu-content: space-between;
}
.pagintion-blue {
    position: unset !important;
    flex: 1;
    display: flex;
    align-items: center;
    .swiper-pagination-bullet {
        width: 8vw;
        max-width: 60px;
        border-radius: 30px;
        max-height: 2px;
        background: #46B3DE;
    }
    .swiper-pagination-bullet-active {
	max-height: 4px;
    }
}
.additional-info {
    gap: 20px;
}
.about-navigation {
    gap: 20px;
}
.main-est__cards {
    gap: 20px;
}
.main-est-card {
    width: calc((100% - 2 * 40px) / 3);
}
.main-est-card__image img {
    object-fit: cover; 
    width: 100%; 
    height: 100%;
}
.main-est-card {
   gap: 20px;
}
.main-est-card__content {
   gap: 20px;
}
.main-est-card__text {
   font-size: clamp(16px, 1vw, 20px);
   font-weight: 300;
}
.main-est-card__quote {
    margin: 0;
    padding: 20px 30px;
    background: #FAFAFA;
}
.main-est-card__quote.hidden {
    display: none;
}
.contacts-block {
    width: calc((100% - 40px) / 10 * 4);
    gap: 20px;
    justify-content: center;
}
.map-container {
    width: calc((100% - 40px) / 10 * 6);
    max-width: 808px;
    height: 50vh;
    min-height: 477px;
    border-radius: 10px;
    overflow: clip;
}
.address-block span {
    font-size: 20px;
    line-height: 125%;
	FONT-WEIGHT: 300;
    color: darkgrey;
}
.reviews-list {
    gap: 20px;
}
footer {
    gap: 25px;
}
.footer-line {align-items: center;}
.footer-logo {
    max-width: 203px;
    img {object-fit: contain; width: 100%; height: 100%;}
}
.footer-address {
    max-width: 203px;
}
.footer-tel {
    font-size: 28px;
    font-weight: 600;
}
.footer-cta {
    gap:  20px;
    .social-link {
	background: #46B3DE;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
        justify-content: center;
        border-radius: 100px;
	img {transform: scale(2);}
    }
}
.footer-menu-col {gap: 15px; width: 40%;}
.footer-menu {
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 180px;
    line-height: 125%;
}
.footer-menu li a {transition: all .75s;}
.footer-menu li a:hover {color: #46B3DE; transition: all .75s;}
.footer-qr {
    background: #46B3DE;
    border-radius: 20px;
    gap: 20px;
    align-items: center;
    max-width: 187px;
    padding: 30px 0;
}
.footer-line-desk {display: flex;}
.footer-line-mob {display: none;}
.qr-content {}
.qr-description {text-align: center; color: #F9F9F9; font-size: 16px;}

.cust-swiper-button-next, .cust-swiper-button-prev {cursor: pointer; transition: all .75s;}
.cust-swiper-button-next:hover, .cust-swiper-button-prev:hover {transform: scale(0.9); transition: all .75s;}
/*not-mobile*/

.header-mobile-line {
   display: none;
}
.service-prices {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.prices {
    margin-top: 
  }
  .accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .accordion__item.is-open > .accordion__content {
    max-height: 5000px;
  }
  .accordion__btn {
    width: 100%;
    padding: 20px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    border-bottom: 1px solid rgba(108, 108, 108, .1);
    display: flex;
  }
  .accordion__btn:after {
    content: "";
    background: url('/local/templates/estetica-new/includes/Ellipse1604.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    transition: all .75s;
  }
  .accordion__item.is-open .accordion__btn:after {
    transform: rotateZ(90deg);
    opacity: .5;
    transition: all .75s;
  }
  .price-list {
    margin: 0;
    padding: 0;
    padding: 10px 30px;
  }
  .price-list__item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 24px;
    font-weight: 300;
  }
  .price-list__price {
    font-weight: 600;
  }
  .price-list__item.is-hidden,
  .accordion__item.is-hidden {
    display: none;
  }
  .prices-search {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    .search-field {
      width: 100%;
      max-width: 100%;
      flex: 1;
      align-items: center;
    }
    .search-suggest {
      border: 1px solid rgba(108, 108, 108, .3);
      border-radius: 10px;
      height: 100%;
    }
  }
  #accordionSearchBtn {
    padding: 16px 34px;  
    border: 1px solid #46B3DE;
    color: #46B3DE;
    background: transparent;
    border-radius: 50px;
    transition: .75s;
    cursor: pointer;
  }
  #accordionSearchBtn:hover {
    padding: 16px 34px;  
    border: 1px solid #46B3DE;
    color: #FFF;
    background: #46B3DE;
    border-radius: 50px;
    transition: .75s;
  }
  .ba-handle{
    width: 9vw!important;
    height: 0.7vw!important;
    border-radius: 30px!important;
  }
  .ba-handle:before{
    background: url(/local/templates/estetica-new/includes/arow_m1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    width: 20px;
    height: 10px;
    display: flex;
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ba-handle:after{
    background: url(/local/templates/estetica-new/includes/arow_m2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    content: '';
    width: 20px;
    height: 10px;
    display: flex;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
  }

.modal {
	display: none; 
	position: fixed; 
	z-index: 99999999; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
	transition: .4s;
	opacity: 0;
	justify-content: center;
	align-items: center;
    scrollbar-gutter: stable;
    padding: 3.12vw;
}
.modal::-webkit-scrollbar {
  width: 0;       
}
.modal-content {
    width: 33vw;
	background-color: #FFFFFF;
	border-radius: 20px;
	margin: auto;
	position: relative;
	padding: 3.12vw;
    gap: 2.08vw;
}
.close {
	width: 1.56vw;
	height: 1.56vw;
	position: absolute;
	top: 1.56vw;
	right: 1.56vw;
    cursor: pointer;
}
.close path{
    transition: .4s;
}
.close:hover path,
.close:focus path{
	stroke: #46B3DE;
}
.modal h2{
    text-align: center;
}
.modal-callback-content{
    gap: 1.04vw;
}
.modal-callback-content label{
    margin-top: 0.52vw;
    margin-bottom: 1.04vw;
    width: 100%;
    transition: .8s;
    display: flex;
    gap: 1.1vw;
    align-items: start;
}
.modal-callback-content label a{
    text-decoration: underline;
    transition: .3s;
}
.modal-callback-content label a:hover{
    color: #3fa9f5;
}
.modal{
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="email"],
    textarea{
        width: 100%;
        background: #FFFFFF;
        border-radius: 2.08vw;
        outline: 0;
        padding: 0.83vw 2.7vw;
        font-size: 0.97vw;
        color: #000000;
        border: 1px solid #E5E5E5;
    }
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="number"]:focus,
    input[type="email"]:focus,
    textarea:focus{
        border: 1px solid #46B3DE;
    }
    textarea{
        resize: none;
    }
    input[type=checkbox],
    input[type=radio]{
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        appearance: none;
        display: inline-block;
        vertical-align: middle;
        border: 1px solid #E5E5E5;
        border-radius: 4px;
        background: #FFFFFF;
        width: 1.7vw;
        min-width: 1.7vw;
        height: 1.7vw;
        outline: 0;
        padding: 0px;
        position: relative;
        transition: .3s;
        margin: 0px;
        cursor: pointer;
    }
    input[type=checkbox]:after,
    input[type=radio]:after {
        content: "";
        width: 1.25vw;
        height: 1.25vw;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 4px;
        transform: translate(-50%, -50%);
        opacity: 1;
        transition: .3s;
        background: #FFFFFF;
    }
    input[type=checkbox]:hover:after,
    input[type=radio]:hover:after,
    input[type=checkbox]:checked:hover:after,
    input[type=radio]:checked:hover:after{
        background: #46B3DE;
        opacity: 0.6;
    }
    input[type=checkbox]:checked:after,
    input[type=radio]:checked:after{
        background: #46B3DE;
    }
}
.service-rehab__slider-container {
    position: relative;
}
.service-rehab__slider-container .about-swiper-nav{
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 100%;
}
.service-rehab__text.service-rehab__text--bottom{
    position: relative;
    height: 100%;
}
.service-rehab__text.service-rehab__text--bottom a{
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    width: 45%;
    text-align: center;
}

@media screen and (max-width: 1025px) {
   header {
       margin-bottom: 20px;
       padding: 0 10px;
   }
   .header-mobile-line {
       display: flex;
       align-items: center;

   }
   .header-line {
       display: none;
   }
   .sirch-lk {
	gap: 20px;	
   }
   .mob-lk {
	width: 32px;
	height: 32px;
	img {
	   object-fit: cover;
	   width: 100%;
           height: 100%;
	}
   }
   .logo-link.trsp {
	width: 62px;
	height: 62px;
	border: 1px solid #46B3DE;
	border-radius: 50px;
	display: flex;
        align-items: center;
        justify-content: center;
   }
   .logo-link.blue {
        width: 62px;
	height: 62px;
	border: 1px solid #46B3DE;
        background: #46B3DE;
	border-radius: 50px;
	display: flex;
        align-items: center;
        justify-content: center;

   }
   .burger {
	gap: 20px;
	p {text-transform: uppercase;}
   }
.direct-section {
    overflow: scroll;
}
.direct-section::-webkit-scrollbar {
  width: 0px;        
  height: 0;       /* ширина scrollbar */
}
.direct-section::-webkit-scrollbar-track {
  background: white;        /* цвет дорожки */
}
.direct-section::-webkit-scrollbar-thumb {
  background-color: white;    /* цвет плашки */
  border-radius: 20px;       /* закругления плашки */
  border: 3px solid white;  /* padding вокруг плашки */
}
.direct-sections-list {
    width: 180%;
}
.akc-button-prev, .akc-button-next {
    display: none;
}
.main-about-content {
    flex-direction: column;
}
.mainAboutSwiperBox {
    width: calc(100%);
}
.mainAboutText {
    width: calc(100%);
}
.about-navigation {
    display: none;
}
.custom-pagintion.pagintion-blue {
    align-items: center;
    justify-content: center;
}
.main-est-card {
    width: calc(100%);
}
.reviews {
    gap: 40px;
    overflow: scroll;
}
.direct-section-link {
    max-height: 168px;
}
.akc-item {
    .akc-item-tmb {
        max-height: 168px;
    }
}
.mapblock {
	flex-direction: column;
	gap: 20px;
}
.contacts-block {
    width: calc(100%);
}
.map-container {
    width: calc(100%);
}
.direct-section.l2-cont {
	.direct-sections-list {width: 100%;}
	width: 100%;
	.direct-section-item {
 	   width: calc((100% - 20px) / 2);
	}
}
.service-about {
    .service-about-box {
        flex-direction: column;
    }
}
.service-about__image {
    width: calc((100%));
}
.service-about__text {
    width: calc((100%));
    padding: 15px;
}
.service-type-card {
    width: 100%;
}
.service-how__text {
	flex-direction: column;
    gap: 20px;
}
.service-how__left {
    width: calc((100%));
    gap: 20px;
}
.service-how__right {
    width: calc((100%));
    gap: 20px;
}
.service-pros-cons__grid {
	flex-direction: column;
	.pros {
    width: calc((100%));
}
.cons {
    width: calc((100%));
}
.pros:nth-child(1) {
    order: 0;
}
.pros:nth-child(4) {
    order: 1;
}
.cons:nth-child(2) {
    order: 3;
}
.cons:nth-child(5) {
    order: 4;
}
.divider {order: 2;}

}

.service-rehab-line {flex-direction: column;}
.service-rehab-line:nth-child(1) {flex-direction: column-reverse;}
.service-rehab__text.service-rehab__text--top {
    width: calc((100%));
    padding: 15px;
}
.service-rehab__image {
    width: calc((100%));
}
.service-rehab__slider-container {
    width: calc((100%));
    gap: 20px;
    flex-wrap: nowrap !important;
    position: relative;
}
.service-rehab__slider-container .about-swiper-nav{
    position: absolute;
    top: calc(100% + 20px)
}
.service-rehab__slider-container {
    position: relative;
}
.service-rehab__slider-container .about-swiper-nav{
    display: none;
}
.service-rehab__text.service-rehab__text--bottom{
    position: relative;
    height: unset;
}
.service-rehab__text.service-rehab__text--bottom a{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 16px;
}
.service-rehab__text.service-rehab__text--bottom {
    width: calc((100%));
    padding: 15px;
}
.service-doctors {
.akc-item {
    max-width: 100%;
	        .akc-item-tmb {
            max-height: 333px;
        }
}
}
.address-block h3{
    font-weight: 500;
}
.address-block span{
    font-size: 16px;
    color: #000000;
    font-weight: 300;
}
    footer{
        background-color: #F9F9F9;
        padding: 0 10px;
        padding-top: 20px;
    }
    .footer-qr{
        display: none;
    }
    .footer-line-mob-inner>.blue-btn{
        width: 100%;
        text-align: center;
    }
    footer .divider {
        height: 1px;
        background: #00000066;
        width: 100%;
    }
    .footer-menu-col h2 {
        position: relative;
        padding-right: 24px;
        cursor: pointer;
    }

    .footer-menu-col h2::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .footer-menu-col.is-open h2::after {
        transform: translateY(-50%) rotate(-135deg);
    }

    .footer-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-menu-col.is-open .footer-menu {
        max-height: 500px; /* с запасом */
    }

.footer-line {
    flex-direction: column;
    width: 100%;
}
.footer-line-desk {display: none;}
.footer-line-mob {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-line-mob-inner {width: 100%; justify-content: center;}
.footer-address {
    max-width: 100%;
}
.footer-menu-col {
    gap: 15px;
    width: 70%;
}
    .footer-line {
        gap: 20px;
    }
.footer-cta {
    .social-link {
        width: 26px;
        height: 26px;
    }
}
.footer-cta {
    & .social-link {
        img {
            transform: scale(1);
        }
    }
}
.footer-line-mob-inner.spbw {
        width: 100%;
        justify-content: space-between;
	align-items: center;
    }

.content-section {
    margin-bottom: 50px;
}

.ba-handle{
    width: 100px!important;
    height: 7px!important;
    border-radius: 30px!important;
  }
  .ba-handle:before{
    width: 11px;
    height: 5px;
    top: calc(50% + 15px);
  }
  .ba-handle:after{
    width: 11px;
    height: 5px;
    top: calc(50% - 15px);
  }
  .accordion__btn{
    font-size: 20px;
  }
  .price-list__item{
    padding: 10px 0;
    font-size: 16px;
    flex-direction: column;
  }
  .price-list__price{
    font-size: 20px;
    padding-top: 10px;
  }
.modal-content {
    width: 95vw;
	border-radius: 20px;
	padding: 60px 30px 40px 30px;
    gap: 30px;
}
.close {
	width: 20px;
	height: 20px;
	top: 20px;
	right: 20px;
}
.modal-callback-content{
    gap: 20px;
}
.modal-callback-content label{
    margin-top: 0;
    margin-bottom: 0;
    gap: 15px;
}
.modal{
    input[type="text"],
    input[type="tel"],
    input[type="number"],
    input[type="email"],
    textarea{
        border-radius: 30px;
        padding: 15px 30px;
        font-size: 16px;
    }
    input[type=checkbox],
    input[type=radio]{
        width: 22px;
        min-width: 22px;
        height: 22px;
    }
    input[type=checkbox]:after,
    input[type=radio]:after {
        width: 16px;
        height: 16px;
    }
    }
    .burger-menu{
        display: flex;
        pointer-events: none;
        gap: 30px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        padding: 20px;
        opacity: 0;
        transition: .4s;
        z-index: 99;
    }
    .burger-menu.active{
        opacity: 1;
        pointer-events: all;
    }
    .burger-menu .header-nav{
        flex-direction: column;
        gap: 30px;
        position: relative;
    }
    .burger-menu .header-nav svg{
        position: absolute;
        top: 0;
        right: 0;
    }
    .burger-menu .header-mobile-line{
        padding-bottom: 20px;
        border-bottom: 1px solid #D9DBDA;
    }
}