﻿.loading {
    width: 100%;
    height: 100%;
    background: #add2edbf;
    opacity: 0.7;
    position: absolute;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loading > .spinner-container {
        position: absolute;
        width: 220px;
        height: 300px;
    }

.spinner-container > .spinner {
    position: absolute;
    top: 30px;
    left: -110px;
    width: 100%;
    height: 100%;
    background: url('../../../Images/Logo/Logo_Mavi.png') no-repeat center center;
    background-size: contain;
    animation: spinner-animation 4s infinite linear;
}

@keyframes spinner-animation {
    0%, 100% {
        clip-path: circle(0% at center);
        filter: brightness(0);
    }

    50% {
        clip-path: circle(50% at center);
        filter: brightness(1);
    }
    20% {
        clip-path: circle(100% at center);
        filter: brightness(2);
    }
}

.loading > .loading-text {
    position: absolute;
    top: 80%;
    color: #ff8c00;
    font-size: 12px;
    text-align: center;
    width: 100px;
    margin-top: 10px;
}
