/* --------- /templates/sibalt/css/main.css --------- */
* {
    padding: 0px;
    margin: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/templates/sibalt/css/../fonts/Ubuntu/ubuntu-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'UbuntuBold';
    src: url('/templates/sibalt/css/../fonts/Ubuntu/ubuntu-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

strong, b {
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

input[type='file'] {
    max-width: 100%;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-clear-button {
    display: none;
}

input[type="text"]::-webkit-clear-button,
input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

:root {
    --primary-color: #000;
    --secondary-color: #E30075;
    --green-color: #1A8A22;
    --white-color: #fff;
}

html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: var(--primary-color);
    /* background-color: #768FA9; */
    background: linear-gradient(180deg,rgb(196, 213, 255) 0%, rgb(118, 143, 169) 70%);
}

section {
    /* padding-top: 15px; */
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.bg__image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-image: url(/templates/sibalt/css/../assets/images/main-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.main {
    flex-grow: 1;
}

.container,
.container-2 {
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
}

.link {
    width: fit-content;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px;
    background-color: #E6E6E6;
    --link-arrow: var(--primary-color);
}

.link-2 {
    color: var(--secondary-color);
    text-decoration: underline;
}

.body-overflow {
    /*height: 100dvh;
    overflow: hidden;*/
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: .35s opacity linear;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal__outline {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.57);
}

.modal__content {
    position: relative;
    padding: 40px 20px 20px;
    background-color: var(--white-color);
    border-radius: 5px;
    max-width: 478px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    transition: .14s all linear;
    transform: scale(0.3);
    z-index: 1;
}

.modal.active .modal__content {
    transform: scale(1);
}

.modal__title {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.modal__link {
    margin: 20px auto 0;
    width: fit-content;
    display: block;
    font-size: 18px;
}

.modal__wrapper {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.modal__wrapper:last-of-type {
    border-bottom: none;
}

.modal__close {
    width: fit-content;
    padding: 10px 32px;
    background-color: #c1c1c1;
    color: var(--white-color);
    border-radius: 5px;
    margin: 25px auto 0;
}

.modal__close:hover {
    background-color: #b4b4b4;
}

.button-green, .sa_booking_button {
    font-size: 15px;
    margin-top: 10px;
    padding: 7px;
    display: inline;
    color: var(--white-color);
    text-decoration: none;
    outline: none;
    border-width: 0;
    border-radius: 6px;
    box-shadow: 1px 1px 2px #999;
    cursor: pointer;
    background: linear-gradient(#6fec38, #0d8400) #6fec38;
}

.sa_go_booking {
    width: 250px;
    font-size: 18px;
}

.header__top {
    padding-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.header__info-button {
    display: none;
}

.header__logo {
    margin-right: auto;
}

.header__info {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 16px;
}

.header__info b {
  font-family: UbuntuBold;
}

.header__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.header__link {
    padding-left: 26px;
    position: relative;
    --icon-color: #8993A6;
}

.header__icon {
    position: absolute;
    left: 0;
    top: 0;
}

.header__bottom-value {
    display: block;
    text-align: end;
    font-size: 12px;
    color: var(--green-color);
}

.header__text-link {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary-color);
    --link-arrow: var(--secondary-color);
}

.header__text-link span {
    text-decoration: dotted underline;

}

.header__text-link.green {
    color: var(--green-color);
    border-bottom: 1px dotted var(--green-color);

}

.header__phone-m img {
    display: none;
}

/* Header Menu - Green bar with dropdowns (from maket) */
.header__menu {
    width: 100%;
    overflow: visible;
    padding-bottom: 15px;
}

.header__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
    background: linear-gradient(to bottom, #00883a 0%, #00ab4a 100%);
    border-radius: 6px;
    padding: 0 20px;
    font-size: 16px;
}

.header__item {
    position: relative;
}

.header__item-button, .header__item-link {
    text-align: center;
    word-break: break-all;
}

.header__item::after {
    content: "";
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translate(50%, -50%);
    background: linear-gradient(to right, #007d36, #29a65f);
    height: 18px;
    width: 2px;
}

.header__item:last-child::after {
    content: none;
}

.header__item-link,
.header__item-button {
    display: block;
    padding: 12px 0;
    color: var(--white-color);
}

.header__item-link:hover,
.header__item-button:hover {
    color: var(--primary-color);
}

.header__inner-list {
    position: absolute;
    width: 220px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 2, 0.3);
    background-color: #F5F5F5;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    flex-direction: column;
    z-index: 100;
    border-radius: 0 0 5px 5px;
    display: none;
}

.header__item-button.active + .header__inner-list {
    display: block;
}

.header__inner-list::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: rotate(180deg) translateX(50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #F5F5F5;
    right: 8px;
    top: -7px;
    width: 12px;
    height: 8px;
    z-index: 10;
}

.header__inner-item {
    border-bottom: 1px dotted #dedede;
}

.header__inner-item:last-child {
    border-bottom: none;
}

.header__inner-link {
    padding: 8px 12px;
    display: block;
    font-size: 16px;
    color: rgb(51, 51, 51);
}

.header__inner-link:hover {
    color: var(--secondary-color);
}

/* Level 3 submenu (sub-submenu) */
.header__subinner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.header__subinner-item {
    border-bottom: 1px dotted #e8e8e8;
    line-height: 1.2;
}

.header__subinner-item:last-child {
    border-bottom: none;
}

.header__subinner-link {
    padding: 6px 10px;
    display: block;
    font-size: 15px;
    color: rgb(85, 85, 85);
}

.header__subinner-link:hover {
    color: var(--secondary-color);
}

.header__subinner-link::before {
    content: "– ";
    color: var(--primary-color);
}

.box {
    padding: 20px;
    background: var(--white-color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box__title {
    margin-bottom: 20px;
}

.box__bottom {
    position: relative;
    left: auto;
    width: auto;
    margin-left: -20px;
    margin-right: -20px;
    bottom: -20px;
    height: 40px;
    margin-top: 10px;
    border-radius: 0 0 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-weight: 700;
    --arrow-top-color: var(--primary-color);
    background-color: #e6e6e6;
}

.box__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.box__button {
    display: flex;
    align-items: center;
    gap: 4px;
    --link-arrow: var(--primary-color);
}

.box__button.button-up {
    background-color: #e6e6e600;
}

.title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 22px;
    color: var(--green-color);
    margin: 15px 0;
    font-weight: 700;
}

.footer__content {
    margin-top: 20px;
    padding: 20px 0;
    background-color: var(--green-color);
}

.footer__inner {
    display: flex;
    gap: 40px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__rights {
    color: #aaa;
}

.footer__socials {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.footer__creator {
    color: #aaa;
}

.footer__creator span {
    color: var(--white-color);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__link {
    width: fit-content;
    display: block;
    font-weight: 700;
    font-size: 18px;
    color: var(--white-color);
    position: relative;
    padding-left: 26px;
    --icon-color: #aaa;
    padding-bottom: 10px;
    text-align: left;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__phone .footer__link {
    font-weight: 400;
}

.footer__phone .footer__link, .footer__msg .footer__link {
    padding-bottom: 20px;
}

.footer__msg .back_call {
    cursor: pointer;
}

.footer__icon {
    position: absolute;
    top: 0;
    left: 0;
}

.footer__bottom-value {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    text-align: end;
    color: #c4c4c4;
}

.footer__button-up {
    margin-top: 40px;
    width: 40px;
    margin-left: auto;
    display: block;
}

.footer__button-up span {
    display: none;
}

.footer__bottom {
    padding: 20px 0;
    background-color: var(--white-color);
}

.footer__bottom-list,
.footer__bottom .mod-menu.mod-list.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 10px;
    list-style: none;
    margin: 0 auto;
    max-width: 1400px;
}

.footer__bottom-link,
.footer__bottom a {
    color: var(--secondary-color);
    display: block;
    font-size: 19px;
    padding: 0 10px;
}

.footer__bottom .nav-item,
.footer__bottom li {
    list-style: none;
    text-align: center;
}

.footer__bottom .mod-menu__sub {
    display: contents;
}

.footer__bottom .nav-item.parent,
.footer__bottom .nav-item.deeper {
    display: contents;
}

.footer__bottom .nav-item.parent > a,
.footer__bottom .nav-item.deeper > a {
    display: block;
}

.wf-mediabox-content-ajax iframe {
    visibility: visible !important;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 1280px) {
    .header__list {
        gap: 40px;
    }

    .header__item::after {
        right: -20px;
    }
}

@media (max-width: 900px) {
    .header__list {
        gap: 20px;
    }

    .header__item::after {
        right: -10px;
    }
}

@media (max-width: 768px) {
    body {
        background: #85ADFF;
    }

    .bg {
        display: block;
    }

    .box {
        border-radius: 0;
    }

    .container-2 {
        padding: 0;
    }

    .header {
        position: relative;
        min-height: 350px;
    }

    .header__top {
        padding-bottom: 0;
        padding-left: 10px;
    }

    .header__logo-img {
        width: 170px;
        max-height: 75px;
    }

    .header__menu {
        padding: 0;
        max-height: 0;
        overflow-y: hidden;
        transition: max-height 0.5s linear;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .header__menu.active {
        max-height: 3000px;
    }

    .header__list {
        border: 1px solid #101010;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin-top: 0;
        background: #697284;
        border-radius: 0;
    }

    .header__item {
        width: 100%;
        text-align: center;
        border-bottom: #101010 1px solid;
    }

    .header__item:last-child {
        border-bottom: transparent 1px solid;
    }

    .header__item::after {
        display: none;
    }

    .header__item-link,
    .header__item-button {
        font-size: 25px;
        padding: 10px 4px;
    }

    .header__inner-link {
        color: var(--white-color);
        font-size: 20px;
    }

    .header__inner-link:hover,
    .header__item-button:hover,
    .header__item-link:hover {
        color: var(--white-color);
    }

    .header__inner-list {
        max-height: 0;
        display: flex;
        overflow: hidden;
        width: 100%;
        left: 0;
        transform: none;
        position: static;
        background: transparent;
        box-shadow: none;
        z-index: 200;
        transition: .4s all linear;
    }

    .header__item-button.active + .header__inner-list {
        max-height: 2000px;
    }

    .header__item-button {
        width: 100%;
        border-bottom: 1px solid transparent;
    }

    .header__inner-item,
    .header__item-button.active {
        border-bottom: 1px solid var(--primary-color);
    }

    .header__inner-list::after {
        display: none;
    }

    .header__subinner-list {
        padding-left: 0;
    }

    .header__subinner-link {
        color: var(--white-color);
        font-size: 16px;
        padding: 12px;
    }

    .header__subinner-link:hover {
        color: var(--white-color);
    }

    .header__subinner-item {
        border-top: 1px solid rgba(255,255,255,0.2);
        border-bottom: unset;
    }

    .header__info-button {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .header__info-button img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .header__info {
        max-height: 0;
        overflow: hidden;
        margin-top: 228px;
        min-width: calc(100% + 40px);
        flex-direction: column;
        background-color: #BCCCEBDE;
        padding: 0 20px;
        position: relative;
        margin-left: -20px;
        transition: .4s max-height linear;
        font-size: 20px;
    }

    .header__info.active {
        max-height: 600px;
    }

    .header__wrapper:first-child {
        padding-top: 20px;
    }

    .header__wrapper:last-child {
        padding-bottom: 20px;
    }

    .header__bottom-value {
        text-align: center;
        font-size: 16px;
    }

    .header__text-link {
        align-self: center;
    }

    .header__text-link.green {
        margin-top: 20px;
    }

    .header__wrapper {
        align-items: center;
    }

    .header__menu-button {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 44px;
    }

    .header__menu-button span {
        display: block;
        width: 100%;
        height: 5px;
        background-color: var(--white-color);
    }

    .footer__content {
        margin-top: 0;
    }

    .footer__wrapper {
        width: 100%;
    }

    .footer__left {
        display: none;
    }

    .footer__button-up {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 4px;
        color: var(--white-color);
    }

    .footer__button-up svg {
        flex-shrink: 0;
    }

    .footer__button-up span {
        display: flex;
        text-decoration: dotted underline;
    }

    .header__subinner-link::before {
        display: none;
    }
}

@media (max-width: 550px) {

    .header__logo {
        max-width: calc(100% - 120px);
    }

    .breadcrumb__item {
        font-size: 18px;
    }

    .button-green, .sa_booking_button {
        font-size: 19px;
    }

}

@media (max-width: 420px) {

    .box__button.button-up svg {
        display: none;
    }

}


/* --------- /templates/sibalt/css/search-filter.css --------- */
.searching__box {
    background-color: rgb(255 255 255 / .75);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.searching__form-top {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.searching__form-bottom {
    margin-top: 20px;
}

.input, .searching select {
    width: 100%;
    padding: 5px;
    margin-top: 10px;
    cursor: pointer;
    background-color: var(--white-color);
    border-radius: 5px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #aaa;
}

.input {
    display: block;
}

.searching__choices {
    position: relative;
}

.searching__choices {
    outline: none;
    border: none;
}

.searching__choices-inner {
    line-height: 1;
    outline: none;
    position: relative;
    margin-top: 10px;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.searching__choices.simple .searching__choices-inner, .searching__choices.search .searching__choices-inner {
    height: 25px
}

.searching__choices-inner .choices__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searching__choices.simple .searching__choices-inner .choices__item {
    padding-right: 20px;
}

.searching__choices-inner .choices__item {
    line-height: 1;
}

.searching__choices.simple::after,
.searching__choices.search::after,
.searching__choices.detail::after,
.searching__details-button::after {
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #aaa;
    right: 8px;
    top: 10px;
    position: absolute;
    width: 7px;
    height: 6px;
}

.searching__choices.simple::before,
.searching__choices.search::before,
.searching__choices.detail::before {
    content: '';
    position: absolute;
    display: block;
    right: 21px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background-color: #aaa;
    z-index: 1;
}

.searching__choices.is-open.simple::after,
.searching__choices.is-open.search::after,
.searching__choices.is-open.detail::after,
.searching__details-button.active::after {
    transform: rotate(180deg);
}

.searching__dropdown {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    bottom: 2px;
    transform: translateY(100%);
    z-index: 5;
    border-radius: 0 0 5px 5px;
    background-color: var(--white-color);
    border: 1px solid #aaa;
    border-top: none;
    overflow: hidden;
}

.searching__choices.is-open .searching__choices-inner {
    border-radius: 5px 5px 0 0;
    border-bottom: none;
}

.searching__choices.is-open .searching__dropdown {
    display: block;
}

.searching__choice {
    padding: 2px 5px;
    cursor: pointer;
}

.searching__choice:hover, .searching__choice.is-highlighted {
    background-color: #276bda;
    color: var(--white-color);
}

.w-180 {
    width: 180px;
}

.w-230 {
    width: 230px;
}

.w-115 {
    width: 115px;
}

.w-65 {
    width: 65px;
}

.searching__items {
    display: flex;
    gap: 20px;
}

.searching__items.searching__peoples {
    margin-right: 30px;
}

.searching__item.searching__cost {
    order: 1;
}

.searching__items.childrens_age {
    order: 2;
}

.searching__items > .searching__choices {
    width: 65px;
}

/* Children age block */
.searching__items.childrens_age {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    flex-basis: 100%;
}

.children-age-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.children-age-selects .searching__choices.age-select {
    width: 100px;
}

.children-age-selects .searching__choices.age-select .searching__choices-inner {
    margin-top: 0;
}

.children-age-selects .searching__choices.age-select::after {
    top: 50%;
    transform: translateY(-50%);
}

.children-age-selects .searching__choices.age-select.is-open::after {
    transform: translateY(-50%) rotate(180deg);
}

.children-age-selects .searching__choices.age-select::before {
    top: 50%;
    transform: translateY(-50%);
    height: 17px;
}

input.searching__search-input {
    width: calc(100% - 6px);
    margin: 5px auto;
    border: 1px solid #aaa;
    display: block;
    padding: 2px 20px 2px 5px;
    background: url(/templates/sibalt/css/../assets/images/search.svg) no-repeat 98% / 16px 16px;
}

.searching__dropdown .choices__list {
    max-height: 300px;
    overflow-y: auto;
}

.searching__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: #B4C7E5 1px solid;
    padding-top: 10px;
    margin-top: 10px;
}

.searching__details-button {
    position: relative
}

.searching__details-button::after {
    right: -12px;
    top: 35%;
}

.searching__details-button span {
    text-decoration: underline dotted;
}

.searching__details-button .open-value, .searching__details-button.active span {
    display: none;
}

.searching__details-button.active .open-value {
    display: block;
}

.searching__details {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: .5s all linear;
    border-top: #fff0 1px solid;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.searching__details.active {
    max-height: none;
    opacity: 1;
    display: block;
    border-top: #B4C7E5 1px solid;
    pointer-events: painted;
}

.searching__multiple {
    display: flex;
    gap: 0 5px;
    flex-wrap: wrap;
}

.searching__multiple .choices__item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #aaa;
    margin-bottom: 4px;
}

.searching__multiple .choices__button {
    position: relative;
    font-size: 0
}

.searching__multiple .choices__button::before {
    content: "✕";
    font-size: 12px;
}

.searching__details-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.searching__details-item p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 5px;
    margin-bottom: -5px;
}

.searching__details-item .searching__choices-inner {
    margin-top: 0;
}

.searching__details-item .searching__choices.detail::after {
    top: 50%;
    transform: translateY(-50%);
}

.searching__details-item .searching__choices.is-open.detail::after {
    transform: translateY(-50%) rotate(180deg);
}

.searching__details-item .searching__choices.detail::before {
    display: none;
}

.no-characteristics {
    color: #666;
    font-style: italic;
    padding: 10px 0;
}

.searching__choices.detail .choices__item.is-selected {
    color: #aaa
}

.searching__choices.detail .choices__item.is-selected.is-highlighted {
    background-color: #fff0;
    color: #aaa;
}

.choices__input.choices__input--cloned {
    border: 0;
}

.date {
    width: 115px;
}

.date__wrapper {
    position: relative;
    cursor: pointer;
}

.date__wrapper::after {
    content: url(/templates/sibalt/css/../assets/images/calendar.svg);
    width: 14px;
    height: 14px;
    position: absolute;
    transform: translateY(-50%);
    top: 35%;
    right: 10px;
    pointer-events: none;
}

.searching .datepicker-input.in-edit:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #aaa;
}

.searching__range {
    display: flex;
    align-items: center;
    gap: 20px;
}

.searching__range-inputs {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
}

.searching__range-inputs .input {
    margin-top: 0;
}

.searching__range-line {
  height: 20px;
  padding: 10px 0;
}

.searching__range-slider {
    align-self: flex-end;
    position: relative;
    width: 250px;
    height: 6px;
    background: #cfd8dc;
    border-radius: 3px;
}

.searching__range-slider input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    top: 0;
}

.searching__range-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 22px;
    background: url(/templates/sibalt/css/../images/range-icon.png) no-repeat center / cover;
    border: none;
    pointer-events: all;
    cursor: pointer;
}

.searching__range-slider input::-moz-range-thumb {
    width: 10px;
    height: 22px;
    background: url(/templates/sibalt/css/../images/range-icon.png) no-repeat center / cover;
    border: none;
    pointer-events: all;
    cursor: pointer;
}

.searching__range-progress {
    position: absolute;
    height: 100%;
    background: #4caf50;
    border-radius: 3px;
}

.searching__range-inputs input {
    width: 70px;
}

.searching__range-bottom {
    margin-top: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
}

.form-group.slider {
    position: relative;
}

#filter_form .form-group {
    position: relative;
}

.searching__button {
    background-color: var(--secondary-color);
    padding: 10px 40px;
    border-radius: 5px;
    color: var(--white-color);
    font-weight: 700;
}

@media (max-width: 1250px) {

    .searching__item.searching__cost {
        order: unset;
    }

    .searching__items.searching__peoples {
        margin-right: 30px;
        width: 100%;
    }

}

@media (max-width: 768px) {

    .searching__box {
        margin-top: 0;
        border-radius: 0;
        padding: 20px;
    }

}

@media (max-width: 550px) {

    .searching__form-top {
        gap: 10px;
    }

    .searching__item, .searching__range-slider, .searching__range > div {
        width: 100%;
    }

    .searching__range input {
        flex-grow: 1;
    }

    .searching__items {
        width: 100%;
    }

    .searching__items.searching__peoples {
        margin-right: 0;
    }

    .searching__range {
        width: 100%;
        flex-direction: column;
    }

    .searching__range-bottom {
        width: 100%;
    }

    .searching__range-line {
        margin-bottom: 20px;
    }

    .w-115 {
        width: calc(50% - 10px);
    }

    .searching__button {
        padding: 10px 20px;
    }

    .searching__details-button::after {
        display: none;
    }

    .searching__details-button {
        padding-right: 10px;
    }

}


/* --------- /templates/sibalt/libs/calendar/calendar.min.css --------- */
.datepicker{width:-moz-min-content;width:min-content}.datepicker:not(.active){display:none}.datepicker-dropdown{padding-top:4px;position:absolute;z-index:20}.datepicker-dropdown.datepicker-orient-top{padding-bottom:4px;padding-top:0}.datepicker-picker{background-color:#fff;border-radius:4px;display:flex;flex-direction:column}.datepicker-dropdown .datepicker-picker{box-shadow:0 2px 3px hsla(0,0%,4%,.1),0 0 0 1px hsla(0,0%,4%,.1)}.datepicker-main{flex:auto;padding:2px}.datepicker-footer{background-color:#f5f5f5;box-shadow:inset 0 1px 1px hsla(0,0%,4%,.1)}.datepicker-title{background-color:#f5f5f5;box-shadow:inset 0 -1px 1px hsla(0,0%,4%,.1);font-weight:700;padding:.375rem .75rem;text-align:center}.datepicker-controls{display:flex}.datepicker-header .datepicker-controls{padding:2px 2px 0}.datepicker-controls .button{align-items:center;background-color:#fff;border:1px solid #dcdcdc;border-radius:4px;box-shadow:none;color:#363636;cursor:pointer;display:inline-flex;font-size:1rem;height:2.25em;justify-content:center;line-height:1.5;margin:0;padding:calc(.375em - 1px) .75em;position:relative;text-align:center;vertical-align:top;white-space:nowrap}.datepicker-controls .button:active,.datepicker-controls .button:focus{outline:none}.datepicker-controls .button:hover{border-color:#b8b8b8;color:#363636}.datepicker-controls .button:focus{border-color:#3273dc;color:#363636}.datepicker-controls .button:focus:not(:active){box-shadow:0 0 0 .125em rgba(50,115,220,.25)}.datepicker-controls .button:active{border-color:#474747;color:#363636}.datepicker-controls .button[disabled]{cursor:not-allowed}.datepicker-header .datepicker-controls .button{border-color:transparent;font-weight:700}.datepicker-header .datepicker-controls .button:hover{background-color:#f9f9f9}.datepicker-header .datepicker-controls .button:active{background-color:#f2f2f2}.datepicker-footer .datepicker-controls .button{border-radius:2px;flex:auto;font-size:.75rem;margin:calc(.375rem - 1px) .375rem}.datepicker-controls .view-switch{flex:auto}.datepicker-controls .next-button,.datepicker-controls .prev-button{flex:0 0 14.2857142857%;padding-left:.375rem;padding-right:.375rem}.datepicker-controls .next-button.disabled,.datepicker-controls .prev-button.disabled{visibility:hidden}.datepicker-grid,.datepicker-view{display:flex}.datepicker-view{align-items:stretch;width:15.75rem}.datepicker-grid{flex:auto;flex-wrap:wrap}.datepicker .days{display:flex;flex:auto;flex-direction:column}.datepicker .days-of-week{display:flex}.datepicker .week-numbers{display:flex;flex:0 0 9.6774193548%;flex-direction:column}.datepicker .weeks{align-items:stretch;display:flex;flex:auto;flex-direction:column}.datepicker span{-webkit-touch-callout:none;align-items:center;border-radius:4px;cursor:default;display:flex;justify-content:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.datepicker .dow{font-size:.875rem;font-weight:700;height:1.5rem}.datepicker .week{color:#b8b8b8;flex:auto;font-size:.75rem}.datepicker .days .dow,.datepicker-cell{flex-basis:14.2857142857%}.datepicker-cell{height:2.25rem}.datepicker-cell:not(.day){flex-basis:25%;height:4.5rem}.datepicker-cell:not(.disabled):hover{background-color:#f9f9f9;cursor:pointer}.datepicker-cell.focused:not(.selected){background-color:#e9e9e9}.datepicker-cell.selected,.datepicker-cell.selected:hover{background-color:#3273dc;color:#fff;font-weight:600}.datepicker-cell.disabled{color:#dcdcdc}.datepicker-cell.next:not(.disabled),.datepicker-cell.prev:not(.disabled){color:#7a7a7a}.datepicker-cell.next.selected,.datepicker-cell.prev.selected{color:#e6e6e6}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today){background-color:#f5f5f5;border-radius:0}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover{background-color:#efefef}.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused{background-color:#e9e9e9}.datepicker-cell.today:not(.selected){background-color:#00d1b2}.datepicker-cell.today:not(.selected):not(.disabled){color:#fff}.datepicker-cell.today.focused:not(.selected){background-color:#00ccad}.datepicker-cell.range-end:not(.selected),.datepicker-cell.range-start:not(.selected){background-color:#b8b8b8;color:#fff}.datepicker-cell.range-end.focused:not(.selected),.datepicker-cell.range-start.focused:not(.selected){background-color:#b3b3b3}.datepicker-cell.range-start:not(.range-end){border-radius:4px 0 0 4px}.datepicker-cell.range-end:not(.range-start){border-radius:0 4px 4px 0}.datepicker-cell.range{background-color:#dcdcdc;border-radius:0}.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover{background-color:#d7d7d7}.datepicker-cell.range.disabled{color:#c6c6c6}.datepicker-cell.range.focused{background-color:#d1d1d1}.datepicker-input.in-edit{border-color:#276bda}.datepicker-input.in-edit:active,.datepicker-input.in-edit:focus{box-shadow:0 0 .25em .25em rgba(39,107,218,.2)}

/* --------- /templates/sibalt/css/pages/homepage.css --------- */
h3 {
    font-size: 24px;
    font-weight: 700;
    font-family: UbuntuBold;
    line-height: 120%;
}

.container-2 {
    padding-bottom: 15px;
}

.box img {
    width: 100%;
    height: 100%;
}

.searching__box {
  margin-bottom: 0 !important;
}

.special-offers__content {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
    min-height: 160px;
}

.special-offers__item {
    position: relative;
}

.special-offers__name {
    position: absolute;
    left: 10px;
    right: 10px;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    background: var(--secondary-color);
    padding: 2px 5px;
    color: var(--white-color);
    bottom: 20px;
    font-size: 19px;
    max-width: 80%;
}

.offers__bottom {
    display: grid;
    margin-top: 15px;
    gap: 15px;
    grid-template-columns:repeat(2, 1fr)
}

.offers__content {
    display: grid;
    gap: 20px;
    grid-template-columns:repeat(3, 1fr);
}

.offers__bottom .offers__content {
    grid-template-columns:repeat(2, 1fr);
    flex-grow: 1;
    min-height: 160px;
}

.offers__item {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    gap: 60px;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.special-offers__img {
  aspect-ratio: 4/3 auto;
}

.offers__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: -1;
    object-fit: cover;
    filter: brightness(70%);
}

.offers__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--white-color);
    text-align: center;
    font-size: 20px;
}

.offers__list a {
    color: var(--white-color);
}

.offers__name {
    font-size: 25px;
    color: var(--white-color);
}

.others__content {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
    min-height: 520px;
}

.others__item {
    position: relative;
}

.others__img {
    filter: brightness(70%);
    aspect-ratio: 4/3 auto;
}

.others__name {
    position: absolute;
    color: var(--white-color);
    text-align: center;
    font-size: 24px;
    left: 20px;
    right: 20px;
    top: 20px;
}

.popular__slider {
    width: 100%;
}

.popular__img {
  aspect-ratio: 3/2 auto;
}

.popular__name {
    margin-top: 10px;
    text-align: center;
    text-decoration: dotted underline;
    text-underline-offset: 3px;
    font-size: 17px;
}

.popular__slider-bottom {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular .popular__pagination {
    position: static;
    --swiper-theme-color: var(--green-color)
}

.swiper-pagination-bullet {
    position: relative;
}

.swiper-pagination-bullet-active::after {
    content: "";
    width: 12px;
    height: 12px;
    left: 0;
    top: 0;
    transform: translate(-2px, -2px);
    border-radius: 50%;
    border: 1px solid var(--green-color);
    position: absolute;
}

.popular__button {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--green-color);
}

.news__top, .reviews__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box .news__img {
    height: unset;
    aspect-ratio: 4/3 auto;
    padding-bottom: 5px;
}

.news__content {
    margin-top: 20px;
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
}

.news__date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4a4a4a;
    font-size: 14px;
    margin-top: 5px
}

.box .news__date-icon {
    width: 14px;
    height: 14px;
}

.news__name-value {
    border-bottom: 1px solid #aaa
}

.news__name-date {
    color: #aaa;
}

.news__link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    --link-arrow: var(--secondary-color);
}

.about__grid, .reviews__grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    align-items: flex-start;
    padding-bottom: 20px;
    gap: 20px;
}

.reviews__grid {
    grid-template-columns:repeat(3, 1fr);
}

.about__item, .reviews__item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background-color: #E4EAF8D6;
    min-height: 340px;
}

.about__icon, .reviews__icon {
  width: 100px;
  height: 100px;
}

.about__name, .reviews__name {
    font-size: 25px;
    text-align: center;
    margin: 10px 0;
}

.about .box h3, .reviews .box h3  {
  margin: 0;
}

.about__text, .reviews__text {
    font-size: 16px;
}

.reviews__flex {
    margin: 10px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 17px;
}

.reviews__author {
    font-weight: 700;
}

.reviews__start {
  width: 125px;
  height: 24px;
}


@media (max-width: 1200px) {

    .about__grid {
        grid-template-columns: repeat(2, 2fr);
    }

    .special-offers__content {
       grid-template-columns: repeat(3, 1fr);
    }

    .offers__content {
       grid-template-columns: repeat(2, 1fr);
    }

    .others__content {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 900px) {
    .special-offers__content, .offers__content, .others__content, .news__content, .offers__content, .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offers__bottom {
        grid-template-columns:100%;
    }

    .news__content {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews__grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 768px) {

    .homepage .bg__image {
        background-image: url(/templates/sibalt/css/pages/../../assets/images/main-bg-mobile.webp);
        height: 100%;
        min-height: 100vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

    .searching {
        margin-top: 0;
    }

    .news__content {
        grid-template-columns: 100%;
    }

    .offers__item {
        min-height: 200px;
    }

    .news__item a {
        display: flex;
        gap: 20px;
    }

    .box .news__img {
        max-width: 200px;
    }

    .news__date {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .about__content, .reviews__content {
        background-color: #CAD7F3;
        padding: 0;
        margin-top: 0;
    }

    .reviews {
        padding: 0;
    }

    .about {
        padding: 15px 0 0 0;
    }

    .about__content .container, .reviews__content .container{
        padding: 0;
    }

    .swiper-pagination-bullet {
        margin: 15px !important;
    }

}

@media (max-width: 550px) {

    .box .news__img {
        width: 120px;
        height: 100px;
    }

    .special-offers__content {

    }
    .special-offers__content, .offers__content, .offers__bottom .offers__content, .others__content, .news__content, .reviews__grid, .about__grid {
        /*grid-template-columns: repeat(1, 1fr);*/
        grid-template-columns: 100%;
    }

}