/* (-------------------========-------------------) */

/* Element CTTM - aktualizacja 05.01.2020 */
/* Kaskadowy arkusz stylów - LOADER.CSS */
/* -- */
/* COPYRIGHT CTTM © Wszelkie prawa zastrzeżone. */

/* (-------------------========-------------------) */

body.notloaded{
    overflow: hidden;
}

@keyframes load {
    0%     { transform: rotate(0deg); }
    100.0%  { transform: rotate(-360deg); }
}

.loader{
    transition: background 0.5s ease-in;
    position: fixed;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    background: #0E0E0F;
}

.loader-img{
    width: 3rem;
    height: 3rem;
    animation-name: load;
    animation-duration: 0.8s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;    
    animation-play-state: running;
    animation-fill-mode: forwards;
}