
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

.snipet p {
    padding: 15px 0 15px 0;
}


p.views {
    margin: 4px 0 2px;
}

p.view-map {
    margin: 10px 0 2px;
}


p {
    margin-block: 0 15px;
    margin-inline: 0;
}

blockquote {
    margin: 0 0 1rem;
    padding-left: 0.5rem;
    font-size: 1em;
    color: #363642;
    border-left: 4px solid #2196f3;
}

/* Color variables for light theme */
:root {
    --white-color: #fff;
    --black-color: #000;
    --light-white-color: #f0f0f0;
    --light-gray-color: #e5e5e5;
    --border-color: #ccc;
    --primary-color: #3b82f6;
    --secondary-color: #404040;
    --overlay-dark-color: rgba(0, 0, 0, 0.6);
    --radius: 8px;
    --baseFg: dimgray;
    --baseBg: white;
    --accentFg: #006fc2;
    --accentBg: #bae1ff;
}

/* Color variables for dark theme */
.dark-mode {
    --white-color: #171717;
    --black-color: #d4d4d4;
    --light-white-color: #333;
    --light-gray-color: #404040;
    --border-color: #808080;
    --secondary-color: #d4d4d4;
}

body {
    background: var(--white-color);
}

.page-title {
    /*color: #0d0d0d;*/
    font-size: 20px;
    /*   line-height: 20px;*/
    margin-top: 0;
    font-weight: 700;
    margin-bottom: 10px;
}

.h2-promo {
    font-size: 16px;
    margin: 20px;
}

blockquote p {
    margin-top: 20px;
}

.container {
    display: flex;
    overflow: hidden;
    max-height: 100vh;
    flex-direction: column;
}

header,
.sidebar .nav-left,
.category-list {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--white-color);
}

.navbar {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 8px 16px;
    justify-content: space-between;
}

:where(.navbar, .sidebar) .nav-section {
    gap: 16px;
}

:where(.navbar, .sidebar) :where(.nav-section, .nav-logo, .search-form) {
    display: flex;
    align-items: center;
}

:where(.navbar, .sidebar) :where(.logo-image, .user-image) {
    width: 122px;
    cursor: pointer;
    /* border-radius: 50%;*/
}

:where(.navbar, .sidebar) .nav-section .nav-button {
    border: none;
    height: 40px;
    width: 40px;
    cursor: pointer;
    background: none;
    border-radius: 50%;
}

    :where(.navbar, .sidebar) .nav-section .nav-button:hover {
        background: var(--light-gray-color) !important;
    }

:where(.navbar, .sidebar) .nav-button i {
    font-size: 1.5rem;
    display: flex;
    color: var(--black-color);
    align-items: center;
    justify-content: center;
}

:where(.navbar, .sidebar) .nav-logo {
    display: flex;
    gap: 8px;
    text-decoration: none;
}

    :where(.navbar, .sidebar) .nav-logo .logo-text {
        color: var(--black-color);
        font-size: 1.25rem;
    }

.navbar .search-back-button {
    display: none;
}

.navbar .nav-center {
    gap: 8px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.navbar .search-form {
    flex: 1;
    height: 40px;
    max-width: 550px;
}

    .navbar .search-form .search-input {
        width: 100%;
        height: 100%;
        font-size: 1rem;
        padding: 0 16px;
        outline: none;
        color: var(--black-color);
        background: var(--white-color);
        border-radius: 49px 0 0 49px;
        border: 1px solid var(--border-color);
    }

        .navbar .search-form .search-input:focus {
            border-color: var(--primary-color);
        }

    .navbar .search-form .search-button {
        height: 40px;
        width: auto;
        padding: 0 20px;
        border-radius: 0 49px 49px 0;
        border: 1px solid var(--border-color);
        border-left: 0;
    }

.navbar .nav-center .mic-button {
    background: var(--light-white-color);
}

.navbar .nav-right .search-button {
    display: none;
}

.main-layout {
    display: flex;
    overflow-y: auto;
    scrollbar-color: #a6a6a6 transparent;
}

    .main-layout .sidebar {
        width: 280px;
        overflow: hidden;
        padding: 0 11px 0;
        background: var(--white-color);
    }

        .main-layout .sidebar .nav-left {
            display: none;
            padding: 8px 5px;
        }

body.sidebar-hidden .main-layout .sidebar {
    width: 0;
    padding: 0;
}

.sidebar .links-container {
    padding: 16px 0 32px;
    overflow-y: auto;
    height: calc(100vh - 60px);
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

    .sidebar .links-container:hover {
        scrollbar-color: #a6a6a6 transparent;
    }

.sidebar .link-section {
    list-style: none;
}

    .sidebar .link-section .link-item {
        display: flex;
        cursor: pointer;
        color: var(--black-color);
        white-space: nowrap;
        align-items: center;
        font-size: 0.938rem;
        padding: 5px 12px;
        margin-bottom: 4px;
        border-radius: 8px;
        text-decoration: none;
    }

        .sidebar .link-section .link-item:hover {
            background: var(--light-gray-color);
        }

        .sidebar .link-section .link-item i {
            font-size: 1.4rem;
            margin-right: 10px;
        }

    .sidebar .link-section .section-title {
        color: var(--black-color);
        font-weight: 600;
        font-size: 0.938rem;
        margin: 16px 0 8px 8px;
    }

.sidebar .section-separator {
    height: 1px;
    margin: 10px 0;
    background: var(--light-gray-color);
}

.main-layout .content-wrapper {
    padding: 0 16px;
    overflow-x: hidden;
    width: 100%;
}


@media (min-width:768px) {
    .sidebar {
        width: 280px !important;
    }
}

.content-wrapper .category-list {
    z-index: 1000 !important;
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 12px 0 11px;
    scrollbar-width: none;
}



.content-wrapper .hotel-list {
    display: grid;
    gap: 16px;
    padding: 20px 0 64px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

    .content-wrapper .hotel-list .hotel-card {
        text-decoration: none;
    }

        .content-wrapper .hotel-list .hotel-card .thumbnail-container {
            height: 150px;
            position: relative;
        }

        .content-wrapper .hotel-list .hotel-card .thumbnail {
            width: 100%;
            height: 200px;
            border-radius: 4px 4px 0px 0px;
            /*        aspect-ratio: 16 / 9; */
            top: 8px;
            bottom: 8px;
            /* left: 8px;*/
            box-sizing: border-box;
            background-position: 50%;
            background-size: cover;
            /* background: var(--light-white-color);*/
        }


.hotel-card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px 0px;
}


.hotel-card:active {
    background-color: rgb(224, 242, 255);
}


/*.hotel-card:hover {
    background-color: rgb(242, 250, 255);
}*/


.hotel-card {
    border-radius: 4px;
    /*padding: 16px;*/
    /* background-color: rgb(255, 255, 255);*/
    cursor: pointer;
    outline: none;
    position: relative;
    transition-property: background-color, box-shadow, border-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    border: 0px solid rgb(209, 209, 213);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px 0px;
}


    .hotel-card:visited {
        color: rgb(91, 51, 173);
    }


    .hotel-card:hover {
        outline: 0px;
    }





.content-wrapper .hotel-list .hotel-card .duration {
    position: absolute;
    right: 10px;
    bottom: 12px;
    color: #fff;
    font-size: 0.875rem;
    padding: 0 5px;
    border-radius: 5px;
    background: var(--overlay-dark-color);
}

.content-wrapper .hotel-list .hotel-card .hotel-info {
    display: flex;
    gap: 11px;
    padding: 14px 8px;
}

.content-wrapper .hotel-list .hotel-card .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.content-wrapper .hotel-list .hotel-card .title {
    font-size: 1rem;
    color: var(--black-color);
    font-weight: 600;
    line-height: 1.375;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.content-wrapper .hotel-list .hotel-card:hover .title {
    color: var(--primary-color);
}

.content-wrapper .hotel-list .hotel-card p {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

.content-wrapper .hotel-list .hotel-card .channel-name {
    margin: 4px 0 2px;
}

/* Responsive media code for small devices */
@media (max-width: 768px) {

    .navbar {
        gap: 1rem;
    }

        .navbar .nav-center,
        body.show-mobile-search .navbar .nav-left,
        body.show-mobile-search .navbar .nav-right {
            display: none;
        }

        .navbar .nav-right .search-button,
        body.show-mobile-search .navbar .search-back-button,
        body.show-mobile-search .navbar .nav-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .main-layout .screen-overlay {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 15;
        width: 100%;
        height: 100vh;
        background: var(--overlay-dark-color);
        transition: 0.2s ease;
    }

    body.sidebar-hidden .main-layout .screen-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .main-layout .sidebar {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 20;
        height: 100vh;
        transition: 0.2s ease;
    }

    body.sidebar-hidden .main-layout .sidebar {
        left: -280px;
    }

    .main-layout .sidebar .nav-left {
        display: flex;
    }
}





.badge {
    display: inline-block;
    padding: .25rem .375rem;
    font-size: 80%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.badge-zavtrak {
    color: #c0f369;
    background-color: #234595;
}


.badge-hotel {
    color: #ffeb3b;
    background-color: #4caf50;
}

.badge-hostel {
    color: #fff;
    background-color: #275efe;
}

.badge-home-for-rest {
    color: #000;
    background-color: #cddc39;
}

.badge-townhouse {
    color: #fff;
    background-color: #795548;
}

.badge-apartments {
    color: #fff;
    background-color: deepskyblue;
}


.badge-sanatorium {
    color: #fff;
    background-color: #9c27b0;
}

.gray {
    color: gray;
}


.badge-way {
      margin: 8px 10px 0 0;  
    background-color: #ffeb3b5e;
    display: inline-block;
    padding: .25rem .375rem;
    font-size: 90%;
    /* font-weight: 700; */
    line-height: 1;
    text-align: center;
    vertical-align: baseline;
    border-radius: .25rem;
}


.price-info {
    float: right;
    display: grid;
}

    .price-info span {
        text-align: right;
    }

.price_deal {
    color: #008009;
    font-size: 1.3rem;
    line-height: 28px;
    font-weight: 700;
    text-align: right;
    /* margin-right: 20px; */
}

.dark-mode .price_deal {
    color: #d4d4d4
}


/*.breadcrumb, .breadcrumb-item {
    display: flex;
}

.breadcrumb {
    flex-wrap: wrap;
    padding: 10px 0px;
    margin-bottom: 0.5rem;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

    .breadcrumb-item + .breadcrumb-item:hover:before {*/ /* text-decoration:underline; */
/*text-decoration: none;
    }

    .breadcrumb-item + .breadcrumb-item:before {
        display: inline-block;
        padding-right: 0.5rem;
        color: #888c9b;
        content: ">";
    }*/

.hotel-details {
    width: 100%
}

p, h1, h2 {
    color: var(--secondary-color);
}

h2 {
    color: var(--secondary-color);
    font-size: 18px;
}

.autocomplete {
    width: 100%;
    position: relative;
    /* display: inline-block;*/
}



/*label input {*/
/*    border: 1px solid transparent;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
}*/

/*input[type=text] {
    background-color: #f1f1f1;
    width: 100%;
}

input[type=submit] {
    background-color: #fff;
    color: #fff;
    cursor: pointer;
}*/

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 2000; /*position the autocomplete items to be the same width as the container:*/
    top: 40px;
    left: 16px;
    right: 70px;
}

    .autocomplete-items div {
        text-align: left;
        padding: 10px;
        color: #000;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }
        /*when hovering an item:*/

        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }
/*when navigating through the items using the arrow keys:*/

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}




.menu:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z" transform="translate(0 1)" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M0 0v1h8v-1h-8zm0 2.97v1h8v-1h-8zm0 3v1h8v-1h-8z" transform="translate(0 1)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .menu:before {
    background-color: #fff;
}


.search:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 21 3 C 11.621094 3 4 10.621094 4 20 C 4 29.378906 11.621094 37 21 37 C 24.710938 37 28.140625 35.804688 30.9375 33.78125 L 44.09375 46.90625 L 46.90625 44.09375 L 33.90625 31.0625 C 36.460938 28.085938 38 24.222656 38 20 C 38 10.621094 30.378906 3 21 3 Z M 21 5 C 29.296875 5 36 11.703125 36 20 C 36 28.296875 29.296875 35 21 35 C 12.703125 35 6 28.296875 6 20 C 6 11.703125 12.703125 5 21 5 Z"/></svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"><path d="M 21 3 C 11.621094 3 4 10.621094 4 20 C 4 29.378906 11.621094 37 21 37 C 24.710938 37 28.140625 35.804688 30.9375 33.78125 L 44.09375 46.90625 L 46.90625 44.09375 L 33.90625 31.0625 C 36.460938 28.085938 38 24.222656 38 20 C 38 10.621094 30.378906 3 21 3 Z M 21 5 C 29.296875 5 36 11.703125 36 20 C 36 28.296875 29.296875 35 21 35 C 12.703125 35 6 28.296875 6 20 C 6 11.703125 12.703125 5 21 5 Z"/></svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .search:before {
    background-color: #fff;
}


.arrow-thick-left:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z" transform="translate(0 1)" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M3 0l-3 3.03 3 2.97v-2h5v-2h-5v-2z" transform="translate(0 1)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .arrow-thick-left:before {
    background-color: #fff;
}


.map:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M0 0v8h8v-2.38a.5.5 0 0 0 0-.22v-5.41h-8zm1 1h6v4h-1.5a.5.5 0 0 0-.09 0 .5.5 0 1 0 .09 1h1.5v1h-6v-6zm2.5 1c-.83 0-1.5.67-1.5 1.5 0 1 1.5 2.5 1.5 2.5s1.5-1.5 1.5-2.5c0-.83-.67-1.5-1.5-1.5zm0 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .map:before {
    background-color: #fff;
}

.home:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M4 0l-4 3h1v4h2v-2h2v2h2v-4.03l1 .03-4-3z" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}


.dark-mode .home:before {
    background-color: #fff;
}


.phone:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url(' data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" transform="translate(1)" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M.19 0c-.11 0-.19.08-.19.19v7.63c0 .11.08.19.19.19h4.63c.11 0 .19-.08.19-.19v-7.63c0-.11-.08-.19-.19-.19h-4.63zm.81 1h3v5h-3v-5zm1.5 5.5c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5z" transform="translate(1)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .phone:before {
    background-color: #fff;
}


.info:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z" transform="translate(2)" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M3 0c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-1.5 2.5c-.83 0-1.5.67-1.5 1.5h1c0-.28.22-.5.5-.5s.5.22.5.5-1 1.64-1 2.5c0 .86.67 1.5 1.5 1.5s1.5-.67 1.5-1.5h-1c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-.36 1-1.84 1-2.5 0-.81-.67-1.5-1.5-1.5z" transform="translate(2)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .info:before {
    background-color: #fff;
}



.train:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg enable-background="new 0 0 141.732 141.732" height="141.732px" id="Livello_1" version="1.1" viewBox="0 0 141.732 141.732" width="141.732px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Livello_22"><path d="M101.734,59.837c0,3.005-2.433,5.439-5.439,5.439c-3.005,0-5.439-2.434-5.439-5.439c0-3.007,2.435-5.44,5.439-5.44   S101.734,56.831,101.734,59.837 M101.734,43.517h-27.2V16.319h27.2V43.517z M85.415,8.158c0,1.545-1.218,2.794-2.718,2.794h-21.76   h-0.038c-1.523,0-2.758-1.233-2.758-2.758c0-1.521,1.235-2.761,2.758-2.761c0.015,0,0.024,0.004,0.038,0.004V5.363h21.759h0.002   C84.197,5.363,85.415,6.613,85.415,8.158 M69.096,43.517h-27.2V16.319h27.202L69.096,43.517L69.096,43.517z M41.094,59.837   c0-3.007,2.436-5.44,5.439-5.44c3.007,0,5.443,2.433,5.443,5.44c0,3.005-2.436,5.439-5.443,5.439   C43.529,65.276,41.094,62.843,41.094,59.837 M53.287,87.035H90.03l6.455,11.177H46.834L53.287,87.035z M40.553,109.091h62.212   l6.28,10.881H34.27L40.553,109.091z M107.177,78.876V8.158c0-4.508-3.655-8.158-8.162-8.158h-0.002H44.618h-0.001   c-4.507,0-8.16,3.649-8.16,8.157v70.718c0,4.508,3.653,8.158,8.16,8.158h2.471L15.51,141.732h6.199l6.281-10.883h87.337   l6.281,10.883h6.199L96.228,87.035h2.789C103.521,87.035,107.177,83.384,107.177,78.876 M108.365,98.211l0.257,0.443v-0.443   H108.365z"/></g><g id="Livello_1_1_"/></svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg enable-background="new 0 0 141.732 141.732" height="141.732px" id="Livello_1" version="1.1" viewBox="0 0 141.732 141.732" width="141.732px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><g id="Livello_22"><path d="M101.734,59.837c0,3.005-2.433,5.439-5.439,5.439c-3.005,0-5.439-2.434-5.439-5.439c0-3.007,2.435-5.44,5.439-5.44   S101.734,56.831,101.734,59.837 M101.734,43.517h-27.2V16.319h27.2V43.517z M85.415,8.158c0,1.545-1.218,2.794-2.718,2.794h-21.76   h-0.038c-1.523,0-2.758-1.233-2.758-2.758c0-1.521,1.235-2.761,2.758-2.761c0.015,0,0.024,0.004,0.038,0.004V5.363h21.759h0.002   C84.197,5.363,85.415,6.613,85.415,8.158 M69.096,43.517h-27.2V16.319h27.202L69.096,43.517L69.096,43.517z M41.094,59.837   c0-3.007,2.436-5.44,5.439-5.44c3.007,0,5.443,2.433,5.443,5.44c0,3.005-2.436,5.439-5.443,5.439   C43.529,65.276,41.094,62.843,41.094,59.837 M53.287,87.035H90.03l6.455,11.177H46.834L53.287,87.035z M40.553,109.091h62.212   l6.28,10.881H34.27L40.553,109.091z M107.177,78.876V8.158c0-4.508-3.655-8.158-8.162-8.158h-0.002H44.618h-0.001   c-4.507,0-8.16,3.649-8.16,8.157v70.718c0,4.508,3.653,8.158,8.16,8.158h2.471L15.51,141.732h6.199l6.281-10.883h87.337   l6.281,10.883h6.199L96.228,87.035h2.789C103.521,87.035,107.177,83.384,107.177,78.876 M108.365,98.211l0.257,0.443v-0.443   H108.365z"/></g><g id="Livello_1_1_"/></svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .train:before {
    background-color: #fff;
}

.moon:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .moon:before {
    background-color: #fff;
}



.best:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg   height="8pt" width="8pt" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"> <path d="M64,38.5c0-1.6-0.5-3.2-1.5-4.5c1.3-1.7,1.8-3.8,1.4-5.9C63.2,24.6,60,22,56.3,22h-14c0.3-2,0.7-4.6,0.7-7.1 c0-6.1-1.9-10.2-6-12.7c-4.1-2.5-8.8-0.2-9-0.1l-1.2,0.6L28,14.5L20,29.6c-0.6-0.3-1.3-0.6-2-0.6H4c-2.2,0-4,1.8-4,4v26 c0,2.2,1.8,4,4,4h14c1.5,0,2.9-0.9,3.5-2.2c1.3,0.8,2.9,1.2,4.5,1.2h24.3c3.9,0,7.1-2.8,7.6-6.5c0.1-0.8,0.1-1.6,0-2.4 c2.5-1.3,4.1-3.8,4.1-6.7c0-0.9-0.1-1.7-0.4-2.5C63.1,42.6,64,40.6,64,38.5z M18,59H4V33h14L18,59z M58.1,41.6l-2,1l1.3,1.9 c0.4,0.6,0.6,1.3,0.6,2c0,1.7-1.3,3.2-3,3.5l-2.8,0.4l1.3,2.5c0.3,0.7,0.5,1.4,0.4,2.1c-0.2,1.7-1.8,3-3.7,3H26c-1.9,0-4-1.1-4-3 V34.4l9.6-18.3c0.3-0.5,0.4-1.1,0.3-1.7l-0.8-9.2c1-0.3,2.6-0.4,3.8,0.3c2.8,1.7,4,4.7,4,9.3c0,2.4-0.4,4.9-0.7,6.8 c-0.1,0.9-0.2,1.6-0.3,2.1L37.8,26h18.5c1.8,0,3.3,1.2,3.6,2.8c0.3,1.4-0.3,2.7-1.4,3.5L56.2,34l2.3,1.6c0.9,0.7,1.5,1.7,1.5,2.9 C60,39.8,59.3,41,58.1,41.6z"></path> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg   height="8pt" width="8pt" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"> <path d="M64,38.5c0-1.6-0.5-3.2-1.5-4.5c1.3-1.7,1.8-3.8,1.4-5.9C63.2,24.6,60,22,56.3,22h-14c0.3-2,0.7-4.6,0.7-7.1 c0-6.1-1.9-10.2-6-12.7c-4.1-2.5-8.8-0.2-9-0.1l-1.2,0.6L28,14.5L20,29.6c-0.6-0.3-1.3-0.6-2-0.6H4c-2.2,0-4,1.8-4,4v26 c0,2.2,1.8,4,4,4h14c1.5,0,2.9-0.9,3.5-2.2c1.3,0.8,2.9,1.2,4.5,1.2h24.3c3.9,0,7.1-2.8,7.6-6.5c0.1-0.8,0.1-1.6,0-2.4 c2.5-1.3,4.1-3.8,4.1-6.7c0-0.9-0.1-1.7-0.4-2.5C63.1,42.6,64,40.6,64,38.5z M18,59H4V33h14L18,59z M58.1,41.6l-2,1l1.3,1.9 c0.4,0.6,0.6,1.3,0.6,2c0,1.7-1.3,3.2-3,3.5l-2.8,0.4l1.3,2.5c0.3,0.7,0.5,1.4,0.4,2.1c-0.2,1.7-1.8,3-3.7,3H26c-1.9,0-4-1.1-4-3 V34.4l9.6-18.3c0.3-0.5,0.4-1.1,0.3-1.7l-0.8-9.2c1-0.3,2.6-0.4,3.8,0.3c2.8,1.7,4,4.7,4,9.3c0,2.4-0.4,4.9-0.7,6.8 c-0.1,0.9-0.2,1.6-0.3,2.1L37.8,26h18.5c1.8,0,3.3,1.2,3.6,2.8c0.3,1.4-0.3,2.7-1.4,3.5L56.2,34l2.3,1.6c0.9,0.7,1.5,1.7,1.5,2.9 C60,39.8,59.3,41,58.1,41.6z"></path> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .best:before {
    background-color: #fff;
}

.star:before {
    display: block;
    content: ' ';
    background-size: 12px 12px;
    height: 12px;
    width: 12px;
    background-color: red;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 8 8"> <path d="M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,  <svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 8 8"> <path d="M4 0l-1 3h-3l2.5 2-1 3 2.5-2 2.5 2-1-3 2.5-2h-3l-1-3z" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .star:before {
    background-color: #fff;
}


.sun:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" /> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .sun:before {
    background-color: #fff;
}




.dist:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: red;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg width="16" height="16" fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" focusable="false"><path d="M5.44377 7.42238L8.09505 7.90364L8.52381 11.1394V12.4983L8.89043 11.1394L12.2811 3.98709L13.0599 2.97645L12.0335 3.73946L5.15589 6.98575L3.74975 7.42326L5.44377 7.42238ZM1.5701 8.34027C0.904212 8.21427 0.787836 7.30775 1.40122 7.01813L13.9979 1.0698C14.5929 0.788925 15.2098 1.40756 14.9298 2.00169L8.97969 14.5992C8.69093 15.2117 7.7853 15.0962 7.66017 14.4295L6.73878 9.26165L1.5701 8.34027L1.57097 8.33939H1.56922L1.5701 8.34027Z" fill="currentColor"></path></svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg width="16" height="16" fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" focusable="false"><path d="M5.44377 7.42238L8.09505 7.90364L8.52381 11.1394V12.4983L8.89043 11.1394L12.2811 3.98709L13.0599 2.97645L12.0335 3.73946L5.15589 6.98575L3.74975 7.42326L5.44377 7.42238ZM1.5701 8.34027C0.904212 8.21427 0.787836 7.30775 1.40122 7.01813L13.9979 1.0698C14.5929 0.788925 15.2098 1.40756 14.9298 2.00169L8.97969 14.5992C8.69093 15.2117 7.7853 15.0962 7.66017 14.4295L6.73878 9.26165L1.5701 8.34027L1.57097 8.33939H1.56922L1.5701 8.34027Z" fill="currentColor"></path></svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .dist:before {
    background-color: #fff;
}


.chevron-right:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M1.5 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z" transform="translate(1)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .chevron-right:before {
    background-color: #fff;
}


.chevron-bottom:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8"> <path d="M1.5 0l-1.5 1.5 4 4 4-4-1.5-1.5-2.5 2.5-2.5-2.5z" transform="translate(0 1)" /> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .chevron-bottom:before {
    background-color: #fff;
}

.way {
    gap: 5px;
    width: 100%;
    display: flex;
}

.loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 8em;
    height: 8em;
    border-radius: 50%;
    background: #234595;
    background: -moz-linear-gradient(left, #234595 10%, rgba(35,69,149, 0) 42%);
    background: -webkit-linear-gradient(left, #234595 10%, rgba(35,69,149, 0) 42%);
    background: -o-linear-gradient(left, #234595 10%, rgba(35,69,149, 0) 42%);
    background: -ms-linear-gradient(left, #234595 10%, rgba(35,69,149, 0) 42%);
    background: linear-gradient(to right, #234595 10%, rgba(35,69,149, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

    .loader:before {
        width: 50%;
        height: 50%;
        background: #234595;
        border-radius: 100% 0 0 0;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
    }

    .loader:after {
        background: #f7f7f7;
        width: 75%;
        height: 75%;
        border-radius: 50%;
        content: '';
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }


@-webkit-keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load3 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


select {
    font: 400 0.94rem sans-serif;
    -webkit-appearance: none;
    appearance: none;
    color: var(--baseFg);
    border: 1px solid var(--baseFg);
    line-height: 1;
    outline: 0;
    padding: 0.65em 2.5em 0.55em 0.75em;
    border-radius: var(--radius);
    background-color: var(--baseBg);
    background-image: linear-gradient(var(--baseFg), var(--baseFg)), linear-gradient(-135deg, transparent 50%, var(--accentBg) 50%), linear-gradient(-225deg, transparent 50%, var(--accentBg) 50%), linear-gradient(var(--accentBg) 42%, var(--accentFg) 42%);
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: 1px 100%, 20px 22px, 20px 22px, 20px 100%;
    background-position: right 20px center, right bottom, right bottom, right bottom;
}

    select:hover {
        background-image: linear-gradient(var(--accentFg), var(--accentFg)), linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%), linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%), linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
    }

    select:active {
        background-image: linear-gradient(var(--accentFg), var(--accentFg)), linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%), linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%), linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
        color: var(--accentBg);
        border-color: var(--accentFg);
        background-color: var(--accentFg);
    }

.link-item-navig {
    white-space: normal !important;
}


/*.wrapper {
    width: 320px;
    margin: 0 auto;
}*/

.card-loader {
    background-color: #fff;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,.08), 0 -1px 3px 0 rgba(0,0,0,0.06);
    padding: 8px;
    position: relative;
    border-radius: 2px;
    margin-bottom: 0;
    height: 200px;
    overflow: hidden;
    &:only-child

{
    margin-top: 0;
}

&:before {
    content: '';
    height: 110px;
    display: block;
    background-color: #ededed;
    box-shadow: -48px 78px 0 -48px #ededed, -51px 102px 0 -51px #ededed;
}

&:after {
    content: '';
    background-color: #333;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation-duration: 0.6s;
    animation-iteration-count: infinite;
    animation-name: loader-animate;
    animation-timing-function: linear;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0) 81%);
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0) 81%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0) 81%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
}

}



@keyframes loader-animate {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(100%, 0, 0);
    }
}


.opa {
    opacity: 0.5;
}

.small {
    font-size: 12px;
}

.tab-nav-bar {
    background-color: var(--white-color);
    top: 0;
    z-index: 3;
    position: sticky;
    /* padding: 0px 0 11px;*/
    scrollbar-width: none;
    /* overflow-x: auto;*/
}

.tab-navigation {
    /*position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;*/
    scrollbar-width: none;
    overflow-x: auto;
}

.tab-menu {
    /*   color: var(--text-color);*/
    list-style: none;
    /*    background-color: var(--third-color);*/
    padding: 10px;
    /* white-space: nowrap;*/
    /*  border-bottom: 1px solid var(--third-color);*/
    border-radius: 50px;
    /* box-shadow: var(--box-shadow);*/
    scroll-behavior: smooth;
    user-select: none;
    /* overflow-x: auto;*/
    scrollbar-width: none;
}

    .tab-menu.dragging {
        scroll-behavior: unset;
        cursor: grab;
    }

    .tab-menu::-webkit-scrollbar {
        display: none;
    }

    .tab-menu li {
        margin: 2px;
        display: inline-block;
        cursor: pointer;
    }

        .tab-menu li button, a.category-button {
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.94rem;
            border-radius: 8px;
            white-space: nowrap;
            color: var(--black-color);
            padding: 6px 12px;
            background: var(--light-gray-color);
        }


a.category-a {
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.94rem;
    border-radius: 8px;
    white-space: nowrap;
    color: var(--black-color);
    padding: 6px 12px;
    background: var(--light-gray-color);
}


.show_hotel {
    display: inline-block;
    /*  margin: 0.5rem;*/
    padding: 0.375rem 1.125rem;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    /* font-weight: 700; */

    text-align: center;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    background-color: #ffe356;
    border-radius: 0.25rem;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
}

    .show_hotel:hover {
        background: #fed42b;
    }

.newbutton:hover {
    background: #fed42b;
}

.tab-menu.dragging .tab-menu li {
    pointer-events: none;
}

/*.active {
    color: var(--white-color) !important;
    background: var(--black-color) !important;*/
/* pointer-events: none !important;*/
/*}*/



.tab-menu li > a.active {
    color: var(--white-color);
    background: var(--black-color);
    /*pointer-events: none;*/
}

.dark-mode .tab-menu li > a.active {
    filter: brightness(120%);
}

.tab-menu li > a:not(.active):hover {
    background: var(--border-color);
}










.left-btn, .right-btn {
    position: absolute;
    color: var(--text-color);
    font-size: 1.8em;
    padding: 8px;
    cursor: pointer;
}

.left-btn {
    left: -10px;
    background: linear-gradient(to left, transparent, var(--white-color) 60%);
    /* border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;*/
    display: none;
}

.right-btn {
    right: -10px;
    background: linear-gradient(to right, transparent, var(--white-color) 60%);
    /*    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;*/
}



.che-right:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .che-right:before {
    background-color: #fff;
}


.che-left:before {
    display: block;
    content: ' ';
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
    background-color: #000;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>') no-repeat;
    mask: url('data:image/svg+xml;utf8, <svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>') no-repeat;
    background-repeat: no-repeat;
    mask-size: cover;
}

.dark-mode .che-left:before {
    background-color: #fff;
}


.pagination {
    display: inline-block;
    display: flex;
    padding: 1rem;
}

    .pagination a {
        color: black;
        float: left;
        margin: 0.3rem;
        padding: 0.375rem 1.125rem;
        border: 0;
        font-weight: 700;
        line-height: 1.5rem;
        text-align: center;
        text-decoration: none;
        box-shadow: none;
        cursor: pointer;
        vertical-align: middle;
        border-radius: 0.25rem;
        font-size: 1.1rem;
        transition: background-color .3s;
    }

        .pagination a.active {
            background-color: #003580;
            color: white;
        }



        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }

.newbutton {
    display: inline-block;
    /*  margin: 0.5rem;*/
    padding: 0.375rem 1.125rem;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    /* font-weight: 700; */
    line-height: 1.5rem;
    text-align: center;
    text-decoration: none;
    box-shadow: none;
    cursor: pointer;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    background-color: #ffe356;
    border-radius: 0.25rem;
    font-weight: 700;
}


/*-------*/


.icon-star {
    color: #ff9800
}

.green {
    color: green
}

.my_icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    margin-top: -29px;
    margin-left: -32px;
    cursor: pointer;
    background-color: #fff;
    text-align: center;
    white-space: normal;
    border: 1px solid #aaaaaa75;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 0 -5px 5px 0 rgba(0,0,0,0.2);
}

    .my_icon > .arrow, .my_icon > .arrow:after {
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
    }

    .my_icon > .arrow {
        border-width: 11px;
    }

        .my_icon > .arrow:after {
            content: "";
            border-width: 10px
        }

    .my_icon.top > .arrow {
        bottom: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-color: #003580;
        border-bottom-width: 0
    }

        .my_icon.top > .arrow:after {
            bottom: 1px;
            margin-left: -10px;
            content: " ";
            border-top-color: #003580;
            border-bottom-width: 0
        }

.price2 {
    margin: 0.3rem;
    font-weight: bolder; /* color:#000000; */
    font-size: 0.85rem;
    line-height: 1 !important;
    z-index: 999999999;
}

.popover-content {
    display: block;
    font-size: 14px;
    width: 65px; /* color:#fff */
}

.red_class {
    color: #000;
    z-index: 9999999;
    background-color: red !important;
    border: red solid 1px !important
}

    .red_class > .arrow {
        bottom: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-color: red !important;
        border-bottom-width: 0
    }

        .red_class > .arrow:after {
            bottom: 1px;
            margin-left: -10px;
            content: " ";
            border-top-color: red !important;
            border-bottom-width: 0
        }

.nameh {
    font-size: 12px;
    font-weight: 500 !important;
}

.green_class {
    z-index: 9999;
    color: #ffffff !important;
    background-color: green !important;
}

    .green_class > .arrow {
        bottom: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-color: green !important;
        border-bottom-width: 0
    }

        .green_class > .arrow:after {
            bottom: 1px;
            margin-left: -10px;
            content: " ";
            border-top-color: green !important;
            border-bottom-width: 0
        }

.float-right {
    float: right;
    font-size: 22px
}

.blue_class {
    z-index: 9999;
    background-color: blue !important;
    border: green solid 1px !important
}
/* .blue_class>.popover-content { */ /* width:100px */ /* } */

.popover_content_balun {
    width: 100%;
}

.blue {
    color: blue
}

.red {
    color: red
}

.green {
    color: green
}

.list-group-item {
    text-decoration: none;
    position: relative;
    display: block;
    padding: .75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #ecedf1;
}

.list-group-item-action {
    width: 100%;
    color: #04b;
    font-size: 16px;
    line-height: 22px;
    text-align: inherit;
}

@media screen and (max-width:1200px) {



    .mobile-none {
        display: none !important;
    }



    #travelWidget {
        height: 400px !important
    }

    .main-layout .content-wrapper {
        padding: 0 10px;
        overflow-x: hidden;
        width: 100%;
    }


    .content-wrapper .hotel-list .hotel-card .thumbnail {
        width: 30%;
        height: 130px;
        float: left;
        border-radius: 4px 4px 0px 0px;
        /*        aspect-ratio: 16 / 9; */
        top: 8px;
        bottom: 8px;
        /* left: 8px;*/
        box-sizing: border-box;
        background-position: 50%;
        background-size: cover;
        /* background: var(--light-white-color);*/
    }
}

@media screen and (min-width:1200px) {


    #travelWidget {
        height: 250px !important
    }
}

/*balun*/
.sr-card-balun {
    cursor: pointer;
    overflow: hidden;
    height: 70px;
    text-decoration: none;
}

    .sr-card-balun .hotel-block-main {
        min-height: 70px !important
    }


/*.myimg {
    width: 33%;
    top: 8px;
    bottom: 8px;
    left: 8px;
    position: absolute;
    box-sizing: border-box;
    background-position: 50%;
    background-size: cover;
    background-color: #9e9e9e29;
}*/

.hotel-block-main { /* min-height:200px; */
    padding: 8px;
    margin: 0 0 0 calc(33% + 8px);
}

@media (min-width:575.98px) {
    .hotel-block-main {
        min-height: 200px;
    }
}

.bselect_container {
    background: white;
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    --shadow: rgba(0, 0, 0, 0.05) 0px 6px 10px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    --color: #166e67;
    --gap: 0.5rem;
    --radius: 5px;
}



.bselect {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: var(--gap);
    padding: 0.6rem;
    cursor: pointer;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow);
    position: relative;
}

.bx {
    font-size: 1.1rem;
}

.dropdown {
    position: absolute;
    max-width: 180px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    margin-top: 0.3rem;
    background: white;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.1s cubic-bezier(0.16, 1, 0.5, 1);
}

    .dropdown a {
        word-break: normal;
        display: flex;
        align-items: center;
        column-gap: var(--gap);
        padding: 0.8rem 1rem;
        text-decoration: none;
        color: black;
    }

        .dropdown a:hover {
            background-color: var(--color);
            color: white;
        }

.show {
    visibility: visible;
    opacity: 1;
    z-index: 99999;
    transform: translateY(0rem);
}

.arrow-button {
    transform: rotate(180deg);
    transition: 0.2s ease;
}



.overlay-do {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100vh;
    opacity: 0;
    /*    background: var(--overlay-dark-color);*/
    transition: 0.2s ease;
}

.overlay-do-hide {
    opacity: 0;
    pointer-events: none;
}

.filters .dropdown {
    min-height: 80px !important;
    max-height: 400px !important;
    overflow-y: auto;
    overflow-x: hidden
}


.place-filters {
}


/*-----*/


.glider-contain {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.glider {
    margin: 0 auto;
    position: relative;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    transform: translateZ(0);
}

.glider-track {
    transform: translateZ(0);
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    z-index: 1;
}

.glider.draggable {
    user-select: none;
    cursor: -webkit-grab;
    cursor: grab;
}

    .glider.draggable .glider-slide img {
        user-select: none;
        pointer-events: none;
    }

.glider.drag {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.glider-slide {
    user-select: none;
    justify-content: center;
    align-content: center;
    width: 100%;
}

    .glider-slide img {
        max-width: 100%;
    }

.glider::-webkit-scrollbar {
    opacity: 0;
    height: 0;
}

.glider-prev,
.glider-next {
    border-radius: 50%;
    border-color: #fff;
    cursor: pointer;
    user-select: none;
    position: absolute;
    outline: none;
    /* background: none;*/
    padding: 0;
    z-index: 2;
    font-size: 20px;
    text-decoration: none;
    /*   left: -23px;*/
    border: 1px;
    top: 40%;
    cursor: pointer;
    height: 32px;
    width: 32px;
    color: #666;
    opacity: 1;
    line-height: 1;
    transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67), color 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

    .glider-prev:hover,
    .glider-next:hover,
    .glider-prev:focus,
    .glider-next:focus {
        color: #a89cc8;
    }

.glider-next {
    right: 23px;
    left: auto;
}

.glider-prev {
    left: 23px;
    right: auto;
}

    .glider-next.disabled,
    .glider-prev.disabled {
        opacity: 0.25;
        color: #666;
        cursor: default;
    }

.glider-slide {
    min-width: 150px;
}

.glider-hide {
    opacity: 0;
}

.glider-dots {
    user-select: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
}

.glider-dot {
    border: 0;
    padding: 0;
    user-select: none;
    outline: none;
    display: block;
    cursor: pointer;
    color: #ccc;
    border-radius: 999px;
    background: #ccc;
    width: 12px;
    height: 12px;
    margin: 7px;
}

    .glider-dot:hover,
    .glider-dot:focus,
    .glider-dot.active {
        background: #a89cc8;
    }

@media (max-width: 36em) {
    .glider::-webkit-scrollbar {
        opacity: 1;
        -webkit-appearance: none;
        width: 7px;
        height: 3px;
    }

    .glider::-webkit-scrollbar-thumb {
        opacity: 1;
        border-radius: 99px;
        background-color: rgba(156, 156, 156, 0.25);
        box-shadow: 0 0 1px rgba(255, 255, 255, 0.25);
    }
}

.img2 {
    opacity: 0;
}


.glider::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.glider {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.myimg2 {
    width: 33%;
    top: 8px;
    bottom: 8px;
    left: 8px;
    position: absolute;
    box-sizing: border-box;
    background-position: 50%;
    background-size: cover;
    background-color: #9e9e9e;
}


.sr-card {
    min-height: 150px;
    display: block;
    position: relative;
    background-color: #ffffff;
    margin: 0 0 0.3rem;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px #ddd;
}

.hotel-block-main { /* min-height:200px; */
    padding: 8px;
    margin: 0 0 0 calc(33% + 8px);
}

@media (min-width:575.98px) {
    .hotel-block-main {
        min-height: 200px;
    }
}

.absolute {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.truncate {
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /*  padding: 20px;*/
    /*    font-size: 1.3rem;*/
    margin: 0;
    background: white;
    resize: horizontal;
}


.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box; /* border:1px solid rgba(20, 20, 31, .12); */
    border-radius: 0.25rem;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 0 0 1px rgba(20, 20, 31, .05), 0 1px 3px 0 rgba(20, 20, 31, .15);
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}

.card-header {
    padding: 1rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(20,20,31,.12);
}

.card-header-tabs {
    margin-top: -1rem;
    font-weight: 400;
}

.card-title {
    font-size: 1rem;
}

.card-title {
    margin-bottom: 1rem;
}


ol {
    list-style: none;
}

.card-body > ul > li a {
    text-decoration: none;
}

.card-body > ul {
    margin-bottom: 1rem;
}
