.loader {
    display: flex;
    z-index: 10000;
    height: 100vh;
    width: 100vw;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: #edeef7;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s;
    overflow: hidden;
}


.waite {
    height: 100vh;
    overflow: hidden;
}


.waite .loader {
    opacity: 1;
}


.circle {
    display: block;
    position: relative;
    z-index: 10;
    width: 220px;
    height: 220px;
    margin: auto;
    background: transparent;
    border-radius: 100%;
    animation: spiral 5s linear infinite;
}


.circle:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    z-index: -5;
    background-color: transparent;
    animation: pulse 2.5s linear infinite;
}


.circle:after {
    content: "";
    display: block;
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: transparent;
    z-index: 15;
    border-radius: 50%;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}


.dot {
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    background-color: #827dfa;
    border-radius: 50%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}


.dot:nth-of-type(1) {
    animation: 5s -1.25s orbita ease-in-out infinite;
}


.dot:nth-of-type(2) {
    animation: 5s -1.25s orbitb ease-in-out infinite;
}


.dot:nth-of-type(3) {
    animation: 5s -1.25s orbitc ease-in-out infinite;
}


.dot:nth-of-type(4) {
    animation: 5s -1.25s orbitd ease-in-out infinite;
}


.dot:nth-of-type(5) {
    animation: 5s -1.25s orbite ease-in-out infinite;
}


.dot:nth-of-type(6) {
    animation: 5s -1.25s orbitf ease-in-out infinite;
}


.dot:nth-of-type(7) {
    animation: 5s -1.25s orbitg ease-in-out infinite;
}


.dot:nth-of-type(8) {
    animation: 5s -1.25s orbith ease-in-out infinite;
}


@media (max-width: 576px) {
    .circle {
        transform: scale(0.5);
    }
}