#loader {
    color: #fff;
    position: fixed;
    box-sizing: border-box;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: 999999;
}

.loader:after, .loader:before {
    box-sizing: border-box;
    display: none;
   
}

.loader.is-active {
    background-color: rgba(0,0,0,.85);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

    .loader.is-active:after, .loader.is-active:before {
        display: block;
    }

@keyframes rotation {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

@keyframes blink {
    0% {
        opacity: .5
    }

    to {
        opacity: 1
    }
}

.loader-default[data-text]:before {
    top: calc(50% - 63px) ;
    
}

.loader-default:after {
    content: "";
    position: fixed;
    width: 50px;
    height: 50px;
    border: 8px solid #fcc302;
    border-left-color: #ABB2B9;
    border-radius: 50%;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    animation: rotation 1s linear infinite;
    
}

.loader-default[data-half]:after {
    border-right-color: transparent
}

.loader-default[data-inverse]:after {
    animation-direction: reverse
}


