/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    /* Background Colors */
    --background-primary: #10C6CA;
    --background-secondary: #FB8D20;
    --background-light: #FFF;
    --background-muted: #E1E1E1;
    --background-disabled: #ACACAC;
    /* Hover States */
    --background-primary-hover: #4FD6DA;
    --background-secondary-hover: #FFA633;
    /* Text Colors */
    --text-primary: #444;
    --text-secondary: #10C6CA;
    --text-light: #FFF;
    --text-muted: #ACACAC;
}

body {
    font-family: 'Roboto';
    scroll-behavior: smooth;
    background: #F9F9F9;
}

.bx {
    vertical-align: middle;
}

.caleran-ex {
    cursor: pointer;
}

a {
    color: #444444;
    text-decoration: none;
}

.gohub-hidden {
    display: none;
}

/*--------------------------------------------------------------
# Pre-loader
--------------------------------------------------------------*/
#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,.5);
    z-index: 9999;
}

    #pre-loader #lottie-container {
        width: 100px;
        height: 100px;
    }

/*--------------------------------------------------------------
# Input
--------------------------------------------------------------*/
.label-i {
    position: relative;
    display: block;
    margin-bottom: 35px;
}

    .label-i .input {
        background: var(--background-light);
        border: 1px solid #AAA;
        border-radius: 12px;
        width: 100%;
        height: 65px;
        padding: 23px;
        outline: 0;
    }

        .label-i .input + span {
            color: var(--text-muted);
            position: absolute;
            left: 23px;
            top: 3px;
            cursor: text;
            font-size: 12px;
            transition: .3s ease;
        }

        .label-i .input:placeholder-shown + span {
            top: 23px;
            font-size: 16px;
        }

        .label-i .input:focus + span {
            top: 3px;
            font-size: 12px;
        }


/*--------------------------------------------------------------
# Checkbox
--------------------------------------------------------------*/
.check-container {
    /*  display: flex;
    align-items: center;*/
    gap: 35px;
    margin-bottom: 24px;
}

.checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.checkbox-wrapper-46 .cbx-guest {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    top: 0;
    width: auto;
    height: auto;
    border: none;
}

    .checkbox-wrapper-46 .cbx-guest .true-box {
        display: inline-block;
        vertical-align: middle;
        transform: translate3d(0, 0, 0);
    }

        .checkbox-wrapper-46 .cbx-guest .true-box:first-child {
            position: relative;
            width: 20px;
            height: 20px;
            border-radius: 3px;
            transform: scale(1);
            vertical-align: middle;
            border: 2px solid #DADADA;
            transition: all 0.2s ease;
        }

            .checkbox-wrapper-46 .cbx-guest .true-box:first-child svg {
                position: absolute;
                top: 4px;
                left: 4px;
                fill: none;
                stroke: #FFF;
                stroke-width: 2;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 25px;
                stroke-dashoffset: 25px;
                transition: all 0.3s ease;
                transition-delay: 0.1s;
                transform: translate3d(0, 0, 0);
            }

            .checkbox-wrapper-46 .cbx-guest .true-box:first-child:before {
                content: "";
                width: 100%;
                height: 100%;
                background: var(--primary-background);
                display: block;
                transform: scale(0);
                opacity: 1;
                border-radius: 50%;
            }

    .checkbox-wrapper-46 .cbx-guest .check-label:last-child {
        padding-left: 8px;
        color: #777;
        font-size: 14px;
    }

.checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child {
    background: var(--primary-background);
    border-color: var(--primary-background);
    animation: wave-46 0.4s ease;
}

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child svg {
        stroke-dashoffset: 0;
    }

    .checkbox-wrapper-46 .inp-cbx:checked + .cbx-guest .true-box:first-child:before {
        transform: scale(3.5);
        opacity: 0;
        transition: all 0.6s ease;
    }


/*--------------------------------------------------------------
# Placeholder
--------------------------------------------------------------*/
::placeholder {
    color: var(--background-disabled);
    font-size: 15px;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
    color: var(--background-disabled);
    font-size: 15px;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.mobile-message-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 68, 68, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .mobile-message-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .mobile-message-modal .message-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .mobile-message-modal .message-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - 0.5rem * 2);
    }

    .mobile-message-modal .message-modal-content {
        background: #FFF;
        width: var(--s);
        height: 230px;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
    }

    .mobile-message-modal .message-modal-body {
        padding: 36px 29px 26px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        text-align: center;
    }

        .mobile-message-modal .message-modal-body h6 {
            margin-bottom: 3rem;
        }

        .mobile-message-modal .message-modal-body .btn-ok {
            width: 260px;
            height: 45px;
            background: #FB8D20;
            border: 0;
            outline: 0;
            border-radius: 12px;
            color: #FFF;
            font-weight: 700;
        }

.support-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 800px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .support-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .support-modal .support-modal-dialog {
        /*        margin-left: var(--l);
        margin-right: var(--r);*/
        position: relative;
        width: auto;
    }

    .support-modal .support-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .support-modal .support-modal-content {
        background: #FFF;
        width: var(--s);
        height: 100vh;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    }

    .support-modal .support-modal-header {
        position: relative;
        padding: 1rem 1rem 0rem 2rem;
        /*        padding-bottom: 0px;
        margin-bottom: 0px;*/
    }

    .support-modal .support-modal-inner {
        flex: 1;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .support-modal .support-modal-body {
        padding: 30px;
        background: #10C6CA;
    }

        .support-modal .support-modal-body h5 {
            margin-bottom: 0;
            font-size: 18px;
            font-weight: 700;
            line-height: normal;
        }

        .support-modal .support-modal-body i {
            cursor: pointer;
        }

        .support-modal .support-modal-body h6 {
            font-size: 16px;
            line-height: normal;
            margin-bottom: 19px;
            font-weight: 700;
            color: #FFF;
        }

        .support-modal .support-modal-body p {
            line-height: 18px;
            font-size: 14px;
            margin-bottom: 20px;
            color: #FFF;
        }

    .support-modal .contact-wrapper {
        border-radius: 12px;
        background: #FFF;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 25px 17px;
    }

        .support-modal .contact-wrapper .contact-item {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 50px;
        }

            .support-modal .contact-wrapper .contact-item:last-child {
                margin-bottom: 0;
            }

            .support-modal .contact-wrapper .contact-item i {
                color: var(--secondary-color);
            }

    .support-modal .call-wrapper {
        border-radius: 12px;
        background: var(--thrid-background);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        padding: 25px 17px;
    }

        .support-modal .call-wrapper .icon {
            color: #10C6CA;
            margin-right: 2.5rem;
        }

    .support-modal .or {
        color: #AAA;
        text-align: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .support-modal .call-wrapper .chat-desc {
        color: #AAA;
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .support-modal .call-wrapper .btn-chat {
        width: 223px;
        height: 45px;
        border-radius: 12px;
        background: #FB8D30;
        color: #FCFCFC;
        font-size: 18px;
        font-weight: 700;
        transition: all .3s;
        text-align: center;
        padding: .6rem .75rem;
        cursor: pointer;
        margin-top: .5rem;
    }

/*--------------------------------------------------------------
# Cancel Booking Modal
--------------------------------------------------------------*/
.cancelbooking-mobile-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .cancelbooking-mobile-modal.open {
        opacity: 1;
        visibility: visible;
    }

    .cancelbooking-mobile-modal .cancelbooking-mobile-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .cancelbooking-mobile-modal .cancelbooking-mobile-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .cancelbooking-mobile-modal .cancelbooking-mobile-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .cancelbooking-mobile-modal .cancelbooking-mobile-modal-body {
        padding: 36px 29px 26px;
        height: 100%;
        text-align: center;
    }

        .cancelbooking-mobile-modal .cancelbooking-mobile-modal-body h6 {
            margin-bottom: 30px;
            font-weight: 700;
        }

        .cancelbooking-mobile-modal .cancelbooking-mobile-modal-body span {
            line-height: normal;
            margin-bottom: 35px;
            display: block;
        }

        .cancelbooking-mobile-modal .cancelbooking-mobile-modal-body .btn-yes {
            background: var(--secondary-background);
            border-radius: 12px;
            color: #FCFCFC;
            line-height: normal;
            font-size: 16px;
            font-weight: 700;
            height: 41px;
            border: 0;
            outline: 0;
            transition: all .3s;
            margin-bottom: 30px;
        }

    .cancelbooking-mobile-modal .cancelbooking-modal-body .btn-yes:hover {
        background: var(--secondary-background-hover);
    }

    .cancelbooking-mobile-modal .cancelbooking-mobile-modal-body .btn-cancel {
        font-size: 16px;
        background-color: transparent;
        width: fit-content;
        margin: 0 auto;
        outline: 0;
        border: 0;
        font-weight: 700;
        line-height: normal;
        color: #666;
    }




.btn {
    color: #FFF;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .15px;
    font-size: 16px;
    width: 222px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Side Menu
--------------------------------------------------------------*/
.side-menu {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    transition: 0.3s;
    background: #fff;
    border: 0;
    font-size: 24px;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #ffffff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: 0.3s;
    padding: 15px;
    z-index: 1001;
}

    .sidebar.active {
        left: 0;
    }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.sidebar-links {
    margin-top: 15px;
}

    .sidebar-links .menu-item {
        padding-bottom: 15px;
        padding-right: 28px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

.side-listing {
    font-weight: 400;
    color: #444;
}

.bx-home,
.bx-history {
    color: var(--background-primary);
    font-size: 20px;
}

/* Terms of Use Modal */
.tou-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

.tou-modal.open {
    opacity: 1;
    visibility: visible;
}

.tou-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.tou-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    max-height: 90vh;
    overflow: hidden;
}

.tou-modal-header {
    padding: 1.5rem;
    position: relative;
    border-bottom: 1px solid #dee2e6;
}

.tou-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.tou-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.tou-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.tou-wrapper {
    font-size: 14px;
    line-height: 1.6;
}

.tou-wrapper p {
    margin-bottom: 1.5rem;
}

.tou-wrapper .content {
    color: #666;
    display: block;
    margin-top: 0.5rem;
}

.tou-wrapper ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tou-wrapper ul li {
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .tou-modal-dialog {
        width: 95%;
        margin: 1rem auto;
    }

    .tou-modal-content {
        max-height: 85vh;
    }

    .tou-modal-header h1 {
        font-size: 1.5rem;
    }
}

/* Terms of Use Modal */
.pplcy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .pplcy-modal.open {
        opacity: 1;
        visibility: visible;
    }

.pplcy-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.pplcy-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    max-height: 90vh;
    overflow: hidden;
}

.pplcy-modal-header {
    padding: 1.5rem;
    position: relative;
    border-bottom: 1px solid #dee2e6;
}

.pplcy-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

    .pplcy-close:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

.pplcy-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.pplcy-wrapper {
    font-size: 14px;
    line-height: 1.6;
}

    .pplcy-wrapper p {
        margin-bottom: 1.5rem;
    }

    .pplcy-wrapper .content {
        color: #666;
        display: block;
        margin-top: 0.5rem;
    }

    .pplcy-wrapper ul {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

        .pplcy-wrapper ul li {
            margin-bottom: 0.5rem;
        }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .pplcy-modal-dialog {
        width: 95%;
        margin: 1rem auto;
    }

    .pplcy-modal-content {
        max-height: 85vh;
    }

    .pplcy-modal-header h1 {
        font-size: 1.5rem;
    }
}

