#blazor-error-ui {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.75); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    text-align: center;
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.blazor-error-ui-container {
    font-size: 1.2em;
    width: 615px;
    padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #1a1a1a;
    background-color: #fff;
    border-radius: 4px;
}

#blazor-error-ui a {
    color: #186F93;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 35%;
    top: 35%;
    color: #959595 !important;
}


.centered {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-card {
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    padding: 24px;
}

.dashboard-card-green {
    background-color: #003824;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
}

.dashboard-card-lightgreen {
    background-color: #DBF0B3;
    border-radius: 8px;
    padding: 24px;
}

.dashboard-card-lightgreen-lighten {
    background-color: #F3FFDB;
    border-radius: 8px;
    padding: 24px;
}

.bottom-text-style {
    text-align: center;
    max-width: 108px;
}

.line-vertical, .line-horizontal {
    position: relative;
}

.line-horizontal {
    height: 1px; /* line width */
    max-width: 100%; /* line length */
    margin-left: 20px;
    margin-right: 42px;
    background-color: #008038
}
/* vertical arrows */
.line-vertical {
    width: 1px; /* line-width */
    height: 50px; /* line length */
    margin-left: 20px;
    margin-top: 35px;
    background-image: linear-gradient(#008038 50%, rgba(255,255,255,0) 0%);
    background-position: right;
    background-size: 5px 5px;
    background-repeat: repeat-y;
    position: absolute;
}

.arrow-up:after,
.arrow-down:before,
.arrow-left:after,
.arrow-right:before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
}

.arrow-right:before {
    right: -15px;
    border-left: 15px solid #008038;
}
/* horizontal arrows */
.arrow-left:after,
.arrow-right:before {
    top: -4px;
}

.no-headers-grid .k-grid-header {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Float action button*/
.fab {
    position: fixed;
    width: 100px;
    height: 43pt;
    bottom: 0;
    right: 0;
    margin: 0 16px;
    z-index: 10000;
}