﻿.loader {
    text-align: center;
}

.loader.absolute16{
    position: absolute;
    top: -8px;
    left: 25px;
    right: 0;
    bottom: 0;
}

.loaderOverlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: white;
    z-index: 9998 !important;
    opacity: 0.5;
    top: 0px;
    left: 0px;
}

.loaderInnerCentered {
    position: fixed;
    width: 300px;
    margin: -150px 0 0 -150px;
    top: 50%;
    left: 50%;
    z-index: 9999 !important;
    opacity: 1;
    text-align:center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring.row16 {
    width: 30px;
    height: 30px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #3498db;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #3498db transparent transparent transparent;
}

.lds-ring.row16 div {
    width: 17px;
    height: 17px;
    border: 3px solid #3498db;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #3498db transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.filled-error-icon {
    font-variation-settings: 'FILL' 1;
    font-size: 60px;
}