/* ----------- CONTAINER */

#header {
    z-index: 100;
    background-color: black;
}

#header,
#site-logo,
#header-menu {
    height: 65px;
}

/* ----------- FONTS, TEXT BLOCKS */

#header li.menu-item {
    width: 100px;
    height: 40px;
    min-width: unset;
    font-size: 11px;
}

#header li.menu-item a {
    padding: unset;
}

/* ----------- IMAGES */

#hamburger-menu-button a img {
    width: 40px;
}

#search-button a img {
    width: 31px;
}

/* ----------- POSITIONS */

.position-sticky {
    position: relative;
}


/* DESKTOP */
@media only screen and (min-width: 1000px) {   
    
    /* TODO: Optimoimaton koodi */
    
    /* .position-sticky {
        position: sticky;
        top: 0;
    } */

    #header li.menu-item {
        border: unset;
    }
}

@media only screen and (min-width: 1400px) {
    #header,
    #site-logo,
    #header-menu {
        height: 90px;
    }

    #hamburger-menu-button a img {
        /* width: 74px; */
        width: 56px;
    }

    #search-button a img {
        /* width: 50px; */
        width: 40px;
    }
}