@import url('https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-font: "Open Sans", serif;
    --grey-dark: #333333;
    --grey-midDark: #222222;
    --grey-mid: #666666;
    --grey-light: #D1D1D1;
    --white: #FFFFFF;
    --primary-blue: #2F7DF6;
    --blue-light-BG: #F5F7FD;
    --btn-blue: #2F7DF6;
    --btn-blue__o: #265cf0;
    --blue-first: #2559A6;
    --blue-second: #7393F9;
    --search-tab-col: #2E2E2E;
    --price: #0C8301;
    --border-radius: 6px;
    --border-radius8: 8px;
    --progress-bg: #0C203A;
    --secondary-btn:#F3B643;
    --secondary-btn-o:#F5A000;
   --quicklink-col: #7393F9;
   --secondy-col: #2F7DF6;
   --primary-col: #2F7DF6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

/* Map container in new gallery layout */
.side .gallery_btm {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: url(../../img/no-map.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 6px;
}

    .side .gallery_btm .main_sl-map {
        width: 100%;
        height: 100%;
        border: none !important;
    }

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d;
}

a {
    text-decoration: none;
    -moz-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

body,
html {
    height: 100%;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
    color: var(--grey-dark);
}

.tooltip {
    position: absolute;
    top: 38px;
    left: -50px;
    /*background: rgba(255, 255, 255, 0.75);
    border: #F00 solid 1px;*/
    background: rgba(220,53,69,.9);
    color: #FFF;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 5px;
    display: none;
    z-index: 1;
}

.ui-helper-hidden-accessible {
    display: none;
}
/*.tooltip:before {
        content: '';
        border-bottom: 8px solid #F00;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        padding: 0;
        margin: 0;
        top: -8px;
        position: absolute;
    }*/

input.invalid {
    border-color: #ff4d4d;
}

ul.parsley-errors-list {
    list-style: none;
}

    ul.parsley-errors-list li {
        color: #F00;
        font-size: 13px;
    }

.gap5 {
    gap: 5px;
}

hr {
    background: transparent;
    border-top: #CCC solid 1px;
    height: 0px;
    margin: 15px 0;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

/* Margin Bottom Utilities */
.mb-5 {
    margin-bottom: 5px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

/* Margin Top & Bottom Utilities */
.mtb-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mtb-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mtb-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mtb-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.hidden {
    display: none;
}

.w100 {
    width: 100% !important;
    display: block;
    text-align: center;
}

.w-auto {
    width: auto !important;
}

.flex {
    display: flex;
    flex-direction: row;
}

.justify-content {
    justify-content: space-between;
}

.align-items_center {
    align-items: center !important;
}

.text-right {
    text-align: right;
}

h1 {
    font-size: 54px;
    color: #FFF;
    text-align: center;
}

.profile__mob,
.nav__mob {
    cursor: pointer;
}

.white_bg {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 50px auto;
    width: 95%;
}

.btn__primary {
    background: var(--btn-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

    .btn__primary:hover {
        background: var(--btn-blue__o);
    }

/* header Styles */
header {
    display: flex;
    height: 80px;
    width: 100%;
    background: var(--white);
    border-top: var(--btn-blue) solid 3px;
}

    header .header__inn {
        width: 95%;
        margin: 15px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

        header .header__inn .logo__block {
            width: 175px;
            overflow: hidden;
        }

            header .header__inn .logo__block img {
                width: 100%;
                width: 100%;
            }


.main_nav {
    display: none;
    column-gap: 30px;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    background: #FFF;
    width: 100%;
    left: 0;
    top: 80px;
    height: 100vh;
    z-index: 1000;
}

    .main_nav div {
        position: relative;
        margin: 0;
        color: var(--grey-dark);
        font-weight: 600;
        text-align: left;
        padding: 0 18px 0 0;
        /*background: url(../img/ic/menu_arrow_ic.svg) no-repeat right center;*/
        cursor: pointer;
        white-space: nowrap;
    }

        .main_nav div:hover {
            color: var(--primary-blue);
            /*background: url(../img/ic/menu_arrow-up_ic.svg) no-repeat right center;*/
        }

    .main_nav divnav {
        display: grid;
    }

    .main_nav div.main__link {
        position: relative;
        margin: 0;
        color: var(--primary-blue);
        font-weight: 700;
        text-align: left;
        padding: 20px 18px 20px 0;
        /*background: url(../img/ic/menu_arrow_ic.svg) no-repeat right center;*/
        cursor: pointer;
        white-space: nowrap;
    }

        .main_nav div.main__link:hover {
            color: var(--primary-blue);
            /*background: url(../img/ic/menu_arrow-up_ic.svg) no-repeat right center;*/
        }


        .main_nav div.main__link nav {
            margin-left: 0;
            top: 60px;
            left: 0;
            width: auto;
            background: #FFF;
            z-index: 99;
            margin: 10px 0 0 0px;
            padding-top: 20px;
            border-top: var(--primary-blue) solid 3px;
            /*display: none;
            gap: 35px;
            position: absolute;
            gap: 20px;
            padding: 10px 20px;
             border-radius: var(--border-radius);
            border: #D1D1D1 solid 1px;*/
        }

            .main_nav div.main__link nav a {
                color: var(--grey-dark);
            }

                .main_nav div.main__link nav a:hover {
                    color: var(--primary-blue);
                }



    .main_nav.active {
        height: 100vh;
        width: 100%;
        padding: 10%;
        display: block;
        top: 80px;
    }

header .header__inn nav a {
    color: var(--grey-dark);
    display: block;
    padding: 5px 0;
    margin: 5px 0;
    font-weight: 600;
}

    header .header__inn nav a:hover,
    header .header__inn nav a.active {
        color: var(--primary-blue);
    }

header .header__inn .profile__block {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    display: block;
    position: absolute;
    left: 0;
    top: 80px;
    background: #FFF;
    padding: 0 50px;
    height: 0;
    z-index: 1000;
    overflow: hidden;
    /* Hide content while collapsed */
    transition: height 0.5s ease;
    /* Smooth slide animation */
}

    header .header__inn .profile__block.active {
        height: 100vh;
        width: 100%;
        padding-top: 10%;
        /* Set an appropriate height that fits your content */
    }

    /*header .header__inn .profile__block .language .flag_ic {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}*/

    header .header__inn .profile__block .language .language__shown {
        display: flex;
        column-gap: 5px;
        align-content: center;
        cursor: pointer;
        position: relative;
        white-space: nowrap;
    }

        header .header__inn .profile__block .language .language__shown .flag_ic {
            width: 26px;
            height: 26px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        header .header__inn .profile__block .language .language__shown p#languagetxt {
            color: var(--grey-dark);
        }

        header .header__inn .profile__block .language .language__shown .flag_ic img {
            width: 100%;
        }

    header .header__inn .profile__block .language .language_list {
        display: grid;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        left: 0;
        top: 40px;
        background: #FFF;
        border-radius: var(--border-radius);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        padding: 5px;
        width: 150px;
        z-index: 9;
    }

        header .header__inn .profile__block .language .language_list .list {
            display: flex;
            column-gap: 5px;
            align-content: center;
            cursor: pointer;
            padding: 5px;
        }

            header .header__inn .profile__block .language .language_list .list:hover {
                background: #F1F1F1;
            }

        header .header__inn .profile__block .language .language_list .flag_ic img {
            width: 30px;
            height: auto;
        }

    header .header__inn .profile__block .item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 15px 0;
        position: relative;
        white-space: nowrap;
    }

    header .header__inn .profile__block .signin {
        width: auto;
        border-left: #666 solid 0;
        padding-left: 0;
        padding-top: 20px;
    }

.discountcode p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: bold;
    vertical-align: middle;
}

    .discountcode p img {
        vertical-align: bottom;
    }

    .discountcode p a {
        color: var(--primary-blue);
    }

        .discountcode p a:hover {
            color: var(--btn-blue__o);
        }
        .flg_icon > a > i {
    color:#000 !important;
    margin-right:2px;
        }
.ml25 {
    margin-left:25px;
}
        header .header__inn .profile__block .signin a {
            background: transparent;
            border: var(--primary-blue) solid 1px;
            border-radius: var(--border-radius);
            padding: 5px 12px;
            font-weight: 600;
            white-space: nowrap;
            color: var(--primary-blue);
        }

            header .header__inn .profile__block .signin a:hover {
                background: var(--btn-blue);
                color: var(--white);
            }

    header .header__inn .profile__block .cart {
        position: relative;
    }

        header .header__inn .profile__block .cart span {
            position: absolute;
            right: -10px;
            top: -10px;
            background: #F00;
            border-radius: var(--border-radius);
            color: var(--white);
            padding: 0 3px;
            font-size: 12px;
            min-width: 22px;
            text-align: center;
        }

.mob__menu {
    display: flex;
    gap: 20px;
    justify-items: flex-end;
}

/* Footer Styles */
footer {
    width: 100%;
    background: var(--white);
    border-top: var(--btn-blue) solid 5px;
    font-size: 16px;
    color: var(--grey-mid);
    /* Pushes footer down to reduce visibility and show more top content */
}

    footer .footer__container {
        width: 90%;
        margin: 15px auto;
        padding: 25px 0;
    }

        footer .footer__container .footer__block {
            display: grid;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
        }

            footer .footer__container .footer__block .address__block p {
                font-size: 15px;
                font-weight: 400;
                line-height: 22px;
            }

            footer .footer__container .footer__block .payment__method p {
                display: grid;
                justify-content: flex-start;
            }

                footer .footer__container .footer__block .payment__method p span {
                    display: flex;
                    gap: 20px;
                }

.footer__second {
    border-top: var(--grey-light) solid 1px;
    border-bottom: var(--grey-light) solid 1px;
    padding: 25px 0;
    margin: 25px auto;
    text-align: center;
}

.footer__logo__block {
    text-align: center;
    display: grid;
    gap: 10px;
    justify-content: center;
}

footer p strong {
    color: var(--grey-dark);
}

header .header__inn .profile__block .cart {
    width: 30px;
}

.balance__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    gap: 10px;
}

    .balance__block a {
        color: var(--grey-dark);
        font-weight: 400;
    }

    .balance__block span {
        color: var(--primary-blue);
        font-weight: 600;
    }


.modal {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    height: 106vh;
    z-index: 99;
}

    .modal .modal-content {
        width: 600px;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translate(-50%, -50%);
        background: #FFF;
        padding: 30px;
    }

        .modal .modal-content span.close {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 30px;
            height: 30px;
            background: var(--btn-blue);
            padding: 2px;
            text-align: center;
            border-radius: 50px;
            font-size: 20px;
            color: #FFF;
            cursor: pointer;
        }

            .modal .modal-content span.close:hover {
                background: var(--btn-blue__o);
            }

.choose_ticket {
    width: auto;
    column-gap: 15px;
}

    .choose_ticket select {
        width: 55%;
    }

.time_select select {
    width: 70px;
}
.dropdown_icon {
        position: relative;
        padding: 20px 15px 20px 0 !important;
        background: url(../img/ic/menu_arrow_ic.svg) no-repeat right center;
    }

@media screen and (min-width: 768px) {

    header .header__inn .profile__block {
        display: block;
    }

    .header_right {
        width: 80%;
        display: flex;
        gap: 40px;
        justify-content: flex-end;
    }

    footer .footer__container .footer__block {
        display: flex;
    }

    /* header .header__inn {
		justify-content: flex-start;
	} */


    header .header__inn .profile__block.active {
        height: 100vh;
        width: 100%;
    }
}

@media screen and (min-width: 1100px) {

    .white_bg {
        width: 60%;
    }

    header .header__inn .profile__block {
        height: auto;
        position: relative;
        left: inherit;
        top: inherit;
        background: transparent;
        padding: 0;
        height: auto;
        overflow: visible;
        display: flex;
    }

        header .header__inn .profile__block .item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0;
            color: var(--primary-blue);
            font-weight: 600;
            cursor: pointer;
            padding: 20px 0;
        }

        header .header__inn .profile__block .signin {
            width: auto;
            border-left: #666 solid 2px;
            padding-left: 20px;
            padding-top: 0;
        }

    .main_nav {
        display: none;
    }

    .mob__menu,
    .nav__mob {
        display: flex;
    }

    .profile__mob {
        display: none;
    }
}


@media screen and (min-width: 1250px) {
    .main_nav div.main__link {
        color: var(--dark-grey);
        font-weight: 500;
        background: url(../img/ic/menu_arrow_ic.svg) no-repeat right center;
    }

        .main_nav div.main__link:hover {
            background: url(../img/ic/menu_arrow-up_ic.svg) no-repeat right center;
        }

        .main_nav div.main__link nav,
        .helpdesk__block {
            margin-left: 0;
            top: 50px;
            left: 0;
            width: auto;
            min-width: 175px;
            background: #FFF;
            z-index: 99;
            margin: 10px 0 0 0px;
            border-top: var(--primary-blue) solid 3px;
            display: none;
            gap: 10px;
            position: absolute;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            border: #D1D1D1 solid 1px;
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }
        .helpdesk__block{
            display: none;
        }
        .user:hover .helpdesk__block{
            display: block;
        }
    header .header__inn nav a {
        padding: 5px 0;
        margin: 5px 0;
    }

    .main_nav div.main__link:hover nav {
        display: block;
    }

    .mob__menu {
        display: none;
    }

    header .header__inn .profile__block {
        display: flex;
    }

    footer .footer__container {
        width: 75%;
    }

    .main_nav {
        display: flex;
        height: auto;
        position: relative;
        top: inherit;
        left: inherit;
        width: auto;
    }

    .mob__menu,
    .profile__mob,
    .nav__mob {
        display: none;
        cursor: pointer;
    }
}

.hamburger-menu {
    width: 22px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-top: 5px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .line:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.hamburger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .line:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -50%;
}

/* PopUp Styles */
body.noscroll {
    overflow: hidden;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9;
}

.popup {
    position: relative;
    /*padding: 6px;*/
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
    max-width: 90%;
    width: 65%;
}

    .popup h2 {
        margin-bottom: 10px;
    }

    .popup p {
        margin: 10px 0;
    }

.popup-container.hide {
    opacity: 0;
    visibility: hidden;
}

    .popup-container.hide .popup {
        transform: scale(0.8);
    }

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.popup img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .mobile-img {
        display: block;
    }

    .popup {
        height: 90vh;
        width: auto;
    }

        .popup img {
            width: auto;
            height: 100%;
        }

    /* Center align Room x label in mobile view */
    div.dropdown div.dropdown__list div.hotel__room strong {
        display: block;
        text-align: center;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .tablet-img {
        display: block;
    }
}

div.dropdown {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

    div.dropdown div.dropdown__list__trsfr {
        position: absolute;
        width: 95%;
        background: #FFF;
        border-radius: 6px;
        /* box-shadow: 1px 1px 2px 2px #CCC; */
        margin-top: 5px;
        padding: 0.5em;
        z-index: 9;
        max-height: 285px;
        overflow-y: auto;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    div.dropdown div.dropdown__list {
        position: absolute;
        width: 90%;
        background: #FFF;
        border-radius: 6px;
        /* box-shadow: 1px 1px 2px 2px #CCC; */
        margin-top: 5px;
        padding: 0.5em;
        z-index: 999;
        max-height: 285px;
        overflow-y: auto;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    div.dropdown div.dropdown__list:not(.hidden) {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: 285px !important;
    }

    #occupancy_list:not(.hidden) {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

        div.dropdown div.dropdown__list div.hotel__room {
            border-top: #999 solid 1px;
            margin-top: 10px;
            margin-bottom: 5px;
            padding-top: 10px;
        }

        div.dropdown div.dropdown__list div strong {
            font-size: 14px;
            padding-left: 5px;
        }

        div.dropdown div.dropdown__list .list {
            font-size: 16px;
            width: auto;
            padding: 5px;
        }

            div.dropdown div.dropdown__list .list p {
                padding: 3px 0;
                margin: 2px 0;
                margin-left: 5px;
                cursor: pointer;
            }

                div.dropdown div.dropdown__list .list p:hover {
                    background: #F1F1F1;
                }

.rooms__count,
.adults__count,
.child__count {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    color: #333;
}

    .rooms__count label,
    .adults__count label,
    .child__count label {
        font-size: 15px;
        font-weight: 700;
    }

        .adults__count label i,
        .child__count label i {
            font-style: normal;
            font-size: 12px;
            font-weight: 400;
            color: #999;
            display: block;
        }

    .rooms__count span,
    .adults__count span,
    .child__count span {
        display: flex;
        gap: 5px;
        justify-content: space-between;
        align-items: center;
    }

        .rooms__count span p,
        .adults__count span p,
        .child__count span p {
            width: 30px;
            text-align: center;
            padding: 5px 0;
            margin: 0 auto;
            font-size: 16px;
        }

        .rooms__count span button,
        .adults__count span button,
        .child__count span button {
            background: transparent;
            border-radius: 6px;
            border: #999 solid 1px;
            width: 26px;
            height: 26px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
            padding: 0;
            margin: 0;
        }

.occupancy__done {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5px 5px;
    margin-top: 10px;
    border-top: #D5D5D5 solid 1px;
}

    .occupancy__done button {
        width: 100%;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

.child_block {
    display: block;
    border-top: #D5D5D5 solid 1px;
    padding: 15px 5px 0;
    margin: 10px 0 0;
    font-size: 15px;
}

    .child_block span {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

        .child_block span p {
            margin: 0;
            padding: 0;
        }

        .child_block span select {
            width: 75px;
            border: #999 solid 1px;
            padding: 3px 5px;
            border-radius: 6px;
        }

    .child_block div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 0;
    }

        .child_block div select {
            border: #999 solid 1px;
            border-radius: 5px;
            padding: 2px 5px;
        }

.child__age,
.hotel_Room_1_Child1,
.hotel_Room_1_Child2 {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#country_name,
.country_name {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    top: 40px;
    left: 0;
    background: rgba(249, 249, 249, 1);
    border-radius: 10px;
    padding: 10px;
}

    #country_name .word,
    .country_name .word {
        padding: 5px;
        cursor: pointer;
        margin: 5%;
        width: 90% !important;
    }

ul.country_name li {
    cursor: pointer;
    padding: 5px 0;
    list-style: none;
}

    ul.country_name li:hover {
        background: #F1F1F1;
    }

    ul.country_name li a {
        display: flex;
        align-items: center;
    }

.nav__block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .nav__block .left_nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .nav__block .left_nav a {
            width: 100%;
            background: var(--btn-blue);
            padding: 10px;
            text-align: center;
        }

            .nav__block .left_nav a:hover,
            .nav__block .left_nav a.active {
                background: var(--blue-first);
            }

    .nav__block .rit_nav_block {
        width: 100%;
    }
.calender_poup_error_red {
    width: 97% !important;
    height: auto;
    position: absolute;
    top: 4px;
    text-align: center;
    box-sizing: border-box;
}
.calender_poup_error_red p {
        float: left;
        width: 100%;
        color: #FF0000;
        padding: 0;
}

/* ===========================
   Mobile Navigation Styles
   =========================== */

/* Mobile Profile Menu */
.profile__mob__menu {
    display: none;
    position: absolute;
    left: 0;
    top: 80px;
    background: #FFF;
    width: 100%;
    height: 0;
    overflow: hidden;
    z-index: 1000;
    transition: height 0.3s ease;
}

.profile__mob__menu.active {
    display: block;
    height: auto;
    min-height: 200px;
    padding: 30px 50px;
}

.mobile__profile__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile__signin {
    padding-top: 10px;
}

.mobile__signin a {
    background: transparent;
    border: var(--primary-blue) solid 1px;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 600;
    white-space: nowrap;
    color: var(--primary-blue);
    display: inline-block;
    text-decoration: none;
}

.mobile__signin a:hover {
    background: var(--btn-blue);
    color: var(--white);
}

/* Mobile Navigation Items (in hamburger menu) */
.mobile__nav__items {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #E0E0E0;
    margin-top: 20px;
}

.mobile__balance,
.mobile__user {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey-dark);
    font-weight: 600;
    padding: 10px 0;
}

.mobile__user img {
    width: 24px;
    height: 24px;
}

.mobile__cart {
    padding: 10px 0;
}

.mobile__cart .cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--grey-dark);
    text-decoration: none;
}

.mobile__cart .cart img {
    width: 24px;
    height: 24px;
}

.mobile__cart .cart span {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #F00;
    border-radius: var(--border-radius);
    color: var(--white);
    padding: 0 3px;
    font-size: 12px;
    min-width: 22px;
    text-align: center;
}

/* Show mobile nav items when hamburger menu is active */
.main_nav.active .mobile__nav__items {
    display: flex;
}

/* Hide mobile elements on desktop */
@media screen and (min-width: 1250px) {
    .profile__mob__menu,
    .mobile__nav__items {
        display: none !important;
    }
}

