.its-loader {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    background: #000;
    transition: .25s;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
}

.its-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.its-loader .its-loader-progress {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);

    /* -moz-animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;

    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;

    -moz-animation-name: slide;
    -webkit-animation-name: slide;
    animation-name: slide; */

    animation: animate  1.2s linear infinite;
}

@-moz-keyframes animate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

@-webkit-keyframes animate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

.its-loader .its-loader-progress::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    background: #000;
    border-radius: 50%;
    z-index: 2;
}

.its-loader .its-loader-progress::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(45deg, transparent, transparent 40%, #e5f403);
    border-radius: 50%;
    z-index: 1;
    filter: blur(30px);
}

/* .its-loader .its-loader-progress-second {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    left: 0;
    background: #000;
    transition: .55s;
    -webkit-transition: .55s; 

    -moz-animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;

    -moz-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;

    -moz-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;

    -moz-animation-name: slideSecond;
    -webkit-animation-name: slideSecond;
    animation-name: slideSecond;
} */



/* .its-loader .its-loader-digits {
    position: relative;
    transform: translate(-70%, -50%);
} */

/* @media (max-width: 400px) {
    .its-loader .its-loader-progress {
        -webkit-transition: 1.5s;
        transition: 1.5s;
    }
}
 */


/* @-moz-keyframes slide {
    0% {
        left: 0%;
        right: 0%;
    }

    49% {
        left: 100%;
        right: 0%;
    }

    50% {
        left: 0%;
        right: 100%;
    }

    75% {
        left: 0%;
        right: 50%;
    }

    100% {
        left: 100%;
        right: 0%;
    }
}

@-webkit-keyframes slide { 
    0% {
        left: 0%;
        right: 0%;
    }

    49% {
        left: 100%;
        right: 0%;
    }

    50% {
        left: 0%;
        right: 100%;
    }

    75% {
        left: 0%;
        right: 50%;
    }

    100% {
        left: 100%;
        right: 0%;
    }
}

@keyframes slide { 
    0% {
        left: 0%;
    }

    33% {
        left: 50%;
    }

    66% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes slideSecond { 
    0% {
        right: 100%;
    }

    33% {
        right: 100%;
    }

    66% {
        right: 50%;
    }

    100% {
        right: 0%;
    } */