﻿:root {
    --blanco: #ffffff;
    /*--gris-fondo: #ebebeb;*/
    /*    --color-principal: #337ab7;
    --color-accent: #23527c;*/
    /*    --color-principal: #99CDD8;
    --color-accent: #DAEBE3;
    --color-botones: #0c7b93;*/
    /*   --color-texto-botones: #c1dadf;
    --color-descuentos: #6C5E82;
    --color-texto-descuentos: #B193AB;
    --color-texto: #384348;
    --color-naranja: #F3893A;
    --color-rojo: #F34747;
    --color-morado: #9D5CD2;
    --color-verde: #19BD66;*/
    /* ALERTAS *******************************************************************************************/
    --notificacion-roja: rgb(191,54,12);
    --notificacion-verde: rgb(0,150,136);
    --notificacion-azul: rgb(1,87,155);
    --notificacion-amarilla: rgb(245,127,23);
}

.cnt_bloqueo_espera {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 2;
    background-color: rgba(0, 0, 0, .6);
}

.cnt_bloqueo_espera_2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 2;
    background-color: rgba(0, 0, 0, .6);
}

.cnt_bloqueo {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 2;
    background-color: rgba(0, 0, 0, .6);
}

.cnt_bloqueo_interno {
    width: 95%;
    max-width: 700px;
    max-height: 95vh;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    overflow: auto;
    box-sizing: border-box;
}

.cnt_notificacion {
    position: fixed;
    top: 20px;
    right: -450px;
    width: 450px;
    border-radius: 10px;
    background-color: var(--blanco);
    padding: 20px 35px 20px 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, .1);
    z-index: 2;
    border-left: 5px var(--color-morado) solid;
    overflow: hidden;
    /* transform: translateX(50%); */
    transition: all .5s cubic-bezier(.68, -.55, .265, 1.35);
    box-sizing: border-box;
}

.notificacion_activa {
    transform: translateX(-480px)
}

.icono_notificacion {
    display: flex;
    justify-content: center;
    align-items: center;
    /*   width: 25px;
    height: 25px;*/
    padding: 10px;
    background-color: var(--color-morado);
    color: var(--blanco);
    font-size: 1.5rem;
    border-radius: 50%;
}

.cnt_notificacion_contenido {
    display: flex;
    align-items: center;
}

.cnt_mensaje_notificacion {
    display: flex;
    flex-direction: column;
    margin: 0px 20px;
}

    .cnt_mensaje_notificacion label {
        font-size: 1.1rem;
        color: var(--color-texto);
    }

.lbl_titulo_notificacion {
    font-weight: bold;
}

.btn_cerrar_notificacion {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px;
    color: var(--color-morado);
}

.cnt_barra_progreso_notificacion {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--blanco);
}

    .cnt_barra_progreso_notificacion:before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

.barra_roja:before {
    background-color: var(--notificacion-roja);
}

.barra_verde:before {
    background-color: var(--notificacion-verde);
}

.barra_azul:before {
    background-color: var(--notificacion-azul);
}

.barra_amarilla:before {
    background-color: var(--notificacion-amarilla);
}

.barra_progreso_activa:before {
    animation: leyendo 10s linear forwards;
}

@keyframes leyendo {

    100% {
        right: 100%;
    }
}

@media (max-width: 640px) {

    .cnt_notificacion {
        right: -95%;
        width: 95%;
    }

    .notificacion_activa {
        transform: translateX(-103%)
    }
}

/* PANTALLA DE CARGA *********************************************************************************************************/

.cnt_bloqueo_carga_contenido {
    position: absolute;
    width: 90%;
    top: 150px;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #555;
    text-align: center;
}

    .cnt_bloqueo_carga_contenido h3 {
        float: left;
        position: initial;
        margin-top: 250px;
        width: 100%;
        font-size: 1.5rem;
        color: var(--blanco);
    }

.cnt_loader_cuadros {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 50px;
    height: 50px;
    animation: pulso_cuadros .8s linear infinite;
}

    .cnt_loader_cuadros span {
        position: absolute;
        width: 25px;
        height: 25px;
        border-radius: 5px;
        animation: giro_cuadros .8s linear infinite;
    }

        .cnt_loader_cuadros span:nth-child(1) {
            top: 0;
            left: 0;
            background-color: #536dfe;
        }

        .cnt_loader_cuadros span:nth-child(2) {
            top: 0;
            right: 0;
            background-color: #4db6ac;
        }

        .cnt_loader_cuadros span:nth-child(3) {
            bottom: 0;
            left: 0;
            background-color: #ba68c8;
        }

        .cnt_loader_cuadros span:nth-child(4) {
            bottom: 0;
            right: 0;
            background-color: #81d4fa;
        }

/*.lbl_btn_validar_cuenta {
    padding: 20px;
    border-radius: 10px;
    background-color: #ba68c8;
    color: #ffffff;
}*/

@keyframes pulso_cuadros {

    0% {
        width: 50px;
        height: 50px;
    }

    10% {
        width: 50px;
        height: 50px;
    }

    50% {
        width: 75px;
        height: 75px;
    }

    90% {
        width: 50px;
        height: 50px;
    }

    100% {
        width: 50px;
        height: 50px;
    }
}

@keyframes giro_cuadros {

    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    90% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(180deg);
    }
}
