.spinner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #23282e;
    z-index: 2222222222222222222;
}

.spinner .cirle {
    width: 65px;
    height: 65px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    } 
}

@keyframes hide{
    from{
        opacity: 1;
    }to{
        opacity: 0;
    }
}

.hide-preload{
    animation-name: hide;
    animation-duration: 0.5s;
}