/*
    Spinner
*/
#loadingBar {
    position: fixed;
    height: 4px;
    width: 0%;
    bottom: 0;
    display: block;
    background-color: #ff5308;
    transition: all .3s linear;
    z-index: 2000;
}

.loader {
    pointer-events: none;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all .3s cubic-bezier(.87, -.41, .19, 1.44);
    background-color: #151b1f;
    transform: scale(2);
}

.spinner {
    display: inline-flex;
    width: 32px;
    height: 28.44px;
    background: url("../content/logo.png");
    background-size: 32px;
    margin: auto;
    transform: rotateZ(-90deg);
    animation: sk-rotateplane 2s infinite cubic-bezier(.87, -.41, .19, 1.44);
}

.loader.hidden {
    opacity: 0;
    transform: scale(6);
}

@keyframes sk-rotateplane {
    0% {
        transform: rotateZ(-90deg)
    }
    25% {
        transform: rotateZ(0)
    }
    50% {
        transform: rotateZ(90deg)
    }
    75% {
        transform: rotateZ(180deg)
    }
    100% {
        transform: rotateZ(270deg)
    }
}

