.header {
    /* padding: 0 5%; */
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 8px 8px 0 rgba(0, 40, 88, 0.04);
    box-shadow: 0px 8px 8px 0 rgba(0, 40, 88, 0.04);
    background-color: #ffffff;
    z-index: 1021;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.header .header_wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1440px;
    padding: 0 70px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .header .header_wrap {
        padding: 0 40px;
    }
}



.header .header_wrap .logo {
    width: 200px;
}

.header .header_wrap .logo_sm {
    width: 40px;
}

.header .header_wrap .right_section {
    display: -webkit-box;
    display: -ms-flexbox;
    align-items: center;
    display: flex;
     gap: 12px; 
}

body .dropdown.os {
    min-height: 100%;
}

body .dropdown.os .dropdown-menu {
    border-radius: 3px;
    border-color: #d7d7d7;
    padding: 10px 0;
    margin-top: 0;
    min-width: 270px;
    display: block;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 8px 0 rgba(0, 40, 88, 0.13);
    box-shadow: 0px 2px 8px 0 rgba(0, 40, 88, 0.13);
    background-color: #ffffff;
    -webkit-transform: translate3d(0%, 20%, 0);
    transform: translate3d(0%, 20%, 0);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

body .dropdown.os:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 0%, 0);
}

.dropdown.os .dropdown-menu {
    min-width: 230px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.175);
}

.dropdown.os>.btn .name {
    font-size: 16px;
    font-weight: 500;
    max-width: 150px;
    display: inline-block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    vertical-align: middle;
    text-transform: capitalize;
    margin: 0 8px 0 5px;
    font-family: 'Montserrat';
}

.dropdown.os>.btn {
    height: auto;
    padding: 13px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    min-height: 100%;
}

.dropdown.os>.btn:focus,
.dropdown.os:hover .btn {
    outline: none;
    /* background: rgba(21, 137, 249, 0.1); */
}

.dropdown.os>.btn:focus .name,
.dropdown.os:hover .btn .name {
    color: #0b4b9a;
}

.dropdown.os>.btn:focus svg path,
.dropdown.os:hover .btn svg path {
    fill: #0b4b9a;
}

.dropdown.os>.btn .av_blk {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    min-width: 50px;
    overflow: hidden;
    vertical-align: middle
}

.dropdown.os>.btn.bell .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown.os>.btn.bell .icon img {
    border: 0;
}

@media screen and (max-width: 992px) {
    .dropdown.os>.btn.bell .icon img {
        max-width: 20px;
    }
}

@media screen and (max-width: 767px) {
    .dropdown.os>.btn.bell {
        min-width: auto !important;
        padding: 0;
    }

    .dropdown.os>.btn.bell .icon img {
        max-width: 16px;
    }

    .dropdown.os>.btn.bell .icon.active::after {
        top: -3px;
        right: -3px;
    }
}

.dropdown.os>.btn .av_blk img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.dropdown-menu>li>a:hover {
    background: rgba(21, 137, 249, 0.2);
    color: #1589f9;
}

.dropdown.os li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    display: inline-block;
    width: 100%;
    clear: both;
    font-weight: normal;
    line-height: 20px;
    color: #000000;
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .dropdown.os li>a {
        font-size: 14px;
    }
}

.dropdown.os li>a svg {
    vertical-align: middle;
    padding-right: 5px;
    margin-left: 5px;
    /* border-right: 1px solid #ccc; */
    width: 30px;
    height: 20px;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}

.dropdown.os>.btn.bell {
    min-width: 50px;
}

.dropdown.os>.btn.bell .icon {
    position: relative;
}

.dropdown.os>.btn.bell .icon::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    right: 0px;
    border-radius: 100%;
    background: #f5386d;
    border: 2px solid #ffffff;
    opacity: 0;
}

.dropdown.os>.btn.bell .icon.active::after {
    opacity: 1;
}

.dropdown.os>.btn.bell .av_blk {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
}

.btn.userlabel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
}

.before-login-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
}

.before-login-navbar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 10px 0 0;
}

.before-login-navbar ul li a {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: block;
    padding: 0 20px;
}

@media screen and (max-width: 980px) {
    .dropdown.os>.btn .name {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .header {
        height: 50px;
    }

    .header .header_wrap{
        height: 100%;
    }

    .header .header_wrap .logo {
        width: 150px;
    }

    .dropdown.os>.btn .av_blk {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .dropdown.os>.btn .name {
        font-size: 14px;
        max-width: 100px;
    }

    .before-login-navbar .login {
        font-size: 13px;
    }

    .before-login-navbar ul li a {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        background-color: #0b4b9a;
        background-image: -o-linear-gradient(321deg, #59a359, #0b4b9a);
        background-image: linear-gradient(129deg, #59a359, #0b4b9a);
    }

    .before-login-navbar ul li a {
        font-size: 12px;
        padding: 0 5px;
        white-space: nowrap;
    }

    .before-login-navbar .login {
        font-size: 12px;
        padding: 0 12px;
        min-width: auto;
    }

    .dropdown.os>.btn .name {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .before-login-navbar .login {
        padding: 0 10px;
        height: 30px;
        line-height: 30px;
    }

    .header .header_wrap {
        padding: 0 15px;
    }
}
/* Make sure notif-wrapper is visible inline */
.notif-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Bell button must have explicit size */
.btn.bell.notif-trigger {
    position: relative;
    background: transparent;
    border: none;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;         /* ← explicit height so it doesn't collapse */
}

.bell-svg {
    fill: #6b7694;
    width: 20px;
    height: 22px;
    display: block;       /* ← prevents inline baseline gap */
}


@media screen and (max-width: 767px) {
    .header .header_wrap {
        padding: 0 20px;
    }
    .header .header_wrap .right_section{
        gap:0px;
    }
}