﻿@keyframes spinner {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.spinner > div > div {
    transform-origin: 100px 100px;
    animation: spinner 3.0303030303030303s linear infinite;
    opacity: 0.8
}

    .spinner > div > div > div {
        position: absolute;
        left: 60px;
        top: 60px;
        width: 40px;
        height: 40px;
        border-radius: 40px 0 0 0;
        transform-origin: 100px 100px
    }

.spinner > div div:nth-child(1) {
    animation-duration: 0.7575757575757576s
}

    .spinner > div div:nth-child(1) > div {
        background: #85c0ff;
        transform: rotate(0deg);
    }

.spinner > div div:nth-child(2) {
    animation-duration: 1.0101010101010102s
}

    .spinner > div div:nth-child(2) > div {
        background: #4a93cb;
        transform: rotate(0deg);
    }

.spinner > div div:nth-child(3) {
    animation-duration: 1.5151515151515151s
}

    .spinner > div div:nth-child(3) > div {
        background: #1a59a6;
        transform: rotate(0deg);
    }

.spinner > div div:nth-child(4) {
    animation-duration: 3.0303030303030303s
}

    .spinner > div div:nth-child(4) > div {
        background: #152051;
        transform: rotate(0deg);
    }

.loading-spinner {
    overflow: hidden;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    margin: 0;
    display: none;
}

.spinner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-right: 240px;
    padding-top: 360px;
}

    .spinner div {
        box-sizing: content-box;
    }

.loader-container {
    display: flex;
    background-color: rgb(255, 255, 255, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #062349;
    animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0% )
    }

    12.5% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0% )
    }

    25% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100% )
    }

    50% {
        clip-path: polygon(50% 50%,0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% )
    }

    62.5% {
        clip-path: polygon(50% 50%,100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100% )
    }

    75% {
        clip-path: polygon(50% 50%,100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100% )
    }

    100% {
        clip-path: polygon(50% 50%,50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100% )
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}

@keyframes l3 {
    to {
        transform: rotate(1turn)
    }
}