@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

header:not(.admin-header){  
    background:var(--color-primary);      
    color:#fff;
    padding:1em;
    top:0;
    width:100%;
    z-index:3;
}

section{
    margin:0;
}

.brand-name{
    background: var(--color-gold);
    color: #000;
    padding:0.4em 0.5em;
    font-weight:bold;
    font-size:0.9em;
    border-radius:0.2em;
}

.brand-name.lgs{
    background: var(--color-primary);
    color: #fff;
    padding:0.4em 0.5em;
    margin:0 0 7%;
}


.profile-head{
    position:relative;
    width:3em;
    height:3em;
}

.profile-head img{
    height:100%;

    background: #fff;
    border-radius: 100%;
    height: 50px;
    width: 50px;
}

.no_notif{
    background:#f00;
    color:#fff;
    border-radius:5em;
    display:flex;
    position:absolute;
    height:1.5em;
    aspect-ratio:1;
    font-size:0.8em;
    top:0;
    right:-5%;
}    

.dropbtn{
    border:none;
    background:transparent;
    color:#fff;
}

.dropbtn i{
    color:#aaa;
}

.dropbtn, .dropdown-content > div{
    display:flex;
    align-items:center;
    gap:0.5em;
}

.flag-icon{
    width: 20px;
    height: 15px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content > div {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Profile */
.profile-dropdown {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index:2;
    display:none;
}

.profile-dropdown-cover {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #0009;
    display:flex;
    justify-content: center;
    align-items: center;
}
.profile-dropdown-content{
    background-color: #fff;
    text-align:center;
    border-radius: 10px;
}

.profile-dropdown .profile-options{
    padding:2em;
}

.profile-dropdown .close-profile-dropdown{
    border-top: 1px solid var(--color-grey);
    padding: 1em;
    text-align: center;
    cursor: pointer;
}

.profile-dropdown-content .btns a{
    padding:0.7em 1em;
    color:#fff;
    border-radius: 5px;
    background-color: var(--color-primary);
    text-decoration: none;
    gap: 0.5em;
    font-size:0.9em;
}

.profile-dropdown-content .btns a.view-p{
    background-color:var(--color-green)
}