/* container */
.menu {
  position: relative;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* submenu */
.menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* show */
.menu li.open > ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* optional arrow */
.menu li.has-submenu > a::after {
  content: " ▼";
  font-size: 0.7em;
}

.navigation {
  border: 1px dotted #e5e5e5;
  border-right: none;
  border-left: none;
}

/* WRAPPER */
.ddsmoothmenu {
  background: none;
  /*border-bottom: 1px solid #ccc;*/
  font-family: Arial, sans-serif;
}

/* UL */
.ddsmoothmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

/* LI */
.ddsmoothmenu ul li {
  margin: 0;
}

/* LINK */
.ddsmoothmenu ul li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  background: transparent;
  transition: all 0.2s ease;
}

/* HOVER */
.ddsmoothmenu ul li a:hover {
  background: #d0d0d0;
}

/* ACTIVE (HOME) */
.ddsmoothmenu ul li a.selected {
  background: #2c5d8a;
  color: #fff;
}

/* OPTIONAL: first item spacing fix */
.ddsmoothmenu ul li.first a {
  margin-left: 5px;
}