/* From Uiverse.io by terenceodonoghue */

.transparentDivContainer {

    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    background-color: #3636367c;
    z-index: 10000000000000000;

}

/* From Uiverse.io by cosnametv */
.loader {
    --color: var(--toneBlue);
    --size: 70px;
    width: var(--size);
    height: var(--size);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.loader span {
    width: 100%;
    height: 100%;
    background-color: var(--color);
    animation: keyframes-blink 0.6s alternate infinite linear;
}

.loader span:nth-child(1) {
    animation-delay: 0ms;
}

.loader span:nth-child(2) {
    animation-delay: 200ms;
}

.loader span:nth-child(3) {
    animation-delay: 300ms;
}

.loader span:nth-child(4) {
    animation-delay: 400ms;
}

.loader span:nth-child(5) {
    animation-delay: 500ms;
}

.loader span:nth-child(6) {
    animation-delay: 600ms;
}

@keyframes keyframes-blink {
    0% {
        opacity: 0.3;
        transform: scale(0.5) rotate(5deg);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@media only screen and (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    /* Deshabilitamos hover expandible en móviles */
    .sidenav:hover {
        width: 250px;
    }

    .contentGenerally {
        min-width: 100% !important;
        max-width: 100% !important;
        margin-left: 0px !important;
    }

    .contentBodyPage {

        padding: 2px !important;
    }

    #inputSearch {

        min-width: 100px !important;
    }

    .contentNotifications {

        position: absolute;
        left: 15px;
    }

    .contentImagePage {

        min-width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;

    }

    .textPageTitle {
        margin-left: 60px !important;
    }

    .imgSearchPage {

        margin-left: auto;
        width: 32px;
        height: 32px;
        background-image: url(../../img/iconos/search.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 25px 25px;
    }

    .rowHeadersPage {
        min-width: 100%;
        max-width: 100%;
        padding: 2px !important;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: flex-start;
        gap: 20px;
        margin-bottom: 10px;
    }

    .contentFunctionPage {
        min-width: 100%;
        max-width: 100%;
        margin-left: 0;
        justify-content: space-around;
        align-items: space-around;
        align-content: space-around;
        gap: 10px;
    }

    .btnFunctionPage {

        margin-left: 0 !important;
    }

}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    /* Tus estilos para tabletas */
}

@media only screen and (min-width: 769px) {
    /* Tus estilos para pantallas grandes */
}