﻿/**
 * ==============================================
 * 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: 150px;
    width: 150px;
    top: 50%;
    margin-left: -75px;
    left: 50%;
    margin-top: -75px;
    padding: 10px;
    border-radius: 50%;
    background-color: #232323;
    overflow: hidden;
    z-index: 151;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .img-container img {
        position: absolute;
        width: 150px;
        z-index: 151;
    }

    .img-container::before {
        content: '';
        position: absolute;
        width: 50px;
        height: 300px;
        background: linear-gradient(#fdc102, #f96f0a);
        animation: animateloader 1.5s linear infinite;
    }

    .img-container::after {
        content: '';
        position: absolute;
        inset: 5px;
        background: #333639;
        border-radius: 50%;
    }

@keyframes animateloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
