#panel-notificaciones{
    height: 400px;
    max-height: 40px;
    display: flex;
    flex-direction: column;
    position: fixed;
    transition: all 0.5s ease-in-out;
    right: 0;
    box-shadow: 4px 3px 9px 0px rgba(0,0,0,0.39);
    z-index: 1000;
    padding: 0;
    border: none;
    cursor: pointer;
    max-width: 300px;
}
#panel-notificaciones.privadas{
    top: 160px;
}
#panel-notificaciones.publicas{
    bottom: 100px;
}
#panel-notificaciones.abierto{
    max-height: 400px;
}

#panel-notificaciones .notificaciones{
    background-color: white;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    max-height: calc(100% - 40px);
    overflow-y: auto;
    min-height: calc(100% - 40px);
    display: flex;
    padding: 0;
}

#panel-notificaciones.abierto .notificaciones{
    padding: 1rem;
}

#panel-notificaciones.abierto .icono{
    border-top: 2px solid #3cb64a;
}

#panel-notificaciones.abierto.privadas .icono{
    border-bottom: 2px solid #3cb64a;
    border-top: none;
}

.notificacion{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background-color: #e1e1e1;
    border-radius: 0.5rem;
    box-shadow: 4px 3px 9px 0px rgba(0,0,0,0.39);
    width: 100%;
    border: 2px solid black;
}

.notificacion.no-leida:not(.sin-link):not(.caducada):hover{
    border: 2px solid #3cb64a;
}

.notificacion.no-leida:not(.sin-link):not(.caducada):hover p{
    color: #3cb64a;
}

.notificacion h3{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    padding: 0;
}
.notificacion p{
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.notificacion.leida, .notificacion.caducada{
    font-weight: normal;
    border: none;
}

#panel-notificaciones .icono{
    max-width: 300px;
    display: flex;
    background-color: white;
    color: #3cb64a;
    padding: 0.5rem;
    align-items: center;
    gap: 1rem;
    height: 40px;
    width: 300px;
    border: none;
}

#panel-notificaciones h2{
    color: #3cb64a;
    text-align: center;
    font-size: 2rem;
    font-family: 'AvenirNext';
    margin: auto;
}

#panel-notificaciones .icono img{
    width: 33px;
}
#panel-notificaciones .icono p{
    font-size: 2rem;
    color: #3cb64a;
    margin: 0;
    padding: 0;
}

#numero-no-leidas{
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #e62b2b;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

#numero-no-leidas p{
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

.not-visible{
    display: none;
}

@media screen and (max-width: 768px){
    #panel-notificaciones.privadas{
        top: 100px;
    }
}