body {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    color: #3D3D3D;
}
body, html {
    margin: 0;
    padding: 0;
    background: #f0f1f2;
}
body.compensate-for-scrollbar {
    overflow: initial !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}
::-webkit-scrollbar {
    width: 2px;
    background: #d9d9d9;
    border-radius: 12px;
}
::-webkit-scrollbar-thumb {
    background: #ED0A72;
    border-radius: 12px;
    cursor: pointer;
    max-width: 2px;
    max-height: 2px;
}
::-webkit-scrollbar-track {
    cursor: pointer;
}

h2, h1, p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    color: #3D3D3D;
    text-decoration: none;
    line-height: normal;
}

p {
    line-height: normal;
    color: #3D3D3D;
}

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

.container {
    max-width: 1800px;
    margin: 0px auto;
    width: 100%;
}

.container-fluid {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/*custom styles*/
.d-flex  {
    display: flex;
}
.a-item-center {
    align-items: center;
}
.a-item-f-start {
    align-items: flex-start;
}
.a-item-f-end {
    align-items: flex-end;
}
.j-content-sb {
    justify-content: space-between;
}
.j-content-center {
    justify-content: center;
}
.f-direction-column {
    flex-direction: column;
}
.j-content-end {
    justify-content: flex-end;
}
.j-content-start {
    justify-content: flex-start;
}
.f-wrap {
    flex-wrap: wrap;
}
.w-100 {
    width: 100%;
}
.fz-11 {
    font-size: 11px;
}
.fz-12 {
    font-size: 12px;
}
.fz-14 {
    font-size: 14px;
}
.fz-16 {
    font-size: 16px;
}
.fz-18 {
    font-size: 18px;
}
.fz-20 {
    font-size: 20px;
}
.fz-22 {
    font-size: 22px;
}
.fz-24 {
    font-size: 24px;
}
.fz-26 {
    font-size: 26px;
}
.fz-28 {
    font-size: 28px;
}
.fz-32 {
    font-size: 32px;
}
.fz-58 {
    font-size: 58px;
}
.mw-50 {
    max-width: 50%;
}
.mw-48 {
    max-width: 48%;
}
.mw-172 {
    max-width: 172px;
}
.fw-300 {
    font-weight: 300;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-900 {
    font-weight: 900;
}
.color-red {
    color: #D80010;
}
.color-gray {
    color: #8D8D8D;
}
.color-blue {
    color: #014FA2;
}
.color-white {
    color: #fff;
}
.color-black {
    color: #292A2B;
}
.color-w-blue {
    color: #F5FAFF;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.transition {
    transition: all 0.3s ease-in-out;
}
h1 {
    color: #292A2B;
    font-size: 51px;
    font-weight: 500;
}
h3 {
    color: #292A2B;
    font-size: 42px;
    font-weight: 300;
}
img {
    max-width: 100%;
}
.ttu {
    text-transform: uppercase;
}
.tdu {
    text-decoration: underline;
}
.p-70 {
    padding: 70px 0px;
}
.p-80 {
    padding: 80px 0px;
}
.pb-80 {
    padding-bottom: 80px;
}
/*custom styles END*/

.header {
    background: #fff;
    padding: 19px 0px 16px;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99;
    top: 0;
    transition: all 0.3s ease;
}

.header.fixed {
    transition: all 0.3s ease;
    padding: 15px 0px;
}
.header.fixed .logo {
    max-width: 60px;
    transition: all 0.3s ease;
}

.custom-select-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    user-select: none;
}

.custom-select {
    display: none;
}

.custom-select-trigger {
    position: relative;
    width: 100%;
    height: 43px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #ED0A72;
    border-radius: 5px;
    min-width: 228px;
    color: #ED0A72;
}

.custom-select-trigger:after {
    content: '';
    position: relative;
    pointer-events: none;
    width: 13px;
    height: 13px;
    background: url('../img/icons/arrow-down.svg') no-repeat center;
    background-size: contain;
    top: 2px;
    left: 5px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 10px #ed0a727a;
    z-index: 999;
    display: none;
}

.custom-options.open {
    display: flex;
    flex-direction: column;
}
.custom-options__flex.open {
    display: flex !important;
}
.custom-options .custom-option {
    padding: 10px;
    cursor: pointer;
}

.custom-options .custom-option:hover,
.custom-options .custom-option.selected {
    background: #f2f2f22e;
}

.filter-form-block form button {
    background: #D09E56;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost';
    font-size: 16px;
    gap: 0px 10px;
}
/*header*/
.header-top {
    border-bottom: 1px solid #EAE0E0;
    padding-bottom: 14px;
}
.header-top a {
    font-size: 16px;
}
.header-top-block__item {
    gap: 3px;
}
.side-d-header {
    padding-top: 200px;
}
.header-top-block__links {
    margin-right: 20px;
    gap: 0px 48px;
}
.header-bottom .container {
    gap: 0px 20px;
}
.header-bottom-menu ul {
    gap: 0px 24px;
}
.header-bottom-open {
    margin-right: 16px;
    min-width: 41px;
    max-width: 41px;
}
.header-bottom {
    padding-top: 21px;
}
.header-bottom-logo__img img {
    max-width: 161px;
}
.header-bottom-select {
    display: none;
    max-width: 1800px;
    margin: 10px auto 0px;
    border-top: 2px solid #ed0a7254;
    padding-top: 15px;
}
.h2-title {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}
.item-list-card-header {
    border-radius: 5px;
    background: #ED0A72;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0px;
}
.item-list-card-header__name,
.item-list-card-header__icons,
.item-list-card-header__icons p {
    display: flex;
    align-items: center;
}
.item-list-card-header__name {
    position: relative;
    padding-left: 15px;
}
.item-list-card-header__name.vip-once {
    padding-left: 56px;
}
.item-list-card-header__name span,
.item-list-card-header__icons p {
    color: #fff;
}
.item-list-card-header__name img {
    position: absolute;
    left: 20px;
    top: 3px;
}
.item-list-card-header__icons p img {
    margin-right: 5px;
}
.item-list-card-header__icons {
    padding-right: 10px;
    gap: 20px;
}
.item-list-card-body {
    background: #fff;
    border-radius: 5px;
    z-index: 2;
    border-top-right-radius: 0px !important;
    padding-bottom: 10px;
}
.item-list-card {
    box-shadow: 0 0px 12px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px 0px;
    cursor: pointer;
    border-radius: 6px;
    background: #fff;
}
.item-list-card-slider {
    max-width: 145px;
    margin: 0 !important;
}
.img-play,
.img-marker {
    position: absolute;
    top: 9px;
}
.img-play {
    right: 9px;
}
.img-marker {
    left: 9px;
}
.cards-item {
    padding: 50px 0px;
}
.cards-item:first-child {
    padding-top: 25px;
}
.cards-item-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 43px;
}
.cards-item-list .photo-img,
.catalog-list-grid .photo-img {
    height: 100%;
    object-fit: cover;
}
.cards-item-list .swiper-slide a,
.catalog-list-grid .swiper-slide a {
    display: flex;
    align-items: center;
    height: 100%;
}
.cards-item-list .item-list-card-slider {
    height: 324px;
}
.cards-item-list .item-list-card-slider video,
.catalog-list-grid video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.d-grid {
    display: grid;
}
.catalog-item-params__line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.pink-sub-info-title {
    color: #ed0a72;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}
.catalog-item-params__line span {
    font-size: 14px;
    background: #fff;
    line-height: 14px;
    position: relative;
    z-index: 1;
}
.catalog-item-params__line:after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 2px;
    left: 0;
    height: 1px;
    border-bottom: 1px dashed #eae0e0;
}
.catalog-item-params:first-child {
    margin-bottom: 35px;
}
.catalog-item-params {
    margin-bottom: 20px;
}
.item-list-card-body {
    gap: 20px 10px;
}
.item-list-card-right {
    padding-right: 30px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item-list-card-right__phone {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.item-list-card-right__phone a:first-child {
    font-weight: 500;
    font-size: 14px;
    color: #000;
    max-width: 100%;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0C05A;
    border-radius: 20px;
}
.item-list-card-right__socials {
    gap: 15px;
    justify-content: center;
}
.item-list-card-right__socials img {
    max-width: 28px;
}
.cards-item-link {
    padding-top: 30px;
}
.cards-item-link a {
    border-radius: 10px;
    width: 250px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F0C05A;
    font-size: 16px;
    color: #000;
}
.cards-item-saloons {
    gap: 20px 41px;
    grid-template-columns: repeat(4, 1fr);
}
.cards-item-saloons-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.13);
    background: #fff;
    border-radius: 0px 5px 5px 5px;
}
.cards-item-saloons-card img {
    object-fit: cover;
    width: 100%;
    height: 200px;
}
.cards-item-saloons-card-anounce {
    padding: 15px 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 0px 5px 5px 5px;
}
.cards-item-saloons-card__title {
    margin-bottom: 5px;
}
.cards-item-saloons-card__text {
    line-height: 130%;
    max-width: 376px;
    font-size: 16px;
}
.content-text {
    max-width: 100%;
    margin-bottom: 20px;
}
.content-text p,
.content-text a,
.content-text span {
    color: #020202;
}
.main-page-content {
    padding: 60px 0px;
}
.desc-block-list {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
}
.desc-block {
    border-radius: 5px;
    background: #fff;
    padding: 32px 28px;
}
.desc-block-title {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.desc-block-list-item {
    display: flex;
    align-items: flex-start;
}
.desc-block-list-item img {
    max-width: 32px;
    margin-right: 8px;
}
.desc-block-list-item__content p:first-child {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.desc-block-list-item__content p:last-child {
    font-size: 14px;
    max-width: 480px;
}
.desc-block__text {
    max-width: 869px;
    font-size: 14px;
    padding-bottom: 35px;
}
.footer {
    background: #afafaf;
    padding: 24px 0px;
}
.footer-block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    gap: 20px;
}
.footer-block a {
    display: inline-block;
    vertical-align: top;
    background-color: #ED0A72;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    box-shadow: 1px 1px 8px 0px #ED0A72;
}
.footer-block p {
    font-size: 16px;
}
.header-bottom .container::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background: #d9d9d9;
    border-radius: 12px;
}
.header-bottom .container::-webkit-scrollbar-thumb {
    background: #ED0A72;
    border-radius: 12px;
    cursor: pointer;
    max-width: 2px;
    max-height: 2px;
}
/*header END*/

/*inner pages*/
.breadcrumbs,
.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 4px;
}
.breadcrumbs {
    padding: 15px 0px;
}
.breadcrumbs li,
.breadcrumbs li a {
    font-size: 12px;
}
.breadcrumbs li a {
    text-decoration-line: underline;
}
.anketa-top {
    border-bottom: 5px solid #FFF;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.anketa-top-list {
    gap: 10px 20px;
}
.anketa-top__id {
    color: #000;
    font-size: 24px;
    margin-bottom: 9px;
}
.anketa-top-list a,
.pink-btn {
    border-radius: 5px;
    border: 1px solid #ED0A72;
    height: 45px;
    display: inline-flex;
    font-family: 'Roboto Condensed', sans-serif;
    color: #3d3d3d;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 16px;
    padding: 0 24px;
    transition: all 0.3s ease;
}
.anketa-top-list a:hover,
.pink-btn:hover {
    transition: all 0.3s ease;
    background: #ED0A72;
    color: #fff;
    border: 1px solid transparent;
}
.anketa-form-block {
    padding: 30px 61px;
    gap: 20px 75px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 17.9px 0px rgba(0, 0, 0, 0.13);
}
.anketa-form-block:not(:last-child) {
    margin-bottom: 10px;
}
.anketa-form-block-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.anketa-form-block .image_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.anketa-form-block .image_item img {
    max-width: 200px;
    max-height: 200px;
}
form {
    font-size: 16px;
}
.anketa-form-block-item span {
    margin-bottom: 5px;
}
.anketa-form-block-item input {
    border-radius: 10px;
    border: 1px solid #AFAFAF;
    background: #FFF;
    max-width: 335px;
    height: 40px;
    width: 100%;
    padding: 0px 10px;
    margin-bottom: 5px;
}
.anketa-form-block-item > span:last-child {
    font-size: 12px;
}
.anketa-form-block__v1 .anketa-form-block-wrapper {
    max-width: 900px;
}
.anketa-form-block-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 354px;
}
.anketa-form-block-item {
    margin-bottom: 10px;
}
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 13px;
}
.custom-checkbox input[type="checkbox"] {
    display: none;
}
.custom-checkbox input[type="checkbox"] + span::before {
    content: '';
    display: inline-block;
    width: 20px;
    color: #ED0A72;
    font-size: 18px;
    height: 20px;
    min-width: 20px;
    position: absolute;
    border: 1px solid #AFAFAF;
    border-radius: 5px;
    background-color: white;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}
.custom-checkbox input[type="checkbox"]:checked + span::before {
    content: '✔';
    color: #ED0A72;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.custom-checkbox input[type="checkbox"] + span::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 12px;
    border-width: 0 2px 2px 0;
    display: none;
    transform: rotate(45deg);
}
.custom-checkbox input[type="checkbox"]:checked + span::after {
    display: block;
}
.checkbox-label span {
    position: relative;
    top: 3px;
}
.anketa-form-block__title {
    font-size: 20px;
    margin-bottom: 10px;
}
.anketa-form-block__v2 .anketa-form-block-wrapper {
    max-width: 1169px;
    width: 100%;
}
.anketa-form-block-item__title {
    font-size: 12px;
    color: #000;
    margin-bottom: 15px;
    min-height: 18px;
}
.anketa-form-block__v3 .anketa-form-block-item > img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    object-fit: cover;
}
.i-file {
    position: relative;
    padding-left: 21px;
    margin-bottom: 20px;
}
.i-file::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    min-width: 16px;
    height: 20px;
    background-image: url('../img/icons/file.svg');
    background-repeat: no-repeat;
}
.btn-yellow {
    height: 40px;
    border-radius: 20px;
    background: #F0C05A;
    width: auto;
    padding: 0 45px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.anketa-form-block__v3 .anketa-form-block-item {
    display: flex;
    align-items: center;
    flex-direction: initial;
    gap: 25px;
}
.anketa-form-block-item__content {
    max-width: 400px;
}
.anketa-form-gallery-top {
    border-radius: 5px;
    padding: 17px 0px;
    background: #ED0A72;
}
.anketa-form-gallery-top span {
    color: #fff;
}
.anketa-form-gallery-top span:first-child {
    min-width: 69px;
    max-width: 69px;
    width: 100%;
}
.anketa-form-gallery-top span:nth-child(2) {
    max-width: 1430px;
    width: 100%;
}
.anketa-form-gallery-item__first {
    min-width: 60px;
    max-width: 60px;
    width: 100%;
}
.anketa-form-gallery-item__second {
    max-width: 1437px;
    width: 100%;
}
.anketa-form-gallery-top span:last-child,
.anketa-form-gallery-item__third {
    max-width: 165px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.anketa-form-gallery .anketa-form-gallery-item {
    display: flex;
    padding: 20px 10px;
}
.anketa-form-gallery .anketa-form-gallery-item:nth-child(odd) {
    background: #F5F5F5;
}
.anketa-form-gallery-item__first {
    cursor: pointer;
    padding-top: 10px;
}
.anketa-form-gallery-item__second .anketa-form-block-item {
    display: flex;
    align-items: center;
    flex-direction: initial;
    gap: 20px;
}
.anketa-form-gallery-item__second .anketa-form-block-item > img {
    width: 160px;
    max-width: 160px;
    height: 180px;
    object-fit: cover;
}
.input__file {
    display: none;
}
.input__file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 0px 24px;
    background: #F5F5F5;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}
.input__file-button:hover {
    background-color: #ed0a72;
    color: #fff;
}
.input__file-button-text {
    display: inline-block;
    vertical-align: middle;
}
.file-block {
    padding-top: 33px;
}
.file-block__title {
    margin-bottom: 18px;
}
.input__wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.upload__btn {
    margin-left: 43px;
}
.file-btn-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 200px;
}
.file-block__description {
    max-width: 649px;
    font-size: 12px;
}
.mb-30 {
    margin-bottom: 30px;
}
.anketa-form-block-container__title {
    font-size: 14px;
    color: #ED0A72;
    margin-bottom: 15px;
}
.anketa-form-block-container__checkboxes {
    gap: 0px;
}
.header-bottom-menu__filter-btn {
    min-width: 41px;
    max-width: 41px;
    display: flex;
    align-items: center;
    margin-right: 24px;
}
.header-bottom-select-block {
    gap: 19px;
    grid-template-columns: repeat(5, 1fr);
}
.header-bottom-select-block > button {
    display: inline-block;
    vertical-align: top;
    background-color: #ED0A72;
    padding: 0px 10px;
    border-radius: 5px;
    color: #fff;
}
.filter-link {
    display: inline-block;
    vertical-align: top;
    background-color: #ED0A72;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 13px;
}
.top_lk_link {
    margin-right: 15px;
}
.anketa-top-list {
    margin-bottom: 25px;
}
.anketa-top-list a {
    border-radius: 5px;
    border: 1px solid #ED0A72;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    padding: 0 24px;
    color: #3D3D3D;
    text-decoration: none;
    transition: all 0.3s ease;
}

.anketa-top-list a:hover {
    background: #ED0A72;
    color: #fff;
    border: 1px solid transparent;
}

.tariff-modal {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

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

.tariff-modal__header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin: 0 10px 0 0;
}

.tariff-modal__close {
    cursor: pointer;
}

.tariff-modal__close svg {
    width: 34px;
    height: 34px;
}

.tariff-modal__warning {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: #000;
    margin: 6px 44px 37px 0;
}

.tariff-modal__list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.tariff-modal__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.custom-radio {
    cursor: pointer;
}

.custom-radio label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

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

.custom-radio input[type="radio"] + span::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    min-width: 15px;
    border: 1px solid #AFAFAF;
    border-radius: 50%;
    background-color: white;
    margin-right: 10px;
    transition: background-color 0.3s, border-color 0.3s;
}

.custom-radio input[type="radio"]:checked + span::before {
    background-color: #ED0A72;
    border-color: #ED0A72;
}

.tariff-modal__icon {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.tariff-modal__icon--top {
    background: #B4ABE2;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.tariff-modal__icon--premium {
    background: #FB2F35;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}

.tariff-modal__icon--vip {
    background: #FFA200;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}

.tariff-modal__icon--standard {
    background: #84C551;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
}

.tariff-modal__content h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #ED0A72;
    margin: 0 0 5px;
}

.tariff-modal__desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #3D3D3D;
    margin: 0 0 5px;
}

.tariff-modal__cost {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #3D3D3D;
    margin: 0;
}

.tariff-modal__price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FEFCA6;
    padding: 3px 10px;
    margin-left: 10px;
}

.tariff-modal__price--top,
.tariff-modal__price--premium,
.tariff-modal__price--vip,
.tariff-modal__price--standard {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #3D3D3D;
}

.tariff-modal__btn {
    padding: 10px 43px;
    background: #F0C05A;
    border-radius: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #3D3D3D;
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
    .tariff-modal {
        max-width: calc(100% - 20px);
        padding-left: 10px;
        padding-right: 10px;
    }
}

.custom-radio:hover {
    cursor: pointer;
}

#modal-menu {
    border-radius: 12px;
    height: 100%;
    width: 100%;
    max-width: 600px;
}
.modal-form {
    display: none;
}
.modal-form .fancybox-button svg {
    color: #ed0a72;
}
.modal-form .fancybox-close-small {
    padding: 5px !important;
}
.modal-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.modal-menu-container > ul {
    gap: 20px;
}
.anketa-form-block-container__title_top {
    padding-top: 40px;
}
.anketa-form-block-container__checkboxes .custom-checkbox input[type="checkbox"] + span::before {
    width: 15px;
    height: 15px;
    min-width: 15px;
    top: 3px;
}
.anketa-form-block-container__checkboxes .custom-checkbox input[type="checkbox"]:checked + span::before {
    font-size: 14px;
}
.anketa-form-block-container__checkboxes .checkbox-label {
    position: relative;
}
.anketa-form-block__v2.anketa-form-block__v2_services .anketa-form-block-wrapper {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 50px 33px;
}
.anketa-form-block__v2.anketa-form-block__v2_services .anketa-form-block-container {
    width: auto;
    max-width: none;
}
/*dropdown*/
.dropdown-yellow {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dropdown-yellow-btn {
    background-color: #f1f1f1;
    padding: 8px;
    cursor: pointer;
    border: 1px solid #ccc;
}

.dropdown-yellow-menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown-yellow-menu li {
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.dropdown-yellow-menu li:hover {
    background-color: #e0e0e0;
}

.dropdown-yellow.open .dropdown-yellow-menu {
    display: block;
}
.dropdown-yellow__input {
    position: relative;
}
.dropdown-yellow__input::after {
    content: '';
    display: block;
    position: absolute;
    top: 17px;
    right: 7px;
    width: 13px;
    min-width: 13px;
    max-width: 13px;
    height: 10px;
    background-image: url('../img/icons/arrow-yellow.svg');
    background-repeat: no-repeat;
}
/*dropdown END*/

.anketa-form-block__v2_orientir.anketa-form-block__v2 .anketa-form-block-wrapper {
    max-width: 100%;
    gap: 40px 74px;
}
.anketa-form-block__v2_orientir.anketa-form-block__v2 .anketa-form-block-container {
    width: auto;
}
.anketa-form-block-container.w-100 {
    width: 100% !important;
}
.anketa-form-block__v5 .anketa-form-block-wrapper {
    max-width: 1075px;
}
.anketa-form-block__v5 .anketa-form-block-container__textarea {
    max-width: 660px;
    width: 100%;
}
.anketa-form-block__v5 .anketa-form-block-container {
    gap: 0px;
}
textarea {
    border: 1px solid #afafaf;
    height: 105px;
    background: #fff;
    padding: 9px;
    font-size: 16px;
    border-radius: 10px;
    outline: none;
    resize: none;
    font-family: 'Roboto Condensed';
}
textarea::placeholder {
    color: #000;
}
.map-anketa-block {
    height: 403px;
    width: 100%;
    max-width: 100%;
}
.map-anketa-block iframe {
    width: 100%;
}
.form-main-btns {
    gap: 10px 20px;
    padding-top: 20px;
}
.map-anketa-block {
    position: relative;
}
#map-anketa-block::before {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #fff;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.map-anketa-block.clicked::before,
.alert-msg-resp {
    display: none;
}
.alert-msg-resp {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: #0006;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.alert-msg-resp.flex-active {
    display: flex;
}
.alert-msg-resp p {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 0px 7px 0px #ed0a72;
    font-size: 18px;
    text-align: center;
    position: relative;
    margin: 0 10px;
}
.close-anketa-modal {
    max-width: 34px;
    max-height: 34px;
    width: 34px;
    position: absolute;
    right: 5px;
    cursor: pointer;
    top: 5px;
}
.close-anketa-modal svg {
    fill: #ed0a72;
}
/*inner pages END*/

/* detail card */
.detail-card-anketa-middle .nav-main-slider {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.detail-card-anketa-middle .nav-main-slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}
.h2-title-back {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.detail-card-anketa {
    background: #fff;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    margin-bottom: 37px;
}
.detail-card-anketa-top {
    background: #ED0A72;
    padding: 14px 29px;
    border-radius: 5px;
    margin-bottom: 15px;
}
.detail-card-anketa-top p {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    text-transform: uppercase;
}
.detail-card-slider video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.detail-card-slider-wrap {
    max-width: 500px;
    position: relative;
}
.detail-card-slider-wrap-like {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}
.detail-card-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 !important;
}
.detail-card-slider .photo-img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}
.detail-card-anketa-middle {
    display: flex;
    justify-content: space-between;
}
.detail-card-anketa-middle__content {
    max-width: 319px;
    width: 100%;
    margin-right: 32px;
}
.detail-puprle-title {
    position: relative;
    font-size: 20px;
    margin-bottom: 10px;
    padding-right: 15px;
    color: #ED0A72;
    display: inline-block;
}
.detail-puprle-title:after {
    content: '';
    display: block;
    width: 13px;
    height: 13px;
    min-width: 13px;
    position: absolute;
    right: 0px;
    background-repeat: no-repeat;
    background-image: url('../img/icons/triangle-detail.svg');
    top: 10px;
}
.detail-card-anketa-middle__content .catalog-item-params__line span {
    font-size: 16px;
}
.detail-location-list {
    margin-bottom: 10px;
    font-size: 16px;
}
.swiper-pagination-bullet-active {
    background: #F0C05A !important;
}
.detail-card-anketa-bottom {
    padding: 25px 50px 70px;
}
.detail-card-anketa-bottom__param {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}
.detail-card-anketa-bottom__param span {
    color: #000;
}
.detail-card-anketa-bottom__desc {
    margin-bottom: 22px;
    font-size: 16px;
}
.detail-puprle-subtitle {
    font-size: 12px;
    margin-bottom: 5px;
    color: #ED0A72;
}
.detail-card-anketa-bottom .detail-location-list {
    color: #000;
    margin-bottom: 15px;
}
.gallery-detail-card {
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 15px;
}
.gallery-detail-card-item {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.gallery-detail-card-item img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    height: 100%;
}
.detail-card-reviews__item {
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.13);
    background: #fff;
    border-radius: 5px;
    max-width: 900px;
    padding: 20px 0px;
}
.detail-card-reviews__item span {
    font-size: 14px;
    color: #878787;
    margin-bottom: 20px;
}
.detail-card-reviews__item:not(:last-child) {
    margin-bottom: 10px;
}
.detail-card-reviews__item span {
    display: block;
}
.detail-card-reviews__item span,
.detail-card-reviews__item div {
    padding: 0px 30px;
}
.detail-card-reviews__item p  {
    font-size: 16px;
}
.hr-line {
    padding: 10px 0px;
}
.detail-card-right-form-checked .custom-checkbox {
    pointer-events: none;
}
.detail-card-right .checkbox-label span {
    padding-left: 30px;
    top: 0;
}
.detail-card {
    grid-template-columns: repeat(2, 1fr);
}
.detail-card-right {
    padding: 0 90px;
}
.detail-card-right__title {
    font-size: 24px;
    color: #000;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.detail-card-right-price {
    font-size: 24px;
    color: #ED0A72;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.detail-card-right-form__title {
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}
.detail-card-right-form .checkbox-label {
    display: flex;
    align-items: center;
}
.detail-card-right-form-checked,
.detail-card-right-form-no-checked {
    margin-bottom: 45px;
}
.detail-card-right-form .custom-checkbox input[type="checkbox"] + span::before {
    margin-top: 2px;
}
.detail-card-right-form .checkbox-label span,
.detail-card-right-form__text {
    font-size: 16px;
}
.detail-all-reviews__title {
    font-size: 24px;
    margin-bottom: 25px;
}
.detail-all-reviews {
    padding-top: 33px;
}
.detail-all-reviews-item {
    display: flex;
    flex-direction: column;
}
.detail-all-reviews-item:not(:last-child) {
    margin-bottom: 30px;
}
.detail-all-reviews-item span {
    font-size: 16px;
    color: #000;
}
.detail-all-reviews-item span:last-child {
    color: #000;
}
.anketa-db-title {
    text-transform: uppercase;
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
}
.anketa-form-block-wrapper__avatar .anketa-form-block-item {
    flex-direction: initial;
    gap: 25px;
    align-items: center;
}
.anketa-form-block-wrapper__avatar .anketa-form-block-item #avatar-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    min-width: 100px;
}
.anketa-form-block-wrapper__avatar #avatar-delete {
    width: 100%;
    max-width: 196px;
    padding: 0;
    width: 100%;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.anketa-form-block-wrapper__avatar #upload-avatar-button {
    max-width: 196px;
    font-size: 16px;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.anketa-form-block-wrapper__avatar .anketa-form-block-item__content {
    width: 100%;
}
.anketa-form-block-container__textarea_fast {
    max-width: 904px;
}
.anketa-form-block__title_avatar {
    margin-bottom: 0;
}
.text-exp-error {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 130%;
    max-width: 809px;
}
/* detail card END */

.catalog-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 43px;
}
.like-block-out {
    pointer-events: none;
}
.detail-anketa-top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-anketa-top-right p {
    display: flex;
    align-items: center;
    gap: 5px;
}
.item-list-card-right__phone_flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.like-block.like-block-inner {
    cursor: pointer;
    display: flex;
    align-items: center;
}
.item-list-card-right__phone_flex a {
    margin-bottom: 0;
}
.like-block.like-block-inner img {
    min-width: 30px;
    max-width: 30px;
    width: 100%;
}
.telegram-image {
    max-width: 28px !important;
}
.item-list-card.vip-once {
    border: 3px solid #ed0a72;
    box-shadow: 0px 0px 3px 3px #ed0a72;
    position: relative;
}
.item-list-card.vip-once .item-list-card-header {
    border-radius: 0px;
}
#comments-wrapper > .comment-list {
    padding: 0 !important;
    margin: 0;
    list-style-type: none;
}
#comments-wrapper .comment-list {
    list-style-type: none;
}
.ticket-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 5px;
}
.ticket-comment-link,
.ticket-comment-down,
.ticket-comment-rating,
.ticket-comment-up,
.ticket-comment-dot,
.btn.btn-default.preview {
    display: none !important;
}
.ticket-comment-text {
    font-size: 16px;
}
.detail-card-reviews__item .ticket-comment-author,
.detail-card-reviews__item .ticket-comment-createdon {
    padding: 0;
    margin: 0;
}
#comment-form .form-actions input {
    display: inline-block;
    vertical-align: top;
    background-color: #ED0A72;
    padding: 6px 10px;
    border-radius: 5px;
    color: #fff;
}
.comments {
    overflow: initial !important;
}
#comment-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.box-padding {
    padding: 0px 10px !important;
}
.form-group .box-padding input {
     border: none !important;
     background: transparent !important;
     border-radius: 0 !important;
}
#comment-form .form-group input,
.box-padding {
    border-radius: 10px;
    border: 1px solid #AFAFAF;
    background: #FFF;
    max-width: 335px;
    height: 40px;
    width: 100%;
    padding: 0;
}
#comment-editor {
    width: 100% !important;
    padding: 10px;
}
.main-page-content-simple {
    padding: 3px 0px 40px;
}
#comment-form .form-group:not(:last-child) {
    margin-bottom: 8px;
}
.comment-reply a {
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 10px;
}
.comments-list {
    padding-left: 0 !important;
}
.tickets-latest-row:not(:last-child) {
    margin-bottom: 10px;
}

.login-form {
    text-align: center;
}
.loginForm {
    max-width: 781px;
    background: #fff;
    margin: 0 auto;
    padding: 60px;
    box-sizing: border-box;
    box-shadow: 0px 0px 17.9px 0px rgba(0, 0, 0, 0.13);
    border-radius: 5px;
}
.loginLoginFieldset {
    border: none;
    padding: 0;
    margin: 0;
}
.loginLoginForm {
    max-width: 340px;
    display: block;
    margin: 0 auto;
    text-align: left;
}
.loginUsernameLabel {
    display: block;
    margin-bottom: 30px;
}
.loginLoginFieldset input {
    height: 40px;
    border: 1px solid rgba(175, 175, 175, 1);
    border-radius: 10px;
    padding: 0 10px;
    width: 100%;
    background: #fff;
    margin-top: 5px;
    box-sizing: border-box;
}
.loginLoginButton {
    display: block;
    width: 100%;
    margin-top: 30px;
}
.loginLoginButton input {
    height: 40px;
    width: 100%;
    text-align: center;
    border-radius: 20px;
    background: rgba(240, 192, 90, 1);
    color: rgba(61, 61, 61, 1);
    border: none;
}
.loginLoginButton input:hover {
    opacity: .8;
}
#telegramWarning {
    text-align: center;
}
.ton-btns-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}
.detail-card-slider-thumb {
    max-width: 450px;
}
.content-title {
    margin-bottom: 35px;
}

/* fields */

.anketa-form-block { margin-top: 24px; }
.anketa-form-block fieldset {
  border: 1px solid #eee; border-radius: 12px; padding: 16px 16px 12px; margin: 0 0 24px;
  background: #fff;
}
.anketa-form-block legend {
  font-weight: 600; color: #ed0a72; padding: 0 6px; font-size: 16px;
}

.anketa-form-block .anketa-form-block-container__checkboxes {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
}
.anketa-form-block .custom-checkbox {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  user-select: none; line-height: 1.2;
}
.anketa-form-block .custom-checkbox input[type="checkbox"] { display: none; }
.anketa-form-block .custom-checkbox input[type="checkbox"] + span {
  position: relative; padding-left: 4px;
}
.anketa-form-block .custom-checkbox input[type="checkbox"] + span::before {
  content: ""; display: inline-block; width: 15px; height: 15px; min-width: 15px;
  border: 1px solid #ccc; border-radius: 3px; margin-right: 8px; vertical-align: middle; position: relative; top: 3px;
}
.anketa-form-block .custom-checkbox input[type="checkbox"]:checked + span::before {
  content: "✓"; color: #fff; background: #ed0a72; border-color: #ed0a72; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
}
.dop-add,
.dop-rm {
    border-radius: 50%;
    border: 1px solid #ed0a72;
    background: #fff;
    padding: 0;
    width: 28px;
    height: 28px;
}
#dop-rows { display: grid; gap: 10px; }
.dop-row {
  display: grid; align-items: center; gap: 10px;
  grid-template-columns: 1.4fr 0.8fr auto auto;
}
@media (max-width: 680px) {
  .dop-row { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .dop-row .dop-actions { grid-column: 1 / -1; display: flex; gap: 8px; }
}
.dop-row select, .dop-row input[type="number"] {
  width: 100%; padding: 8px 10px; border: 1px solid #ccc; border-radius: 8px; background: #f9f9f9;
}
.dop-row select:focus, .dop-row input[type="number"]:focus {
  outline: none; border-color: #ed0a72; box-shadow: 0 0 0 3px rgba(237,10,114,0.12);
}
.dop-actions { display: inline-flex; gap: 8px; }
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px;
  border-radius: 8px; border: 1px solid #ed0a72; color: #ed0a72; background: #fff; cursor: pointer;
  transition: .15s ease;
}
.btn-icon:hover { background: #ed0a72; color: #fff; }
.btn-icon:disabled { opacity: .4; cursor: not-allowed; }
.btn-add::before { content: "+"; font-weight: 700; }
.btn-rm::before  { content: "−"; font-weight: 700; }

.dop-total {
  display: flex; justify-content: flex-end; margin-top: 10px; font-weight: 600;
}
.dop-total b { color: #ed0a72; }

.anketa-form-block__v2.anketa-form-block__v2_services .anketa-form-block-container { width: auto; max-width: none; }

.anketa-form-block__dop-anketa-fields .custom-checkbox span::before {
    top: 0px !important;
}

/* fields END */

.fm-panel a {
    display: flex !important;
    align-items: center;
    height: 35px !important;
    justify-content: center;
}
.fm-panel a span {
    height: auto !important;
}
.cards-item-filter-new {
    padding: 10px 0px 0px;
}

.custom-option-video {
    padding: 10px !important;
    display: block;
}
.filter-acc__head > span {
    font-weight: 500;
    font-size: 14px;
}
.filter-acc { border-bottom: 1px solid #eee; }
.filter-acc:last-child { border-bottom: 0; }

.filter-acc__head {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 30px 10px 15px;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.filter-acc__body .custom-option input {
    margin: 0px 0px 0px 5px;
    position: relative;
    top: 2px;
}
.filter-acc.open .filter-acc__head::after {
    top: 16px;
}
.filter-acc__head::after{
    content: "";
    width: 7px;
    height: 7px;
    top: 10px;
    right: 10px;
    position: absolute;
    border-right: 2px solid #ed0a72;
    border-bottom: 2px solid #ed0a72;
    transform: rotate(45deg);
    transition: transform .15s ease;
}
.filter-acc.open .filter-acc__head::after { transform: rotate(-135deg); }

.filter-acc__count{
  min-width: 18px; height: 18px;
  padding: 0 6px;
  border-radius: 9px;
  font-size: 12px; line-height: 18px; text-align: center;
  background: #ED0A72; color: #fff;
}

.custom-options { display: none; }
.custom-options.open { display: block; }

.filter-acc__body { display: none; }
.filter-acc.open .filter-acc__body { display: flex;flex-direction: column; }

.cards-item-filter-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
    justify-content: center;
}

.item-list-card.vip-share{
  --p1:#ED0A72;
  --p2:#FF4DA0;/
  --p3:#FFA3CF;
  --dur:1s;
  --rad:0px;
  position:relative;
  border-radius:var(--rad);
  overflow:visible;
  z-index:0;
}
.item-list-card.vip-share::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 3px;
  pointer-events:none;
  box-shadow:
    inset 0 0 28px 8px rgba(237,10,114,0.65),
    inset 0 0 60px 24px rgba(255,77,160,0.28);
  animation:vip-glow var(--dur) ease-in-out infinite alternate;
}

.item-list-card.vip-share::before{
  content:"";
  position:absolute;
  inset: 0px;
  border-radius:inherit;
  pointer-events:none;
  z-index:-1;
  background: radial-gradient(closest-side,
    rgba(237,10,114,0) 62%,
    rgba(237,10,114,0.75) 100%);
  filter: blur(6px);
  opacity:.85;
  animation:vip-halo var(--dur) ease-in-out infinite alternate;
}

@keyframes vip-glow{
  0%{
    box-shadow:
      inset 0 0 18px 6px rgba(237,10,114,0.45),
      inset 0 0 40px 16px rgba(255,77,160,0.18);
  }
  100%{
    box-shadow:
      inset 0 0 36px 12px rgba(237,10,114,0.85),
      inset 0 0 80px 28px rgba(255,77,160,0.38);
  }
}

@keyframes vip-halo{
  0%{ opacity:.55; transform:scale(0.985); }
  100%{ opacity:.95; transform:scale(1.015); }
}
@media (prefers-reduced-motion: reduce){
  .item-list-card.vip-share::before,
  .item-list-card.vip-share::after{ animation:none; }
}
.item-list-card-slider-container {
    position: relative;
}

.vip-share-block{
    right: 10px;
    top: 10px;
    z-index: 2;
    max-width: 35px;
    display: flex
;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 2px 10px;
    border-radius: 0px;
    color: #ED0A72;
    font-weight: 700;
    line-height: 1.2;
    position: absolute;
    overflow: visible;
}

.vip-share-block > span{
  position: relative;
  z-index: 2;
}
.vip-share-block .vip-snake{
  position: absolute;
  inset: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  pointer-events: none;
  z-index: 1;
}

.vip-share-block .vip-snake rect{
  stroke-width: 2px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 15 85;
  stroke-dashoffset: 0;
  animation: vipDash 2.2s linear infinite;
}

@keyframes vipDash{
  to { stroke-dashoffset: -100; }
}

.item-list-card.is-hidden{display:none!important}
.cards-item-link[hidden]{display:none!important}

.item-list-card{
  transition: opacity .35s ease, transform .35s ease;
  will-change: opacity, transform;
}
.item-list-card.enter{
  opacity: 0;
  transform: translateY(10px) scale(.985);
}
.item-list-card.enter-active{
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce){
  .item-list-card{ transition:none }
}
.telegram-image-cont {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-bottom-open-mobile,
.item-list-card-right__phone_mobile {
    display: none;
}
.like-block .like-icon { display:none; cursor:pointer; }
.like-block .like-icon-empty { display:inline; }
.like-block.is-liked .like-icon-empty { display:none; }
.like-block.is-liked .like-icon-full { display:inline; }
.like-block.liking { pointer-events:none; opacity:.7; }

.mobile-fast-card-block,
.mobile-fast-card-block-container {
    display: none;
}

.filters-form-desktop {
    overflow-y: auto;
    max-height: 800px;
    padding: 20px 10px 100px 0px;
}
.filters-form-desktop .custom-checkbox {
    padding: 0px 0px 0px 23px;
}
.filters-form-desktop .checkbox-label span {
    top: 0px;
}
.filters-form-desktop .custom-checkbox span::before {
    left: -23px;
}
.filters-form-desktop button[type="submit"]{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ED0A72;
    padding: 0px 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    width: 250px;
    height: 50px;
}
.filters-form-desktop .anketa-form-block-container__title {
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.filters-form-desktop .anketa-form-block-container__title_top {
    border-bottom: 0;
}
.anketa-phone-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 43px;
}
.h2-map-list {
    font-size: 36px;
    margin-bottom: 30px;
}
.anketa-phones-row li a {
    color: #ED0A72;
}
.anketa-phones-row:not(:last-child) {
    margin-bottom: 40px;
}
.container-map-grid {
    margin-top: 40px;
    padding: 50px;
    background: #fff;
}
.modal-seo-desktop {
    margin-left: 15px;
}
.modal-seo {
    display: none;
}
.modal-seo .cards-item.cards-item-filter-new {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 30px;
    display: grid;
    padding-top: 0;
}
.fancybox-button svg {
    color: #ed0a72 !important;
}
.modal-seo {
    border-radius: 10px;
}
.modal-seo .filter-link {
    font-size: 14px;
    text-align: center;
}