.loader-order {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: fixed;
    z-index: 100000000000000;
}


.loader-container {
    background-color: rgba(160, 177, 248, 0.47);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000000000;
}
.loader-order::after,
.loader-order::before {
    content: '';
    width: 48px;
    height: 48px;
    border: 4px solid #f6e1d1;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    animation: rotation 2s ease-in-out infinite;
}
.loader-order::after {
    border-color: #f5a803;
    animation-delay: 1s;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
