

/* Start:/local/templates/main/styles.css?17020319854573*/
/*WSTD - Route start*/
.wstd-route {
    position: fixed;
    left: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    width: auto;
    font-size: 16px;
    z-index: 33;
}
.wstd-route.isActive {
    top: unset;
    bottom: 60px;
}

.wstd-route__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    position: absolute;
    top: -50px;
    cursor: pointer;
}
.wstd-route__btn:hover .wstd-route__btn-icon path,
.wstd-route__btn:hover .wstd-route__btn-title {
    color: #ffffff;
    fill: #ffffff;
}

.wstd-route__btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7.5px;
    font-size: 1.5em;
    color: #fff;
    background-color: var(--c-surface-accent);
    border-radius: 50%;
    margin: 7.5px;
}
.wstd-route__btn-icon .icon{
    width: 100%;
    height: 100%;
}
.wstd-route path,
.wstd-route rect,
.wstd-route polygon {
    transition: 0.3s;
    fill: white
}
.wstd-route.isActive .wstd-route__btn {
    top: -50px;
}

.wstd-route__btn-icon.svg-inline--fa.fa-w-12 {
    width: 1.5em;
    height: 1.5em;
}
.wstd-route__btn-title {
    color: #fff;
    padding: 7.5px;
    white-space: nowrap;
    font-family: sans-serif;
    line-height: 1.2;
    background-color: var(--c-surface-accent);
    border-radius: 5px;
    font-size: 0.8em;
    margin: 0;
    font-weight: bold;
    transition: 0.3s;
}

.wstd-route__container {
    position: relative;
    width: 100%;
    min-height: 100px;
    background-color: #fff;
    display: flex;
    align-items: center;
    border: 1px solid var(--c-surface-accent);
}

.wstd-route__container_overlay::after {
    content: "Please wait...";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: #fff;
    /* border: 1px solid #fff; */
}

.wstd-route__maps,
.wstd-route__routes,
.wstd-route__taxi {
    width: 100%;
    display: none;
    padding: 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
}
.wstd-route__maps.isActive,
.wstd-route__routes.isActive,
.wstd-route__taxi.isActive {
    display: inline-flex;
}
.wstd-route__maps-title,
.wstd-route__routes-title,
.wstd-route__taxi-title {
    text-align: center;
    color: #333;
    font-family: sans-serif;
    font-size: 0.8em;
    line-height: 1.2;
    font-weight: bold;
}

.wstd-route__maps-icon,
.wstd-route__routes-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: var(--c-surface-accent);
    color: #fff;
}

.wstd-route__maps-icon .icon,
.wstd-route__routes-icon .icon {
    width: 60%;
    height: 60%;
}

.wstd-route__maps-icon.svg-inline--fa,
.wstd-route__routes-icon.svg-inline--fa {
    width: 2em;
    height: 2em;
    background-color: var(--c-surface-accent);
    color: #fff;
    padding: 7px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.wstd-route__routes-item {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 7.5px 0;
    margin: 0 0.5%;
    text-decoration: none;
    cursor: pointer;
}

.wstd-route__back {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 20px; */
    height: 20px;
    padding: 3px 8px;
    cursor: pointer;
    background-color: var(--c-surface-accent);
    color: white;
    font-family: sans-serif;
    border-radius: 0 0 0 5px;
}
.wstd-route__scroll {
    position: absolute;
    left: 50%;
    bottom: 5%;
    color: #333;
    font-size: 0.8em;
    font-family: sans-serif;
    transform: translateX(-50%);
}

.isScroll > .wstd-route__routes-item {
    min-width: 28%;
}
/* height, width */
.isScroll::-webkit-scrollbar {
    height: 8px;
}
/* Track */
.isScroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
.isScroll::-webkit-scrollbar-thumb {
    background: #555;
}
/* Handle on hover */
.isScroll::-webkit-scrollbar-thumb:hover {
    background: #333;
}

@media (max-width: 992px) {
    .wstd-route {
        width: 50%;
    }
    .wstd-route__btn {
        top: -120px;
    }
}
@media (max-width: 768px) {
    .wstd-route {
        width: 60%;
    }
}
@media (max-width: 640px) {
    .wstd-route {
        width: 100%;
    }
}

/*WSTD - Route end*/

/* End */


/* Start:/local/templates/main/template_styles.css?17020319859269*/
.page_action_panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 16px;
    box-sizing: border-box;
    box-shadow: 0 0 5px darkgrey;
}
.page_action_panel .page_action_panel--item:not(:last-of-type) {
    margin-right: 8px;
}
.page_action_panel .page_action_panel--item a {
    color: black;
    white-space: nowrap;
}
.page_action_panel .page_action_panel--item a:hover {
    opacity: 0.5;
}

.content_special-offer
{
    margin: var(--g-section) 0;
}
.content_special-offer .special-offer
{
    display: grid;

    border-radius: 8px;
    background-color: #f3f1f8;

    grid-template-columns: 1fr 1fr;
}
@media(max-width: 768px) {
    .content_special-offer .special-offer {
        grid-template-columns: 1fr;
    }
}
.content_special-offer .special-offer__content
{

    padding: var(--g-content_cards) var(--g-section-inner);
    padding-right: 0;
}
@media(min-width: 992px) {
    .content_special-offer .special-offer__content {
        min-height: 20vh;
    }
}
.content_special-offer .special-offer__image
{
    position: relative;
}
.content_special-offer .special-offer__image img
{
    position: static;
    width: 100%;
}
@media(min-width: 992px) {
    .content_special-offer .special-offer__image img {
        position: absolute;
        bottom: 0;
        left: 0;

        width: auto;
        height: 110%;
        aspect-ratio: 1 / 1;
    }
}
.content_special-offer .block--head_title .f-h2
{
    font-size: clamp(28px, calc(28px + (64 - 28) * ((100vw - 1024px) / (1920 - 1024))), 64px);
    line-height: 1.12;
}

.header__mobile_panel .button--booking{
    overflow: visible;
}
.header__mobile_panel .button--booking span[class^="icon-"] {
    color: #fff;
    background: var(--c-text-accent);
    border-radius: 6px;
    padding: 6px;
    font-size: 24px;
    width: 42px;
    height: 42px;
    margin-top: -12px;
}
.header__mobile_panel .button--booking {
    text-transform: uppercase;
    font-weight: 500;
}

.header__logo img {
    display: none;
}
.header__logo {
    aspect-ratio: 156 / 48;
    width: 156px;
    background-image: url('../images/logo_color.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.header-transparent .header__logo{
    background-image: url('../images/logo_white.svg')
}
.header-transparent.scrolled .header__logo {
    background-image: url('../images/logo_color.svg')
}

.banner {
    transition-property: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
}
.block_banner .block--head, .block_banner .block--actions {
    -webkit-transform: translate3d(0,0,0);
}
.block_banner .block--content video {
    pointer-events: none;
}

.popup-scheme
{
    padding: 16px;

}
.popup-scheme .popup__content
{
    position: relative;

    overflow: hidden;
    pointer-events: none;
    width: 100%;
    max-width: 512px;

    pointer-events: none;

    border-radius: 12px;
    background-color: white;
}
.popup-scheme.active .popup__content{
    pointer-events: auto;

}
.popup-scheme.active{
    display: flex;
    pointer-events: all;
    opacity: 1;
    align-items: center;
    justify-content: center;
}


.popup-scheme .popup--close
{
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
}
.popup-scheme .popup--close .button
{
    width: 24px;
    height: 24px;
    padding: 14px;
}
.popup-scheme .popup--close .button .icon
{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.popup-scheme .popup--close .button .icon:before
{
    font-size: 20px;
}
.popup-scheme .popup__content_description
{
    padding: var(--g-32);
}
.popup-scheme .popup__content_title
{
    font-size: var(--fs-24);
    font-weight: 700;

    margin-bottom: 8px;
}
.popup-scheme .popup__actions{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.popup-scheme .popup--actions
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin-top: 16px;

    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.popup-scheme .popup__actions .is_hidden{
    display:none;
}


.popup-scheme .popup__content_image
{
    display: block;
    position: relative;
    aspect-ratio: 512 / 360;
    height: 100%;
}
.popup-scheme .slider_controls
{
    position: absolute;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin: 0 10px;

    inset: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.popup-scheme .slider_controls .swiper-button-prev
{
    position: static;
    left: 10px;
    border-radius: 50%;
}
.popup-scheme .slider_controls .swiper-button-next
{
    position: static;
    right: 10px;
    border-radius: 50%;
}
.popup-scheme .slider_controls .swiper_pagination
{
    position: absolute;
    z-index: 1;
    bottom: 5px;
    left: 50%;
    translate: -50% -10px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.popup-scheme .slider_controls .swiper_pagination .swiper-pagination-bullet
{
    background: white;
}
.popup-scheme .slider_controls .swiper_pagination .swiper-pagination-bullet-active
{
    scale: 1.1;
}
.popup-scheme .slider_controls .swiper-button-prev:after,
.popup-scheme .slider_controls .swiper-button-next:after
{
    font-size: 20px;

    padding: 5px;

    color: black;
    border-radius: 50%;
    background-color: white;
}
.popup-scheme .popup__close{
    max-width: 40px;
    max-height: 40px;
    background-color: #fff;
    border-radius: 8px;
    top: 16px;
    right: 16px;
}

.content_scheme
{
    overflow: hidden;

    position: relative;
}
.content_scheme scheme
{
    aspect-ratio: 1920 / 900;
}
.content_scheme svg
{
    max-width: inherit;

    aspect-ratio: 1920 / 900;
}
.content_scheme svg image
{
    width: 100%;
    height: 100%;
}
@media (max-width: 1472px)
{
    .content_scheme .scheme_svg
    {
        overflow-x: auto;
    }
}
@media (max-width: 768px)
{
    .content_scheme .scheme_svg
    {
        /*position: relative;*/

        width: auto;
    }
    .content_scheme .scheme_svg svg
    {
        height: 80vh;
    }
}
.content_scheme .placemark{
    cursor: pointer;
}
.content_scheme .scheme--tooltip
{
    position: fixed;
    z-index: 6;

    max-width: 240px;
    padding: 12px 18px;

    -webkit-transition: opacity .18s;
    -o-transition: opacity .18s;
    transition: opacity .18s;
    pointer-events: none;

    opacity: 0;
    border-radius: 8px;
    background-color: #fff;
}
.content_scheme .scheme--tooltip p
{
    font-size: var(--fs-16);

    display: -webkit-box;
    overflow: hidden;

    color: #2a2827;

    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.content_scheme .scheme--tooltip.is_active
{
    opacity: 1;
}
@media (max-width: 768px)
{
    .footer__bottom-contacts .button span{
        white-space: normal;
        text-align: left;
    }
}

.content_scheme .clouds
{
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.content_scheme .clouds:after,
.content_scheme .clouds:before
{
    position: absolute;
    left: -30%;

    width: 200%;

    content: '';
    pointer-events: none;

    background-size: cover;

    bottom:0;
    top:0;
}

@-webkit-keyframes clouds-top
{
    0%
    {
        translate: 0 0;
    }
    50%
    {
        translate: -30% 0;
    }
    100%
    {
        translate: 0 0;
    }
}

@keyframes clouds-top
{
    0%
    {
        translate: 0 0;
    }
    50%
    {
        translate: -30% 0;
    }
    100%
    {
        translate: 0 0;
    }
}

@-webkit-keyframes clouds-bottom
{
    0%
    {
        translate: 0 0;
    }
    50%
    {
        translate: -20% 0;
    }
    100%
    {
        translate: 0 0;
    }
}

@keyframes clouds-bottom
{
    0%
    {
        translate: 0 0;
    }
    50%
    {
        translate: -20% 0;
    }
    100%
    {
        translate: 0 0;
    }
}
.content_scheme .clouds:after
{
    -webkit-animation: clouds-top 35s linear infinite;
    animation: clouds-top 35s linear infinite;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    background-image: url('../images/top.png');
}
.content_scheme .clouds:before
{
    -webkit-animation: clouds-bottom 30s linear infinite;
    animation: clouds-bottom 30s linear infinite;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    background-image: url('../images/bottom.png');
}
@media (max-width: 768px)
{

    .content_scheme .clouds:after{
bottom: 50%;
        background-size: cover;
    }
    .content_scheme .clouds:before{
top: 50%;
        background-size: cover;
    }
}
.contact--list-social .contact--value {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
/* End */
/* /local/templates/main/styles.css?17020319854573 */
/* /local/templates/main/template_styles.css?17020319859269 */
