.container-loader{
    display: none;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5000;
    background-color: rgb(31 50 88 / 81%);
}

.loader{
    width: 100px;
    height: 100px;
    box-sizing: content-box !important;
    border: solid 5px #064555;
    border-top: solid 5px #7cd6ec;
    border-radius: 50%;
    animation: loader 0.8s linear infinite;
}

.message-loader{
    position: absolute;
    font-size: 12pt !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: normal !important;
    color: #7cd6ec;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: messageLoader 1s alternate infinite ease-in-out;
}

/* .loader-hide{
    clip-path: circle(0% at 100% 0);
} */

@keyframes loader{
    0% {
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes messageLoader{
    0%{
        opacity: .2;
    }
    100%{
        opacity: 1;
    }
}

.orientation-warning {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    z-index: 9999;
    background-color: rgb(252 252 252 / 100%);
}

.orientation-warning .orientation-warning-content {
    color: #000;
    font-size: 24px;
    text-align: center;
}

.orientation-warning .orientation-warning-content p{
    margin-bottom: 0px;
}

/* Estilo para orientación vertical */
@media screen and (orientation: portrait) {
    body {
        overflow: auto;
    }

    .orientation-warning {
        /* Estilos para orientación vertical */
        display: none;
    }
}

/* Estilo para orientación horizontal */
@media screen and (orientation: landscape) {
    body {
        overflow: hidden;
    }

    .orientation-warning {
        /* Estilos para orientación horizontal */
        display: flex;
    }
}