#app-loader {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 999999;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    .spinner {
        opacity: 1;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        color: #0b2265;
        transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    }

    .spinner-dot-holder {
        box-sizing: border-box;
        width: 1em;
        height: 1em;
        font-size: 64px;
        display: inline-block;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: 50% 50%;
        line-height: 1;
    }


    .spinner-dot {
        position: relative;
        display: inline-block;
        font-size: 64px;
        width: 1em;
        height: 1em;

        transform: rotate(45deg);
        animation-name: rotate;
        animation-duration: 1.2s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    .spinner-dot-item {
        position: absolute;
        display: block;
        width: calc((64px - 8px) / 2);
        height: calc((64px - 8px) / 2);
        background: currentColor;
        border-radius: 100%;
        transform: scale(0.75);
        transform-origin: 50% 50%;
        opacity: 0.3;
        animation-name: spinMove;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-direction: alternate;
    }

    .spinner-dot-item:nth-child(1) {
        top: 0;
        inset-inline-start: 0;
        animation-delay: 0s;
    }

    .spinner-dot-item:nth-child(2) {
        top: 0;
        inset-inline-end: 0;
        animation-delay: 0.4s;
    }

    .spinner-dot-item:nth-child(3) {
        inset-inline-end: 0;
        bottom: 0;
        animation-delay: 0.8s;
    }

    .spinner-dot-item:nth-child(4) {
        bottom: 0;
        inset-inline-start: 0;
        animation-delay: 1.2s;
    }
}

@keyframes rotate {
    100% {
        transform: rotate(405deg);
    }
}

@keyframes spinMove {
    100% {
        opacity: 1;
    }
}

