html, body {
    position: relative;
    height: 100%;
    min-height: 100%;
    font-size: 13px !important;
    -webkit-font-smoothing: antialiased;
    font-family: nunito-medium,sans-serif !important;
    color: #6c757d;
    background-color: #fbfcfe;
}

.md-box {
    padding-right: 8px;
    padding-left: 8px;
}

.kpi {
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 8px;
    transition: box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

    .kpi:hover {
        /* deeper, softer shadow */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        /* subtle brightness boost */
        filter: brightness(0.80);
    }

.kpi-number {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.kpi-text {
    font-size: 13px;
    opacity: .9;
}

.card-panel {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,.08);
    margin-bottom: 15px;
    border: 1px solid #ccf3ff;
    background-color: #ffffff;
}

.card-header-panel {
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #ccf3ff;
    background: #e0f8ff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-body-panel {
    padding: 10px;
}


/* CSS from previous response */
.typing-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 70px;
    background: #f0f0f0;
    border-radius: 10px;
}

    .typing-animation span {
        display: inline-block;
        width: 6px;
        height: 6px;
        background-color: #333;
        border-radius: 50%;
        margin: 0 4px;
        animation: typing 1s infinite;
    }

@keyframes typing {
    0%, 20% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}

.typing-animation span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-animation span:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-workspace {
    height: 65px;
    border: 1px solid rgba(6, 100, 198, .5) !important;
    width: 100%;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    margin-top: 8px;
    margin-left: 0px;
    resize: none;
    outline: none;
    padding: 7px !important;
}

.billing-chat-dv {
    overflow: auto;
    height: calc(100vh - 190px) !important;
    max-height: calc(100vh - 190px) !important
}

.file-name-text {
    color: #333333 !important;
    font-weight: normal !important;
    font-size: 1.15rem !important
}

.time-text {
    font-size: .90rem;
    padding: 5px 0px 0px 0px;
    font-weight: 400;
    color: #3996f9 !important;
    /* white-space: nowrap;*/
}



.folder-color {
    color: #C48E08 !important
}

.folder-color-gray {
    color: #808080 !important
}

.upload-item {
    margin: 5px 0;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.3rem
}

.vault-item-text {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}

.loading-img {
    border-radius: 50%;
    box-shadow: rgba(99, 99, 99, 0.5) 0px 2px 8px 0px;
    background-color: rgba(255, 255, 255, 0.5);
    width: 150px;
    height: 150px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 4px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0; /* light gray background */
    color: #333; /* icon color */
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .icon-btn:hover {
        background-color: #007bff; /* blue hover */
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

.path-bar {
    margin: 0px !important;
    letter-spacing: 0.5px;
    margin-bottom: 10px !important;
    padding: 5px !important;
    padding-left: 10px !important;
    font-weight: 600;
    font-size: 1.1rem !important;
    background-color: #e6f9ff;
    text-align: left;
    border: 1px solid #ccf2ff;
    border-radius: 6px
}

.info-menu-wrapper {
    position: relative; /* ensures dropdown positions relative to this wrapper */
    display: inline-block; /* makes it act like an inline element while keeping block properties */
}

.menu-li {
    padding: 4px !important
}

.file-list {
    min-height: 100vh;
    overflow: auto;
}

.file-list-div {
    border-radius: 5px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 6px;
    background-color: #ffffff !important;
}

.info-menu {
    height: 24px;
    width: 24px;
    padding: 4px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

    .info-menu:hover {
        background-color: #e6f3ff; /* soft blue on hover */
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.25);
        transform: translateY(-2px);
    }

        .info-menu:hover i {
            color: #007bff; /* change icon color on hover */
        }

.v-item {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    /*padding-bottom:10px;*/
}

    .v-item.active {
        background-color: #e6f3ff; /* light blue highlight */
        box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.25);
        transform: none; /* no hover lift for selected */
        border-left: 4px solid #007bff; /* highlight bar */
    }

    .v-item:hover {
        background-color: #ffffff;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        /*transform: translateY(-2px) scale(1.02);*/
    }


.v-item-move {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    /*padding-bottom:10px;*/
}

    .v-item-move.active {
        background-color: #e6f3ff; /* light blue highlight */
        box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.25);
        transform: none; /* no hover lift for selected */
        border-left: 4px solid #007bff; /* highlight bar */
    }

    .v-item-move:hover {
        background-color: #ffffff;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        /*transform: translateY(-2px) scale(1.02);*/
    }

.mob-menu-hover {
}

    .mob-menu-hover:hover {
        background-color: #e6f5ff !important;
        color: #0066cc !important;
    }


.mobile-item-text {
    padding-left: 10px;
    font-weight: 500 !important
}

.mobile-item-icon {
    font-weight: 500 !important
}

.login-appname {
    font-size: 52px;
    margin-left: 0px;
    color: #73E0FF
}

.login-bg-right {
    background-image: url(/images/brand/right-img-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.voice-microphone-sm {
    height: 28px !important;
    width: 28px !important;
    font-size: 16px !important; /* Icon size */
    margin-bottom: 0px !important
}

.voice-microphone {
    height: 38px;
    width: 38px;
    margin-left: 5px;
    margin-bottom: 3px;
    cursor: pointer;
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border-radius: 50%;
    background: linear-gradient(145deg, #2e2e2e, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    color: #fff;
    font-size: 24px; /* Icon size */
}

    /* Hover effect */
    .voice-microphone:hover {
        transform: scale(1.08);
        opacity: 1;
        background: linear-gradient(145deg, #3a3a3a, #1e1e1e);
        box-shadow: 0 4px 12px rgba(0, 204, 255, 0.5);
        color: #00ccff;
    }

    /* Click/active effect */
    .voice-microphone:active {
        transform: scale(0.96);
        background-color: #00ccff;
        color: #000;
        box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
    }



.div-voice-webkit {
    margin: 0px;
    height: 80px;
    width: 80px;
    background-image: url(/images/dtc-chile-circle.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.go-back-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.3s ease;
}

    .go-back-link i {
        font-size: 1.5rem;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .go-back-link .text-cell {
        margin-left: 5px;
        padding-right: 10px;
        font-size: 1.3rem;
        transition: color 0.3s ease;
    }

    .go-back-link:hover {
        background-color: rgba(0, 123, 255, 0.08); /* subtle highlight */
        border-radius: 6px;
        padding-left: 4px;
    }

        .go-back-link:hover i {
            transform: translateX(-4px); /* slide left */
            color: #007bff; /* accent color */
        }

        .go-back-link:hover .text-cell {
            color: #007bff;
        }

.box-bg {
    background-image: url('/images/btn-bg4.png');
    background-size: cover; /* Fill the box, crop if needed */
    background-repeat: no-repeat; /* No tiling */
    background-position: center; /* Keep image centered */
    width: 100%;
    height: 100%; /* Make sure parent has height set */
}


/*.pv-info-wrap {
    padding-top: 3px;
    font-size: .90rem
}*/

.pv-info-div {
    padding: 2px;
    font-size: .98rem;
    color: #262626 !important
}


.pname {
    padding-top: 3px !important;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #0044cc
}


.ellipsis-div {
    width: calc(100% - 20px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.a-img-button {
    text-decoration: none;
    position: absolute;
    right: -3px;
    top: -3px
}

.div-img-button {
    position: absolute;
    right: 12px;
    top: -3px
}

.img-button {
    padding: 4px;
    border-radius: 5px; /* Matches card border radius */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid #3385ff !important;*/ /* Matches card border */
    /*box-shadow: 1px 1px 4px #eee;*/ /* Matches card shadow */
    /*background-color: #3385ff;*/
    transition: all 0.25s ease;
    cursor: pointer;
    margin-right: 0px;
    color: #262626;
}

    .img-button:hover {
        background: linear-gradient(145deg, #cfe2ff, #b3d1ff);
        transform: scale(1.05);
        box-shadow: 1px 1px 6px rgba(6, 100, 198, 0.35); /* Subtle blue glow */
        border-color: #0664c6;
        color: #6c757d;
    }

.img-btn-icon {
    margin: 0 !important;
    font-size: 1.3rem !important;
}


.ctl-disabled {
    background-color: #e6e6e6 !important
}

.max-btn {
    font-size: 16px;
    opacity: .4;
}

    .max-btn:hover {
        font-size: 18px;
        opacity: .6;
    }




.required {
    color: #ff3333 !important;
    font-weight: bold !important;
}

.list-item {
    background: #e0f8ff;
    border: 1px solid #ccf3ff;
    padding: 10px !important;
    border-radius: 5px
}

.panel-body {
    padding: 5px !important
}

.menu-ctl-btn {
    height: 32px;
    width: 32px;
    cursor: pointer;
    padding: 3px;
    background-color: #f2f2f2;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    opacity: .6;
}

    .menu-ctl-btn:hover {
        background-color: #d9d9d9;
        border: 1px solid #cccccc;
    }

@font-face {
    font-family: nunito-medium;
    src: url('../nunito-medium.woff');
}

@font-face {
    font-family: nunito-semi-bold;
    src: url('../nunito-semi-bold.woff');
}


@font-face {
    font-family: nunito-bold;
    src: url('../nunito-bold.woff');
}

.title-inline {
    padding: 5px;
    border-bottom: 2px dashed #cccccc !important;
    margin-bottom: 7px !important;
    color: #3366cc !important;
    font-size: 13px !important;
    font-weight: bold;
    letter-spacing: .7px;
}

.title-inline-info {
    font-size: 11px !important;
    color: #ffa31a !important;
    font-weight: bold;
    letter-spacing: .7px;
}

.lable-info {
    font-size: 8px !important;
    color: #8533ff !important;
    font-weight: bold;
    letter-spacing: .7px;
}


.notes-bulb-div {
    font-weight: normal;
    background-color: #ffffe6;
    /*border: 1px solid #e4e6e7;*/
    border-radius: 5px;
    box-shadow: rgba(149,157,165,.2) 0 2px 6px;
    font-size: 13px !important;
}

.bg-wroom {
    background-image: url(/images/waiting-room-gray.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.card-btn {
    margin-bottom: 10px !important;
    overflow: hidden !important;
    transition: all .5s;
}

    .card-btn:hover {
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
        border-radius: 20px;
        overflow: hidden
    }

.bg-dot {
    background-image: url(/images/btn-bg3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.color-white {
    color: #ffffff !important;
}

.div-ellipsis {
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides overflow text */
    text-overflow: ellipsis; /* Adds the ellipsis (...) */
    width: 180px; /* Adjust the width as needed */
}

.div-ellipsis-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px
}

.top-dd-item {
    padding: 6px !important;
    font-weight: bold;
}

.table-responsive {
    border: none !important
}

.absolute-center {
    position: absolute; /* Position the child absolutely within the parent */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the child horizontally and vertically */
    width: 200px; /* Set the width of the child as needed */
    height: 100px; /* Set the height of the child as needed */
    background-color: #007bff; /* Optional: Background color for visualization */
    color: #fff; /* Optional: Text color */
    display: flex;
    align-items: center;
    justify-content: center; /* Optional: Center text within the child */
}




.app-font-size {
    font-size: 12px !important;
}

.chk-big {
    height: 18px !important;
    width: 18px !important;
    margin-right: 8px !important
}

.checkbox-text {
    padding-left: 5px;
    padding-top: 2px;
    padding-right: 5px
}

input, text, textarea, select {
    font-size: 13px !important;
    border-radius: 3px !important;
    padding: 7px !important
}


.local-ft {
    font-size: 12px;
    font-weight: bold;
    padding: 2px !important
}

.local-icon {
    font-size: 32px
}

.local-icon-size {
    height: 38px;
    width: 38px
}

.local-imgdv {
    padding: 5px;
    padding-right: 10px !important
}

.local-div-title {
    letter-spacing: 1px;
    padding: 5px 0px 5px 5px;
    overflow: hidden;
    font-size: 13px;
}

.local-div-sm {
    font-size: 12px;
    padding-left: 5px;
}

.local-warpdiv {
    padding: 5px;
    height: 90px;
    overflow: hidden;
}



.card-warp {
}

    .card-warp:hover {
        background-color: #e6f5ff
    }


.init-circle {
    height: 30px;
    width: 30px;
    font-size: 12px;
    border-radius: 15px;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.mobile-menu-icon {
    font-size: 28px;
    margin-top: 4px;
    color: #1a1a1a !important
}

.tr_mobile {
}

.mobile-ft {
    font-size: 13px;
    font-weight: bold;
    padding: 4px !important
}

.mobile-icon {
    font-size: 32px
}

.mobile-imgdv {
    padding-right: 10px;
}

.mobile-div-title {
    letter-spacing: 1px;
    padding: 0px 0px 0px 0px !important;
    overflow: hidden;
}

.mobile-div-sm {
    font-size: 10px;
    padding-left: 0px !important;
}

.mobile-warpdiv {
    padding: 5px;
    overflow: hidden;
}

.mcw-wrap {
    padding: 5px !important;
    margin: 0px;
    cursor: pointer
}


.mobile-card-warp {
    margin: 0px !important
}

    .mobile-card-warp:hover {
        background-color: #e6f5ff
    }


.ui-timepicker-standard {
    z-index: 2000 !important;
}

.ui-timepicker-viewport {
    font-size: 12px !important;
    font-family: nunito-medium,sans-serif !important;
}

.menu-top-line {
    height: 5px !important;
    background-color: rgba(6, 100, 198, 1)
}

.eventlog-item-wrap {
    height: 80px !important;
    max-height: 120px !important;
    overflow: auto
}

.check-box-textdv {
    padding-top: 3px;
    padding-left: 3px
}

.filter-item-title {
    font-size: 11px;
    font-weight: bold;
    padding: 6px 3px 3px 3px;
    letter-spacing: .5px;
    margin-top:3px;
}

.filter-item-sub-title {
    font-size: 11px;
}

.select-list-dv {
    min-height: calc(100vh - 250px);
    max-height: calc(100vh - 250px);
    overflow: auto;
    margin: 5px !important
}

.perdv {
    min-height: 60px;
    max-height: 350px;
    overflow: auto;
    margin: 5px !important
}

.logo-image {
    height: 40px;
    width: 46px;
    margin: 4px;
}

.logo-text {
    height: 26px;
    width: auto;
    /* width: 145px*/
}

.login-title-wrap {
}

.login-box {
    background-color: transparent;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 5px !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    float: none;
    color: #ffffff !important;
    margin-right: 2% !important;
    margin-left: 2% !important;
    padding-bottom: 15px !important
}

.login-box-bg {
    background: rgba(6, 100, 198, 0.6) !important
}

.login-box-bg-cosmos {
    background: rgba(135, 114, 109, 0.5) !important;
}

.login-title {
    margin-top: 5px;
    font-size: 22px !important;
    letter-spacing: 2px;
    font-weight: 500;
}

.login-title-sub {
    margin-top: -5px;
    margin-bottom: 10px;
    font-size: 11px !important;
    letter-spacing: 2px;
    font-weight: 500;
    /*border-bottom: 3px groove rgba(211, 211, 211, 0.4);*/
}

.logo-image-login {
    height: 60px;
    width: 70px;
    margin: 8px;
    margin-left: 20px !important
}

.card-btn-dv {
    padding: 5px;
    height: 60px !important
}

.card-theme {
    border-radius: 5px;
    border: 1px solid #eee !important;
    box-shadow: 1px 1px 4px #eee;
    margin-bottom: 5px !important
}


.card-header-theme {
    border-bottom: 1px solid #eee !important;
    padding: 8px 8px 8px 15px !important;
}

.card-footer-theme {
    border-top: 1px solid #eee !important;
    border-bottom: none !important;
    padding: 5px !important
}

.login-bl-bg {
    background-color: #0664C6;
    background: url(/images/brand/2151895869.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #ffffff !important;
}

.login-cosmos-bg {
    background-color: #0664C6;
    background: url(/images/cosmos-bg-blue.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #ffffff !important;
}

.note-theme {
    color: #3973ac !important
}

.filter {
    border-radius: 3px;
    border: none !important;
    /*border: 1px solid #eee !important;*/
    /* box-shadow: 1px 1px 4px #eee;*/
    background-color: #f7f7f7;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.login-btn {
    height: 38px !important;
    width: 200px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    /* background-color: transparent;*/
    background-color: rgba(6, 100, 198, 0.6);
    color: #ffffff;
    border-color: #ffffff !important;
    border-radius: 8px !important
}

    .login-btn:hover {
        color: black;
        background: #ffffff;
    }



.login-ctl-dv {
    padding-right: 5%;
    padding-left: 5%
}

.menu-item-tbl-sel {
    color: #8000ff !important;
    background-color: rgba(2555,255,255,.6) !important;
    box-shadow: rgba(149,157,165,.2) 0 2px 6px;
    border-radius: 3px;
}

.menu-item-tbl {
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #ffffff
}

    .menu-item-tbl:hover {
        /*color: #ff3399;*/
        color: #8000ff !important;
        background-color: rgba(2555,255,255,.6) !important;
        box-shadow: rgba(149,157,165,.2) 0 2px 6px;
        border-radius: 3px;
    }



.menu-item-a {
    text-decoration: none !important;
}

/*    .menu-item-a:hover {
        background-color: #0466c8 !important;
        border-radius: 4px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }*/

.login-font {
    color: #ffffff !important
}

.login-textbox {
    border-radius: 0px !important;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
    padding: 16px !important;
    padding-left: 10px !important;
    font-size: 15px !important;
    letter-spacing: 1.5px;
    border-color: #0664C6 !important;
    height: 38px !important;
}


    .login-textbox::placeholder {
        color: #bfbfbf !important;
    }

.login-textbox-icon {
    font-size: 16px;
    padding-top: 8px;
    padding-right: 15px;
    padding-left: 15px;
    /*background-color: #0664C6;*/
    background-color: rgba(6, 100, 198, 0.6);
    color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-color: #0664C6 !important;
}

.info-icon {
    font-size: 16px;
    font-weight: bold
}

.warn-big {
    font-size: 48px;
    font-weight: bold;
    color: #ff9900;
}

.filter-dv {
    width: 700px;
}

.filter-content {
    padding: 15px !important;
    padding-bottom: 0px !important
}

select {
    padding-top: 4px !important
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: none !important;
    outline-offset: 0px !important
}


.title-line-div {
    height: 2px;
    margin-top: 10px;
}

.widget-load {
    padding: 30px;
    border-radius: 5px;
    margin-top: 30px;
    opacity: .4;
    background-repeat: no-repeat;
    background-size: cover;
}


.list-tbl-div {
    border-radius: 5px;
    margin-top: 10px;
    padding: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 2px 6px;
    background-color: #ffffff !important;
}

.widget-load-img {
    height: 120px;
    width: 120px;
    margin-top: 40px;
    margin-bottom: 30px
}

.widget-load-txt {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px
}

.search-bar-icon {
    text-decoration: none !important;
    font-size: 22px !important
}

.btn-txt-div {
    margin-left: 2px;
    margin-top: -2px;
}

.btn-img {
    font-size: 15px !important;
    font-weight: bold !important
}

.btn-img-sm {
    font-size: 12px !important;
    font-weight: bold !important
}

.menu-btn-img {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-left: 15px !important
}

.page-wrap {
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px
}


.page-title-wrap {
    padding-left: 10px;
    padding-top: 10px
}

.page-title-img {
    font-size: 1.6rem;
    font-weight: bold;
}

.page-title-img-size {
    height: 24px;
    width: 24px;
}

.page-title-tx {
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 10px;
    /* white-space: nowrap;*/
    letter-spacing: 1px
}

.page-sub-title-tx {
    font-size: 16px !important;
}

.app-txt-area {
    height: 80px !important;
}

.app-txt-area-sm {
    height: 50px !important;
}

.app-txt {
    height: 30px !important;
}

.app-txt-sm {
    height: 28px !important;
    font-size: 11px !important
}

.form-select {
    padding-top: 5px !important
}

.form-select-sm {
    height: 28px !important;
    font-size: 11px !important;
    padding: 2px 8px 2px 12px !important
}

.text-sm {
    font-size: 11px !important;
}


.app-btn {
    min-width: 80px !important;
    font-size: 13px !important;
    height: 32px !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 8px !important;
}

    .app-btn:hover,
    .app-btn:focus,
    .app-btn:active,
    .app-btn::after {
    }

.app-btn-big {
    /* min-width: 120px !important;*/
    font-size: 15px !important;
    height: 38px !important;
    border-radius: 3px !important;
    padding: 9px 18px 6px 12px !important;
}

.menu-btn {
    min-width: 80px !important;
    font-size: 16px !important;
    height: 60px !important;
    border-radius: 3px !important;
    padding: 6px 8px 6px 8px !important;
    background-color: #0073e6 !important;
    color: #fff !important
}

    .menu-btn:focus,
    .menu-btn:hover,
    .menu-btn:active,
    .menu-btn::after {
        color: #ffffff !important;
        background-color: #0066cc !important
    }

.app-btn-sm {
    font-size: 12px !important;
    height: 28px !important;
    padding: 3px 8px 1px 4px !important;
}

.app-btn-dropdown {
    color: #ffffff;
    border-color: #0073e6 !important;
    background-color: #0073e6 !important;
}

    .app-btn-dropdown:hover,
    .app-btn-dropdown:focus,
    .app-btn-dropdown:active,
    .app-btn-dropdown::after {
        color: #ffffff !important;
        background-color: #0066cc !important
    }


.img-search-add {
    color: #13c56b !important;
}

.card-title-link {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: .7px;
}

.card-title {
    font-size: 12px;
    font-weight: bold
}

.card-body {
    padding: 4px 8px 4px 8px !important
}

.active-state {
    font-size: 14px;
    color: #00b33c
}

.inactive-state {
    font-size: 14px;
    color: #808080
}

.app-font-color {
    color: #6c757d
}

.app-border {
    border: 1px solid #bfbfbf !important;
}

.tx-area {
    border-color: #bfbfbf !important;
}

    .tx-area::placeholder {
        color: #bfbfbf !important;
    }


.accordion-body {
    padding: 5px !important
}

.menu-item {
    text-decoration: none !important;
}

.note-normal {
    font-size: 12px;
    font-weight: bold
}

.menu-item-div {
    padding: 3px;
    padding-left: 10px !important
}

.menu-text-div {
    padding-left: 5px;
    font-weight: 400;
}

.menu-item-icon {
    font-size: 14px;
    font-weight: bold;
}

.menu-btn-icon {
    margin-right: 5px;
    font-size: 18px;
    font-weight: bold
}

.menu-btn-text {
    padding-top: 2px;
    padding-left: 6px;
    font-weight: bold
}

.menu-wrap-client {
    height: 100%;
    position: fixed;
    z-index: 101;
    color: #ffffff;
    background-color: #0664C6 !important;
    background: url(/images/brand/right-img-2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.menu-wrap-mobile {
    color: #ffffff;
    background-color: #0664C6 !important;
    background: url(/images/brand/right-img-2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    max-width: 200px !important
}

.menu-wrap-width {
    z-index: 1041 !important;
    width: 200px;
}

.menu-wrap-width-sm {
    width: 60px;
}

.top-menu-wrap {
    position: fixed;
    width: 100%;
    z-index: 1040 !important
}

.top-menu-div {
    margin-left: -2px !important;
    margin-right: 0px !important;
    height: 60px !important;
    padding-top: 0px;
    box-shadow: 0px 4px 8px rgba(99, 99, 99, 0.2);
    background-color: #fdfefe !important;
    padding-top: 0px !important
    /*  border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: 1005;
    margin-left: -30px !important;
    box-shadow: 4px 4px 8px rgba(99, 99, 99, 0.2) !important; */
}

.btn-color {
    color: #ffffff;
    border-color: #6c757d !important;
    background-color: #6c757d !important;
}

    .btn-color:hover,
    .btn-color:focus,
    .btn-color:active,
    .btn-color::after {
        color: #ffffff !important;
        background-color: #5f666d !important
    }

.btn-color-add {
    background-color: #12ba66 !important;
    border-color: #12ba66 !important;
    color: #ffffff;
}

    .btn-color-add:hover,
    .btn-color-add:focus,
    .btn-color-add:active,
    .btn-color-add:after {
        background-color: #10a259 !important;
        border-color: #10a259;
        color: #ffffff;
    }


.btn-color-close {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #ffffff;
}

    .btn-color-close:hover,
    .btn-color-close:focus,
    .btn-color-close:active,
    .btn-color-close:after {
        background-color: #d39e00 !important;
        color: #ffffff;
    }


.line-div {
    background-color: #f1f2f3;
}

.accordion-button::after {
    background-size: 10px !important;
    width: 10px !important;
    height: 10px !important;
    background-image: url(/images/down.png) !important;
}

.body-warp {
    padding-top: 65px !important;
    width: 100%;
}

.no-sort::after {
    display: none !important;
}

.no-sort {
    pointer-events: none !important;
    cursor: default !important;
}



.app-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    height: 100% !important;
    position: fixed !important;
}

.gd-icon {
    font-size: 19px !important;
    cursor: pointer;
    margin-left: 5px;
}

    .gd-icon:hover {
        color: #a0a6ac
    }



.btn-mrg {
    margin-right: 5px !important;
}


.view-container {
    padding-left: 202px;
}

.view-container-sm {
    padding-left: 62px !important;
}


.form-group {
    margin-bottom: 7px !important;
    padding-right: 5px !important;
    padding-left: 5px !important
}

.form-group-sm {
    margin-bottom: 5px !important
}

.dvline {
    border-top: 1px solid #bfbfbf;
}


.main-body-tbl {
    width: 100%;
    height: 100%;
}

.no-padding {
    padding-left: 0px !important
}

.lusr-img {
    display: inline-block;
    margin: 10px;
}

table.dataTable tbody td {
    word-break: break-word;
    vertical-align: middle !important;
}

.rounded-circle {
    border-radius: 50% !important;
}




.search-bar {
    padding-top: 10px;
    padding-right: 0px
}


.img-search {
    margin-left: 5px;
    margin-right: 5px;
    height: 22px;
    width: 22px;
    cursor: pointer;
}

.txt-search {
    width: 250px;
    margin-right: 10px
}


.app-check {
    height: 16px !important;
    width: 16px !important;
    margin: 0px !important;
    /*border: 1px solid #1a1a1a !important;*/
}


/*Todo check after this*/

.nomarpad {
    padding: 0px !important;
    margin: 0px !important
}


.key-lable {
    color: #0099cc !important;
    white-space: nowrap;
    padding-right: 4px
}


.key-value {
    overflow-wrap: break-word;
    word-break: break-all;
}

.lbl-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    letter-spacing: .7px
}

.lbl-text-sm {
    font-size: 10px !important;
    font-weight: bold;
    margin-bottom: 0px !important;
    padding: 0px !important;
    letter-spacing: .5px;
    color: #0099cc !important;
}


.div-load {
    width: 150px;
    height: 150px;
    display: none;
    /*transform: translate(-50%, -50%);*/
    position: fixed;
    top: calc(50vh - 50px);
    left: calc(50vw - 50px);
    z-index: 9999 !important;
    opacity: .8;
}

.centered-parent {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}


.centered {
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.scs-msg {
    width: 280px !important;
    margin-right: 10px;
    position: fixed;
    top: 10px;
    right: 0px;
    z-index: 9999;
    background-color: #ffffcc;
}

.fnt-tbl-head {
    font-size: 12px !important;
    color: #6c757d !important;
    text-align: left !important
}

.val-style {
    color: #cc0000 !important;
    font-size: 12px !important
}

.table > :not(caption) > * > * {
    color: #6c757d;
    --bs-table-bg: none !important
}

.list-tr {
    text-align: left !important;
    color: #6c757d !important
}

    .list-tr:hover {
        background-color: #e6f5ff !important;
    }


.body-load {
    background-color: #f2f2f2 !important;
}

.theme-txt {
    border-color: #bfbfbf !important;
}

    .theme-txt::placeholder {
        color: #bfbfbf !important;
    }


.app-box {
    border-radius: 7px;
    box-shadow: 0 1px 6px 1px #b3b3b3;
}

.group-box {
    padding: 10px;
    padding-bottom: 0px !important;
    border-radius: 5px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 4px #eee
}

.group-box-header {
    margin-top: -23px;
    background: #eee;
    padding: 3px;
    border-radius: 16px;
    position: absolute;
    padding-right: 30px;
    padding-left: 30px;
}

.grop-box-line {
    padding: 5px;
}

.page-title {
    font-size: 15px;
    font-weight: 600;
    padding-left: 10px;
    letter-spacing: 1px
}

.space0 {
    margin: 0px !important;
    padding: 0px !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 9000; /* Ensure it's on top of other content */
}

.user-photo {
    margin-bottom: 10px;
    height: 100px;
    width: 100px;
    border-radius: 50px;
}

.patient-list-photo {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.patient-photo {
    margin-bottom: 5px;
    height: 100px;
    width: 100px;
    border-radius: 50px;
}

.delete-title {
    font-size: 20px;
    font-weight: bold;
    padding: 0px
}

.delete-sub-title {
    font-size: 14px;
    font-weight: bold;
    padding: 0px
}

.top-menu-adiv {
    padding-left: 5px
}

.top-menu-box {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: #ffffff !important;
    margin-top: 0px !important
}

.user-top-div {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    margin-right: 12px;
    margin-top: 8px;
    overflow: hidden;
}

    .user-top-div:hover {
        box-shadow: 0 0 15px 5px rgba(0, 123, 255, 0.7);
    }

.top-user-down-arrow {
    position: absolute;
    bottom: 0px;
    right: 10px;
    font-size: 13px;
    background-color: #ffffff;
    border-radius: 6px;
    color: rgba(6, 100, 198, 1);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.user-top-photo {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    cursor: pointer;
    border: 1px solid rgba(211, 211, 211, 0.3);
}

.user-list-photo {
    height: 26px;
    width: 26px;
    border-radius: 13px;
}

.logo-warp {
    height: 60px;
    /*padding-left: 5px;
    padding-top: 5px;*/
    padding: 5px 5px 5px 0px;
    border-bottom: 1px groove rgba(211, 211, 211, 0.3);
    background: rgba(6, 100, 198, 0.9) !important;
}

.menu-right-mrg {
    margin-top: 2px !important;
    margin-right: 0px !important;
}

.mnu-items-warp {
    height: calc(100% - 66px);
    overflow: auto;
    margin-right:2px !important
}
    /* width */
    .mnu-items-warp::-webkit-scrollbar {
        width: 12px;
    }

    /* Track */
    .mnu-items-warp::-webkit-scrollbar-track {
        border-radius: 4px;
        background-color: rgb(128, 128, 128, 0.4);
        border: 1px solid #cccccc;
    }

    /* Handle */
    .mnu-items-warp::-webkit-scrollbar-thumb {
        border-radius: 8px;
        background-color: #b3b3b3;
    }

        /* Handle on hover */
        .mnu-items-warp::-webkit-scrollbar-thumb:hover {
            background: #f2f2f2;
        }


.user-facility-wrap {
    height: 80px !important;
    max-height: 120px !important;
    overflow: auto;
}

.facility-wrap {
    height: 160px !important;
    max-height: 160px !important;
    overflow: auto
}

.any-warp {
    /*margin: 5px !important*/
}
    /* width */
    .any-warp::-webkit-scrollbar {
        width: 10px;
    }

    /* Track */
    .any-warp::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: rgb(128, 128, 128, 0.4);
        border: 1px solid #cccccc;
    }

    /* Handle */
    .any-warp::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #b3b3b3;
    }

        /* Handle on hover */
        .any-warp::-webkit-scrollbar-thumb:hover {
            background: #808080;
        }


.mnu-head-wrap {
    padding: 2px 10px 5px 10px;
    cursor: pointer;
    border-bottom: 1px groove rgba(211, 211, 211, 0.3);
}

    .mnu-head-wrap:hover {
        /*background-color: rgba(252, 253, 255, 0.5);*/
    }

.mnu-title-img {
    font-size: 16px;
    padding-right: 4px;
    padding-left: 0px;
    margin: 4px !important
}

.mnu-sub-img {
    margin: 3px !important;
    font-size: 14px !important;
    padding-left: 3px !important
}

.mnu-sub-imgpad2 {
    margin: 3px !important;
    font-size: 14px !important;
    padding-left: 2px !important
}

.mnu-title-text {
    padding-top: 0px;
    font-weight: normal;
    font-size: 14px !important;
    white-space: nowrap;
}

.mnu-sub-text {
    font-size: 13px !important;
    padding-right:3px !important
}

.mnu-arrow {
    padding-top: 3px;
    font-size: 10px;
    margin-right: 8px;
}

.submenu-div {
    padding-left: 5px;
    border-left: 1px solid rgba(211, 211, 211, 0.3);
    margin: 7px;
    margin-left: 12px;
    display: none;
}

@media only screen and (max-width: 992px) {
    html, body {
        /* font-size: 1.9vw !important;*/
    }

    .view-container {
        padding-left: 0px !important;
    }

    .login-appname {
        font-size: 38px;
    }
}



@media (max-width: 768px) {
    html, body {
        /*font-size: 1.9vw !important;*/
    }

    .login-appname {
        font-size: 32px;
    }


    .logo-image-login {
        height: 42px;
        width: 48px;
        margin: 8px;
        margin-left: 20px !important
    }

    .title-line-div {
        height: 2px;
        margin-top: 10px;
    }

    .logo-text {
        height: 22px;
        width: auto;
        margin: 5px 0px 0px 0px !important
        /* width: 145px*/
    }

    .logo-image {
        height: 30px;
        width: 34px;
        margin: 5px 5px 0px 0px !important
    }

    /*.user-top-photo {
        height: 28px;
        width: 28px;
        border-radius: 14px;
    }*/

    .view-container {
        padding-left: 0px !important;
    }

    .txt-search {
        width: 150px;
        margin-right: 5px !important;
    }

    .search-bar {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px !important
    }

    table.dataTable tbody td {
        word-break: break-word;
        vertical-align: top !important;
    }

    .list-pnl {
        margin-left: 0px;
    }

    .page-title-wrap {
        padding-left: 0px;
        padding-top: 0px
    }

    .page-wrap {
        padding-top: 25px;
        padding-left: 0px;
        padding-right: 0px
    }

    .widget-load {
        padding: 20px;
        margin-top: 20px;
    }

    .widget-load-img {
        height: 60px;
        width: 60px;
        margin-top: 20px;
        margin-bottom: 15px
    }

    .widget-load-txt {
        font-size: 20px;
        margin-bottom: 10px
    }

    .list-tbl-div {
        margin-top: 0px;
        padding: 5px;
    }

    .page-title-tx {
        font-size: 15px;
    }

    .page-title-img {
        font-size: 20px;
    }

    .page-title-img-size {
        height: 18px;
        width: 18px;
    }

    .filter-dv {
        width: 300px;
    }

    .login-title-wrap {
        margin-top: 0px;
        padding-top: 0px !important
    }

    .login-title {
        margin-top: 5px;
        font-size: 18px !important;
        letter-spacing: 2px;
        font-weight: 500;
    }

    /* .user-top-div {
        margin-top: 3px;
        height: 28px;
        width: 28px;
    }*/

    .trtd_mobile {
        padding: 0px !important;
        margin: 0px !important;
        border: none !important;
        border-top: none !important;
    }

    .list-tr {
        text-align: left !important;
        color: #6c757d !important
    }

        .list-tr:hover {
            background-color: transparent !important
        }

    .top-menu-div {
        height: 50px !important;
        background-color: rgba(6, 100, 198, 1) !important
    }

    .menu-top-line {
        display: none
    }

    .mobile-menu-icon {
        font-size: 28px;
        margin-top: 10px !important;
    }

    .body-warp {
        padding-top: 42px !important;
    }

    .top-user-down-arrow {
        font-size: 9px;
    }

    .user-list-photo {
        height: 30px;
        width: 30px;
        border-radius: 15px;
    }

    .div-ellipsis-title {
        max-width: 300px
    }

    .local-warpdiv {
        height: 70px;
    }

    .md-box {
        padding-right: 2px;
        padding-left: 2px;
    }
}
