

/* Start:/local/templates/new/components/bitrix/clubs.filter.seo/popup/style.css?16738714255861*/
.clubs-popup-filter {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 12;
    background: rgba(0, 0, 0, .8);
    overflow: auto;
}

.clubs-popup-filter-block {
    position: absolute;
    width: 785px;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    background: #ffffff;
    border-radius: 20px;
    margin: 50px;
}

.clubs-popup-filter-block .clubs-popup-filter-close {
    position: absolute;
    top: -30px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    z-index: 12;
    cursor: pointer;
}

.clubs-popup-filter-block .clubs-popup-filter-close:before,
.clubs-popup-filter-block .clubs-popup-filter-close:after {
    background: #1A181F;
    width: 20px;
    height: 1px;
    top: 19px;
    left: 9px;
    content: "";
    position: absolute;
}

.clubs-popup-filter-block .clubs-popup-filter-close:before {
    webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.clubs-popup-filter-block .clubs-popup-filter-close:after {
    webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.clubs-popup-filter-items-block {
    padding: 30px 40px 0 40px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.clubs-popup-filter-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #000000;
    margin-bottom: 22px;
}

.clubs-popup-filter-item:last-child {
    margin-bottom: 40px;
}

.clubs-popup-filter-item {
    margin-bottom: 28px;
}


.clubs-popup-filter-item .filter-item-title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #000000;
}

.filter-items-price .filter-item-price {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.filter-items-price .filter-item-price:after {
    content: '';
    width: 8px;
    height: 2px;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-items-price .min-price,
.filter-items-price .max-price {
    height: 60px;
    position: relative;
    flex: 0 0 calc(50% - 15px);
}

.filter-items-price .filter-item-price input {
    caret-color: var(--red);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 26px 20px 10px 20px;
    background: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.filter-items-price .filter-item-price label {
    position: absolute;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #8C8B8F;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

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

.filter-item.checkbox {
    flex: 0 0 calc(50% - 15px);
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
}

.filter-item.checkbox.disable{
    opacity: .4;
}

.filter-item.checkbox.disable:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
}

.filter-item.checkbox input {
    display: none;
}

.filter-item.checkbox label:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    padding: 0;
    width: 25px;
    height: 25px;
}

.filter-item.checkbox label {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-item.checkbox input[type=checkbox]:checked + label:after {
    background: var(--red);
    border: 1px solid var(--red);
}

.filter-item.checkbox input[type=checkbox]:checked + label:before {
    content: url(/local/templates/new/images/filter-check.svg);
    position: absolute;
    top: 0;
    left: 8px;
    z-index: 1;
}

.clubs-popup-filter-buttons-block {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clubs-popup-filter-buttons-block .apply-club-filter-btn,
.clubs-popup-filter-buttons-block .clear-club-filter-btn {
    border: none;
    outline: none;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
}

.clubs-popup-filter-buttons-block .apply-club-filter-btn {
    background: var(--red);
    border-radius: 5px;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    padding: 17px 54px;
}

.clubs-popup-filter-buttons-block .clear-club-filter-btn {
    color: var(--red);
    font-size: 14px;
    line-height: 19px;
    background: transparent;
    text-align: right;
}

@media (max-width: 767px) {
    .clubs-popup-filter-items-block {
        padding: 20px 30px 0 30px;
    }

    .clubs-popup-filter-block {
        width: 100%;
        transform: none;
        top: 0;
        left: 0;
        margin: 0;
    }

    .clubs-popup-filter-block .clubs-popup-filter-close {
        top: 15px;
        right: 13px;
        /*border: 1px solid var(--red);*/
    }

    .filter-item.checkbox {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .clubs-popup-filter-buttons-block {
        padding: 20px 30px;
    }

    .clubs-popup-filter-buttons-block .apply-club-filter-btn {
        padding: 20px 50px;
        font-size: 14px;
    }
}
/* End */


/* Start:/local/templates/new/components/bitrix/clubs.list/list/style.css?170653535823475*/
.top-menu-block.clubs {
    margin: 0;
}

.top-menu-block.clubs .container {
    max-width: none;
    padding: 0;
}

.top-menu-block.clubs .top-menu__list {
    padding: 0 46px;
}

body {
    background-color: #ffffff !important;
}

.clubs-block, .clubs-block * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.options-clubs-block {
    flex: 0 0 calc(50% - 1px);
    width: calc(50% - 1px);
}

.clubs-options-items .title-block {
    padding-top: 4rem;
}

.clubs-on-map {
    height: 100vh;
    position: sticky;
    top: 0;
    bottom: 0;
    flex: 0 0 50%;
    width: 50%;
}

.clubs-on-map .close-yandex-map {
    display: none;
}


.clubs-block h1 {
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 150%;
    color: var(--black);
    padding-left: 46px;
    margin: 0 0 2.7rem 0;
}

.clubs-block .search-filter-block {
    padding: 0 46px;
    justify-content: space-between;
    margin-bottom: 32px;
}

.search-block {
    flex: 0 0 calc(75% - 10px);
}

.search-block form {
    position: relative;
    height: 54px;
}

.search-block form > input[type=text] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: 1px solid #6E6E6E;
    border-radius: 100px;
    padding: 0 43px 0 20px;
}

.search-block form > input[type=submit] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
    z-index: 1;
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background-image: url(/local/templates/new/images/svg-search.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
}

.options-clubs-block .filter-block {
    height: 54px;
    flex: 0 0 calc(25% - 64px);
}

.options-clubs-block .favorite-block {
    height: 54px;
    flex: 0 0 54px;
}

.options-clubs-block .filter-block a,
.options-clubs-block .favorite-block a {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    height: 100%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.options-clubs-block .filter-block a > span.icon {
    width: 20px;
    height: 18px;
    background: url(/local/templates/new/images/svg-black-filter.svg) no-repeat;
    background-size: contain;
    margin: 2px 10px 0 0;
    filter: brightness(0);
}

.options-clubs-block .favorite-block a {
    border-radius: 50%;
}

.options-clubs-block .favorite-block a > span.icon {
    width: 22px;
    height: 19px;
    background: url(/local/templates/new/images/svg-new-favorite.svg) no-repeat;
    background-size: contain;
    margin-top: 2px;
    filter: brightness(0);
}

.options-clubs-block .filter-block a:hover,
.options-clubs-block .filter-block a.filter-btn.active,
.options-clubs-block .favorite-block a:hover {
    color: var(--red);
    border-color: var(--red);
}

.options-clubs-block .filter-block a:hover span.icon,
.options-clubs-block .filter-block a.filter-btn.active span.icon,
.options-clubs-block .favorite-block a:hover span.icon {
    filter: brightness(1);
}

.options-clubs-block .filter-block a.filter-btn .filter-counter {
    display: none;
}

.options-clubs-block .filter-block a.filter-btn.active .filter-counter {
    position: absolute;
    z-index: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--red);
    color: #ffffff;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clubs-mobile-btn-fixed {
    display: none;
}


.sort-block {
    padding: 0 46px;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.5);
}

.sort-block a {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 137.5%;
    letter-spacing: 0.01em;
    color: var(--black);
    cursor: pointer;
    transition: all .2s;
}

.sort-block .sort-clubs {
    position: relative;
    margin-left: 10px;
}

.sort-items-block {
    display: none;
    position: absolute;
    top: 100%;
    padding-top: 10px;
    left: -10px;
    z-index: 2;
}

.sort-items-block ul {
    padding: 23px 35px 25px 16px;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid #A9ABAD;
    border-radius: 20px;
}

.sort-items-block ul > li {
    margin: 3.5px 0;
}

.sort-items-block ul > li > a {
    white-space: nowrap;
    position: relative;
    padding-left: 19px;
}

.sort-block a.active,
.sort-items-block ul > li > a:hover {
    color: var(--red);
}

.sort-items-block ul > li > a.active:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 6px;
    width: 12px;
    height: 8px;
    background: url(/local/templates/new/images/svg-checkmark-red.svg) no-repeat;
    background-size: contain;
}

.sort-clubs:hover .sort-items-block {
    display: block;
}

.club-item {
    padding: 30px 30px 30px 46px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 135%;
    color: rgba(26, 24, 31, 0.5);
    transition: all .2s;
}

.club-item:hover {
    background: var(--grey-bg);
}

.club-slider-block {
    position: relative;
    height: 22.6rem;
    width: 33.8rem;
}

.club-slider .slick-list{
    height: 100%;
}

.club-slider .slick-track {
    height: 100%;
}

.club-slider-prev,
.club-slider-next {
    width: 31px;
    height: 31px;
    position: absolute;
    top: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    display: none !important;
    transform: translateY(-50%);
    z-index: 11;
    -webkit-transition: all .6s;
    transition: all .6s;
    cursor: pointer;
    border-radius: 50%;
    right: 17px;
}

.club-slider-prev {
    left: 15px;
}

.club-slider-prev:after,
.club-slider-next:after {
    position: absolute;
    content: '';
    border: solid #ffffff;
    border-width: 0 1.2px 1.2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg) translateY(-50%) translateX(-50%);
    -webkit-transform: rotate(-45deg);
    top: 40%;
    left: 33%;
}

.club-slider-prev:after {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    left: 38%;
}

.club-slider-block:hover .club-slider-prev,
.club-slider-block:hover .club-slider-next {
    display: block !important;
}

.club-slider-prev.slick-disabled,
.club-slider-next.slick-disabled {
    opacity: 0;
}

.club-slider-block .club-slider-dots {
    max-width: 100px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.club-slider-block a.club-threed-link {
    position: absolute;
    left: 15px !important;
    top: 15px !important;
    font-weight: 500;
    font-size: 12px;
    line-height: 10px;
    color: #FFFFFF;
    padding: 10px 15px 10px 39px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 5px;
    height: max-content;
    width: max-content;
}

.club-slider-block a.club-threed-link:before {
    content: '';
    width: 16px;
    height: 14px;
    background: url(/local/templates/new/images/3d_icon.svg);
    background-size: contain;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.club-slider-block .slick-dots {
    display: block;
    white-space: nowrap;
    position: static;
    transition: all .3s ease-in-out;
}

.club-slider-block .slick-dots li {
    width: auto;
    height: auto;
    opacity: 0.5;
}

.club-slider-block .slick-dots li.slick-active {
    opacity: 1;
}

.club-slider-block .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.club-slider-block .slick-dots li button::before {
    display: none;
}

.club-slider.slick-dotted.slick-slider,
.club-slider-with-one-picture {
    width: 33.8rem;
    height: 22.6rem;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 0;
}

.club-slider.slick-dotted.slick-slider .club-slide,
.club-slider-with-one-picture .club-slide {
    width: 33.8rem;
    height: 22.6rem;
}

.club-slider img,
.club-slider-with-one-picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.club-description {
    padding-left: 3rem;
}

.club-name-block {
    font-weight: 700;
    font-size: 2rem;
    line-height: 150%;
    color: #000000;
    margin-bottom: 2px;
}

.club-name-block > a:hover {
    transition: all .2s;
    color: var(--red);
}

.club-name-block .info-confirmed-block {
    margin-left: 10px;
}

.club-char-block ul,
.club-address-block ul {
    display: flex;
    margin: 0 0 15px 0;
    white-space: nowrap;
    flex-wrap: wrap;
    height: 15px;
    line-height: 15px;
    overflow: hidden;
}

.club-char-block ul > li,
.club-address-block ul > li {
    padding-left: 15px;
    position: relative;
}

.club-char-block ul > li:nth-child(n+5),
.club-address-block ul > li:nth-child(n+5) {
    display: none;
}

.club-char-block ul > li:before,
.club-address-block ul > li:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #1A181F;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    opacity: 0.5;
}

.club-address-block ul > li:after {
    opacity: 1;
}

.club-char-block ul > li:first-child,
.club-address-block ul > li:first-child {
    padding-left: 0;
    display: inline-flex;
    align-items: center;
}

.club-address-block .metro-branch {
    margin: 0 5px 0 0 !important;
}

.club-char-block ul > li:first-child:before,
.club-address-block ul > li:first-child:before {
    content: none;
}

.club-address-block ul > li:last-child {
    text-overflow: ellipsis;
    overflow: hidden;
}

.club-reviews-block {
    font-weight: 400;
    color: #1A181F;
    margin-bottom: 5px;
    display: flex;
    margin-top: 15px;
}

.club-reviews-block .reviews-count {
    color: rgba(26, 24, 31, 0.5);
    text-decoration: underline;
    line-height: 71%;
    font-weight: 600;
    margin-left: 15px;
    transition: all .2s;
}

.club-reviews-block .square {
    width: 40px;
    height: 40px;
    background: #D00025;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    text-align: center;
    padding-top: 7px;
}

.club-reviews-block .review-title {
    font-weight: 800;
    font-size: 15px;
    line-height: 20px;
    color: #1A181F;
    margin-left: 15px;
}

.club-address-block {
    color: #1A181F;
    margin: 0 0 5px 0;
}

.club-price-block {
    margin-bottom: 15px;
}

.club-text-block {
    margin-bottom: 11px;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.club-text-block span {
    font-weight: 800;
    color: #1A181F;
}

.club-open-block {
    padding-left: 28px;
    font-weight: 500;
    position: relative;
}

.club-open-block:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background: url(/local/templates/new/images/svg-grey-clock.svg) no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain;
}

/*Метка для карты*/
.placemark_layout_container {
    position: relative;
    font-family: Manrope;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    letter-spacing: 0.01em;
    color: #000000;
}

.square_layout {
    position: absolute;
    left: -23px;
    top: -23px;
    width: 89px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #969696;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
}

.square_layout.active {
    background: #000000;
    color: #ffffff;
}

.square_layout.visited {
    background: rgb(235, 235, 235);
}

/*Метка для карты*/

/*БАЛЛУН КАРТЫ*/
.balloon-box {
    position: absolute;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.16);
    border-radius: 20px;
    max-width: 234px;
    background: #FFFFFF;
}

.balloon-inner {
    background: #FFFFFF;
    border-radius: 20px;
}

.balloon-content {
    padding: 0 17px 21px 17px;
}

.balloon-slider {
    /*display: flex !important;*/
    margin-bottom: 9px !important;
    height: 145px;
}

.balloon-slider .slick-prev,
.balloon-slider .slick-next {
    display: none !important;
}

.balloon-slider:hover .slick-prev,
.balloon-slider:hover .slick-next {
    display: block !important;
}

.balloon-slider .slick-prev,
.balloon-slider .slick-next {
    -webkit-transition: all .6s;
    transition: all .6s;
    width: 23px;
    height: 23px;
}

.balloon-slider .slick-prev {
    left: 17px;
    top: 45%;
}

.balloon-slider .slick-next {
    right: 17px;
    top: 51%;
}

.balloon-slider .slick-prev.slick-disabled,
.balloon-slider .slick-next.slick-disabled {
    opacity: 0;
}

.balloon-slider-block {
    position: relative;
    height: auto;
}

.balloon-slider-block .balloon-slider-dots {
    max-width: 100px;
    overflow: hidden;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.balloon-slider-block .slick-dots {
    display: block;
    white-space: nowrap;
    position: static;
    transition: all .3s ease-in-out;
}

.balloon-slider-block .slick-dots li {
    width: auto;
    height: auto;
    opacity: 0.5;
}

.balloon-slider-block .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.balloon-slider-block .slick-dots li button::before {
    display: none;
}

.balloon-slider-block .slick-dots li.slick-active {
    opacity: 1;
}

.balloon-slide {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.balloon-slide:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 1;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    z-index: 0;
}

.balloon-slider img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 20px;
}

.balloon-name a {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    margin-bottom: 7px;
}

.balloon-name a:hover {
    text-decoration: underline;
    color: #D00025;
}

.balloon-address {
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-decoration-line: underline;
    color: #6E6E6E;
    margin-bottom: 19px;
}

.balloon-rating {
    padding-left: 33px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #6e6e6e;
    margin-bottom: 23px;
}

.balloon-rating span {
    font-weight: bold;
    color: #FFC107;
}

.balloon-rating span:before {
    position: absolute;
    content: url(/local/templates/new/images/svg-star.svg);
    left: 0;
    top: 0;
}

.balloon-price {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
}

.no-items {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--black);
    max-width: 396px;
    margin: 0 auto;
    text-align: center;
}

.no-items .text {
    margin-bottom: 23px;
}

.reboot-filters {
    cursor: pointer;
    background: var(--red);
    border-radius: 5px;
    padding: 17px 54px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    display: inline-block;
}

/*скрыть создать свою карту*/
.ymaps-2-1-79-gototech {
    display: none !important;
}

@media (max-width: 1500px) {
    .search-block {
        flex: 0 0 calc(70% - 10px);
    }

    .options-clubs-block .filter-block {
        flex: 0 0 calc(30% - 64px);
    }
}

@media (max-width: 1280px) {
    .club-item {
        justify-content: space-between;
    }

    .club-slider-block {
        position: relative;
        padding-top: 34%;
        flex: 0 0 50%;
        width: 50%;
    }

    .club-slider-block a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .club-slider.slick-dotted.slick-slider, .club-slider-with-one-picture {
        width: 100%;
        height: 100%;
    }

    .club-slider.slick-dotted.slick-slider .club-slide,
    .club-slider-with-one-picture .club-slide {
        width: 100%;
        height: 100%;
    }

    .club-description {
        flex: 0 0 calc(50% - 20px);
        padding: 0;
        width: calc(50% - 20px);
    }
}

@media (max-width: 1200px) {
    .search-block {
        flex: 0 0 calc(65% - 10px);
    }

    .options-clubs-block .filter-block {
        flex: 0 0 calc(35% - 64px);
    }
}

@media (max-width: 901px) {
    .options-clubs-block .filter-block {
        padding: 0;
    }
}

@media (max-width: 1023px) {
    .top-menu-block.clubs .top-menu__list {
        padding: 0 30px;
    }

    .search-filter-block .filter-block,
    .search-filter-block .favorite-block {
        display: none;
    }

    .balloon-slider-block .slick-prev,
    .balloon-slider-block .slick-next {
        display: block !important;
    }

    .clubs-block {
        flex-direction: column;
    }

    .options-clubs-block {
        width: 100%;
    }

    .clubs-on-map {
        display: none;
        position: fixed;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 12;
        padding: 15% 0;
        background: rgba(0, 0, 0, 0.8);
    }

    .clubs-on-map .close-yandex-map {
        display: block;
        position: absolute;
        right: 2%;
        top: 2%;
        z-index: 12;
        background: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #b3afaf;
        cursor: pointer;
    }

    .clubs-on-map .close-yandex-map:before,
    .clubs-on-map .close-yandex-map:after {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        content: ' ';
        height: 20px;
        width: 2px;
        background-color: #000000;
    }

    .clubs-on-map .close-yandex-map:before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .clubs-options-items .title-block {
        padding-top: 46px;
    }

    .clubs-block h1 {
        padding: 0 30px;
        margin-bottom: 21px;
        font-size: 30px;
    }

    .clubs-block .search-filter-block {
        padding: 0 30px;
        margin-bottom: 23px;
    }

    .clubs-block .search-filter-block .search-block {
        flex: 0 0 100%;
    }

    .clubs-block .sort-block {
        padding: 0 30px;
    }

    .clubs-block .sort-block,
    .clubs-block .sort-block a {
        font-size: 14px;
    }

    .club-item {
        padding: 30px;
        flex-direction: column;
    }

    .club-slider-block {
        position: relative;
        padding-top: 66.95%;
        margin-bottom: 8px;
        width: 100%;
    }

    .club-slider-block a {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .club-slider-prev,
    .club-slider-next {
        display: block !important;
    }

    .club-item {
        font-size: 14px;
        flex-direction: column;
    }

    .club-description {
        width: 100%;
    }

    .club-name-block {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .club-char-block {
        overflow: hidden;
        margin: 0 -30px 13px 0;
    }

    .club-char-block ul,
    .club-address-block ul {
        flex-wrap: nowrap;
    }

    .club-char-block ul {
        overflow-x: auto;
        margin: 0 -4px;
        line-height: normal;
        height: auto;
    }

    .club-char-block ul > li,
    .club-char-block ul > li:first-child {
        margin: 0 4px;
        padding: 4px 15px 7px 15px;
        font-size: 12px;
        background: rgba(26, 24, 31, 0.05);
        backdrop-filter: blur(12px);
        border-radius: 5px;
        white-space: nowrap;
    }

    .club-char-block ul > li:nth-child(n+5),
    .club-address-block ul > li:nth-child(n+5) {
        display: block;
    }

    .club-char-block ul > li:before {
        content: none;
    }

    .club-price-block {
        margin-bottom: 9px;
    }

    /*
    .club-text-block {
        margin-bottom: 3px;
    }*/
    .club-open-block {
        margin-bottom: 16px;
    }

    .mobile.club-btns-block {
        display: flex !important;
        justify-content: space-between;
    }

    .mobile.club-btns-block a {
        flex: 0 0 calc(50% - 10px);
        display: block;
        text-align: center;
        font-weight: 600;
        font-size: 12px;
        line-height: 15px;
        padding: 14px 0;
        border-radius: 5px;
        border: 1px solid var(--red);
    }

    .club-btns-block a.club-phone-btn {
        background: var(--red);
        color: #ffffff;
    }

    .club-btns-block a.club-on-map-btn {
        background: #ffffff;
        color: var(--red);
    }

    .club-item:hover {
        background: transparent;
    }

    .clubs-mobile-btn-fixed {
        position: fixed;
        bottom: 50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #000;
        color: #fff;
        border-radius: 40px;
        overflow: hidden;
        height: 36px;
        width: 205px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 12px;
        z-index: 11;
    }

    .clubs-mobile-btn-fixed a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 50%;
        cursor: pointer;
    }

    .clubs-mobile-btn-fixed a:not(:last-child) {
        border-right: 1px solid #ffffff;
    }

    .clubs-mobile-btn-fixed a .icon {
        width: 16px;
        height: 16px;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        margin: 2px 10px 0 0;
    }

    .clubs-mobile-btn-fixed a.on-map .icon {
        background: url(/local/templates/new/images/new-map.svg) no-repeat;
        background-size: 100%;
    }

    .clubs-mobile-btn-fixed a.btn-filter .icon {
        background: url(/local/templates/new/images/svg-filter_white.svg) no-repeat;
        background-size: 100%;
    }


    .balloon-slider .slick-next {
        right: 17px !important;
    }

    .balloon-slider .slick-prev {
        left: 17px !important;
    }

    .no-items {
        max-width: 100%;
        padding: 0 30px;
        margin-bottom: 50px;
    }

    .reboot-filters {
        font-size: 12px;
        line-height: 15px;
        padding: 14px 28px;
    }

}


/* End */
/* /local/templates/new/components/bitrix/clubs.filter.seo/popup/style.css?16738714255861 */
/* /local/templates/new/components/bitrix/clubs.list/list/style.css?170653535823475 */
