/* /Components/CBREmptyPanel.razor.rz.scp.css */
.empty-panel[b-anp8bgqlyd] {
    min-height: 300px;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.empty-icon[b-anp8bgqlyd] {
    opacity: 0.6;
}

.empty-title[b-anp8bgqlyd] {
    font-weight: 600;
    color: #333;
}

.empty-message[b-anp8bgqlyd] {
    font-size: 0.95rem;
    color: #6c757d;
}

.empty-panel .btn[b-anp8bgqlyd] {
    border-radius: 0.75rem;
    font-weight: 500;
}
/* /Components/CBRFormComponent.razor.rz.scp.css */
.fullscreen-panel[b-muojm7da7t] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background-color: white;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}
.fullscreen-panel.opening[b-muojm7da7t] {
    height: 100vh;
}
.fullscreen-panel.open[b-muojm7da7t] {
    height: 100vh;
}
.fullscreen-panel.closing[b-muojm7da7t] {
    height: 0;
}
.fullscreen-panel.dock-left[b-muojm7da7t] {
    width: 50%;
    height: 100vh;
    left: 0;
    right: auto;
}
.fullscreen-panel.dock-right[b-muojm7da7t] {
    width: 50%;
    height: 100vh;
    left: auto;
    right: 0;
}
.cbr-form-header[b-muojm7da7t] {
    flex: 0 0 auto;
}
.cbr-form-body[b-muojm7da7t] {
    flex: 1 1 auto;
    overflow-y: auto;
}

.cbr-form-footer[b-muojm7da7t] {
    flex: 0 0 auto;
}
/* /Components/CBRPage.razor.rz.scp.css */
.cbr-container[b-f6bx8zdy48]
{
    columns: 3;
    column-gap: 1em;
}
/* /Components/CBRWidget.razor.rz.scp.css */
.cbr-widget[b-ws93qfpeou] {
    width: 100%; /*Makes the widget resize automatically*/
    background-color: #ffffff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .25);
}
/* /Components/CBRWindow/CBRFormWindow.razor.rz.scp.css */
.cbr-window-container[b-m5g7dsx54y] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cbr-window-body[b-m5g7dsx54y] {
    flex: 1 1 auto;
    overflow-y: auto;
}
/* /Shared/CBRMainLayout.razor.rz.scp.css */

.cbr-page[b-28zem3mij7] {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    max-height: fit-content;

    background-image: url('media/bg_img_25_09_18_7.png');/* 7 and 3 */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;

    /*background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);*/
    /*background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);*/
    /*background-image: linear-gradient(to bottom left, #c8ddfc 0%, #f0f3f8 40%, #f0f3f8 100%);*/
    /*Ali Drive*/
    /*background-image: linear-gradient(to top,#fff 1%,rgba(255,255,255,0) 17%),linear-gradient(to right,rgba(125,113,255,.18) -2%,rgba(148,174,255,.18) 30%,rgba(143,255,253,.18) 101%);*/
}

.cbr-top-row[b-28zem3mij7] {
    /*background-color: #f7f7f7;*/
    /*border-bottom: 1px solid #d6d5d5;*/
    justify-content: flex-end;
    height: 4rem;
    display: flex;
    align-items: center;
}

    .cbr-top-row[b-28zem3mij7]  a, .cbr-top-row[b-28zem3mij7]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .cbr-top-row[b-28zem3mij7]  a:hover, .cbr-top-row[b-28zem3mij7]  .btn-link:hover {
            text-decoration: underline;
        }

        .cbr-top-row[b-28zem3mij7]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

.cbr-main[b-28zem3mij7] {
    flex: 1;
}

.cbr-content[b-28zem3mij7] {
    flex: 1;
    transition: margin-left 0.3s ease;
    margin-left: 1rem;
}

.cbr-sidebar[b-28zem3mij7] {
    transition: width 0.5s ease, height 0.5s ease, transform 0.5s ease; /* animate both */
}

    /* Start smaller */
    .cbr-sidebar.collapsed[b-28zem3mij7] {
        width: 56px;
        height: 58px;
        padding: 0 !important;
        overflow-y: hidden;
        overflow-x: hidden;

        transform: translateX(-40%); /* slide off screen */
    }
    /* Expanded state */
    .cbr-sidebar.expanded[b-28zem3mij7] {
        width: 200px;
        height: calc(100vh - 5rem);
        overflow-y: clip;
        overflow-x: hidden;
    }
        .cbr-sidebar .nav-link:hover[b-28zem3mij7] {
        background: #CFE4FA !important;
        color: #0F548C !important;
    }

    /* When collapsed */
    .cbr-sidebar.collapsed ~ .cbr-content[b-28zem3mij7] {
        margin-left: -10px;
    }

@media (max-width: 640.98px) {
    .cbr-top-row:not(.auth)[b-28zem3mij7] {
        display: none;
    }

    .cbr-top-row.auth[b-28zem3mij7] {
        justify-content: space-between;
    }

    .cbr-top-row[b-28zem3mij7]  a, .cbr-top-row[b-28zem3mij7]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .cbr-top-row[b-28zem3mij7] {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 99;
    }

        .cbr-top-row.auth[b-28zem3mij7]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }



    .cbr-sidebar[b-28zem3mij7] {
        /*width: 200px;*/
        /*height: calc(100vh - 5rem);*/
        position: sticky;
        top: 0;
    }
}


/*-------------------------------------------------Button For The Animated Collapseable Sidebar-------------------------------------------------*/

/* Toggle button */
.toggle-btn[b-28zem3mij7] {
    border: none;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .toggle-btn:hover[b-28zem3mij7] {
        background: #f2f3f5;
        transform: scale(1.05);
    }

/* Icon animation */
.icon-anim[b-28zem3mij7] {
    font-size: 1.2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* On state change, give a little pop animation */
.toggle-btn:active .icon-anim[b-28zem3mij7] {
    transform: scale(0.8) rotate(180deg);
    opacity: 0.6;
}
/*-------------------------------------------------END-------------------------------------------------*/
/* /Shared/CBRNavMenu.razor.rz.scp.css */

.cbr-nav-item[b-heg2ewe7ob] {
    font-size: 0.8rem;
    padding-bottom: 0.5rem;
}

    .cbr-nav-item:first-of-type[b-heg2ewe7ob] {
        padding-top: 1rem;
    }

    .cbr-nav-item:last-of-type[b-heg2ewe7ob] {
        padding-bottom: 1rem;
    }

    .cbr-nav-item[b-heg2ewe7ob]  a {
        color: #212529;
        height: 2.8rem !important;
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        padding-right: .5rem !important;
        padding-left: .5rem !important;
    }

        .cbr-nav-item[b-heg2ewe7ob]  a.active {
            background-color: #CFE4FA !important;
            color: #000 !important;
        }

        .cbr-nav-item[b-heg2ewe7ob]  a:hover {
            background: #CFE4FA !important;
            color: #0F548C !important;
        }

@media (min-width: 641px) {

    .collapse[b-heg2ewe7ob] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .cbr-nav-scrollable[b-heg2ewe7ob] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 9rem);
        overflow-y: auto;
    }
}
/* /Shared/GuestLayout.razor.rz.scp.css */
.page[b-vd2j4jju23] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vd2j4jju23] {
    flex: 1;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-csxlhsbizz] {
    position: relative;
    display: flex;
    flex-direction: column;
    /*
    background-image: url('media/bg-pink.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    */

    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);

    /*background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);*/
    /*background-image: linear-gradient(to bottom left, #c8ddfc 0%, #f0f3f8 40%, #f0f3f8 100%);*/
    /*Ali Drive*/
    /*background-image: linear-gradient(to top,#fff 1%,rgba(255,255,255,0) 17%),linear-gradient(to right,rgba(125,113,255,.18) -2%,rgba(148,174,255,.18) 30%,rgba(143,255,253,.18) 101%);*/
}

.fullscreen-backdrop[b-csxlhsbizz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blue-gradient[b-csxlhsbizz] {
    background-color: #f2f3f5;
    /*background-image: linear-gradient(to bottom left, #dbe9fe 0%, #f2f3f5 40%, #f2f3f5 100%);*/
    -webkit-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}

.green-gradient[b-csxlhsbizz] {
    background-color: #f0f3f8;
    background-image: linear-gradient(to bottom left, #e2f5df 0%, #f0f3f8 40%, #f0f3f8 100%);
    -webkit-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}

main[b-csxlhsbizz] {
    flex: 1;
}

.sidebar[b-csxlhsbizz] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-csxlhsbizz] {
    /*background-color: #f7f7f7;*/
    /*border-bottom: 1px solid #d6d5d5;*/
    justify-content: flex-end;
    height: 3.2rem;
    display: flex;
    align-items: center;
    z-index: 1;
}

    .top-row[b-csxlhsbizz]  a, .top-row[b-csxlhsbizz]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-csxlhsbizz]  a:hover, .top-row[b-csxlhsbizz]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-csxlhsbizz]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-csxlhsbizz] {
        display: none;
    }

    .top-row.auth[b-csxlhsbizz] {
        justify-content: space-between;
    }

    .top-row[b-csxlhsbizz]  a, .top-row[b-csxlhsbizz]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-csxlhsbizz] {
        flex-direction: row;
    }

    .sidebar[b-csxlhsbizz] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-csxlhsbizz] {
        position: sticky;
        top: 0;
    }

    .top-row.auth[b-csxlhsbizz]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-csxlhsbizz], article[b-csxlhsbizz] {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-2k2n0c6w8n] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-2k2n0c6w8n] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-2k2n0c6w8n] {
    font-size: 1rem;
}

.oi[b-2k2n0c6w8n] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-2k2n0c6w8n] {
    font-size: 0.8rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-2k2n0c6w8n] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-2k2n0c6w8n] {
        padding-bottom: 1rem;
    }

    .nav-item[b-2k2n0c6w8n]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
    }

.nav-item[b-2k2n0c6w8n]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-2k2n0c6w8n]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-2k2n0c6w8n] {
        display: none;
    }

    .collapse[b-2k2n0c6w8n] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-2k2n0c6w8n] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
