.number-percent {
    position: fixed;
    z-index: 98;
    font-size: 50vw;
    width: 100vw;
    height: 100vh;
    color: rgba(240, 240, 240, 0.5);
    user-select: none;
    font-style: italic;
    font-family: Dolce Vita Light;
    transform: scaleY(1.2) translateX(-5vw) translateY(2vw);
    display: flex;
    justify-content: center;
    align-items: center;
}

.white-background {
    background-color: rgb(255, 255, 255);
    position: absolute;
    z-index: 97;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    animation: fade-in 1s;
    animation-timing-function: ease-out;
}

.loading {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;

    /* &::after {
        content: "";
        background-color: rgb(255, 255, 255);
        z-index: 98;
        position: absolute;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        animation: fade-in 1s;
        animation-timing-function: ease-out;

    } */
}

.loading div {
    position: fixed;
    z-index: 99;
    height: 90px;
    display: flex;
    transform: rotate(180deg);


}

.loading span {
    width: 36px;
    margin: 0 2px;
    border-radius: 4px;
    animation: loading 2s infinite;
}

@keyframes loading {

    0%,
    100% {
        height: 10px;
        background: #241917;
    }

    25% {
        height: 90px;
        background: #DE1E64;
    }

    50% {
        height: 40px;
        background: #DE1E64;
    }

    75% {
        height: 90px;
        background: #241917;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100;
    }
}

.loading span:nth-child(1) {
    animation-delay: .2s;
}

.loading span:nth-child(2) {
    animation-delay: .4s;
}

.loading span:nth-child(3) {
    animation-delay: .6s;
}

.loading span:nth-child(4) {
    animation-delay: .8s;
}

.loading span:nth-child(5) {
    animation-delay: 1s;
}