﻿#header {
    background-color: #831CEF;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 3;
    padding: 5px 10px 12px 10px
}

    #header .logo {
        height: 52px;
        margin-top: 5px;
    }

    #header .header-buttons .menu-container {
        margin: auto;
        text-align: center;
        padding-top: 10px;
        margin-top: 10px;
    }

    #header .button-container {
        display: flex;
        justify-content: center;
        color: #666;
        margin: 0 10px;
        width: auto;
        flex-wrap: nowrap;
        margin-top: -13px;
    }

    #header .button {
        font-family: Poppins500;
        cursor: pointer;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 20px;
        display: flex;
        align-items: center;
        padding: 8px 20px;
        text-transform: uppercase;
        margin-top: 2px;
        margin-right: 10px;
        background-color: #ffffff;
        color: #831CEF;
        height: 37px;
    }

    #header .selected {
        background-color: #9C49F2;
        color: #fff;
    }

    #header .unselected {
        background-color: #fff;
        color: #9C49F2;
    }

    #header .fa-gap {
        margin-right: 10px;
    }

    #header .badge-container {
        width: 1px;
        height: 0px;
    }

    #header .badge-span {
        font-family: Poppins500;
        background-color: #ef1c1f;
        position: relative;
        font-size: 8px;
        padding: 5px;
        top: -34px;
        left: 76px;
        border-radius: 50%;
        min-width: 18px;
    }

    #header .btn-title {
        display: inline-block;
        text-wrap: nowrap;
    }

    #header .notification {
        display: inline-block;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        background-color: #ffffff;
        color: #831CEF;
        padding: 8px 12px;
        margin-right: 5px;
        margin-top: 12px;
    }

    #header .badge-notspan {
        font-family: Poppins500;
        background-color: #ef1c1f;
        position: relative;
        font-size: 8px;
        padding: 5px;
        top: -20px;
        left: 13px;
        border-radius: 50%;
        min-width: 18px;
    }

    #header .avatar {
        width: auto;
        height: 40px;
        border-radius: 50% !important;
        vertical-align: middle;
        border-style: none;
        margin-right: 5px;
    }

    #header .burger {
        display: inline-block;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
        background-color: #ffffff;
        color: #831CEF;
        padding: 8px 12px;
        margin-right: 5px;
        margin-top: 12px;
    }

    #header .list-item {
        font-family: Poppins500;
        background-color: #ffffff;
        color: #831CEF;
        padding: 10px 0;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #header .profile-item {
        font-family: Poppins400;
        font-size: 14px;
    }

        #header .profile-item .bold {
            font-family: Poppins500;
        }

.header-buttons {
    width: calc(100% - 175px);
    overflow-x: scroll;
    padding-bottom: 7px;
    margin-top: 4px;
}

    .header-buttons::-webkit-scrollbar {
        width: 5px;
        height: 5px;
    }

    .header-buttons::-webkit-scrollbar-track {
        background: transparent;
    }

    .header-buttons::-webkit-scrollbar-thumb {
        background-color: transparent;
        border: 1px solid transparent;
    }

@media (max-width: 1200px) {
    .header-buttons {
        margin-top: 0px;
    }

    #header .header-buttons .menu-container {
        margin-top: 0;
    }

    #header .button-container {
        margin-top: 1px;
    }

    /*#header .button {
        width: 40px;
        height: 40px;
        padding: 13px;
        margin-top: 0px;
    }*/

    #header .fa-circle2 {
        padding: 12px;
    }

    #header .btn-title {
        display: none;
    }

    #header .badge-span {
        top: -32px;
        left: 13px;
    }
}

@media (max-width: 600px) {
    /*#header .header-buttons .menu-container {
        margin-top: 0;
        padding-left: 140px;
    }*/
    #header .button-container {
        justify-content: flex-start;
    }
}


/* For mobile app */

#header .buttons span {
    cursor: pointer;
    display: inline-block;
    margin: 3px;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 6px 7px;
    margin-top: 15px;
    background: #fff;
    margin-right: 5px;
}

    #header .buttons span i {
        color: #831CEF;
        font-size: 18px;
    }