.content-notificaciones{
    position: absolute;
    right: 0;
    top: 45px;
    margin-right: 10px;
    opacity: 0;
    flex-direction: column;
    width: 350px;
    max-height: 0;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: white;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}
.content-notificaciones.show{
    max-height: 500px;
    opacity: 1;
}
.content-notificaciones span.not-found{
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 14px!important;
    color: rgb(60, 60, 60)!important;
   
}

.content-notificaciones .item{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    box-sizing: border-box;
    overflow: hidden;
    background-color: white;
    transition: background-color 0.1s  ease-in-out;
}
.content-notificaciones .item:hover{
    background-color: rgb(246, 246, 246);
}
.content-notificaciones .item .header{
    display: flex;
    justify-content: space-between;
    padding: 0 15px ;
    
}
.content-notificaciones .item .header span.title{
    font-size:12px !important;
    font-weight: bold;
    color: rgb(52, 52, 52);
}
.content-notificaciones .item .header span.fecha{
    font-size:11px;
    color: rgb(96, 96, 96);
}
.content-notificaciones .item .body{
    padding: 0 15px ;
}
.content-notificaciones .item .body span{
    color: rgb(63, 63, 63) !important;
    font-size: 11px !important;
}
.content-notificaciones .item .footer{
    display: flex;
    justify-content: start;
    padding: 0 15px ;
    
}
.content-notificaciones .item .footer button{
    background-color: transparent;
    border: none;
    font-size: 12px;
    color: #60b5ce;
    cursor: pointer;
    
    

    
}
.division{
    width: 100%;
    height: 1px;
    background-color: rgb(246, 246, 246);
}
.content-notificaciones .item.desaparecer{
    animation: desaparecer_notificacion 0.5s forwards;
}
.content-notificaciones .item .footer button:hover{
    text-decoration: underline;
}
@keyframes desaparecer_notificacion{
    0%{
        opacity: 1;
        transform: translateX(0);
        
    }
    80%{
        display: none;
    }
    100%{
        transform: translateX(400px);
        opacity: 0;
        display: none;
        
    }
    
}