.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: rgba(23, 22, 22, 0.226);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s linear;
    opacity: 1;
}

.preloader.loaded{
    opacity: 0;
    pointer-events: none;
}

.loading-request {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: rgba(23, 22, 22, 0.226);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.3s linear;
    opacity: 1;
}


.loading-request.loaded{
    opacity: 0;
    pointer-events: none;
}
