/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    background: linear-gradient(180deg, #F6F7F9 0%, #F6F7F9 100%);
}

.header_transparent {
    position: absolute;
    background: transparent;
    left: 0;
    right: 0;
}

/* .header_transparent .header-top:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
} */

.header.sticky {
    position: fixed;
    box-shadow: 0 4px 20px rgba(51, 78, 103, 0.21);
    transition: top .2s ease;
}

.header-top {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.header__logo {
    margin-right: auto;
}

.logo img {
    width: 158px;
    height: 41px;
    display: block
}

.header__btn {
    margin: 0 0 0 9px;
}

.header__burger {
    order: 1;
}

.header__burger:before {
    content: '';
    width: 14px;
    height: 10px;
    position: relative;
    z-index: 2;
    background: url("/img/icon-burger-m.svg") center/cover no-repeat;
}

.header__burger:after {
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 1;
    background: linear-gradient(180deg, #5D883D 0%, #ACD19E 100%);
    border-radius: 50%;
}

.header__contact {
    white-space: nowrap;
}

.header__contact:before {
    content: '';
    width: 13px;
    height: 23px;
    background: url("/img/icon-contact-m.svg") center/cover no-repeat;
}
    

@media (max-width: 1024px) {
    a.header__contact,
    button.header__burger {
        background: #fff;
        border: 1px solid #B3C1CB;
    }

    button.header__burger:after {
        border: 0;
        background: transparent;
    }
}

.header__address-link:before {
    content: '';
    width: 19px;
    height: 24px;
    background: url("/img/icon-address.svg") center/cover no-repeat;
}

.header__search-open:before,
.header__search-submit:before{
    content: '';
    width: 19px;
    height: 19px;
    background: url("/img/icon-search.svg") center/cover no-repeat;
}

.header__btn-login:before{
    content: '';
    width: 26px;
    height: 26px;
    background: url("/img/icon-signin.svg") center/cover no-repeat;
}

.header-menu {
    display: none;
}

.header__address,
.header__search {
    position: relative;
    width: 55px;
    transition: width .3s ease;
}

.header__address-box {
    position: absolute;
    top: -10px;
    left: -61px;
    z-index: 2;
    opacity: 0;
    width: calc(100vw - 20px);
    min-width: 300px;
    background-color: #fff;
    box-shadow: none;
    border-radius: 25px;
    padding: 70px 65px 25px 35px;
    transition: all .3s ease;
    visibility: hidden;
}

.header__address:hover .header__address-box {
    opacity: 1;
    box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.1);
    visibility: visible;
}

.header__address-link,
.header__search-open {
    z-index: 3;
    float: right;
}

.header__address-text {
    font-size: 15px;
    line-height: 1rem;
}

.header__address-metro {
    margin: 10px 0 15px;
    color: #8798A5;
    font-size: 13px;
    line-height: 1rem;
}

.header__address-metro:last-of-type {
    margin-bottom: 0;
}

.header__address-metro:before {
    content: 'М';
    display: inline-block;
    vertical-align: baseline;
    width: 18px;
    height: 18px;
    padding-top: 2px;
    margin-right: 3px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(180deg, #91B83F 0%, #B8D9AA 100%);
    border-radius: 40px;
}

.header__address-contacts {
    display: inline-block;
    vertical-align: baseline;
    padding: 0 0 15px;
    font-size: 15px;
    color: #91B83F;
    text-decoration: underline;
}

.header__search-form {
    position: absolute;
    right: -10px;
    top: -5px;
    z-index: 10;
    width: 0;
    opacity: 0;
    transform: translateX(50%);
    transition: width 0.2s ease, transform 0.3s ease, opacity 0.4s ease;
}

.price-search .header__search-form {
    position: static;
}

.header__search-input {
    border: 0;
    width: 0;
    outline: none;
    padding: 0;
    font-size: 15px;
    line-height: 150%;
    background: #FFFFFF;
    border-radius: 23px;
    transition: all 0.2s ease;
}

.header__search-input::placeholder {
    color: #8798A5;
}

.header__search-submit {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2;
    width: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header__search.active {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 100%;
    flex-grow: 1;
}

.header__search.active .header__search-form,
.price-search .header__search-form {
    width: 100%;
    opacity: 1;
    transform: translateX(0);
}

.header__search.active .header__search-input,
.price-search .header__search-input {
    width: 100%;
    padding: 22px 64px 22px 22px;
    border: 1px solid #E6EDF3;
}

.header__search.active .header__search-input:focus,
.price-search .header__search-input:focus {
    border: 1px solid #8798A5;
}

.header__search.active .header__search-submit,
.price-search .header__search-submit {
    width: 46px;
    opacity: 1;
}

.burger-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding-bottom: 115px;
    background: linear-gradient(180deg, #F6F7F9 0%, #F6F7F9 100%);
    overflow-y: auto;
}

.burger-menu__top {
    position: relative;
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #FFFFFF;
}

.burger-menu__close {
    margin: 0 0 0 auto;
}

.burger-menu__close:before {
    content: "";
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 2;
    background: url(/img/icon-close.svg) center/10px no-repeat;
}

.burger-menu__close:after {
    content: "";
    display: block;
    width: 33px;
    height: 33px;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 1;
    background: linear-gradient(180deg,#5d883d 0%,#acd19e 100%);
    border-radius: 50%;
}

.burger-menu__content {
    margin-bottom: 20px;
    border-bottom: 1px solid #FFFFFF;
}

.burger-menu__aside {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    padding: 14px 11px 24px;
}

.burger-menu__aside li {
    padding: 15px 0;
}

.burger-menu__aside li,
.burger-menu__aside li a {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #8798A5;
    transition: color 0.2s ease;
    cursor: pointer;
}

.burger-menu__aside li a:hover {
    color: #5D883D;
}

a.asid__item {
    padding: 15px 0 5px 0;
}

.burger-menu__aside-item a {
    position: relative;
    z-index: -1;
    display: inline-block;
    vertical-align: baseline;
}

details summary::-webkit-details-marker {
    display: none
  }

.burger-menu__summary:after {
    position: absolute;
    right: 0;
    top: 12px;
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #BCBCBC;
    border-right: 2px solid #BCBCBC;
    transform: rotate(135deg);
    transition: border-color 0.2s ease;
}    

.burger-menu__summary.active:after {
    border-color: #97C04D;
}


.asid__list {
    display: inline-flex;
    flex-direction: column;
    padding: 0 0 0 20px;
}

.burger-menu__main {
    display: none;
}

.social-box {
    display: flex;
    margin-bottom: 18px;
    padding: 0 18px;
}

.burger-menu__social_desktop {
    display: none;
}

.burger-menu__address {
    padding: 0 18px;
}

.sidebar {
    position: fixed;
    bottom: 0;
    right: 0;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    z-index: 115;
    width: 100%;
    padding: 22px;
    background: #FFFFFF;
    box-shadow: none;
    transform: translateY(100%);
    visibility: hidden;
    transition: all .2s ease;
}

.modal-open .sidebar {
    opacity: 1;
    visibility: visible;
    box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
}

.sidebar__btn-arrow {
    background: linear-gradient(180deg, #5D883D 0%, #ACD19E 100%);
}

.sidebar__btn-arrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 12px;
    background-image: url("/img/icon-arrow.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sidebar__social {
    display: none;
}

.top_padding {
    height: 60px;
}

/* footer */
.footer-head,
.footer-menu__list{
    display: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 0 10px;
}

.footer-contacts__tel {
    font-size: 30px;
    line-height: 34px;
    color: #77B09D;
    flex-grow: 1;
}

.footer-contacts__email,
.footer-about__developer {
    margin: 20px 0 30px;
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: #77B09D;
}

.footer-contacts__tel:hover,
.footer-contacts__email:hover,
.footer-about__developer:hover {
    color: #F1CD32;
}

.footer-menu__policy {
    max-width: 800px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 18px;
    color: rgba(135, 152, 165, 0.5);
    text-align: center;
}

.footer-menu__policy p {
    margin: 0 0 20px;
}

.footer-about {
    padding: 28px 0 100px 0;
    text-align: center;
    border-top: 1px solid #eff2f3;
}

.footer-about__copyright {
    margin: 0 20px 12px;
    font-size: 13px;
    line-height: 18px;
    color: #8798A5;
}

.bottom__sidebar {
    padding: 7px 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255,255,255,.7);
    box-shadow: 0px -10px 15px 0px rgba(135, 152, 165, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px 10px 0 0;
    transform: translateY(calc(100% - 50px));
    transition: .5s all ease-in-out;
}

.bottom__sidebar.active {
    transform: translateY(0);
    box-shadow: 0px -10px 30px 0px rgba(135, 152, 165, 0.22);
}

.bottom__sidebar_btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.bottom__sidebar_btn {
    width: 25%;
}

.bottom__sidebar_phone {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid #77B09D;
    background: #FFF;
    box-shadow: 0px 4px 13px 0px #DDEEE8;
    padding: 10px;
    margin: 10px 0;
}

.bottom__sidebar_phone svg {
    display: block;
}

.bottom__sidebar_call {
    padding-left: 10px;
}

.bottom__sidebar_call .h4 {
    padding: 0;
}

.bottom__sidebar_msgs {
    display: flex;
    justify-content: space-between;
}

.bottom__sidebar_msg {
    text-align: center;
    padding: 20px;
    width: calc(50% - 5px);
    border-radius: 10px;
}

.bottom__sidebar_wa {
    background: #E5FAE6;
    color: #17701D;
}

.bottom__sidebar_tg {
    background: #E5F3FF;
    color: #1F629D;
}

/* main page */
.main__title {
    margin: 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #DADADA;
}

.banner {
    position: relative;
    /* padding-top: 133px; */
    background: #F6F7F9;
    border-bottom: 2px solid #F6F7F9;
    overflow: hidden;
    max-width: 100%;
    padding-bottom: 60px;
}

.banner-slider {
    width: 100%;
    overflow: hidden;
}

.banner-slider-wrapper {
    min-height: calc(100vh - 150px);
    align-items: flex-end;
}

.banner-slide {
    position: relative;
    width: 100%;
    padding: 63px 20px 35px;
    background: #FFFFFF;
}

.banner-slide:before {
    position: absolute;
    top: -52px;
    left: 21px;
    z-index: 10;
    content: '';
    width: 115px;
    height: 101px;
    background: url("/img/icon-slide-heart.svg") center/contain no-repeat;
}

.banner-slide__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.banner-slide__title a {
    color: #91B83F;
}

.banner-slide__title a:hover {
    color: #F1CD32;
    border-color: #F1CD32;
}

.banner-slide__description {
    margin: 18px 0 20px;
    font-size: 14px;
    line-height: 20px;
}

.banner-img-bg {
    position: absolute;
    top: -10px;
    right: 0;
    height: 100vh;
    width: 260px;
    background: url(/img/banner-ellipse-bg_mobile.jpg) 0 10px/cover no-repeat;
    border-radius: 50vh 0 0 50vh;
}

.banner-pagination span {
    display: none;
}

.banner-parallax {
    width: 100%;
    height: 38vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.paraxify {
    background-attachment: fixed;
}

/* main utp */
.main-utp {
    padding-bottom: 60px;
}

.main-utp__block {
    display: flex;
    width: 100%;
}

.main-utp__img {
    width: 30%;
    display: none;
}

.main-utp__img img {
    max-width: 100%;
}

.main-utp__text {
    width: 100%;
}

.main-utp__footer {
    display: flex;
}

.main-utp__img2 {
    width: 30%;
    padding-right: 20px;
}

.main-utp__director {
    width: 70%;
    border-top: 2px solid #E6EDF3;
    position: relative;
}

.main-utp__corner {
    padding: 0 0 10px 40px;
    position: relative;
    top: -3px;
}

.main-utp__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-utp__digits {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    flex-wrap: wrap;
}

.main-utp__digit {
    max-width: 50%;
    min-width: 50%;
    padding-right: 20px;
    color: #8798A5;
}

.main-utp__dig {
    font-weight: 300;
    font-size: 42px;
    line-height: 1em;
    color: #91B83F;
}

.main-utp__digit p {
    max-width: 220px;
}

/* blog */
.blog-box {
    background: #F6F7F9;
    padding: 60px 0;
}

.blog__list {
    margin-top: 60px;
}

.blog__item {
    margin-bottom: 30px;
}

.blog__item img {
    width: 100%;
}

.blog__item-link {
    padding: 10px 0;
}

.blog__item-link a {
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
}

.blog__item-link a:hover {
    color: #F1CD32;
}

.blog__item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog__item-likes svg {
    fill: #8798A5;
}

.blog__item-like {
    margin-right: 10px;
}

.blog__item-dislike svg {
    transform: rotate(180deg);
    position: relative;
    top: 8px;
}

.blog__subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog__doc {
    display: flex;
}

.blog__doc-img {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.blog__doc-info {
    padding: 0 15px;
}

.blog__read svg {
    position: relative;
    top: 3px
}

.blog__img {
    padding: 30px 0;
}

.xlike__items {
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.xlike__items svg {
    width: 30px;
}

.xlike__item_dislike svg {
    transform: rotate(180deg);
    position: relative;
    top: 5px;
}

.xlike__item a {
    display: flex;
    align-items: center;
}

.xlike__count {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 25px 0 10px;
}

.news_comment-capcha {
    padding: 20px 0;
}

.news_comment-capcha input {
    border: 0;
    border-bottom: 1px solid#b3c1cb;
    width: 50px;
    font-size: 16px;
}

.news_comment-capcha label:after {
    content: '=';
    margin: 0 10px;
}

.news_comment-capcha input:focus {
    border: 0;
    border-bottom: 1px solid#3B454D;
}

.blog__textarea {
    border: 1px solid #B3C1CB;
}

.blog__textarea:focus {
    border: 1px solid #3B454D;
}

/* license */
.lic__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.lic__item {
    width: 48%;
    padding-bottom: 30px;
}

.lic__item img {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

/* news */
.news-box {
    padding-top: 60px;
}

.news__list {
    padding: 8px 0 16px;
}

.new__item {
    width: 100%;
    margin-bottom: 16px;
}

.new__item:first-of-type {
    position: relative;
    height: 59vw;
    margin-bottom: 22px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.new__item:first-of-type a {
    display: block;
    height: 100%;
}

.new__item:first-of-type:before {
    content: '';
    display: block;
    width: 100%;
    height: 70%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    opacity: 0.3;
    transition: all .2s ease;
}

.new__date {
    position: relative;
    display: inline-block;
    min-width: 100px;
    padding: 8px 15px 7px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    background: #F6F7F9;
    border-radius: 24px;
    z-index: 5;
    transition: all .2s ease;
}

.new__title {
    display: inline-block;
    padding: 8px 0 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-decoration: underline;
    color: #77B09D;
    transition: all .2s ease;
}

.new__title:hover {
    color: #F1CD32;
}

.new__description {
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}

.new__item:first-of-type .new__date {
    margin: 18px 9px;
}

.new__item:first-of-type .new__content {
    position: absolute;
    bottom: 0;
    padding: 0 17px 19px;
}

.new__item:first-of-type .new__content a,
.new__item:first-of-type .new__content p {
    color: #FFFFFF;
}

.new__item:first-of-type:hover:before {
    opacity: 0.4;
    height: 90%;
}

.new__item:first-of-type:hover .new__date {
    background: #F1CD32;
}

.new__item:first-of-type:hover .new__title {
    color: #F1CD32;
}

.new__image {
    position: relative;
}

.new__image img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.new__date-a {
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: 2;
}

.new__info {
    padding: 20px 20px 40px 20px;
}

.new__desc {
    padding-top: 10px;
}

.new__first {
    width: 100%;
    margin-bottom: 40px;
}

.new__titleimg {
    margin-bottom: 30px;
}

.new__neighbors {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid #B3C1CB;
    margin-top: 40px;
}

.new__neighbors svg {
    margin: 0 10px;
    position: relative;
    top: 12px;
}

.new__neighbors span {
    display: none;
}

.main-video {
    position: relative;
    width: 100%;
    height: 38vw;
    overflow: hidden;
    margin-top: 60px;
}

.video {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* services */
.services__list {
    columns: 2;
}

.services__item {
    padding: 10px 0;
}

.services__bottom {
    padding: 30px 0;
}

.services__bottom-text {
    padding: 20px 0;
    max-width: 700px;
}

.services__complex-link {
    padding: 20px 0;
}

.services__description {
    padding: 20px 0;
}

.services__search {
    padding-top: 20px;
}

.department__header-position {
    padding: 100px 0 0 0;
    transform: translateY(50px);
}

.department__header-block {
    padding: 100px 20px 0 20px;
    position: relative;
    border-bottom: 2px solid #E6EDF3;
}

.department__header-heart {
    position: absolute;
    top: -70px;
    left: 20px;
}

.department__header-subtitle,
.department__header-text {
    padding-top: 25px;
}

.department__header-order {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px 0;
}

.department__header-price {
    text-align: right;
}

.department-price {
    padding-top: 5px;
    font-size: 28px;
    line-height: 1em;
}

.department__header-links {
    display: none;
}

.leftnav__wrap {
    max-width: 300px;
    position: sticky;
    top: 130px;
}

.leftnav__title {
    padding: 10px 10px 10px 30px;
    border: 1px solid #E6EDF3;
    border-radius: 50px;
    color: #8798A5;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.leftnav__title:hover {
    border: 1px solid #B3C1CB;
}

.leftnav__title-arrow {
    background: linear-gradient(180deg,#5d883d 0%,#acd19e 100%);
    width: 33px;
    height: 33px;
    text-align: center;
    border-radius: 50%;
}

.leftnav__title-arrow img {
    transform: rotate(-90deg) translateX(-8px) scale(.8,.8);
}

.leftnav__title.active {
    font-weight: 500;
    border: 1px solid #B3C1CB;
}

.leftnav__links {
    padding-bottom: 30px;
}

.leftnav__title.active img {
    transform: rotate(90deg) translateX(5px) scale(.8,.8);
}

.leftnav__links ul li a {
    display: block;
    padding: 12px 12px 12px 30px;
    background: #fff;
    transition: .3s all ease-in-out;
    color: #3B454D;
    border-radius: 5px;
}

.leftnav__links ul li a:hover {
    background: #F6F7F9;
}

.leftnav__links ul li.active a {
    background: #F6F7F9;
    font-weight: 500;
    color: #8798A5;
}

.prog__menu {
    padding-right: 60px;
}

.prog__menu .level1 {
    padding: 0 0 20px 20px;
}

.prog__menu .level1 span {
    display: inline-block;
    width: 30px;
    margin: -2px 0 0 -30px;
}

.prog__menu .level1 a {
    color: #8798A5;
    font-weight: 500;
    font-size: 21px;
}

.prog__menu .level2 {
    padding: 10px 0;
}

.prog__menu .level2 a {
    font-size: 18px;
}

.prog__menu .level3 {
    padding: 5px 0 5px 30px;
}

.prog__menu .level3:before {
    content: "—";
    display: inline-block;
    margin-left: -20px;
    width: 20px;
    color: #8798A5;
}

.department__page {
    padding: 70px 0;
}

.content_hidden,
.price_hidden {
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.doc_hidden {
    max-height: 200px;
}

.content_hidden:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);;
}

.content_show,
.price_show {
    max-height: 100%;
    overflow: visible;
}

.content_show:before {
    display: none;
}

.btn_show-content {
    margin: 20px auto 50px auto;
    max-width: 400px;
}

.btn_show-price {
    margin: -20px auto 50px auto;
    max-width: 400px;
}

.uslugi_indvd2 {
    padding: 0 0 30px 90px;
    border-bottom: 1px solid #B3C1CB;
    font-size: 14px;
    margin-bottom: 30px;
    color: #8798A5;
    margin-top: -30px;
}

.uslugi_indvd2:before {
    display: inline-block;
    content: '';
    width: 70px;
    height: 60px;
    background: url(/img/icon-slide-heart.svg) center/contain no-repeat;
    margin: 0 20px 0 -90px;
    position: relative;
    top: 30px;
}

/* complex */

.complex__list-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 20px 0;
}

.complex__list-menu div {
    padding: 0 20px 20px 0;
}

.complex__list-menu a {
    color: #8798A5;
}

.complex__list-menu .self a {
    color: #97C04D;
    text-decoration: underline;
}

.complex__header-position {
    padding-top: 30px;
}

a.complex__header-back {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 0 0 200px 0;
}

a.complex__header-back svg {
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.complex__header-block {
    padding: 70px 20px 0 20px;
    position: relative;
}

.complex__header-heart {
    position: absolute;
    top: -70px;
    left: 20px;
}

.complex__header-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.complex__header-price {
    text-align: right;
    padding-top: 10px;
}

.complex-price {
    white-space: nowrap;
    font-size: 28px;
    line-height: 1em;
}

.complex__wrap {
    padding: 50px 0;
}

.complex__description {
    width: 100%;
    max-width: 800px;
}

.prog__circle {
    padding-top: 40px;
    border-top: 1px solid #e6edf3;
}

.complex__icons {
    padding: 30px 0;
    max-width: 900px;
    justify-content: center;
}

.complex__icons2 {
    padding: 60px 0 30px 0;
    border-bottom: 1px solid #E6EDF3;
}

.complex__icons2 h2 {
    margin-bottom: 40px;
}

.complex__tabs {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.complex__tabs li {
    display: block;
    padding: 10px 40px 10px 0;
    color: #B3C1CB;
    font-size: 22px;
    line-height: 1.2em;
    cursor: pointer;
}

.complex__tabs li.active {
    color: #97C04D;
    text-decoration: underline;
}

.complex__place {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #B3C1CB;
    margin-bottom: 30px;
    cursor: pointer;
}

.complex__place .active {
    color: #97C04D;
    text-decoration: underline;
}

.complex__switcher {
    width: 55px;
    height: 28px;
    padding: 1px;
    border-radius: 14px;
    background: linear-gradient(180deg, #91B83F 0%, #B8D9AA 100%);
    margin: 0 10px;
    display: flex;
    transition: .5s all ease-in-out;
}

.complex__switcher-left {
    flex-direction: row;
}

.complex__switcher-right {
    flex-direction: row-reverse;
}

.complex__switcher-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
}

.complex__table-tabs {
    border-top: 1px solid #B3C1CB;
    padding: 10px 20px;
    background: #F6F7F9;
}

.complex__table-tab {
    padding: 10px 0;
}
.complex__table-tab.active {
    color: #97c04d;
    text-decoration: underline;
}

.complex__price-table {
    border-top: 1px solid #B3C1CB;
}

.complex__table-row {
    display: flex;
}

.complex__table-name {
    padding: 5px;
}

.complex__table-row3 .complex__table-name,
.complex__table-row2 .complex__table-name,
.complex__table-row1 .complex__table-name {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
}

.complex__table-value {
    padding: 5px 5px;
    border-left: 1px solid #B3C1CB;
}

.complex__table-row3 .complex__table-value,
.complex__table-row2 .complex__table-value,
.complex__table-row1 .complex__table-value {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
}

.complex__table-value1,
.complex__table-value2,
.complex__table-value3 {
    display: none;
}

.complex__table-value1.active,
.complex__table-value2.active,
.complex__table-value3.active {
    display: block;
}

.complex__table-procent {
    display: inline-block;
    margin-left: 5px;
    background: linear-gradient(180deg, #91B83F 0%, #B8D9AA 100%);
    border-radius: 40px;
    padding: 5px;
}

.complex__table-price {
    margin-right: 10px;
}

.complex__table-title {
    padding-top: 20px;
}

.complex__table-block:nth-child(odd) {
    background: #F6F7F9;
}

.complex__table-value1.hover,
.complex__table-value2.hover,
.complex__table-value3.hover {
    background: rgba(119, 176, 157, 0.11);;
}

.complex__table-description {
    position: relative;
}

.complex__table-q {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #8798A5;
    border-radius: 50%;
    color: #8798A5;
    cursor: pointer;
}

.complex__table-tooltip {
    position: absolute;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    width: 200px;
    left: -88px;
    bottom: 24px;
    display: none;
}

.complex__table-description:hover .complex__table-tooltip {
    display: block;
}

.complex__table-footer {
    border-top: 1px solid #B3C1CB;
    border-bottom: 1px solid #B3C1CB;
}

.complex__price-subtitle {
    padding-bottom: 30px;
}

.complex__stages {
    padding: 60px 0;
}

.complex__form-wrap {
    border-top: 1px solid #B3C1CB;
    border-bottom: 1px solid #B3C1CB;
    padding: 0 0 60px 0;
}

.complex__form-subtitle {
    padding: 0 0 40px 0;
}

.complex__form-gallery {
    padding-top: 80px;
}

/* centers */
.centers__item {
    margin-bottom: 60px;
    position: relative;
    display: block;
}

.centers__item-cover {
    position: absolute;
    left: -30px;
    right:-30px;
    top: -50px;
    z-index: 2;
    padding: 50px 40px;
    opacity: 0;
}

.centers__item-title {
    margin: 0 0 20px -5px;
}

.centers__item-title span {
    padding: 5px;
    display: inline-block;
}

.centers__item:hover .centers__item-cover {
    opacity: 1;
}

.centers__item-logo {
    margin: 30px 0 0 0;
    max-width: 200px;
}

/* doctors */
.doctors__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.doctors__list .doctor__card {
    width: 48%;
    padding-bottom: 20px;
}

.doctor__card-img-link {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: width .2s ease-in-out;
    background: #f2f0f3;
}

.doctor__card-img-link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.doctor__card-img-link img {
    width: 100%;
    height: auto;
    display: block;
}

.doctor__card-name {
    display: block;
    margin: 18px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #77B09D;
    transition: all .2s ease-in-out;
}

.doctor__card-name:hover {
    color: #F1CD32;
}

.doctor-card__speciality {
   font-weight: 500;
   margin-bottom: 10px;
}

.doctor__card .doctor__link {
    display: none;
}

.specialists-btn-prev,
.specialists-btn-next {
    margin: 0 18px;
    z-index: 5;
}

.specialists-btn-prev:after,
.specialists-btn-next:after {
    content: '';
    width: 10px;
    height: 17px;
    background: url(/img/slider-btn-arrow.svg) center/contain no-repeat;
}

.specialists-btn-next:after {
    transform: rotate(180deg);
}

.docs_slider-btns {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.doctors__more {
    padding: 60px 0;
    border-top: 1px solid #e6edf3;
}

.doctors__more h2 {
    padding-bottom: 30px;
}

.doctors__slider-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctors__slider-prev,
.doctors__slider-next {
    margin: 0 10px;
    z-index: 5;
    left: 0;
    right: 0;
    position: relative;
}

.doctors__slider-prev:after,
.doctors__slider-next:after {
    content: '';
    width: 10px;
    height: 17px;
    background: url(/img/slider-btn-arrow.svg) center/contain no-repeat;
}

.doctors__slider-next:after {
    transform: rotate(180deg);
}

.doctor__left {
    display: none;
}

.docs__back {
    position: absolute;
    left: 0;
    top: 0;
}

.doctor__back {
    display: block;
    padding: 8px 20px 6px 20px;
    border: 1px solid #E6EDF3;
    border-radius: 20px;
    width: auto;
    max-width: 165px;
}

.doctor__back svg {
    display: inline-block;
    position: relative;
    top: -1px;
}

.doctor__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 20px 0;
    position: relative;
}

.doctor__photo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doctor__img {
    left: 0;
    width: 270px;
    height: 270px;
    padding-top: 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f0f3;
}

.doctor__img img {
    height: 120%;
}

.doctor__recommend {
    margin-top: -30px;
    padding: 7px;
    text-align: center;
    width: 240px;
    background: #fff;
    border: 1px solid #E6EDF3;
    border-radius: 10px;
}

.doctor__recommend_stars {
    width: 108px;
    height: 18px;
    margin: 0 auto;
    position: relative;
}

.doctor__recommend_stars svg {
    position: relative;
    z-index: 1;
}

.doctor__recommend_star {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.doctor__info {
    display: none;
}

.doctor__info_header-mob {
    padding-bottom: 10px;
}

.doctor__otzovik_warp {
    padding-top: 30px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    display: none;
}

.doctor__otzovik-mob {
    margin-top: 20px;
}

.doctor__otzovik {
    padding: 10px;
    border-radius: 15px;
    background: #FFFAE7;
    color: #392D00;
    width: 100%;
}

.doctor__otzovik_item {
    padding: 5px;
}

.doctor__otzovik_logo {
    min-width: 120px;
    max-width: 120px;
}

.doctor__appointment {
    width: calc(100% + 30px);
    padding: 15px;
    background: radial-gradient(40.58% 40.58% at 50% 59.42%, #CFE7DF 0%, #F8FCFA 100%);
    border-radius: 20px;
    margin: -45px 0 0 -15px;
}

.doctor__info_title {
    padding: 1em 0 .3em 0;
}

.doctor__shedule {
    width: 100%;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #E6EDF3;
    background: #fff;
    box-shadow: 0px 4px 13px 0px #DDEEE8;
}

.doctor__shedule_title {
    padding: 0 0 20px 0;
}

.doctor__shedule  .appointment-day-shedule__item {
    border-bottom: none;
}

.appointment_shedule-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8798A5;
}

.doctor__shedule .appointment_next-step {
    text-align: left;
    padding-bottom: 0;
}

.doctor__contacts {
    padding: 20px 0 0 20px;
    display: flex;
}

.doctor__contacts_map {
    width: 30px;
    padding-right: 10px;
}

.doctor__contacts_address {
    padding-bottom: 5px;
}

.tabs_container {
    display: none;
}

.tabs_container.active {
    display: block;
}

.doctor__price {
    padding-bottom: 20px;
    display: flex;
    overflow-x: auto;
    align-items: stretch;
    flex-wrap: wrap;
}

.doctor__price_item {
    width: 100%;
    min-height: 125px;
    margin: 0 0 10px 0;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--grey-lighter, #E6EDF3);
    background: linear-gradient(132deg, #F6F7F9 0%, #E0E3E7 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.doctor__price_item:nth-child(3n) {
    margin: 0 0 10px 0;
}

.doctor__price_bottom {
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
}

.doctor__services {
    padding: 20px 0;
}

.doctor__services_item {
    display: flex;
    padding: 5px 0;
}

.doctor__services_url {
    flex-grow: 1;
}

.doctor__services_a {
    border-bottom: 1px solid #B3C1CB;
}

.doctor__services_score {
    width: 70px;
    display: flex;
    justify-content: end;
    padding-top: 4px;
}

.doctor__services_round {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 4px;
}

/* удалить */
.doc__services-list {
    columns: 1;
}

.doc__services-item {
    display: inline-block;
    width: 100%;
    padding: 0 20px 20px 0;
}

/* то что выше */

.doctor__proof {
    padding: 1px 0 20px 0;
    border-radius: 10px;
    width: calc(100% + 30px);
    max-width: 900px;
    margin-left: -15px;
}

.doctor__proof_header {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

.doctor__proof_score {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 0;
}

.doctor__proof_heart {
    width: 50px;
}

.doctor__proof_digit {
    font-size: 27px;
    line-height: .8em;
    padding: 10px;
    order: 1;
}

.doctor__proof_average {
    max-width: 60px;
    line-height: 1em;
    text-align: center;
}

.doctor__review {
    width: 70%;
    margin-left: 15px;
}

.doctor__review_item {
    padding: 10px;
    height: 220px;
    overflow: hidden;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E6EDF3;
    position: relative;
    position: relative;
    z-index: 1;
}

.doctor__review_item.open {
    height: 100%;
    min-height: 220px;
    padding-bottom: 50px;
}

.doctor__review_bottom {
    padding: 5px 10px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}

.doctor__review_bottom:before {
    content: " ";
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #FFFFFF 100%);
    height: 50px;
}

.doctor__review_open {
    cursor: pointer;
}

.doctor__review_open svg {
    position: relative;
    top: 2px;
}

.doctor__review_client {
    padding: 0 0 0 10px;
    margin-top: -1px;
    position: relative;
    z-index: 2;
}

.reviews__slider_nav {
    padding: 10px 20px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.reviews__slider_all {
    margin-top: 30px;
}

.reviews__slider_all svg {
    position: relative;
    top: 1px;
}

.doctor__review_tr {
    width: 20px;
    height: 15px;
    margin-left: 20px;
}

.doctor__spec,
.doctor__teach {
    padding: 20px 0;
}

.doctor__teach_tabs {
    display: flex;
    border-bottom: 1px solid #E6EDF3;
    margin: 20px 0;
    overflow: hidden;
}

.doctor__teach_tabs li {
    padding-right: 30px;
}

.doctor__teach_tabs li a {
    display: block;
    color: #B3C1CB;
    border-bottom: 2px solid rgba(179, 193, 203, 0);
    padding: 15px 0;
    margin-bottom: -1px;
}

.doctor__teach_tabs li a.active {
    color: #8798A5;
    border-bottom: 2px solid rgba(179, 193, 203, 1);
}

.doctor__serts {
    padding: 20px 0;
    cursor: pointer;
}

.doctor__sert {
    width: auto;
    padding: 5px;
}

.doctor__sert_img {
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 4px 0px #F0F2F5;
}

.doctor__sert img {
    display: block;
    height: 200px;
    width: auto!important;
}

.serts__slider-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.serts__slider-prev,
.serts__slider-next {
    margin: 0 10px;
    z-index: 5;
    left: 0;
    right: 0;
    position: relative;
}

.serts__slider-prev:after,
.serts__slider-next:after {
    content: '';
    width: 10px;
    height: 17px;
    background: url(/img/slider-btn-arrow.svg) center/contain no-repeat;
}

.serts__slider-next:after {
    transform: rotate(180deg);
}

.doctor__articles,
.doctor__videos {
    padding: 20px 0;
    max-width: 795px;
    position: relative;
}

/* akcii */
.akcii__header {
    margin: 50px 0 40px 0;
}

.akcii__period {
    padding: 0 0 30px 0;
}

.akcii__more {
    padding: 30px 0;
}

.akcii__more-wrap {
    padding: 30px 0;
    border-top: 1px solid #B3C1CB;
}

.akcii__more-title {
    display: flex;
    justify-content: space-between;
}

.akcii__more-wrapper {
    align-items: stretch;
    display: flex;
}

a.akcii__simple-item {
    display: flex;
}

.akcii__simple-info {
    padding: 20px;
}

.stock__item {
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    width: 100%;
}

.stock__item_img img {
    height: 200px;
    display: block;
    opacity: .9;
}

.stock__item_info {
    padding: 0 15px 15px 15px;
    border-radius: 15px;
    border: 1px solid #E6EDF3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stock__item_title {
    padding-bottom: 10px;
}

.stock__item_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock__item_page {
    margin-top: 30px;
}

.stock__page_tags {
    padding: 10px 0;
}

.stock__more {
    margin-top: 20px;
}

.stock__more_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock__more_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* about */
.about {
    padding: 20px 0;
}

.about__sidebar h1 {
    padding-top: 20px;
}

.about__nav {
    padding: 10px 0;
}

.about__nav ul li {
    padding: 5px 0;
}

.about__nav ul li a {
    color: #3B454D;
}

.about__nav ul li.active a {
    color: #8798A5;
    font-weight: 500;
}

.about__nav ul li.active a:before {
    content: '';
    display: inline-block;
    background: #91B83F;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.about__header-col {
    position: relative;
}

.about__header-col1 {
    padding-bottom: 60px;
}

.about__header-col3 {
    padding: 30px 0 ;
}

.about__header-col1 img {
    max-width: 80%;
}

.tour3d {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: 0;
    bottom: 20px;
    width: 230px;
    height: 230px;
    padding: 20px;
    position: absolute;
}

.about__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 40px 0;
}

.about__icon {
    width: 48%;
    padding: 20px 0;
}

.about__icon p {
    padding: 10px 0;
}

.content__about {
    padding-top: 40px;
}

.about__slider-wrap {
    max-width: 770px;
    padding-top: 90px;
}

.about__slider-circle {
    padding: 40px 0;
}

/* contacts */
.contacts__page {
    padding: 40px 0;
}

.contacts__address {
    padding-bottom: 20px;
}

.contacts__title {
    padding-bottom: 10px;
}

.contacts__h4 {
    padding: 60px 0 20px 0;
}

.contacts__metro {
    padding-bottom: 20px;
}

/* reviews */
.review__item {
    padding: 30px 0;
}

.review__text {
    padding: 10px 0;
    border-bottom: 2px solid #E6EDF3;
}

.review__doc-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f0f3;
    display: inline-block;
    position: relative;
    top: 13px;
    margin-right: 10px;
}

.review__doc-img img {
    display: block;
}
    
.addreview {
    min-width: 206px;
    max-width: 206px;
    cursor: pointer;
}

.review__form {
    width: 90%;
    max-width: 1200px;
}

.review__form-inputs .h2 {
    padding-bottom: 30px;
}

.review__form-textarea svg {
    display: block;
    margin-left: 100px;
}

.review__form-text {
    max-width: 400px;
    margin-bottom: 30px;
}

.text_review {
    display: block;
    border: none;
    outline:none!important;
    outline-offset: 0!important;
    width: 100%;
    height: 350px;
    padding: 30px;
    background: #F6F7F9;
}

/* vacancies */
.vacancies__emails {
    border-bottom: 1px solid #B3C1CB;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.vacancies__email {
    padding-bottom: 40px;
}

.vacancies__item {
    padding: 10px 0;
}

.vacancies__item-cols {
    display: flex;
    padding: 30px 0 10px 0;
}

.vacancies__item-col {
    padding: 0 20px 20px 0;
    min-width: 200px;
}

.vacancies__item-title {
    cursor: pointer;
}

.vacancies__item-title.active {
    font-weight: bold;
}

.vacancies__item-p {
    padding-bottom: 30px;
}

.vacancies__item-p p {
    padding-bottom: 1em;
}

.vacancies__item-p ul li {
    padding: 5px 0 5px 30px;
}

.vacancies__item-p ul li:before {
    content: '';
    width: 30px;
    height: 25px;
    display: inline-block;
    margin: 0 0  0 -30px;
    background: url(/upload/common/marker_green.png) left top no-repeat;
    position: relative;
    top: 7px;
}

.vacancies__item-h {
    padding-bottom: 10px;
}

.vacancies__item-wrap {
    display: none;
}

.vacancies__item-wrap.active {
    display: block;
}

.search__page-form {
    padding-bottom: 40px;
    display: flex;
    max-width: 800px;
}

/* search */
.search__page-input {
    padding-right: 30px;
    width: calc(100% - 155px);
}

.page__search-row {
    display: flex;
    padding-bottom: 20px;
    max-width: 800px;
}

.page__search-idx {
    min-width: 30px;
    max-width: 30px;
}

.page__search-row p {
    padding-top: 5px;
}


/* appointment form */

#appointment_modal {
    padding: 0 10px;
    width: 100%;
    max-width: 1400px;
    /* min-height: 80vh; */
}

#appointment_form {
    background: #FFFFFF;
    padding: 40px;
}

#appointment_form .appointment_second-step,
#appointment_form.step2 .appointment_first-step,
#appointment_form.ordering .appointment_first-tab,
#appointment_form.confirmation .appointment_first-tab,
#appointment_form .appointment_second-tab,
#appointment_form .appointment_third-tab,
#appointment_form .appointment_success,
#appointment_form.success .appointment_first-tab,
#appointment_form.success .appointment_third-tab,
#appointment_form.success .appointment_second-tab {
    display: none;
    opacity: 0;
}

#appointment_form.step2 .appointment_second-step,
#appointment_form.ordering .appointment_second-tab,
#appointment_form.confirmation .appointment_third-tab,
#appointment_form.success .appointment_success {
    display: block;
    opacity: 1;
    -webkit-animation: fadeInFromNone 0.5s ease-out;
    -moz-animation: fadeInFromNone 0.5s ease-out;
    -o-animation: fadeInFromNone 0.5s ease-out;
    animation: fadeInFromNone 0.5s ease-out;
}

.appointment_second-step {
    position: relative;
}

#appointment_form.awaiting {
    opacity: .6;
}

.btn_rarrow:after,
a.btn_rarrow:after {
    margin-left: 21px;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@-moz-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@-o-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}
@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

.appointment_first-tab {
    position: relative;
    height: 100%;
}

.appointment-speciality-list {
    columns: 3;
}

.appointment-speciality-list_item {
    display: inline-block;
    width: 100%;
    margin: 7px 0;
    padding-right: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5D883D;
    cursor: pointer;
}

.appointment-speciality-list_item:hover {
    text-decoration: underline;
}

.appointment-header {
    margin-bottom: 30px;
}

.appointment-subheader {
    margin-bottom: 10px;
}

.appointment-filter-doctors {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 31px;
}

.step2 .appointment-filter-doctors {
    margin-bottom: 27px;
}

.appointment-filter-doctors__col {
    width: 50%;
    padding-right: 10px;
    padding-left: 10px;
}

#appointment_form .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #B3C1CB;
    box-sizing: border-box;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #3B454D;
    height: 50px;
}

#appointment_form .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
}


#appointment_form .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: static;
    height: 10px;
    width: 18px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.909668 1L8.90967 9L16.9097 1' stroke='%23C2CBD1'/%3E%3C/svg%3E");
    margin-right: 18px;
}

#appointment_form .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-dropdown.appointment-select2__dropdown {
    background: #FFFFFF;
    box-shadow: 0px 4px 34px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.appointment-select2__dropdown .select2-results__option {
    display: flex;
    align-items: center;
    padding: 5px 22px;
    min-height: 37px;
}

.select2-container--default .appointment-select2__dropdown .select2-results__option {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #3B454D;
}

.select2-container--default .appointment-select2__dropdown .select2-results__option--highlighted.select2-results__option--selectable,
.select2-container--default .appointment-select2__dropdown .select2-results__option--selected {
    background-color: #E6EDF3;
    color: #3B454D;
}

.doctor-select2__item {
    display: flex;
}

.doctor-select2__item-img,
.doctor-select2__item-img-all {
    width: 40px;
    height: 40px;
    background: #E6EDF3;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    padding-top: 4px;
    margin-right: 10px;
}

.doctor-select2__item-img-all {
    overflow: visible;
    background: transparent;
    padding-top: 0;
}

.doctor-select2__item-img img {
    width: 100%;
}

.doctor-select2__item-name {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #3B454D;
    margin-top: 5px;
}

.appointment-dates__wrapper {
    padding: 0 0 20px 0;
    overflow: hidden;
}

.appointment-dates {
    max-width: 800px;
}

.appointment-date__slide {
    width: 140px;
}

.appointment-date__item {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    height: 77px;
    background: #FFFFFF;
    border: 1px solid #B3C1CB;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    transition: all .3s ease;
}

.appointment-date__item.active,
.appointment-date__item.active:hover {
    background: #5D883D;
    border: 1px solid #5D883D;
    box-shadow: 0px 2px 2px rgba(179, 193, 203, 0.25);
}

.appointment-date__item:hover {
    background: #97C04D;
    border: 1px solid #97C04D;
}

.appointment-week-day__short,
.appointment-date__short,
.appointment-submit__mobile,
.appointment-confirm__mobile {
    display: none;
}

.appointment-date__item.active div,
.appointment-date__item.active span,
.appointment-date__item:hover div,
.appointment-date__item:hover span {
    color: #FFF;
}


.appointment-dates-prev,
.appointment-dates-next {
    position: absolute;
    top: 38px;
    transform: translateY(-50%);
}

.appointment-dates-prev {
    left: -30px;
}

.appointment-dates-next {
    right: -30px;
}

.appointment-dates-prev:after,
.appointment-dates-next:after {
    content: "";
    width: 10px;
    height: 17px;
    background: url("/img/slider-btn-arrow.svg") center/contain no-repeat;
}

.appointment-dates-next:after {
    transform: rotate(180deg);
}

.appointment-dates-prev.swiper-button-disabled,
.appointment-dates-next.swiper-button-disabled {
    opacity: .3;
}

/* #appointment_day_shedule {
    min-height: 400px;
} */

#appointment_day_shedule.loading {
    opacity: .6;
}

.appointment-day-shedule__item {
    display: flex;
    border-bottom: 1px solid #E6EDF3;
    margin-bottom: 20px;
}

.appointment-shedule-item__doctor {
    display: flex;
    flex: 0 0 auto;
    width: 500px;
}

.appointment-shedule-item__doctor-img {
    display: block;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    background: #E6EDF3;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    padding-top: 10px;
    margin-right: 22px;
    margin-bottom: 15px;
}

.appointment-shedule-item__doctor-img:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.appointment-shedule-item__doctor-img img {
    width: 100%;
}

.appointment-shedule-item__doctor-details {
    padding-top: 2px;
}

.appointment-doctor-details__name {
    margin-bottom: 2px;
}

.appointment-doctor-details__speciality {
    margin-bottom: 2px;
}

.appointment-shedule-item__time {
    display: flex;
    flex-wrap: wrap;
    margin-right: -7px;
    margin-left: -7px;
}

.appointment-doctor-time__item {
    padding: 0 7px;
    margin-bottom: 15px;
}

.appointment-doctor-time__item span {
    display: block;
    width: 100px;
    padding: 8px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
}

.appointment-doctor-time__item span.active {
    background: #5D883D;
    color: #FFF;
}

.appointment_next-step {
    position: sticky;
    bottom: -65px;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    text-align: right;
}

.appointment_next-step .btn_rarrow[disabled] {
    background: linear-gradient(180deg, #91B83F 0%, #B8D9AA 100%);
    opacity: 0.6;
    cursor: default;
}

.appointment_second-tab__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.appointment_second-tab__left-col {
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.appointment_second-tab__right-col {
    -ms-flex: 0 0 57%;
    flex: 0 0 57%;
    max-width: 57%;
}

.appointment_second-tab .h4 {
    padding: 10px 0 15px;
}

.appointment_round-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 9px;
    padding-top: 1px;
    text-align: center;
    color: #FFFFFF;
    width: 16px;
    height: 16px;
    background: linear-gradient(180deg, #91B83F 0%, #B8D9AA 100%);
    border-radius: 40px;
}

.appointment-info_table {
    margin-bottom: 39px;
}

.appointment-info_table-row {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 14px;
}

.appointment-info_table-left {
    flex: 0 0 auto;
    width: 94px;
}

.appointment-info_table-left.appointment-info_table-left-doc {
    width: 53px;
}

.appointment-info_table-about {
    min-width: 438px;
}

.appointment-info_table-patient .appointment-info_table-left,
.appointment-info_table-about .appointment-info_table-left {
    width: 130px;
}

.appointment_third-tab__row {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.appointment_third-tab__left-col,
.appointment_third-tab__right-col {
    width: 50%;
    flex: 0 0 calc(50% - 11px);
}

.appointment-confirmation__attention {
    border-top: 1px solid #E6EDF3;
    padding: 24px 0 0 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='8' fill='url(%23paint0_linear_1265_8845)'/%3E%3Cpath d='M7.70409 9.115L7.36209 5.119V4.804H8.64009V5.119L8.30709 9.115H7.70409ZM7.40709 11.104V9.871H8.60409V11.104H7.40709Z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1265_8845' x1='8' y1='0' x2='8' y2='16' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2391B83F'/%3E%3Cstop offset='1' stop-color='%23B8D9AA'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: left top 24px;
    background-repeat: no-repeat;
}

.appointment-confirmation__attention p {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #8798A5;
    margin-top: 0;
    margin-bottom: 16px;
}

.appointment-confirmation__attention p:last-child {
    margin-bottom: 0;
}

.appointment-doctor-services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 15px;
    background: #F0FAF7;
    border-radius: 15px;
}

.appointment-service__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #3B454D;
    border-bottom: 1px solid #BAD5CE;
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.appointment-service__item:last-child {
    border-bottom-color: transparent;
    margin-bottom: 0;
    padding-bottom: 0;
}

.appointment-service__item .appointment-service__item-price {
    text-align: right;
    width: 100px;
}

.appointment-service__item input[type="radio"] {
    display: none;
}

.appointment-service__item input[type="radio"] + span {
    cursor: pointer;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='white' stroke='%238798A5' stroke-width='2'/%3E%3C/svg%3E");
    background-position: left top;
    background-repeat: no-repeat;
    padding: 0 16px 0 36px;
    max-width: 336px;
    
}

.appointment-service__item input[type="radio"]:checked + span  {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='url(%23paint0_linear_2929_9630)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.0845 5.36206L8.90045 15.5723L4.60059 11.4365L5.64913 10.3638L8.69926 13.278L14.8652 4.48828L16.0845 5.36206Z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_2929_9630' x1='10' y1='0' x2='10' y2='20' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235D883D'/%3E%3Cstop offset='1' stop-color='%23ACD19E'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.appointment-info_metro {
    display: flex;
    margin-top: 4px;
}

.appointment-info_metro .appointment_round-icon {
    margin-right: 4px;
}

#appointment_form hr {
    width: 100%;
    border: none;
    color: #E6EDF3;
    background-color: #E6EDF3;
    height: 1px;
    margin-bottom: 20px;
}

.appointment-info-block {
    position: relative;
    max-width: 290px;
    padding-left: 24px;
}

.appointment-info-block .appointment_round-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.appointment_required-fields__info {
    margin-bottom: 15px;
}

.appointment-form__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.appointment-form__group {
    position: relative;
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 18px;
}

.appointment-form__label {
    display: block;
    margin-bottom: 6px;
}

.appointment-form__input {
    height: 50px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #B3C1CB;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 0 15px;
}

textarea.appointment-form__input {
    height: 150px;
    padding: 15px;
}

.appointment_payments {
    display: flex;
    justify-content: space-between;
    margin-left: -5px;
    margin-right: -5px;
}

.appointment_payment-item {
    display: block;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
}

.appointment_payment-item input {
    display: none;
}

.appointment_payment-item-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid #B3C1CB;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 15px 17px;
}

input[type="radio"]:checked + .appointment_payment-item-block {
    border: 1px solid #97C04D;
}

input[type="radio"]:checked + .appointment_payment-item-block::after {
    content: '';
    display: block;
    position: absolute;
    top: -7px;
    right: -9px;
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='15' cy='15' r='15' fill='url(%23paint0_linear_1277_9248)'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.0845 9.36206L13.9005 23.5723L6.60059 16.4365L7.64913 15.3638L13.6993 21.278L22.8652 8.48828L24.0845 9.36206Z' fill='white'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1277_9248' x1='15' y1='0' x2='15' y2='30' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%235D883D'/%3E%3Cstop offset='1' stop-color='%23ACD19E'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

input[type="radio"]:disabled + .appointment_payment-item-block {
    cursor: default;
    border-color: #E6EDF3;
}

input[type="radio"]:disabled + .appointment_payment-item-block .appointment_payment-item-name {
    color: #8798A5;
}

input[type="radio"]:disabled + .appointment_payment-item-block .appointment_payment-item-caption {
    color: #3B454D;
}

input[type="radio"]:disabled + .appointment_payment-item-block .appointment_payment-item-icon__png {
    opacity: .2;
}

.appointment_payment-item-caption__unavailable {
    display: none;
}

input[type="radio"]:disabled + .appointment_payment-item-block .appointment_payment-item-caption__available {
    display: none;
}

input[type="radio"]:disabled + .appointment_payment-item-block .appointment_payment-item-caption__unavailable {
    display: block;
}

.appointment_payment-item-name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
}

.appointment_payment-item-caption {
    line-height: 18px;
}

.appointment_payment-item-icon {
    display: flex;
    margin-top: 12px;
}

.appointment_payment-item-icon__png {
    opacity: 0.4;
    width: 25px;
}

.appointment_buttons-block {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 23px;
}

.appointment_final_error-text,
.ajax_form .appointment_final_error-text.error {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FF3300;
    flex-grow: 1;
    padding-right: 18px;
}

.appointment_previous-step {
    display: flex;
    align-items: center;
}

.appointment_previous-step svg {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

#appointment_form.success .appointment_success {
    display: flex!important;
    align-items: center;
    justify-content: center;
    margin-top: 96px;
}

.appointment_success-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 425px;
}

.appointment_success-title {
    font-weight: 700;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    margin-bottom: 80px;
}

.appointment_success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 82px;
}

.appointment_success hr {
    max-width: 350px;
}

.appointment_success-info {
    max-width: 350px;
    position: relative;
    padding-left: 28px;
}

.appointment_success-info .appointment_round-icon {
    position: absolute;
    left: 0;
    top: 0;
}

.appointment_success-info a {
    color: #8798A5;
}

/* Appointment form unavailable */

.appointment-unavailable-form .appointment_second-tab__left-col .appointment-form__group {
    max-width: 100%;
}

.contacts-header-unavailable {
    padding-top: 0;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none!important;
}

.appointment__close-button {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 1;
}

/* share pages */
.share__container {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 10px;
}

.share__page_btn {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 24px;
    margin: 10px 0;
}

.share__page_btn .h3 {
    padding: 0 0 2px 0;
}

.share__page_address {
    padding: 30px 0;
}

/* minimal pages */
.minimal__header {
    padding: 15px 15px 0 15px;
}

.minimal__content,
.minimal__faq,
.minimal__video,
.minimal__footer {
    padding: 0 15px;
}

.minimal__footer {
    padding-bottom: 30px;
}

.minimal__faq_item {
    padding: 10px 0 40px 30px;
    border-top: 1px solid #E6EDF3;
}

.minimal__faq_q {
    margin: 0 0 10px 0;
}

.minimal__faq_d {
    display: inline-block;
    width: 30px;
    margin-left: -30px;
}

.minimal__iframe {
    height: 250px;
}

@media (min-width: 1024px) {
    .minimal__header {
        padding: 40px 40px 0 40px;
    }
    
    .minimal__content,
    .minimal__faq,
    .minimal__video,
    .minimal__footer {
        padding: 0 40px;
        max-width: 800px;
    }

    .minimal__footer {
        padding-bottom: 50px;
    }

    .minimal__iframe {
        height: 400px;
    }
}

.break-page {
    break-after: page;
}