﻿.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}



@media (max-width: 768px) {
    .form-login {
       width: 75% !important;
    }
}

@media (max-width: 991px) {
    #imgdash {
        display: none;
    }
}



.form-login {
    background-color: #8080804f;
    padding: 10px;
    border-radius: 10px;
}

.footer {
    background-color: var(--bs-redfn)
}

.btn-login {
    background-color: #8c1b24 !important;
    border-color: #8c1b24 !important;
}

.btn.btn-primary.btn-login:hover, .btn.btn-primary.btn-login:focus {
    background-color: #8c1b24b8 !important;
    border-color: #8c1b24b8 !important;
}

/*NOTIFICACIONES*/

strong {
    font-weight: 600;
}

.notification {
    width: 380px;
    padding: 15px;
    background-color: white;
    border-radius: 16px;
    position: fixed;
    top: 95px;
    right: 15px;
    transform: translateY(-50%);
    /*Hacer que la notificacion se mantenga en su lugar*/
    -webkit-animation: noti 3s forwards ease-in;
    animation: noti 3s forwards ease-in;
    z-index: 1055;
    border: 2px solid #8d8b8b;
}
/*forwards*/

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.notification-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    color: #1876F2;
}

.notification-close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0F2F5;
    font-size: 14px;
}

.notification-container {
    display: flex;
    align-items: flex-start;
}

.notification-media {
    position: relative;
}

.notification-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.notification-reaction {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    color: white;
    background-image: linear-gradient(45deg, #dc362e, #bf6525);
    font-size: 14px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.notification-content {
    width: calc(100% - 60px);
    padding-left: 20px;
    line-height: 1.2;
}

.notification-text {
    margin-bottom: 5px;
    padding-right: 20px;
    color: #000000;
    text-align: justify;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #8d8b8b var(--bs-gray-100);
    /*display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;*/
}

.notification-timer {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
}

.notification-status {
    position: absolute;
    right: 10px;
    top: 50%;
    /* transform: translateY(-50%); */
    width: 15px;
    height: 15px;
    /*    background-color: #dc362e;
*/ border-radius: 50%;
}