#notificacion-container {
    padding: 15px!important;
    display: block;
    position: fixed;
    z-index: 999;
    top: 130px;
    right: -2px;
    width: 360px;
    min-height: 100px;
    max-height: 550px;
    margin-bottom: 5px;
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 15px 0 0 10px;
    -webkit-box-shadow: 9px 5px 7px 0 rgb(0 0 0 / 30%);
    animation-name: slideIn;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    opacity: 1;
    animation-delay: 0s;
    padding-bottom: 10px;
}

.notEmail {
    /* display: none;
    position: fixed;
    z-index: 999;
    top: 130px;
    right: -2px;
    width: 360px;
    min-height: 100px;
    max-height: 550px;
    overflow-y: scroll!important;
    margin-bottom: 5px;
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #ced4da;
    box-sizing: border-box;
    overflow: hidden;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: 9px 5px 7px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 9px 5px 7px 0 rgba(0, 0, 0, 0.3);
    animation-name: slideIn;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    opacity: 1;
    animation-delay: 0s;
    padding-bottom: 10px; */
}

.img_sombrero {
    position: absolute;
    z-index: 1000;
    width: 75px;
    top: -26px;
    left: -28px;
}

#notificacion_container {
    max-height: 500px;
    overflow-y: scroll!important;
}

#notificacion_container::-webkit-scrollbar {
    /* width: 1px; */
    display: none;
}

.mensaje_title {
    position: relative;
}

.titulo_notificacion {
    /* margin-left: 60px; */
    margin-top: 10px;
}

.mensaje_title .btn-cerrar {
    position: absolute;
    top: 0;
    right: 5px;
    font-size: 18px;
    font-weight: bold;
}

.mensaje_title .btn-cerrar:hover {
    color: #ff0000;
    cursor: pointer;
}

.img_notificacion {
    width: 35px;
    position: absolute;
    top: 0;
    left: 0px;
}

.mensaje_not {
    /* float: left; */
    /* width: 60%; */
    height: 100%;
    text-align: center;
    /* line-height: 90px; */
    font-size: 0.9em;
}

.botones_notificacion {
    display: inline-block;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 30px;
    background-color: #004996;
    color: #fff;
    border: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.notificacion_programas {
    padding: 0 35px;
    padding-bottom: 20px;
}

#notificacion_programas_visible {
    padding-bottom: 0;
}

.botones_notificacion:hover {
    background-color: #003c7e;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 50%);
}

.enlaces-pub {
    color: #888888;
    font-size: 11px;
    font-weight: bold;
    margin: 6px 0;
    line-height: 13px;
}

.enlaces-pub:hover {
    color: #0a58ca;
}

@keyframes slideIn {
    0% {
        margin-right: -500px;
        opacity: 0;
    }
    100% {
        margin-right: 0px;
        opacity: 1;
    }
}

.texto-verde {
    color: #317f4f;
    font-weight: 500;
}

.texto-azul {
    color: #0a58ca;
    font-weight: 500;
}

@media screen and (max-width: 575px) {
    #notificacion-container {
        width: calc(100% - 20px);
    }
}