/* header-footer.css */
.header_top {
    background: #f5f5f5;
}

.header_top p {
    margin: 0;
    padding: 5px 0;
}

.header_top p span:first-child {
    margin-right: 5px;
}

.header_icon {
    display: flex;
    justify-content: end;
    gap: 15px;
}

.header_top p span:first-child svg {
    width: 26px;
    height: auto;
}

.search_area input {
    padding: 5px 10px;
    border-radius: 50px;
    border: 1px solid #f5f5f5;
    width: 100%;
    background-color: #f5f5f5;
}

.header_main {
    padding: 10px 0;
}

.header_menu {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
    background: #fff;
}

.cta_button {
    /* text-align: right; */
}

.cta_button a {
    background: #fbdd00;
    padding: 10px 20px;
    border-radius: 3px;
    color: #000;
    text-decoration: none;
    box-shadow: 5px 5px 0px #cbcccc;
}

.cta_button a:hover {
    box-shadow: none;
}

.header_top .col-md-4:nth-child(2) {
    text-align: center;
}

.header_top .col-md-4:nth-child(3) {
    text-align: right;
}



/* single page  */
.icon_list_item img {
    height: 65px;
    width: auto;
}

.icon_list_item img {
    height: 65px;
    width: auto;
}

.faq_title:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E");
    width: 25px;
    height: 25px;
    position: absolute;
    right: 5px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.faq_title.active:after {
    content: '-';
    background: none;
    text-align: center;
    line-height: 19px;
}

.title2 h4 {
    font-size: 20px;
    color: #000;
    font-weight: 900;
}

.faq_area .title2 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

/* Mobile menu 
============= */
ul.mobile_menu_nav {
    list-style: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.new_manu {
    position: absolute;
    left: -200%;
    right: auto;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    transition: all .5s;
}

ul.mobile_menu_nav ul {
    padding: 0;
    list-style: none;
}

.new_manu.active {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

ul.mobile_menu_nav li {
    border-bottom: 1px solid #eeefef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.mobile_menu_nav a {
    color: #0a0a38;
    display: inline-block;
    padding: 10px 0;
}

ul.mobile_menu_nav .divsjhjh a {
    padding: 10px 20px;
}


ul.mobile_ulsub_menu_item {
    margin-bottom: 20px;
}

.related_blog_content .metabox_item ul {
    display: grid;
    gap: 5px;
    grid-template-columns: 50% 50%;
    margin-bottom: 10px;
}

/* Notifications Styling 
======================== */

.mark-all-read-btn {
    background: #0a0a38;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    color: #fff;
    padding: 15px;
}

.notification-item {
    font-size: 1rem;
    border-bottom: 1px solid #f1f1f1;
    padding: 10px 5px;
    position: relative;
}

.notification-item.unread {
    border-color: #0000fe;
}

.notification-item:last-child {
    border-bottom: none;
    border-top: none !important;
}

.notification-time {
    font-size: 12px;
    color: #a0a0a0;
}

.mark-read-btn svg {
    max-width: 100%;
}

.authors_details.notifications {
    min-width: 300px;
    right: -130px;
    max-height: 400px;
    overflow-y: auto;
}

.no-notifications {
    border: none !important;
    padding-top: 30px;
}

.no-notifications p {
    margin: 0;
}

.notification-actions button {
    font-size: 12px;
    background: transparent;
    border: none;
    opacity: .6;
}

.notification-actions button svg {
    max-width: 100%;
}

.delete-notification-btn {
    width: 20px;
    color: red;
}

.notification-actions {
    display: flex;
    align-items: center;
}

.notification-footer {
    margin-top: 10px;
    border-top: 1px solid #eae7e7;
    text-align: center;
}

.notification-footer button {
    background: transparent;
    border: none;
    font-size: 12px;
}

.notification-footer button:hover {
    text-decoration: underline;
}

.mark-read-btn:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 767px) {
    .authors_details.notifications {
        max-height: 100vh;
    }
}