.bg-azul {
    background-color: var(--primario);
    min-height: calc(100vh - 100px);
}

.notificaciones-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#notificaciones-body {
    padding: 0.5rem 1.5rem;
}

.notificaciones-header-title {
    color: #FFF;
    font-family: Open Sans;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.notificaciones-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px;
    background-color: #FFF;
    border-radius: 8px;
    width: 90%;
    height: 70px;
    gap:10px;
    margin-bottom: 20px;
}


.notificaciones-grupo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    
}

.notificaciones-item-delete {
    justify-content: center;
    align-items: center;
    width: 10%;
    display: flex;
    font-size: 20px;
    background-color: #FFF;
    border-radius: 8px;
    height: 70px;

}


.notificaciones-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.notificaciones-item.opened  .notificaciones-circle {
    background-color: #FFF;
}

.notificaciones-item.closed .notificaciones-circle {
    background-color: #FF0000;
}

.notificaciones-item.opened .notificaciones-item-body-text, .notificaciones-item.opened .notificaciones-item-header-title {
    color: #999 !important;
}

.notificaciones-item-header-title {
    color: #333;
    font-family: Open Sans;
    font-size: 11px;
    font-style: normal;
    font-weight: 300;
    line-height: 11px;
}

.notificaciones-item-body-text {
    color: #333;
    font-family: Open Sans;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.notificaciones-item-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
}

.hiddenText {
    display: none;
}

.contacto-texto {
    color: #FFF;
    font-family: Open Sans;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 25px 0px;
}

.btn-enviar-mensaje {
    border: 1px solid white;
    padding: 10px;
    float: right;
    color: #FFF;
    text-align: center;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 50%;
    display: block;
    border-radius: 5px;
}