﻿header {
}

footer {
    height: 50px;
    position: absolute;
    background-color: #292b2c !important;
    width: 100%;
}

.max-height-2 {
    max-height: 2em;
}

#userMenuId img {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    margin-right: 10px;
}

.karticaLoader {
    box-shadow: rgba(19, 0, 66, 0.25) 0px 0px 1px 0px, rgba(19, 0, 66, 0.31) 0px 2px 8px -2px;
    border-radius: 15px;
    padding: 15px;
    background-color: #FFFFFF;
    margin-top: 0px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-spinner {
    font-size: 50px;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: absolute;
    top: 50%;
}

.spinner {
    width: 65px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#198754 94%,rgba(0, 0, 0, 0.0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0.0) 30%,#198754);
    -webkit-mask: radial-gradient(farthest-side,rgba(0, 0, 0, 0.0) calc(100% - 8px),rgba(0, 0, 0) 0);
    animation: s1 1s infinite linear;
}

@keyframes s1 {
    100% {
        transform: rotate(1turn)
    }
}

.csspinner {
    position: relative;
}

    .csspinner:before {
        content: "";
        z-index: 1;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .csspinner:after {
        z-index: 2;
        content: "";
        position: absolute;
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
    }
