﻿/**
 * ==============================================
 * LOADER
 * ==============================================
 */
.pageLoader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(69, 71, 73, 1);
    z-index: 9999999999;
}

.img-container {
    position: absolute;
    height: 106px;
    width: 220px;
    top: 50%;
    margin-left: -110px;
    left: 50%;
    margin-top: -53px;
    padding: 10px;
    border-radius: 15px;
    background-color: rgba(37, 37, 41, 1);
    overflow: hidden;
    z-index: 151;
}

    .img-container img {
        position: absolute;
        clip: rect(0px, 200px, 86px, 2px);
        height: 86px;
        width: 200px;
        z-index: 151;
    }

    .img-container::before {
        content: '';
        position: absolute;
        width: 70px;
        height: 300px;
        left: 75px;
        top: -100px;
        background: linear-gradient(#ffcc2a, #ea7f31);
        animation: animateloader 1.5s linear infinite;
    }

    .img-container::after {
        content: '';
        position: absolute;
        inset: 5px;
        background: #333639;
        border-radius: 15px;
    }

@keyframes animateloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
