﻿    
:root{
--dxbrv-border-color: var( --bs-border-color-translucent ) !important;

}
.dxbl-grid {
    --dxbl-grid-toolbar-container-padding-y: 5px !important;
    --dxbl-grid-toolbar-container-padding-x: 5px !important;
    --dxbl-grid-toolbar-container-min-height:2rem !important;
}

.dxbl-toolbar-layout-block-group:not(.dxbl-btn-group-first) .dxbl-toolbar-item {
    min-width: 120px !important;
}
.dxbl-btn-toolbar{
    height:100%;
}
.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    height: 100vh;
    font-family: "Segoe UI",Roboto,"Helvetica Neue","-apple-system",BlinkMacSystemFont,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: .88rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

    .splash-screen .spinner-border {
        border: .2em solid;
        border-color: #5f368d #bfbfbf #bfbfbf;
        width: 120px;
        height: 120px;
    }

.splash-screen-caption {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.splash-screen-text {
    color: #a1a1a1;
    margin-top: .5rem;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    display: none;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border-radius: 50%;
    background: linear-gradient(0deg,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%, linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
    background-repeat: no-repeat;
    animation: l23 1s infinite steps(12);
}

    .loader::before,
    .loader::after {
        content: "";
        grid-area: 1/1;
        border-radius: 50%;
        background: inherit;
        opacity: 0.915;
        transform: rotate(30deg);
    }

    .loader::after {
        opacity: 0.83;
        transform: rotate(60deg);
    }

.grid-summary {
    display: flex;
    justify-content: flex-end; /* Aligns the summary to the right */
    align-items: center;
    padding: 10px;
    border-top: 1px solid #ccc; /* Adds a separator line */
    background-color: #f9f9f9; /* Light background for distinction */
    position: sticky; /* Keeps the div fixed at the bottom of the grid */
    bottom: 0;
    z-index: 1;
}
