:root {
    font-size: 10px;
}

@font-face {
    font-family: 'Lato';
    src: local('Lato Regular'), local('Lato-Regular'), url('/templates/adult4/dev/fonts/latoregular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: local('Lato Medium'), local('Lato-Medium'), url('/templates/adult4/dev/fonts/latomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: local('Lato Semibold'), local('Lato-Semibold'), url('/templates/adult4/dev/fonts/latosemibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: local('Lato Bold'), local('Lato-Bold'), url('/templates/adult4/dev/fonts/latobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    background: #eee;
}

.scroll, .scroll2 {
    overflow: hidden;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

a, button, input, textarea, select {
    transition: .2s linear;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h5, p {
    margin: 0;
    font-weight: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    appearance: none;
}

.button, .input {
    border: none;
    cursor: pointer;
    background: none;
    outline: none;
}

.input {
    cursor: text;
}

.input::placeholder {
    color: #E27D60;
}

.input:focus::placeholder {
    opacity: 0;
}

/* Шапка */
.header {
    width: 100%;
    box-shadow: 0 5px 10px #dadada;
    border-radius: 0 0 1rem 1rem;
    height: 53px;
    background: #fff;
}

.header__inner, .footer__inner {
    width: 100%;
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.header__input--inner {
    min-width: 100px;
    max-width: 400px;
    position: relative;
}

.header__input {
    padding: .5rem 5rem .5rem 1.5rem;
    color: #E27D60;
    font-size: 1.8rem;
    border: 1px dashed #E27D60;
    border-radius: 5px;
    width: 100%;
}

.header__search--button {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    background: #E27D60;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9px;
}

.header__search--button:hover {
    opacity: 0.7;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header__nav--outer {
    position: relative;
}

.header__nav--link:hover, .header__nav--link.active {
    color: #E27D60;
    background: rgba(0, 0, 0, .1);
    cursor: pointer;
}

.header__nav--link {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    padding: 0 1rem;
    height: 53px;
}

.header__nav--dropdown {
    width: 450px;
    overflow-y: auto;
    max-height: 250px;
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem;
    border: 1px dashed #B7B7B7;
    display: none;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #fff;
    opacity: 0;
    transition: .3s linear;
    z-index: 3;
}

.header__nav--dropdown.active {
    display: flex;
    opacity: 1;
}

.header__nav--dropdown--link {
    width: max-content;
}

.header__nav--dropdown--link:first-child, .header__nav--dropdown--link:nth-child(2) {
    margin-top: 0;
}

.header__location {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
}

.header__location--icon {
    margin-right: 1rem;
}

/* Главный блок */
.main {
    padding: 3rem 0;
    min-height: calc(100vh - 127px);
}

.main__title {
    margin: 0 .5rem 2rem;
    font-size: 3rem;
    font-weight: 600;
}

.main__subtitle {
    font-size: 2.5rem;
    font-weight: 500;
    margin-top: 3rem;
}

.main__subtitle:first-child {
    margin-top: 0;
}

.salon__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.salon__item {
    width: 48.5%;
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px dashed #B8B8B8;
    margin-top: 4rem;
    display: flex;
    align-items: flex-start;
}

.salon__item:first-child, .salon__item:nth-child(2) {
    margin-top: 0;
}

.salon__item--img--wrapper {
    width: 300px;
    flex-shrink: 0;
    margin-right: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.salon__item--img--inner {
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.salon__item--img {
    width: 100%;
}

.salon__item--img--verify {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
}

.salon__item--text {
    margin-top: 1rem;
}

.salon__item--text--inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.salon__item--social {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.salon__item--social:first-child {
    margin-top: 0;
}

.salon__item--social--phone {
    margin-right: 0.5rem;
    padding: 0.7rem 2.5rem;
    border-radius: 5px;
    background: #E27D60;
    color: #fff;
    font-size: 1.4rem;
}


.salon__item--social--link {
    display: flex;
    margin: 0.25rem;
    width: 31px;
}

.salon__item--social--ico {
    width: 100%;
}

.salon__item--social--link:last-child {
    margin-right: 0;
}

.salon__item--models {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.salon__item--subtitle {
    font-size: 1.4rem;
    font-weight: 600;
}

.salon__item--models--content {
    margin-top: 0.5rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.salon__item--models--link {
    display: flex;
    width: 88px;
    margin: 0.2rem;
}

.salon__item--models--img {
    width: 100%;
}

.menu {
    display: none;
}

.header__nav--drop {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
}

.header__nav--drop {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    padding-left: 1rem;
    overflow-y: auto;
    max-height: 200px;
    display: none;
}

.header__nav--drop.active {
    display: flex;
}

.header__nav--drop:first-child {
    margin-top: 0;
}

.notresult__link {
    text-decoration: underline;
}

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

/* Пагинация */
.paggin {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.paggin__button, .paggin__num {
    border-radius: 5px;
    padding: 1rem 3rem;
    color: #E27D60;
    background: #f0f0f0;
    margin: 0.25rem;
}

.paggin__num {
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paggin__num.active {
    background: #E27D60;
    color: #fff;
}

.paggin__button:hover, .paggin__num:hover {
    color: #fff;
    background: #E27D60;
}

.paggin__button:last-child {
    margin-right: 0;
}

/* Хлебные крошки */
.breadcrumb__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0.5rem 2rem;
}

.breadcrumb__link {
    text-decoration: underline;
}

.breadcrumb__ach {
    margin: 0rem 1rem;
}

.breadcrumb__active, .breadcrumb__link {
    margin: 0.25rem 0;
}

/* Текстовый блок */
.textblock {
    padding: 5rem 0 3rem;
}

.textblock__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.textblock__title {
    font-size: 2.5rem;
    font-weight: 700;
}

.textblock__text {
    margin-top: 1.5rem;
}

/* Карточка модели */
.card__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 3rem;
}

.card__img--inner {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 5px;
}

/*.card__img {*/
/*    width: 100%;*/
/*    display: flex;*/
/*}*/

.card__img--items {
    width: 100%;
    margin-top: 1rem;
}

.card__img--item {
    padding: 0rem 0.45rem;
}

.card__action {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.card__like {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    font-size: 1.4rem;
    margin: 0.25rem;
    gap: 0.5rem;
    cursor: pointer;
}

.card__like--icon {
    width: 31px;
    margin-right: -0.2rem;
}

.main__item--like--button .card__like--icon {
    width: 22px;
}

.card__text--block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
}

.card__text--block:first-child {
    margin-top: 0;
}

.card__map {
    margin-top: 1rem;
    width: 100%;
    height: 350px;
    border: none;
}

/* Yandex Map custom html tag container fixed */
#YMaps3ID > ymaps {
    max-width: 100% !important;
    width: 100% !important;
}

.card__text--block--title {
    font-size: 2.5rem;
    font-weight: 500;
}

.card__desc {
    width: 100%;
    margin-top: 1.5rem;
    color: #7d7d7d;
}

.view__models {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 5rem;
}

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

.card__info--item--title, .card__price--item--price span {
    color: #A5A5A5;
}

a.card__info--item--text {
    text-decoration: underline;
}

.card__info--item--text, .card__info--item--title {
    font-size: 1.8rem;
}

.card__price--inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.card__price--item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card__price--item--price {
    margin: 1rem 0 0;
}

.card__price--item--title, .card__uslugi--title {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 1rem 0 0;
}

.card__uslugi--points {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.card__uslugi--point {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    background: url(/templates/adult4/dev/img/check.svg) no-repeat 0 center;
    padding: 0 0 0 25px;
}

.card__uslugi--point:first-child {
    margin-top: 0;
}

.card__uslugi--icon {
    margin-right: 1rem;
}

.reviews__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.reviews__item--inner, .reviews__item, .reviews__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews__item--content {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.reviews__item--content.active {
    display: flex;
}

.reviews__item {
    margin-top: 1.5rem;
}

.reviews__fade {
    text-decoration: underline;
}

.reviews__item:first-child, .reviews__item--content:first-child {
    margin-top: 0;
}

.reviews__item--name {
    font-size: 1.8rem;
    font-weight: 700;
}

.reviews__item--text {
    font-size: 1.8rem;
    color: #7D7D7D;
}

.reviews__item--name {
    display: flex;
    width: 100%;
    gap: .5rem;
    align-items: center;
}

.reviews__item--name span:last-child {
    font-size: 1rem;
    color: #aaa;
}

/*.reviews__item--text {*/
/*    padding: 0 1rem .5rem;*/
/*}*/


.reviews__noauth {
    margin-top: 1.5rem;
    color: #EE404C;
    font-size: 1.8rem;
    font-weight: 600;
}

.reviews__auth {
    margin-top: 1.5rem;
    color: #40af3d;
    font-size: 1.8rem;
    font-weight: 600;
}

.reviews__form {
    margin-top: 1.5rem;
}

.reviews__form--button {
    padding: 1rem 2.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    color: #fff;
    background: #E27D60;
    font-size: 1.4rem;
}

.reviews__form--input, .reviews__form--textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #E27D60;
    border-radius: 8px;
    font-size: 1.8rem;
    margin-top: 1rem;
}

.reviews__form--input:first-child, .reviews__form--textarea:first-child,
.form__captcha:first-child {
    margin-top: 0;
}

.reviews__form--textarea {
    height: 125px;
    resize: none;
}

.reviews__form--textarea::placeholder, .reviews__form--input::placeholder {
    color: #999999;
}

.form__captcha {
    max-width: 100%;
    display: flex;
    margin-top: 1rem;
    border: 1px solid #E27D60;
    overflow: hidden;
    border-radius: 1rem;
}

.captcha {
    width: calc(100% + 2px);
    border-radius: 1rem;
    margin: -1px;
}

/* Салон */
.salon__card--content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3rem;
}

.salon__box {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.salon__img--box {
    width: 100%;
    max-width: 750px;
    flex-shrink: 0;
    margin-right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.salon__img--wrapper {
    width: 100%;
    position: relative;
}

.salon__img--smalls {
    width: 100%;
    margin-top: .75rem;
}

.salon__img--small {
    border-radius: 8px;
}

.salon__img {
    width: 100%;
}

.salon__img--small {
    width: 100%;
    padding: 0.25rem;
}

.salon__verify {
    position: absolute;
    width: 40px;
    top: 15px;
    left: 15px;
}

.salon__text--inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.salon__program--text {
    margin: 2rem 0;
    font-size: 1.8rem;
}

.salon__metro {
    margin-top: 2rem;
    font-size: 1.8rem;
}

.salon__metro a {
    text-decoration: underline;
    color: #E27D60;
}

.salon__buttons {
    margin-top: 1.75rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.salon__button {
    margin: 0.25rem 0.5rem;
    padding: 0.7rem 2.5rem;
    border-radius: 5px;
    background: #E27D60;
    font-size: 1.4rem;
    color: #fff;
}

.salon__work {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-top: 2rem;
}

.salon__work--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 0.7rem;
}

.salon__work--item:last-child {
    margin-right: 0;
}

.salon__work--day {
    text-transform: uppercase;
    color: #fff;
    border-radius: 5px;
    padding: 0.4rem;
    font-size: 1.4rem;
    background: #E27D60;
}

.salon__work--time {
    margin-top: 0.3rem;
    font-size: 1.4rem;
}

.salon__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
}

.w100 {
    width: 100%;
}

.salon__view--all {
    margin-top: 1.5rem;
    padding: 0.7rem 3rem;
    background: #E27D60;
    border-radius: 5px;
    color: #fff;
    font-size: 1.8rem;
}

.salon__reviews {
    max-width: 640px;
}

.salon__program--content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.salon__program--item {
    width: 48.5%;
    margin: 2.5rem 0rem 0rem 0rem;
    border: 1px dashed #E27D60;
    padding: 1rem;
    border-radius: 5px;
}

.salon__program--item:first-child, .salon__program--item:nth-child(2) {
    margin-top: 0;
}

.salon__program--item--title {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 700;
}

.salon__program--item--point {
    margin-top: 1rem;
    color: #A5A5A5;
}

.salon__program--item--value {
    color: #000;
}

.salon__program--item--desc {
    margin-top: 1rem;
    height: 40px;
    overflow: hidden;
}

.salon__program--item--desc.active {
    height: auto;
}

.salon__program--item--show {
    margin-top: .7rem;
    color: #E27D60;
    text-decoration: underline;
    font-weight: 600;
}

/* Подвал */
.footer {
    padding: 1rem 0;
    box-shadow: 0 -5px 10px #dadada;
    border-radius: 1rem 1rem 0 0;
    background: #fff;
}

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

.footer__copy {
    color: #989898;
}

.footer__button {
    padding: 1rem 3.5rem;
    border-radius: 0.5rem;
    border: 1px dashed #E27D60;
    color: #E27D60;
}

.footer__button:hover {
    background: #E27D60;
    color: #fff;
}

.footer__logo {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Модальное меню */
.modal__menu {
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 5rem 1rem 1rem 1rem;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: .3s ease-in-out;
    opacity: 0;
    transform: translateX(-100%);
}

.modal__menu.active {
    opacity: 1;
    transform: translateX(0%);
}

.modal__menu--content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal__cross {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Модалка городов */
.modal__city {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(0, 0, 0, .5);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    opacity: 0;
    transition: .2s linear;
    pointer-events: none;
}

.modal__city.active {
    opacity: 1;
    pointer-events: all;
}

.modal__city--inner {
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 900px;
    min-height: calc(100% - 3.5rem);
    margin: 1.75rem auto;
    justify-content: center;
}

.modal__city--content {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
}

.modal__city--wrapper {
    width: 99%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal__city--cross {
    cursor: pointer;
}

.modal__city--box {
    width: 100%;
    margin-top: 1rem;
    overflow-y: auto;
    max-height: 350px;
    display: flex;
    flex-wrap: wrap;
    border: 1px dashed #b8b8b8;
    border-radius: .5rem;
}

.modal__city--link {
    width: 50%;
    padding: 0 0.5rem;
    color: #000;
    margin-top: 0.5rem;
}

.modal__city--link:hover {
    color: #D9A319;
}

.textblock__inner h2 {
    font-size: 2.5rem;
}

.textblock__inner p {
    margin: .5rem 0;
}

.textblock__inner ul li {
    list-style: disc;
    margin: 0 20px;
}

.notfound {
    display: flex;
    flex-flow: wrap row;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 79vh;
}
.notfound__bg {
    max-width: 35%;
    margin: 0 auto;
    display: block;
}

.notfound__text {
    width: 50%;
    margin: 5rem auto 3rem;
    display: block;
    text-align: center;
}

.notfound__link {
    text-decoration: underline;
}

/* Адаптив */
@media (max-width: 1440px) {
    .main__item {
        width: 32.2%;
        margin: 2rem 2rem 0rem 0;
    }

    .salon__item--models--link {
        width: 59px;
    }

    .salon__item .main__item--info--item {
        width: 100%;
    }

    .salon__img--box {
        max-width: 550px;
    }
}

@media (max-width: 1200px) {
    .header__input--inner {
        width: 150px;
    }

    .salon__item {
        width: 100%;
    }

    .salon__item:nth-child(2) {
        margin-top: 4rem;
    }

    .card__info--item {
        width: 48.5%;
        margin-right: 0;
    }

    /*.card__info--item:nth-child(3) {*/
    /*    margin-top: 1rem;*/
    /*}*/

    .reviews__item--text, .reviews__item--name {
        font-size: 1.6rem;
    }

    .salon__img--box {
        max-width: 450px;
    }

    .paggin {
        width: auto;
        margin: 2rem 0;
    }
}

@media (max-width: 998px) {
    .main__title {
        font-size: 3rem;
    }

    .main__subtitle {
        font-size: 2.1rem;
    }

    .main__item--info--item {
        width: 100%;
    }

    .header__nav--outer {
        margin-right: 2rem;
    }

    .header__nav--link {
        font-size: 1.4rem;
    }

    .header__location {
        font-size: 1.4rem;
    }

    .header__location--icon {
        margin-right: 0.7rem;
    }

    .menu {
        display: block;
        cursor: pointer;
        margin: 0 .5rem 0 0;
    }

    .header__nav, .header__location {
        display: none;
    }

    .card__info--item {
        width: 100%;
        padding: 0;
    }

    .card__info--item-price {
        padding: 0 calc(var(--bs-gutter-x) * .5);
    }

    /*.card__info--item:nth-child(2) {*/
    /*    margin-top: 1rem;*/
    /*}*/

    .card__map {
        height: 240px;
    }

    .salon__button {
        width: 100%;
    }

    .salon__img--box {
        max-width: 350px;
    }

    .salon__program--item {
        width: 100%;
        margin-top: 2rem;
    }

    .salon__program--item:nth-child(2) {
        margin-top: 2rem;
    }

    .modal__city--inner {
        max-width: 670px;
    }

    .main__item--info--title, .main__item--info--value {
        font-size: 1.4rem;
    }

    /*.breadcrumb__inner {*/
    /*    margin: 0 1.5rem 2rem;*/
    /*}*/

    .paggin {
        margin: 2rem 1rem;
    }

    .textblock {
        margin: 3rem 1rem 1rem;
    }
    .main__title, .breadcrumb__inner{
        margin: 0 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .main__item {
        width: 100%;
    }

    .main__item:nth-child(2) {
        margin-top: 2rem;
    }

    .modal__menu--content .header__input--inner {
        display: block;
        width: 100%;
    }

    .modal__menu--content .header__nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 1.5rem 0rem 0rem 0rem;
    }

    .header__nav--link--inner {
        width: 100%;
        margin: 1rem 0rem 0rem 0rem;
    }

    .header__nav--link {
        margin: 0;
    }

    .header__nav--link--inner:first-child {
        margin-top: 0;
    }

    .modal__menu--content .header__location {
        display: flex;
        margin-top: 1.5rem;
    }

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

    .footer__button {
        margin: 1rem 0;
    }

    .salon__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .salon__item--img--wrapper {
        width: 100%;
        margin: 0rem 0rem 1rem 0;
    }

    .main__subtitle, .main__title {
        margin-top: 1.5rem;
    }

    .card__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .salon__box {
        flex-direction: column;
        align-items: flex-start;
    }

    .salon__img--box {
        max-width: 100%;
        margin: 0rem 0rem 2rem 0;
    }

    .modal__city--inner {
        max-width: 90%;
    }

    .modal__city--link:nth-child(2) {
        margin-top: 0.5rem;
    }

    .modal__city--inner {
        max-width: 90%;
    }

    .main__title, .breadcrumb__inner{
        margin: 0 1.5rem 2rem;
    }
    .card__img--wrapper {
        margin: 0 0 3rem;
        padding: 0;
    }
}

@media (max-width: 500px) {
    .modal__city--link {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /*.header__input--inner {*/
    /*    width: 100px;*/
    /*}*/
    .main__item--img--box {
        max-width: 100%;
        margin: 0rem 0rem 1rem 0;
    }

    .paggin__button {
        padding: 1rem;
    }

    .paggin {
        margin-top: 2rem;
    }

    .salon__item--models--content {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .salon__item--models--link {
        width: 80px;
        flex-shrink: 0;
    }

    .main__title {
        font-size: 2.1rem;
        margin: 1rem 1.5rem;
    }

    .breadcrumb__inner {
        margin: 1rem 1.5rem;
    }

    .promo-messenger {
        margin: 1rem 1.5rem !important;
        width: calc(100% - 3rem) !important;
    }

    .salon__verify {
        top: 10px;
        left: 10px;
        width: 30px;
    }
}.item--background {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px #dadada;
}

#mainCarousel .carousel__button {
    background: #e27d60;
    color: #fff;
    border-radius: .5rem;
    width: 32px;
    height: 32px;
}

#thumbCarousel .carousel__slide {
    display: flex;
    padding: 0 1.5rem;
}

#thumbCarousel .carousel__viewport {
    border-radius: .5rem;
    overflow: hidden;
}

.videobox {
    display: flex;
    width: 100%;
    height: 100%;
    background: #000;
}

.videobox video {
    width: 100%;
    height: 100%;
}

.videobox-thumb {
    background: #eee;
}

.info-col-left {
    text-align: right;
}

.dropdown__cross {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 13px;
    height: 18px;
    padding: 0;
    cursor: pointer;
}

.dropdown__cross:before, .modal__city--cross:before {
    content: 'X';
    font-size: 1.8rem;
}

.promo-messenger {
    margin: 0 .5rem 2rem;
    border: 1px dashed #b8b8b8;
    border-radius: .5rem;
    padding: 1rem;
    width: calc(100% - 1rem);
}

.promo-messenger a {
    background: #E27D60;
    color: #fff;
    padding: .25rem;
    border-radius: .5rem;
}

.header__logo div {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 3rem;
}

.header__logo img, .footer__logo img {
    width: 32px;
    height: 32px;
}

.header__logo, .footer__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.header__nav--dropdown-item {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 1rem;
}

.header__nav--dropdown-title {
    font-size: 1.75rem;
    font-weight: 900;
    border-bottom: 1px solid #000;
    width: fit-content;
    padding: 0 .5rem;
}

.header__nav--dropdown-content {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    gap: 0.5rem;
}

.breadcrumb__active a {
    text-decoration: underline;
}

.breadcrumb__active a:after {
    content: '>';
    position: absolute;
    right: 5px;
}

.breadcrumb__active {
    position: relative;
    padding: 0 20px 0 0;
}

.header__nav--dropdown--link {
    width: max-content;
}

.main__item--attr--inner {
    position: absolute;
    bottom: 10px;
    margin: 0;
    left: 10px;
}

.main__item--img--inner a, .main__item--img--inner .main__item--img {
    width: 100%;
}

.main__item--img--inner a {
    display: flex;
}

.main__item--content {
    margin: 0.5rem 0.5rem 2rem;
    display: flex;
    flex-flow: wrap row;
    min-height: 201px;
}

.main__item--img--box {
    width: 35%;
}

.main__item--img--inner {
    position: relative;
}

.main__item--text--inner {
    width: 65%;
    padding: 0 0 0 .5rem;
}

.main__item--desc {
    width: 100%;
}

.main__item--img--box a, .main__item--img--box img {
    width: 100%;
    display: flex;
}

button.button.main__item--favorite {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.main__item--img {
    border-radius: .5rem;
}

.main__item--attr--inner {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: .5rem;
}

.main__item--name--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.5rem;
}

.button.main__item--like--button {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.main__item--info--item {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 .5rem;
    margin: 0 0 .5rem;
}

.main__item--info--item.full {
    width: 100%;
}

.main__item--info--title {
    color: grey;
}

.main__item--info--inner {
    display: flex;
    flex-flow: wrap row;
    padding-top: 1rem;
}

.main__item--info--value.truncate {
    text-align: right;
}

.main__item--attr--content {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    padding-left: 0.5rem;
}

.main__item--attr--item {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.main__item--phone--button {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem 0;
    border-radius: .5rem;
    background: #E27D60;
    color: #fff;
    font-size: 1.5rem;
    justify-content: center;
}

.phone__block{
    width: 100%;
}

.favs{
    cursor: pointer;
}

a.main__item--info--value {
    text-decoration: underline;
}

a.main__item--name {
    text-decoration: underline;
}

.main__item--desc {
    margin: .5rem 0 0;
    font-size: 1.4rem;
}

.truncate {
    width: 190px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main__alert--block {
    width: 100%;
    border: 1px dashed #E27D60;
    border-radius: .5rem;
    background: #F7d7d7;
    padding: 1rem;
    margin: 0 0 1rem;
}

.card__map {
    background: url(/templates/adult4/dev/img/map.svg) #eee no-repeat center center;
    background-size: contain;
    display: flex;
    max-width: 100%;
    flex-flow: wrap row;
    justify-content: center;
    align-items: center;
    border: 1px dashed #E27D60;
    border-radius: 1rem;
}

.map_span {
    background: #E27D60;
    border-radius: .5rem;
    padding: 1rem;
    color: #fff;
}

.map_span:hover {
    background: #F28D70;
    cursor: pointer;
}

.scroll-link {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 4;
    background: #e27d60;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    font-size: 2.7rem;
    display: none;
}

.scroll-link span{
    height: 100%;
}

.scroll-link.show {
    display: flex;
}

.similar{
    padding-top: 1.6rem;
}

.like-counter{
    color: black;
}

.button-box-box {
    background: #fff;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px #dadada;
    margin: .5rem .5rem 2rem;
}

.button-box-box a {
    text-decoration: underline;
}

.carousel__viewport {
    max-height: 550px;
    overflow: hidden;
    overflow-y: auto;
}

@media (max-width: 1200px) {
    .header__logo span {
        align-items: center;
        display: flex;
    }

    .header__logo span:before {
        font-size: 2rem;
    }

    .main__item
    .main__item--img--box, .main__item--text--inner {
        width: 100%;
    }

    .main__item--attr--content {
        flex-flow: wrap row;
        padding-top: 1rem;
        padding-left: 0.5rem;
        gap: 0.5rem;
        /*min-height: 43px;*/
        align-items: flex-start;
    }

    .main__item--text--inner {
        padding: 0;
        margin: .5rem 0;
    }

    .main__item--info--item {
        width: 100%;
    }

    .header__nav {
        gap: 0;
    }

    .header__nav--link {
        padding: 2.1rem .5rem;
    }

    .header__logo {
        width: min-content;
    }
}

@media (max-width: 998px) {
    .main__item--img--box {
        width: 100%;
    }

    .header__nav.view {
        display: block;
        position: fixed;
        top: 53px;
        left: 0;
        width: 90vw;
        bottom: 0;
        background: #fff;
        z-index: 100;
        padding: 1rem;
        border-right: 1px dashed #b8b8b8;
        overflow-x: auto;
    }

    .nav__bg {
        position: absolute;
        right: -10vw;
        width: calc(10vw - 1px);
        background: rgba(0, 0, 0, .5);
        bottom: 0;
        top: 0;
    }

    .header__nav--outer .header__nav--dropdown {
        top: 100%;
        left: 50%;
        right: 0;
        width: 100%;
        margin: 0;
    }

    .header__nav.view .header__nav--outer {
        margin: 0;
    }

    .header__nav--dropdown-item {
        width: 100%;
        padding: 0.5rem 1rem;
    }

    .main__content {
        padding: 0 1rem;
    }

    .similar {
        display: flex;
        row-gap: 1.5rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .similar > div {
        padding: 0;
    }

    .reviews__form--button {
        width: 100%;
        padding: 2rem 0;
    }

    .card__info--content {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .header__logo {
        align-items: flex-start;
        width: max-content;
    }

    .header__logo, .footer__logo {
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
    }

    .card__img--wrapper {
        margin: 0 0 3rem;
        padding: 0;
    }

    .main__item--name--wrapper {
        margin: 0 0 .5rem;
    }

    .card__action {
        flex-flow: wrap row;
    }

    .salon__item--social--phone {
        width: 100%;
        text-align: center;
        font-size: 1.8rem;
        margin: .5rem 0 1rem;
    }
}

@media (min-width: 850px) {
    .card__img--wrapper {
        padding: 0 3rem 0 0;
    }
}

@media (min-width: 999px) {
    .main__item--text--inner,
    .main__item--img--box {
        width: 50%;
    }

    .header__nav--dropdown {
        max-height: 450px;
    }
}

@media (min-width: 1200px) {
    .main__item--img--box {
        width: 30%;
    }

    .main__item--text--inner {
        width: 70%;
    }

    .main__item--attr--content {
        flex-flow: wrap row;
    }
}

#mainCarousel .carousel__slide {
    width: 100%;
    padding: 0;
}

#mainCarousel .carousel__slide img {
    width: 100%
}