/* cmsms stylesheet: Infowebs - Stylesheet - TopMenu modified: dinsdag 24 mei 2022 13:36:40 */
#menuwrapper {
   display: flex;
   flex-direction: row;
}

#primary-nav {
   display: flex;
   flex-direction: row;
}

#menuwrapper ul {
  list-style-type: none;
}

#menuwrapper ul li {
   margin-top: 10px;
   padding: 10px 20px;
}

#menuwrapper ul li a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
}

#primary-nav li:hover a {
   color: blue;
}

#primary-nav li.menuactive a {
   color: red;
}

#primary-nav li.menuactive {
   color: red;
   background-image: url(/assets/images/down_red_arrow.png);
   background-repeat: no-repeat;
   background-size: 60%;
   background-position: bottom;

}

@media only screen and (max-width: 1000px) {


/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
#menuwrapper {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 20px;
  margin-top: 18px;
  background-image: url(/assets/images/hamburger.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  justify-content: flex-end;
}

/* Dropdown Content (Hidden by Default) */
#menuwrapper ul {
  list-style-type: none;
  margin: 0;
  margin-top: 32px;
  padding: 0;
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

#menuwrapper ul li {
   margin-top: 0px;
   padding: 0px;
}

#primary-nav li.menuactive {
   background-image: none;
   background-color: #ddd;
}

#primary-nav li.first_child {

}

/* Links inside the dropdown */
#menuwrapper li a {
  padding: 12px 15px;
  color: black;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
#menuwrapper li a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
#menuwrapper:hover ul {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
#menuwrapper:hover li {background-color: #ffffff;}
#menuwrapper:hover li.menuactive {background-color: #ddd;}
#menuwrapper:hover li.hover {background-color: #ddd;}
}
