/* loader */

.preloader_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8vmin;
    height: 8vmin;
    max-width: 60px;
    max-height: 60px;
}

.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}

.lds-dual-ring {
    display: inline-block;
    width: 96px;
    height: 96px;
}

.lds-dual-ring:after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: blue transparent blue transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader {
    background-color: rgb(19, 35, 73);
    position: fixed;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.preloader_box {
    position: relative;
}

.hidden {
    overflow: hidden;
}

.contenedor {
    scrollbar-gutter: stable;
    scrollbar-width: none;
    overflow-y: scroll;
    overflow-x: hidden;
}

.logo {
    transition: opacity 0.3s ease-in-out;
}
