/* All Partial Files */
@import "../partials/_variables.css";
@import "../partials/_global-styles.css";

/* All Component Files */
@import "../components/_navbar.css";
@import "../components/_footer.css";

/* Notifications Section */
.notifications {
    padding: 50px 0px;
    min-height: 80vh;
}

.notifications .container h2 {
    text-align: center;
    margin-bottom: 50px;
}

.notifications .container .section-top {
    margin-bottom: 50px;
}

.notifications .container .section-top a {
    color: var(--solid-blue-primary-color);
    transition: var(--transition);
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    -ms-transition: var(--transition);
    -o-transition: var(--transition);
}

.notifications .container .section-top a:hover {
    opacity: 0.7;
}

.notifications .container .section-top a svg {
    margin-right: 5px;
}

.notifications .container .notifications-wrapper .notification {
    margin-bottom: 10px;
}

.notifications .container .notifications-wrapper .notification:last-child {
    margin-bottom: 0px;
}

.notifications .container .notifications-wrapper .notification .notification-container {
    width: 100%;
    padding: 30px;
    background: #fff;
    box-shadow: 5px 5px 30px rgba(203, 225, 250, 0.5);
    border-radius: 15px;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-top h5 {
    font-size: 18px;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-top a {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-top .unread-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #17a2b8;
    display: inline-block;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-msg {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-bottom {
    display: flex;
    align-items: center;
}

.notifications .container .notifications-wrapper .notification .notification-container .notification-bottom p {
    display: flex;
    align-items: center;
}

.notifications .container .notifications-wrapper .notification .notification-bottom p svg {
    margin-right: 5px;
}

.notifications .container .notifications-wrapper .notification .notification-bottom .divider {
    margin: 0px 5px !important;
    color: #D8E4FA;
}

.notifications .container nav,
.notifications .container .pagination {
    text-align: center;
}

.notifications .container .pagination {
    padding-top: 20px;
}

.notifications .container .pagination .page-item {
    font-size: 18px;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #ffffff;
    width: 55px;
    height: 55px;
    text-align: center;
    position: relative;
    border-radius: 50px;
}

.notifications .container .pagination .active {
    background: #002bea;
}

.notifications .container .pagination .page-link {
    color: #002bea;
    padding-top: 16px;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    text-decoration: none;
}

.notifications .container .pagination .active .page-link {
    color: #ffffff;
}

.notifications .container .pagination .disabled .page-link {
    color: #000000;
}

.notifications .container .pagination li:first-child .page-link,
.notifications .container .pagination li:last-child .page-link {
    font-weight: bold;
}