/* =================================
   Dropdown Navigation mit HOVER INTENT per CSS (left + transition-delay)
   Ggf. Steuerung per JS -> #ddnav bind click + lang chooser #lang-chooser, .lang-box (sup)
   ================================= */
#ddnav {
  width: 100%;
  height:105px; /* 140+20 */

}

#ddnav li[class^=col] {
  padding-bottom: 0;
}

#ddnav ul   {

  list-style-type: none;
}

#ddnav li   {

position: relative;
}

/*#ddnav > ul {*/
  /*display: flex;*/
/*}*/

/*#ddnav > ul > li { position: relative;    flex: 1 1 auto; text-align: center }*/

/*#ddnav a {*/
  /*display: block;*/
  /*padding: 0px 15px 0px 15px;*/
/*}*/
/* =================================
   LVL 1
   =================================
#ddnav .lvl-1.active, #ddnav .lvl-1, #ddnav .lvl-1.inpath {
  border-left: 1px solid #ccc;
  background: #fafafa;
}

#ddnav > ul > li:last-child {
  border-right: 1px solid #ccc;
}

#ddnav .lvl-1 {
  color: #444;
}

#ddnav .lvl-1.active {
  color: #469114;
  background: orange;
}

#ddnav .lvl-1.inpath {
  color: #469114;
  background: orange;
}
*/
/* =================================
   LVL 2
   ================================= */
#ddnav ul ul li {
  background: rgba(255, 255, 255, 0.85);

  float: none;
  display: block;
  margin-left: 20px;
  border-left: 2px solid #5bc4bf;
  border-right: 2px solid #5bc4bf;
}
#ddnav ul ul {


}

#ddnav ul ul li:first-child {
  padding-top:10px;

}

#ddnav ul ul li:last-child {
  padding-bottom:10px;
  border-bottom: 2px solid #5bc4bf;
}

#ddnav .lvl-2.active, #ddnav .lvl-2, #ddnav .lvl-2.inpath {

}

#ddnav .lvl-2 {

}

#ddnav .lvl-2.active {

}

#ddnav .lvl-2.inpath {

}

a.subnav-a {
  text-align: center;
  display: block;
  color: #424a53;
}
a.subnav-a:hover, .active a.subnav-a {
  color: #5bc4bf;
}
/* =================================
   LVL 3
   ================================= */

#ddnav ul ul ul li { border-bottom: 1px solid #ccc; display: block; min-width: 180px; }

#ddnav ul ul ul li:last-child { border-bottom: none; }

#ddnav .lvl-3.active, #ddnav .lvl-3, #ddnav .lvl-3.inpath {
  padding: 0px 15px 0px 15px;
  margin: 0px 0px 0px 0px;
  float: none !important;
  display: block;
  text-decoration: none;
  font-weight: normal;
  background-image: none;
  line-height: 30px;
}

#ddnav .lvl-3 {
  color: #444;
}

#ddnav .lvl-3.active {
  color: #888;
  font-weight: bold;
}

#ddnav .lvl-3.inpath {
  color: #444;
  font-weight: bold;
}

/* =================================
   HOVER INTENT - KEEP AT LAST POS
   ================================= */
#ddnav ul li:hover {

}


#ddnav ul ul {
  position: absolute;
  left: -9999px;
  /*display:none;*/
  /*margin-top: 40px; !* line - height? *!*/
  z-index: 999;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;

  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;

  opacity: 0;
  top:125px;
}




#ddnav ul ul ul {
  position: absolute;
  left: -9999px;
  /*display:none;*/
  margin-top: -30px;
  margin-left: 180px;
  z-index: 999;
  opacity: 0;
}

#ddnav ul li:hover > ul {
  left: 0;
  /*display:block;*/
  -webkit-transition-delay: .25s;
  transition-delay: .25s;
  opacity: 1;
}

#ddnav ul ul li:hover ul {
  left: 0;
  /*display:block;*/
  -webkit-transition-delay: .25s;
  transition-delay: .25s;
  opacity: 1;
}


/* =================================
   HCO has children online
   ================================= */
/*
.hco > a:after {
  content:"►";
  display: block;
  float:right;

}

.hco:hover > a:after {
  content:"▼";
}
*/



/*


.lang-box {
  position: absolute;
  width:137px;
  background: #FFF;
  -webkit-box-shadow:  0px 2px 3px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow:     0px 2px 3px 1px rgba(0, 0, 0, 0.15);
  box-shadow:          0px 2px 3px 1px rgba(0, 0, 0, 0.15);
  padding:20px 20px;
  margin-left:-20px;
  margin-top:6px;
  display: none;
  z-index: 150;
}

.curr-lang {
  background: url(/layout/dd_icon.png) no-repeat 58px center;
  display: inline-block;
  cursor: pointer;
  width:100%;

}
.lang-line {
  padding-left:34px;
  width:102px;
  display: inline-block;

}
.lang-line a:hover { color: #00afd8; }
.lang-en {
  background:url(/layout/en.png) no-repeat center left;
}

.lang-de {
  background:url(/layout/de.png) no-repeat center left;
}

.lang-nl {
  background:url(/layout/nl.png) no-repeat center left;
}
*/