.navMainContainer{
  position: relative;
  background: #d1d4e0; /* For browsers that do not support gradients */    
  background: -webkit-linear-gradient(left, #d1d4e0 , #f0f1f5); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(right, #d1d4e0, #f0f1f5); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(right, #d1d4e0, #f0f1f5); /* For Firefox 3.6 to 15 */
  background: linear-gradient(to right, #d1d4e0 , #f0f1f5); /* Standard syntax (must be last) */
  color: #673211;
  box-shadow: 0px 10px 20px #75706e;
  text-align: left;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  z-index: 9999;
  /* margin: 10px 20px 10px 20px; */
  /* padding: 1px 1px 1px 1px; */
  display: none;
  overflow: hidden;
  transition: height 0.2s ease;
  top: 0px;
  left: 0px;
}
.navMainContainerPlaceholder{
  display: none;
  height: 52px;
  z-index: 8888;
}
.navMenuButton {
  display: none;
}

.navMenuItems {
  display: block;
  height: 0px;
  overflow: hidden;
  transition: height 0.2s ease;
}

.navMenuItems ul {
  list-style-type: none;
  margin: 0px 0px 0px 0px;
  font-size: 20px;
  font-family: sans-serif;
  width: 210px;
  line-height: 2;
}

.navMenuItems li {
  display: block;
  padding: 0px 5px 0px 5px;
}

.navMenuItems li a {
  display: block;
  float: none;
  color: #333C4E;
  text-decoration: none;
}

.navMenuItems li:hover,
.navMenuItems li a:hover {
    background-color: #8c8c8c;
    color: #FCFBF5;
}

@media only screen and (max-width : 1024px) /*960px*/ {
  .navMainContainer {
    position: fixed;
    display: block;
  }
  .navMainContainerPlaceholder {
    position: relative;
    display: block;
  }
  .navMainContainer i {
    display: block;
    width: 20px;
    height: 2px;
    background: #673211;
    border-radius: 2px; 
    margin-left: 14px;
    cursor: pointer;
    cursor: hand;
  }

  .navMenuButtonLabel {
    display: block;
    width: 30px;
    padding: 10px;
    transition-duration: 0.2s;
    transition-property: transform;
    cursor: pointer;
    cursor: hand;
  }
/*
  .navMainContainer i:nth-child(1) { margin-top: 16px; }
  .navMainContainer i:nth-child(2) { margin-top: 4px; opacity: 1; }
  .navMainContainer i:nth-child(3) { margin-top: 4px; }
*/
  #navMenuButton:checked ~ .navMenuItems {
    height: 290px; /* 10 + (aantal menu items * 40) */
  }
  #navMenuButton:checked ~ .navMenuButtonLabel {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
  }

}

#navMenuButton {
  display: none;
}

/* ---- DESKTOP ---- */
.navMainDesktopContainer,
.navMainDesktopContainerPlaceholder {
position: fixed;
z-index: 9999;
top: 10px;
right: 10px;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
height: 40px;
display: block;
/* display: flex; */
/* justify-content: center; */
}
.navMainDesktopContainerPlaceholder {
display: none;
}
/*
.navMainDesktopContainer.stickyMenu{
  box-shadow: 0 3px 10px #888888;
  background-color: rgba(0, 0, 0, 0.20);
  border-radius: 5px;
}
*/
/*
.navMainDesktopContainerPlaceholder.stickyMenu{
  display: block;
}
*/

@media  only screen and (max-width : 1024px) /*960px*/ {
  .navMainDesktopContainer{
    display: none;
  }
  .navMainDesktopContainerPlaceholder{
    display: none;
  }
  .navMainDesktopContainerPlaceholder.stickyMenu{
    display: none;
  }
}


.navigatieDesktopItemSelected,
.navigatieDesktopItem{
float: left;
/* height: 20px; */
/* font-family:serif; */
font-weight: bold;
color: #FCFBF5;
font-size: 12px;
padding: 5px 10px 5px 10px;
margin-left: 5px;
margin-right: 5px;
border-radius: 5px;
z-index: 9999;
box-shadow: 0 3px 10px #888888;
}
.navigatieDesktopItem{
background-color: rgba(0, 0, 0, 0.20);
}
.navigatieDesktopItemSelected {
background-color: rgba(0, 0, 0, 0.35);
}
.navigatieDesktopItemSelected:hover,
.navigatieDesktopItem:hover{
background-color: rgba(0, 0, 0, 0.35);
cursor: pointer;
cursor: hand;
}

