.header-container {
    z-index: 3;
}

.header-container .language-container .active-lang {
    color: #319cea;
    font-weight: 700;
}

.header-container .profile-picture {
    width: 52px;
    height: 52px;
}

.header-container .noti-container {
    box-shadow: 0px 1px 11px 0px rgba(0, 0, 0, 0.12);
    z-index: 2;
    width: 320px;
}

.header-container .noti-container .noti-list {
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.header-container .noti-container .noti-list::-webkit-scrollbar {
    width: 5px;
}

.header-container .noti-container .noti-list::-webkit-scrollbar-thumb {
    background-color: red;
    border-radius: 10px;
}

.header-container .noti-container .noti-list .unread-noti {
    position: relative;
}

.header-container .noti-container .noti-list .unread-noti::before {
    content: "";
    display: block;
    width: 13px;
    height: 13px;
    background-color: #fa4343;
    border-radius: 100%;
    position: absolute;
    left: 6px;
    top: 28px;
}

.search-dropdowncontainer {
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    top: 3rem;
    left: -6rem;
}

.search-dropdowncontainer .searchtab-title {
    scrollbar-width: thin;
}

.search-dropdowncontainer .searchtab-title::-webkit-scrollbar {
    height: 2px;
}

.header-sidebar {
    border-right: 1px solid #dedede;
    box-shadow: 6px 0px 11px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    left: -100%;
    opacity: 0;
}

.header-sidebar.show {
    left: 0px;
    opacity: 1;
    z-index: 3;
}

.header-sidebar ul {
    max-height: 62vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.header-sidebar ul::-webkit-scrollbar {
    width: 4px;
}

.header-sidebar > button img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
        hue-rotate(286deg) brightness(110%) contrast(103%);
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar-items .active span {
    color: #319cea;
}
.sidebar-items .active img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(44%) saturate(4028%)
        hue-rotate(180deg) brightness(96%) contrast(91%);
}

@media (min-width: 480px) {
    .header-container .noti-container {
        width: 400px;
    }
}

@media (min-width: 1024px) {
    .header-container .noti-container {
        left: 50%;
        transform: translateX(-60%);
    }
}

@media (min-width: 1280px) {
    .search-dropdowncontainer {
        left: 0;
    }
}

@media (max-width: 1023px) {
    .header-container .noti-container {
        right: 0;
    }
}

@media (max-width: 767px) {
    .header-container .noti-container {
        top: 3rem;
    }

    .header-container .profile-picture {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 414px) {
    .header-container .noti-container {
        right: -1rem;
    }
}

@media (max-width: 330px) {
    .header-container .noti-container {
        right: 0;
    }
}

@media (max-height: 700px){
    .header-sidebar ul{
        max-height: 50vh;
    }
}

@media (max-height: 550px){
    .header-sidebar ul{
        max-height: 30vh!important;
    }
}

.mini-notification-container {
    left: 82% !important;
    transform: translateX(-34%) !important;
}
