#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* background: rgba(255, 255, 255, 0.8); */
    background: rgb(255 255 255 / 90%);
    z-index: 1100;
}

.wrapper {
    width: 200px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.circle,
.shadow {
    border-radius: 50%;
    transform-origin: 50%;
    left: 15%;
    position: absolute;
    width: 20px;
}

.circle {
    height: 20px;
    background-color: #fd9c46;
    animation: 0.5s infinite alternate circle;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0;
    }
}

.circle:nth-child(2),
.shadow:nth-child(4) {
    left: 45%;
    animation-delay: 0.2s;
}

.circle:nth-child(3),
.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: 0.3s;
}

.shadow {
    height: 4px;
    background-color: rgba(0, 0, 0, 0.5);
    top: 62px;
    z-index: -1;
    filter: blur(1px);
    animation: 0.5s infinite alternate shadow;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: 0.7;
    }

    100% {
        transform: scaleX(0.2);
        opacity: 0.4;
    }
}

.wrapper span {
    position: absolute;
    top: 75px;
    font-family: Lato;
    font-size: 20px;
    letter-spacing: 12px;
    color: #fd9c46;
    left: 15%;
}


.hide-video,
.modal-close,
.wrapper {
    position: absolute;
}