﻿
:root {
    --bs-primary: #7b0707;
    --bs-primary-rgb: 123, 7, 7;
    --indigo-light: #f2dae1;
    --on-primary-container: #fb9ca0;
    --secondary-accent: #FFB81C;
    --bs-primary-bg-subtle: #ffcfcf;
}
    

    .add-product-wrapper {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        min-height: 100%;
        background-color: var(--white);
        border-radius: 20px;
        opacity: 0;
        transition: 0.3s ease;
        pointer-events: none;
    }

        .add-product-wrapper.show {
            top: 0;
            opacity: 1;
            pointer-events: auto;
        }

    .deleteFile {
        color: #ed6a6a;
        cursor: pointer;
    }

    .symbol-radius {
        border-radius: 10px;
    }

    .info-box {
        box-shadow: 0 0 1px rgba(0,0,0,.125),0 1px 3px rgba(0,0,0,.2);
        border-radius: .25rem;
        background: #fff;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 1rem;
        min-height: 80px;
        padding: .5rem;
        position: relative;
        width: 100%;
    }

    .dash-row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -7.5px;
        margin-left: -7.5px;
    }

    .info-box .info-box-content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        line-height: 120%;
        -ms-flex: 1;
        flex: 1;
        padding: 0 10px;
    }

    .info-box .info-box-text, .info-box .progress-description {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dash-content {
        font-size: 2rem;
    }
    /*--------- CSS Added ruby Designer---------*/
    .w-320px {
        width: 320px !important;
        max-width: 320px;
    }

    .form-control.custom-textarea {
        min-height: 130px;
        max-height: 130px;
        resize: none;
    }

    .filter-box {
        padding-top: 0.5rem;
        border-radius: 4px;
        background-color: var(--theme-tertiary);
    }

        .filter-box .form-control {
            min-width: 120px;
        }

    .modal .modal-dialog .modal-header,
    .modal .modal-dialog .modal-body,
    .modal .modal-dialog .modal-footer {
        padding: 1rem;
    }
    /* -------- Custom table Css start--------*/
    table.table thead tr th {
        background-color: #f0f0f0;
    }

    table.table > tbody tr td {
        vertical-align: inherit;
        color: var(--bs-text-gray-600) !important;
        font-Weight: 400 !important;
    }

    table thead tr th:last-child, table tbody tr td:last-child {
        text-align: center;
    }

    table.table thead tr th span {
        color: var(--bs-text-muted);
        font-weight: 700;
    }

    table.table thead tr th:first-child {
        border-radius: 4px 0 0 4px;
        padding-left: 8px !important;
    }

    table.table thead tr th:last-child {
        border-radius: 0 4px 4px 0;
        padding-right: 8px !important;
    }

    table.table tbody tr td:first-child {
        padding-left: 8px !important;
    }

    table.table tbody tr td:last-child {
        padding-right: 8px !important;
    }

    table.table tbody tr td .eqp-img-wrap {
        width: 90px;
        height: 50px;
        border-radius: 8px;
        overflow: hidden;
    }

        table.table tbody tr td .eqp-img-wrap .eqp-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

    .table:not(.table-bordered).table-row-dashed thead tr:first-child {
        border-bottom: none;
    }

    #btn_sendActionEmail {
        display: block;
        margin-left: auto;
        margin-right: 0;
        width: fit-content;
    }


    .chart-container {
        width: 100%; /* Full width for responsiveness */
        height: 300px; /* Set a fixed height */
    }
    /*Page loader css start*/
    /*#loading {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 111111;
    margin-top: 0px;
    top: 0px;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100px;
    width: 100px;
    margin-top: -50px;
    margin-left: -50px;
}

.object {
    width: 25px;
    height: 25px;
    background-color: var(--primary);
    margin-right: 50px;
    float: left;
    margin-bottom: 50px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgb(27 154 255) inset;
}

    .object:nth-child(2n+0) {
        margin-right: 0px;
    }


#object_one {
    -webkit-animation: object_one 2s infinite;
    animation: object_one 2s infinite;
}

#object_two {
    -webkit-animation: object_two 2s infinite;
    animation: object_two 2s infinite;
}

#object_three {
    -webkit-animation: object_three 2s infinite;
    animation: object_three 2s infinite;
}

#object_four {
    -webkit-animation: object_four 2s infinite;
    animation: object_four 2s infinite;
}



@-webkit-keyframes object_one {
    25% {
        -webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(75px, 75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_one {
    25% {
        transform: translate(75px, 0) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(75px, 75px) rotate(-180deg);
        -webkit-transform: translate(75px, 75px) rotate(-180deg);
    }

    75% {
        transform: translate(0, 75px) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(0, 75px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}


@-webkit-keyframes object_two {
    25% {
        -webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(-75px, 75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_two {
    25% {
        transform: translate(0, 75px) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(0, 75px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(-75px, 75px) rotate(-180deg);
        -webkit-transform: translate(-75px, 75px) rotate(-180deg);
    }

    75% {
        transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(-75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

@-webkit-keyframes object_three {
    25% {
        -webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(75px, -75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_three {
    25% {
        transform: translate(0, -75px) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(0, -75px) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(75px, -75px) rotate(-180deg);
        -webkit-transform: translate(75px, -75px) rotate(-180deg);
    }

    75% {
        transform: translate(75px, 0) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(75px, 0) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}


@-webkit-keyframes object_four {
    25% {
        -webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        -webkit-transform: translate(-75px, -75px) rotate(-180deg);
    }

    75% {
        -webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes object_four {
    25% {
        transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
        -webkit-transform: translate(-75px, 0) rotate(-90deg) scale(0.5);
    }

    50% {
        transform: translate(-75px, -75px) rotate(-180deg);
        -webkit-transform: translate(-75px, -75px) rotate(-180deg);
    }

    75% {
        transform: translate(0, -75px) rotate(-270deg) scale(0.5);
        -webkit-transform: translate(0, -75px) rotate(-270deg) scale(0.5);
    }

    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}*/
    /* Page loader css End */


    .accessory-list-wrap {
        display: flex;
        padding: 8px;
        flex-wrap: wrap;
        width: 100%;
    }

        .accessory-list-wrap .accessory-item {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            margin-right: 8px;
            margin-bottom: 8px;
            padding: 4px 4px 4px 12px;
            background-color: #f2f2f2;
            display: inline-flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        .accessory-list-wrap .accessory-item-view {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            margin-right: 5px;
            margin-left: 5px;
            margin-bottom: 8px;
            padding: 4px;
            background-color: #f2f2f2;
            display: inline-flex;
            align-items: center;
            flex-wrap: nowrap;
        }

    .lock-wrap {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #CCD2DD;
        color: #dc3545;
        margin: 0 auto 30px;
    }

    .access-title {
        width: 100%;
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        color: #dc3545;
        margin-bottom: 1.5rem;
    }

    .access-desc {
        color: #000000;
        margin: 0 auto 1.5rem;
        width: 100%;
        max-width: 400px;
    }

    .status_inuse {
        pointer-events: none;
    }

    .badge.badge-light-success:hover {
        color: var(--bs-success);
    }

    .badge.badge-light-danger:hover {
        color: var(--bs-danger);
    }

    .badge.badge-light-warning:hover {
        color: var(--bs-warning);
    }

    .badge.badge-light-primary :hover {
        color: var(--bs-primary);
    }

    .badge.badge-light-info:hover {
        color: var(--bs-info);
    }

    .divBookingHistory {
        display: flex;
        justify-content: space-between;
    }
    /* ===== History modal css ===== */
    .history-wrapper {
        padding-left: 80px;
        position: relative;
    }

        .history-wrapper:before {
            content: "";
            position: absolute;
            left: 30px;
            top: 2px;
            width: 2px;
            height: calc( 100% - 2px );
            background-color: #e5e5e5;
        }

        .history-wrapper .history-point {
            position: relative;
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            padding: 0.5rem 150px 0.5rem 0.5rem;
            border-radius: 4px;
            margin-bottom: 1rem;
            z-index: 2;
            list-style: none;
        }

            .history-wrapper .history-point .action-text {
                font-size: 15px;
                color: #333333;
            }

            .history-wrapper .history-point:before {
                content: "";
                position: absolute;
                z-index: -1;
                left: 0;
                bottom: -4px;
                width: 100%;
                height: 4px;
                transform: scale(0.99,1);
                background-color: #f2f2f2;
                border-radius: 0 0 4px 4px;
                border: 1px solid #e5e5e5;
            }

            .history-wrapper .history-point:after {
                content: "";
                position: absolute;
                top: 13px;
                left: -50px;
                width: 49px;
                height: 4px;
                border: 1px solid #e5e5e5;
                border-right: 0;
                border-left: 0;
                z-index: -1;
            }

            .history-wrapper .history-point .left-point {
                position: absolute;
                left: -65px;
                top: 0;
                width: 28px;
                height: 28px;
                background-color: #292929;
                border-radius: 8px;
                border: 1px solid #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 14px;
            }

            .history-wrapper .history-point .date-time-record {
                position: absolute;
                top: 9px;
                right: 8px;
                color: #818181;
                white-space: nowrap;
                font-size: 14px;
            }
    /*open tooltip*/
    span:hover {
        scrollbar-color: var(--bs-scrollbar-hover-color) transparent
    }
    /* The Modal (background) */
    .modal-image {
        display: none;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.7);
        padding-top: 60px;
    }
    /* Modal Content */
    .modal-content-image {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
    }
    /* Caption of Image (optional) */
    #caption {
        text-align: center;
        color: white;
        padding: 10px;
        font-size: 18px;
    }
    /* The Close Button */
    .close {
        color: #aaa;
        font-size: 40px;
        font-weight: bold;
        position: absolute;
        top: 10px;
        right: 25px;
        cursor: pointer;
    }

        .close:hover,
        .close:focus {
            color: white;
            text-decoration: none;
            cursor: pointer;
        }

    img.qr-btn-img {
        filter: brightness(100);
    }

    .scan-user-license {
        border: 1px solid #e0e0e0;
        margin: 0 auto;
        display: block;
    }

    .scan-user-pic {
        border: 1px solid #e0e0e0;
        margin: 0 auto;
        display: block;
    }

    .modal-image-title {
        font-size: .875em;
        text-align: left;
        color: #99a1b7;
        font-family: Arial;
        margin-bottom: 8px;
    }

    .img-view-input {
        width: 100%;
        border: 1px solid #dbdfe9;
        border-radius: .475rem;
        position: relative;
        padding: 1rem 1rem;
        height: 50px;
        display: flex;
        align-items: center;
    }

        .img-view-input .action-link {
            position: absolute;
            top: 0;
            right: 0;
            width: 50px;
            height: 100%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }



    .timerBox {
        display: flex;
        align-items: center;
        border: 1px solid #e0e0e0;
        padding: 4px;
        border-radius: 4px;
        background: #fff1de
    }

        .timerBox .timerText {
            font-size: 16px;
            font-weight: 500;
            color: #363636;
            margin-left: 5px;
        }

    .w-600 {
        width: 550px;
    }

    .id-card-wrap.w-600 .user-name-text {
        position: absolute;
        top: calc(100% + -60px);
        right: unset;
        width: auto;
        text-align: left;
        color: #ffffff;
        font-size: 35px;
        line-height: 1.1;
        left: -345px;
        max-width: 338px;
    }

    .id-card-wrap.w-600 .qr-box {
        width: 136px;
        height: 120px;
        margin-left: 30px;
        margin-bottom: 0;
        padding: 6px;
        border-radius: 4px;
        background-color: #FFFFFF;
        border: 2px solid #000000;
        position: relative;
        z-index: 11;
    }

    .id-card-wrap.w-600 .bottom-banner {
        background-color: #222222;
        color: #f2f2f2;
        font-size: 40px;
        line-height: 30px;
        text-align: center;
        padding: 16px 8px;
        font-weight: bold;
        width: 100%;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 11px;
    }

    .role-box {
        padding: 4px 12px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        min-width: 100px;
        display: flex;
        align-items: center;
    }

    .user-role {
        font-weight: 500;
        font-size: 15px;
        margin-left: 4px;
    }

    @media (max-width: 992px) {
        .role-box {
            margin-right: 10px;
        }
    }

    @media (max-width: 768px) {
        .mobile-bar-btn {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 111;
            padding: 8px;
            background: #ffffff9c;
            border-top: 1px solid #e0e0e0;
            backdrop-filter: blur(10px);
            justify-content: end;
        }

        .role-box {
            margin-right: 4px;
        }

        .app-page:has(.app-header .mobile-bar-btn) .app-wrapper {
            padding-bottom: 50px;
        }

        .app-wrapper.has-button {
            padding-bottom: 50px;
        }

        .app-container {
            padding-left: 10px !important;
            padding-right: 10px !important;
        }

        .card .card-body,
        .card .card-header,
        .card .card-footer {
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
    }

    button.html5-qrcode-element {
        padding: 12px 16px;
        border: none;
        border-radius: 8px;
        background-color: var(--bs-primary);
        color: var(--bs-primary-inverse);
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 16px;
        cursor: pointer;
        outline: none;
    }

        button.html5-qrcode-element:hover {
            background-color: var(--bs-primary-active);
        }

    .ban-userline td {
        background-color: var(--bs-danger-bg-subtle);
    }

    .select-checkbox {
        text-align: center;
        vertical-align: middle;
    }

    .user-checkbox {
        width: 16px;
        height: 16px;
        margin: 0;
        cursor: pointer;
    }

    tr.selected {
        background-color: transparent !important;
    }

    h5.doc-titlebar {
        margin-bottom: 12px;
        background-color: #3e97ff;
        padding: 12px 8px;
        color: #f2f2f2;
        font-size: 16px;
        border-radius: 4px 4px 0 0;
        border-bottom: 1px solid #3e97ff;
    }
    /*  CSS Start from Here */
    .upload-file-box {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        min-height: 350px;
        text-align: center;
        padding: 30px;
        background-color: #F2F5F7;
        background-image: url("../Assets/images/upload-bg.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 250px 250px;
        outline: 2px dashed #abaaaa;
        outline-offset: -10px;
        position: relative;
        -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
        transition: outline-offset .15s ease-in-out, background-color .15s linear;
    }

        .upload-file-box.is-dragover {
            outline-offset: 2px;
            outline-color: #3e97ff;
            background-color: #ffffff;
        }

        .upload-file-box .fix-whitebox {
            opacity: 0;
            visibility: hidden;
            display: none;
        }

            .upload-file-box .fix-whitebox h4 {
                color: var(--navy-blue);
            }

            .upload-file-box .fix-whitebox .upload-file-box-200 {
                width: 60px;
                height: 60px;
                color: var(--navy-blue);
                font-size: 50px;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                animation: blow 1s infinite alternate ease-in-out;
                pointer-events: none;
            }

        .upload-file-box.is-dragover .fix-whitebox {
            opacity: 1;
            visibility: visible;
            width: 100%;
            height: 100%;
            backdrop-filter: blur(15px);
            background-color: rgba(255, 255, 255, 0.7);
            position: absolute;
            top: 0;
            left: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            pointer-events: none;
        }

        .upload-file-box.is-uploading {
            background-image: none !important;
        }

            .upload-file-box.is-uploading .stretch-label {
                display: none;
            }

        .upload-file-box .file-preview {
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
        }

        .upload-file-box.is-uploading .file-preview {
            opacity: 1;
        }

        .upload-file-box .file-preview .file-thumb {
            position: relative;
            width: 120px;
            height: 120px;
            background-color: #FFFFFF;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

            .upload-file-box .file-preview .file-thumb .remove-file {
                position: absolute;
                top: 0;
                right: 0;
                transform: translate(50%, -50%);
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: 1px solid #e0e0e0;
                background-color: #FFFFFF;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

                .upload-file-box .file-preview .file-thumb .remove-file:hover {
                    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                }

        .upload-file-box .file-preview .file-name {
            font-size: 16px;
            color: var(--navy-blue);
        }

    .stretch-label {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .file-button {
        padding: 0.5rem 1rem;
        background-color: #9FB1BD;
        border-radius: 4px;
        display: inline-block;
        font-size: 18px;
        font-weight: 700;
        color: #3e3d3d;
    }

    .box__file {
        position: absolute;
        width: 0.1px;
        height: 0.1px;
        visibility: hidden;
        overflow: hidden;
        z-index: -1;
    }

    @keyframes blow {
        from {
            transform: scale(1);
        }

        to {
            transform: scale(1.2);
        }
    }

    .image-frame {
        margin-top: 12px;
        padding: 12px;
        background-color: #FFFFFF;
        border: 1px solid #DDDDDD;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    }

    .border-theme {
        border: 1px solid #3e97ff !important;
    }

    .fs-18 {
        font-size: 18px !important;
    }

    .ff-inter {
        font-family: "Inter", Arial;
    }

    .fs-15 {
        font-size: 15px !important;
    }

    .w-130 {
        width: 130px;
    }

    .ml-15 {
        margin-left: 15px !important;
    }

    .form-floating.has-action-icon {
        display: flex;
        flex-direction: row;
    }

        .form-floating.has-action-icon .add-btn {
            width: 50px;
            min-width: 50px;
            height: 50px;
            border: 1px solid #e0e0e0;
            background-color: #FFFFFF;
            border-radius: 0.25rem;
            text-decoration: none;
            margin-left: 4px;
        }

    .upload-file-box.has-advanced-upload.excel-control {
        background-image: url(../Assets/images/Choose-CSV-Files.svg);
        background-size: 180px auto;
        height: 100px;
        min-height: 100px;
        margin-bottom: 15px;
    }

    .upload-file-box.excel-control .file-preview {
        flex-direction: row;
    }

        .upload-file-box.excel-control .file-preview .file-thumb {
            width: auto;
            height: 60px;
            min-width: 50px;
            margin-bottom: 0;
            margin-right: 12px;
            padding: 10px;
        }

        .upload-file-box.excel-control .file-preview .file-name {
            padding: 0 16px;
        }

        .upload-file-box.excel-control .file-preview .file-thumb .remove-file {
            width: 30px;
            height: 30px;
            top: 5px;
            right: 5px;
        }

    .seprator-line {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        margin: 20px 0;
        position: relative;
    }

        .seprator-line .or-text {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 32px;
            height: 32px;
            transform: translate(-16px, -16px);
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #FFFFFF;
            border: 1px solid #e0e0e0;
            color: #676767;
            border-radius: 50%;
            font-size: 12px;
        }

    .bg-danger-light {
        background-color: #e1a3a9 !important;
    }
    /* CSS End Here */

    .page-item.active .page-link {
        z-index: 3;
        color: #fff;
        background-color: var(--theme-secondary);
        border-color: var(--theme-secondary);
    }

    .minicolors-theme-default.minicolors {
        width: 100%;
    }

    .minicolors-theme-default .minicolors-swatch {
        top: 13px;
        left: 13px;
    }

    .loader-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(255,255,255,0.5);
        backdrop-filter: blur(12px);
    }

        .loader-wrap .page-loader-box {
            width: 200px;
            height: 200px;
            aspect-ratio: 1;
            display: grid;
            place-items: center;
        }
    /*Custom Style style ruby designer*/
    .login-box {
        width: 400px;
        max-width: 500px;
        height: max-content;
        align-self: center;
        padding: 50px;
    }

    .login-title {
        font-size: 24px;
        color: var(--bs-primary);
    }

    .login-subtitle {
        font-size: 14px;
        color: #a8a8a8;        
    }

    .ms-login-button {
        background-color: #e8e8ea;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        color: #363636;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .ms-login-button:hover {
            background-color: #dddddd;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

    .or-section {
        background-color: #f5f5f5;
        border-radius: 8px;
        padding: 24px;
        width: 100%;
    }

    .btn.visitor-btn {
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 12px !important;
        border: 1px solid transparent !important;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        color: var(--bs-primary);
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }

        .btn.visitor-btn .bi-arrow-right {
            transform: translateX(-5px);
            transition: transform 0.15s ease-in;
        }

        .btn.visitor-btn:hover {
            border: 1px solid var(--bs-primary) !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        }

            .btn.visitor-btn:hover .bi-arrow-right {
                transform: translateX(0);
            }

    .visitor-btn .btn-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #F2f2f2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn.btn-signin {
        background-color: var(--bs-primary);
        color: #FFFFFF;
    }

        .btn.btn-signin:focus {
            background-color: var(--bs-primary);
            box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb),0.3);
            color: #FFFFFF;
        }

        .btn.btn-signin:active {
            background-color: var(--bs-primary);
            box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb),0.3);
            color: #FFFFFF;
        }

    .back-link {
        font-size: 14px;
        color: #676767;
        text-decoration: none;
    }

        .back-link i.fa {
            color: #676767;
        }

        .back-link:hover {
            color: var(--bs-primary);
        }

            .back-link:hover i.fa {
                color: var(--bs-primary);
            }

    .text-shadow {
        text-shadow: 0px 0px 10px #000000;
    }

    .back-img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: center;
        z-index: -1;
    }

    .pass-match {
        font-size: 14px;
        font-family: var(--frutiger);
        font-weight: 400;
        color: #717377;
        display: flex;
        flex-wrap: nowrap;
    }

        .pass-match .true-icon {
            margin-right: 4px;
        }

        .pass-match.true {
            color: #2DD26F;
        }

    .password-wrapper {
        position: relative;
    }

    .password-input {
        padding-right: 45px;
    }

    .toggle-password {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        color: #777;
        font-size: 18px;
        z-index: 10;
        width: 30px;
        height: 43px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .toggle-password:hover {
            color: #333;
        }

    .btn.btn-success,
    .btn.btn-danger,
    .btn.btn-secondary {
        border: none;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
        border-radius: 0.5rem;
        white-space: nowrap;
    }

    .btn.btn-primary {
        background-color: var(--bs-primary);
        border: none;
        padding: 0.5rem 1.25rem;
        font-weight: 600;
        border-radius: 0.5rem;
        white-space: nowrap;
    }

        .btn.btn-primary:hover,
        .btn.btn-primary:hover:not(.btn-active) {
            background-color: var(--bs-primary) !important;
            filter: brightness(0.95);
        }

        .btn.btn-primary:focus,
        .btn.btn-primary:focus:not(.btn-active) {
            background-color: var(--bs-primary) !important;
            filter: brightness(0.95);
        }

        .btn.btn-primary:active,
        .btn.btn-primary:active:not(.btn-active) {
            background-color: var(--bs-primary) !important;
        }

    .forgot-modal {
        border: none;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

    .forgot-header {
        padding: 24px 28px;
        border-bottom: 1px solid #f1f5f9;
        background: linear-gradient(to right, #f8fafc, #ffffff);
    }

        .forgot-header h4 {
            font-weight: 700;
            color: #0f172a;
        }

    .forgot-subtitle {
        font-size: 14px;
        color: #64748b;
    }

    .forgot-close-btn {
        box-shadow: none !important;
    }

    .forgot-label {
        font-weight: 600;
        color: #334155;
        margin-bottom: 10px;
    }

    .forgot-input-group {
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #dbe2ea;
        transition: all 0.3s ease;
    }

        .forgot-input-group .input-group-text {
            border: none;
        }

        .forgot-input-group:focus-within {
            border-color: var(--bs-primary);
            box-shadow: none;
        }

    .forgot-input,
    .forgot-input:focus {
        border: none !important;
        box-shadow: none !important;
        height: 50px;
        font-size: 15px;
    }

    .forgot-cancel-btn {
        background: #f1f5f9;
        color: #334155;
        border-radius: 10px;
        padding: 10px 22px;
        font-weight: 600;
    }

        .forgot-cancel-btn:hover {
            background: #e2e8f0;
        }

    .forgot-submit-btn {
        background: var(--bs-primary);
        color: white;
        border-radius: 10px;
        padding: 10px 24px;
        font-weight: 600;
        border: none;
        transition: 0.3s;
    }

        .forgot-submit-btn i {
            color: white !important;
        }

        .forgot-submit-btn:hover {
            background: var(--bs-primary);
            color: white;
        }

    .p-24 {
        padding: 24px !important;
    }

    .otp-fake-input.otpdesigner__focus__ {
        border: 2px solid var(--bs-primary) !important;
    }

    div:where(.swal2-icon) {
        margin-top: 0.5rem !important;
    }

    body.swal2-height-auto {
        height: 100% !important;
    }

    .swal2-container .swal2-html-container {
        max-height: 255px !important;
        margin-top: 0.5rem !important;
    }

    .swal-login-btn {
        background-color: var(--bs-primary);
    }

        .swal-login-btn:hover,
        .swal-login-btn:active {
            background-color: var(--bs-primary) !important;
        }
