#app {
    transform: none !important;
    zoom: 80% !important;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/*Page Loading*/
.app-load {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

    .app-load > div {
        background-color: #1BC5BD;
        height: 100%;
        width: 6px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .app-load .rect1 {
        -webkit-animation-delay: -1.2s;
        animation-delay: -1.2s;
    }

    .app-load .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .app-load .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .app-load .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .app-load .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1.0);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/*Initial Loading Progress*/
.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1BC5BD;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}


/*
    Custom Style: form
*/
form .validation-message {
    color: #F64E60;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0.25rem;
}


/*
    Custom Style: DATATABLES
*/
table tbody tr {
    border-top: 1px solid #EBEDF3;
}


/*
    Custom Style: Typeahead
*/
.blazored-typeahead, .blazored-typeahead:hover, .blazored-typeahead:focus {
    background-color: #F3F6F9;
    border-color: #F3F6F9;
    color: #3F4254;
}

.blazored-typeahead__active-item, .blazored-typeahead__result:hover, .blazored-typeahead__result:focus {
    background-color: #F3F6F9;
    border-top: 1px solid #F3F6F9;
    border-bottom: 1px solid #F3F6F9;
    color: #3F4254;
}


/*
    Custom Style: Disabled button cursor
*/
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}


/*
    Datetime control style
*/
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.8;
    filter: invert(0.5);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1
}


/*
    Select And MultiSelect
*/

.form-control-select-login {
    font-size: 1.2rem;
    line-height: 2.6;
}

.form-control-xl {
    line-height: 2.2;
}

.rz-dropdown {
    font-size: 1.2rem;
    padding-top: 0.8rem;
    padding-bottom: 0.7rem;
    min-height: 45px;
}

.rz-dropdown-lg {
    font-size: 1.0rem;
    padding-top: 0.7rem;
    padding-bottom: 0.6rem;
    min-height: 40px;
}

.rz-multiselect-panel.rz-popup ul > li > span {
    font-size: 1rem;
}

.rz-dropdown-chips .rz-chip .rz-chip-text {
    font-size: 1.1rem;
}


/*
    Select And MultiSelect
*/
.modal-dialog.modal-85 {
    max-width: 85%;
}


/*
    Collapse
*/
a[aria-expanded=false] .fa-chevron-up, a[aria-expanded=false] .fa-eye-slash {
    display: none;
}

a[aria-expanded=true] .fa-chevron-down, a[aria-expanded=true] .fa-eye {
    display: none;
}


/*
    Pulse
*/
.pulse {
    --pulse-color: currentColor;
    animation: pulse-glow 3s infinite;
}

.pulse:hover {
    --pulse-color: currentColor;
}

.pulse.pulse-primary {
    --pulse-color: rgba(27, 197, 189, 0.75); }
.pulse.pulse-secondary {
    --pulse-color: rgba(228, 230, 239, 0.75); }
.pulse.pulse-success {
    --pulse-color: rgba(54, 153, 255, 0.75); }
.pulse.pulse-info {
    --pulse-color: rgba(105, 147, 255, 0.75); }
.pulse.pulse-warning {
    --pulse-color: rgba(255, 168, 0, 0.75); }
.pulse.pulse-danger {
    --pulse-color: rgba(246, 78, 96, 0.75); }
.pulse.pulse-light {
    --pulse-color: rgba(243, 246, 249, 0.75); }
.pulse.pulse-dark {
    --pulse-color: rgba(24, 28, 50, 0.75); }
.pulse.pulse-white {
    --pulse-color: rgba(255, 255, 255, 0.75); }

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px 5px var(--pulse-color);
    }
    70% {
        box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 20px 5px var(--pulse-color);
    }
}