.div_notificacion{
    position: fixed;
    max-width: 700px;
    width: 90%;
    height: 400px;
    background: rgba(0, 0, 0, 1);
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200000;
    overflow: hidden;
    display: none;
}

.div_notificacion.activo{
   display: block;
}

.div_notificaciones_body, .div_notificaciones_botones{
    position: relative;
    width: 100%;
    height: 65%;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.div_notificaciones_head{
    position: relative;
    width: 100%;
    height: 15%;
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.div_notificaciones_botones{
    height: 20%;
    
    justify-content: flex-start;
    align-content: flex-start;
}

.h_notificacion{
    color: aliceblue;
    font-size: 1.5em;
}

.p_content_noti{
    width: 80%;
    color: aliceblue;
    padding-right: 10px;
    font-size: .7em;
}

.l_check_nomostrar{
    position: absolute;
    color: aliceblue;
    left: 90px;
    cursor: pointer;
    font-size: .8em;
    
}

.l_check_cerrar{
    position: absolute;
    color: aliceblue;
    right: 20px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, .5);
    border-radius: 6px;
    cursor: pointer;
}

.cuadro_check{
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 1);
    cursor: pointer;
    left: 25px;
}

.cuadro_check::before{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 0px;
    height: 0px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 0px solid green;
    border-left: 0px solid green;
    transform: rotate(-45deg);
    transition: all .3s ease;
}

.cuadro_check.activo::before{
    position: absolute;
    top: -10px;
    left: 0%;
    content: '';
    width: 45px;
    height: 20px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 7px solid green;
    border-left: 7px solid green;
    transform: rotate(-45deg);
    transition: all .3s ease;
}
