#header_index{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    
    min-height: 48px;
    padding: 12px 100px 20px;
    background-color: #26005A;     
    background-image: linear-gradient(90deg, #009681 0%, #00B0B9 35.58%, #0085CA 64.42%, #CB00A1 100%);
    background-repeat: no-repeat;
    background-size: 100% 8px; 
    background-position: bottom left;
}
#header{
    display: flex;
    align-items: start;
    justify-content: space-between;
    
    background: #FFFFFF;
    min-height: 48px;
    padding: 12px 40px 24px 40px;  
    border-bottom: solid 2px #F4F3F6;
    z-index: 999;
}
.header_item_container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.header_item {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;    

    position: relative;
} 
.header_item h3{
    color: #FFFFFF;
} 
.header_item p{    
    font-size: 18px;
    color: #FFFFFF;
}

#peak{
    display: none;
    position: absolute;
    top: 22px;
    right: 10px;
}
#user_menu{
    display: none;    
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    position: absolute;
    top: 30px;
    right: 0;
    width: 180px;
    padding: 4px;
    background: #F4F3F6;
    border-radius: 8px;
    border: solid 1px #E0E0E0;    
    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: #CB00A1;
    cursor: pointer;   
}
#profile p{
 color: #FFF;
}
#logout{
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: 12px;
    
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;    
    
    
}
#logout p{
    font-size: 16px;
    color: #26005A;
}


@media (max-width: 1024px) { 
    #header_index{
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px;
    }
    #header{
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 20px;
    }
    #header #logo{
        width: 100%;
    }
    .header_item_container{
        flex-wrap: wrap;
    }
    .header_item.add_calendar{
        margin: 0 auto;
    }
}
