head {
    background-color: #FFF;
}

header {
    min-height: 80px;
}

header > #home-link-mobile {
    display: none;
    cursor: pointer;
}

header > div {
    background-color: var(--bg-color2);
    position: fixed;
    width: 100%;
    z-index: 20;
    border-bottom: 1px solid var(--bg-color1);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#menu-button.only-responsive {
    display: none;
    margin-left: 15px;
    cursor: pointer;
}

#main-header > div:not(.only-responsive) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

@media (max-width: 1200px) {
    header {
        min-height: 120px;
    }

    header > div {
        height: 120px;
        flex-direction: column;
        padding-bottom: 5px;
    }

    #main-header {
        padding: 6px 0;
        gap: 10px !important;
    }

    #menu-button.only-responsive {
        display: block;
    }

    #main-header #header-actions {
        margin-right: 15px;
    }

    #main-header > div:not(.only-responsive) {
        justify-content: flex-end;
    }
}

@media (max-width: 767px) {

    header {
        min-height: 80px;
        background-color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header > #home-link-mobile {
        display: block;
    }

    header > div {
        bottom: -1px;
        height: 50px;
        padding: 0;
        flex-direction: column-reverse;
        border-top: 1px solid var(--lightgray);
        box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
    }

    header > div #home-link {
        display: none;
    }

    #main-header > div:not(.only-responsive) {
        justify-content: unset;
        margin: 0 15px;
    }

    #main-header #header-actions {
        width: 100%;
        margin: 0;
        gap: 0;
    }

    #menu-button.only-responsive {
        display: block;
        margin: 0;
        padding: 10px 20px;
        
    }

    #menu-button.only-responsive i {
        background-color: var(--theme-color1);
        color: #FFF;
        border-radius: 5px;
        width: 35px;
        height: 32px;
        font-size: 16px;
    }

    #main-header #header-actions li > a, 
    #main-header #header-actions li #display-text {
        padding: 10px 20px;
    }
}

@media (max-width: 485px) {
    #main-header > div:not(.only-responsive) {
        justify-content: unset;
        /* margin: 0 0; */
        margin: 0 15px;
    }

    #menu-button.only-responsive {
        display: block;
        margin: 0;
        padding: 10px 15px;
    }

    #main-header #header-actions li > a, 
    #main-header #header-actions li #display-text {
        padding: 10px 10px;
    }
}

#main-header {
    display: flex;
    max-width: 1280px;
    width: 100%;
    margin: auto 15px;
    align-items: center;
    gap: 30px;
}

#main-header #home-link {
    margin-right: 20px;
}

#main-header span,
#main-header p,
#main-header select {
    font-size: 13px;
    color: var(--text-color1);
    display: flex;
    align-items: center;
}

#main-header ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}