#header_index{
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    min-height: 48px;
    padding: 0 40px 0 40px;       
    background-image: linear-gradient(90deg, #FAA61A 0%, #ED1C24 51.44%, #5C2D91 100%);
    background-repeat: no-repeat;
    background-size: 100% 4px; 
    background-position: bottom left;
}
#header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    background: #FFFFFF;
    min-height: 48px;
    padding: 0 40px 0 40px;  
    z-index: 99999;
}

.header_item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;    

    position: relative;
} 
.header_item p{    
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #061D41;
}

#peak{
    display: none;
    position: absolute;
    top: 33px;
    right: 50px;
}
#user_menu{
    display: none;    
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    position: absolute;
    top: 40px;
    right: 40px;
    width: 180px;
    padding: 4px;
    border-radius: 8px;
    background: #0071BB;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.16);
    z-index: 9999;
}
#profile{
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 12px;
    
    padding: 8px 12px;
    border-radius: 4px;
    background: #061D41;
    cursor: pointer;
    
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}
#logout{
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 12px;
    
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
}


@media (max-width: 520px) { 
    #header_index{
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px;
    }
    #header{
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px;
    }
}
