/* // HEADER */
#header{
    position: relative;
    height: 36px;
    width: calc(100vw - 5px);
    padding-left: 5px;
    /* background-color: var(--MAIN_COLOR); */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}
#header > span{
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
}
#header > span > i{
    font-size: 1.8em;
    transition: transform 0.15s ease;
}
#header > span > i:hover{
    transform: scale(1.3);
}


#header > span.right-btn-con{
    position: absolute;
    min-width: 25px;
    max-width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    right: 2.5px;
    
}
    #header > span.right-btn-con > i{
        position: relative;
        margin-left: 25px;
    }

#header > img{
    height: 50px;
    width: 120px;
    background-color: white;
    border-radius: 10px;
    object-fit: contain;
    position: absolute;
    right: 20px;
    top: 10px;
    box-shadow: 0px 0px 7px 0px rgba(255, 255, 255); 
}