html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
   /*  flex-shrink: 0;
    background-color: currentColor;
     -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask: url('../images/cfgLogo.png');
    background-image: url('../images/cfgLogo.png');
    mask: url('../images/cfgLogo.png');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;*/
    float: left;
    width: 200px;
    height: 50px;
    background: white url('../images/cfgLogo.png') no-repeat 0 0;
    background-size: contain;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

#loadingBackground, img {
    max-width: 100%;
    max-height: 100%;
    /*height:30px;*/
}

.card-header{
    display:none;
}
.xaf-static-text{
    display:none;
}
.card-header button{
    display:none;
}
.middle-text-separator{
    display:none;
}
.dxbs-page-size-selector {
    float: left;
    margin: 0 15px;
}
.dx-page-size-selector {
    margin-left: 20px;
}

.card-header{
    display:inline !important;
}

.xaf-static-text {
    display: inline !important;
}

table {
    white-space: nowrap;
}

.card-header {
    font-weight: bold;
}

.dxbs-fl .dxbs-fl-cpt {
    font-weight: 500;
}

.xaf-alert-header {
    display:none;
}

.dxbs-grid-pager, .dxbs-gridview .dxbs-grid-pager{
    display: inline-flex;
}

.navigate-back-icon-container {
    margin-right: 1rem;
}

.set-height {
    height: 250px;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #337ab7; /* Primary Color */
    border-radius: 50%;
    width: 220px;
    height: 220px;
    padding: 10px;
    animation: spinloader 2s linear infinite;
}

    .loader .loader_content {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        height: 100%;
        width: 100%;
        background-color: #2956BD;
        color: #fff;
        padding: 20px;
        animation: spinlogo 2s linear infinite;
        font-size: 2.5em;
    }

        .loader .loader_content h2 {
            font-size: 1.5em;
            font-weight: 700;
        }

        @keyframes spinloader {
            0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinlogo {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
