/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 4, 2021, 1:35:58 PM
    Author     : Nico
*/

.header
{
    text-align: center;
    position: fixed;
    z-index: 10;
    background:var(--color5) !important;
    border-bottom:1px solid var(--color4);
    height:100px !important;
}

.header .header_menu
{
    background:none !important;
    border:none;
    border-radius:0px !important;
    padding:0px !important;
}



.header .header_menu .ui-menuitem-text
{
    color:lightgrey !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size:14px;
}

.header .header_menu .ui-widget-content.ui-menu-list.ui-corner-all
{
    background:var(--color5) !important;
    text-align: left;
}

.header .header_menu .ui-menuitem-link
{
    padding-top:40px !important;
    padding-bottom:40px !important;
}

.header.small .header_menu .ui-menuitem-link
{
    padding-top:0px !important;
    padding-bottom:00px !important;
}

.header .header_menu  .ui-menu-child .ui-menuitem-link
{
    padding:10px !important;
}

.header .header_menu .ui-menu-child .ui-menuitem-link.ui-state-hover
{
    background:var(--color3) !important;
    transition: all 500ms ease-out;
}

.header .header_menu .ui-menuitem-link.ui-state-hover .ui-menuitem-text
{
    color:white !important;
    transition: all 500ms ease-out;
}

.header .header_menu .ui-menuitem-link.ui-state-hover .ui-icon
{
    color:white !important;
    transition: all 500ms ease-out;
}

.header .header_menu .ui-menu-child
{
    border-top: 1px solid rgb(100,100,100) !important;
    border-radius: 0px !important;
}

div.header_menu
{
    text-align: center;
}
.header_menu div.ui-menubar
{
    text-align: center;
}
.header_menu .ui-menu-list
{
    width:100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
}
div.header_menu>ul.ui-menu-list>li>a
{
    width: 100%;
}
div.header_menu>ul.ui-menu-list>li
{
    width: 100%;
}
.ui-menuitem-text
{
    float: none!important;
}

.header.large
{
    padding:0px;
}

.header.small
{
    display:none;
    padding:0px;
}

.header.small .ui-menuitem-icon.ui-icon.fa.fa-bars
{
    font-size:25px;
}

.header.small .ui-icon.ui-icon-triangle-1-s
{
    display:none !important;
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 950px)
{
    .header.large
    {
        display:none;
    }

    .header.small
    {
        display:block;
    }
}



