﻿
/*display-4 kwHeader*/

.k-content {
    /*background-color: black;*/
}

#loading-screen {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; 
    opacity: 1;
    transition: 3s opacity;
    background-color: white;
}

#loading-screen.fade-out {
    opacity: 0;
}

#loading-text { 
    color: rgb(0, 0, 0);
    position: absolute;
    text-align: center;
    left: 50%; 
    top: calc(50% );
    transform: translate(-50%, -50%);
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #ff0000;
    animation: spin 1s linear infinite;
    z-index: 11;
    
}


#loader:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #ffffff;
    animation: spin-reverse .5s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #0000ff;
    animation: spin 1s linear infinite;
}



@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}