/* Basic reset */
.mldm-menu-container {
  color: #213F59;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}

.mldm-menu,
.mldm-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
}

.mldm-menu li {
  position: relative;
}

.mldm-menu li:last-child {
  border-bottom: none;
}

.mldm-menu > li > a {
  color: #213F59;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  display: block;
  padding: 5px 0px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

/*.mldm-menu li a:hover,*/
/*.mldm-menu li a:focus {*/
/*  background: #000;*/
/*  color: #fff;*/
/*  outline: none;*/
/*}*/

.dropdown-arrow {
  float: right;
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  position: relative;
}

.dropdown-arrow:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 5px;
  background: url("../images/arrow-right.svg") no-repeat center center;
}

/* Submenu styles */
.sub-menu,
.sub-sub-menu {
  display: none;
  position: static;
  min-width: auto;
  border: none;
  background: none;
  box-shadow: none;
  padding-left: 15px;
  margin-top: 5px;
}

.sub-menu li,
.sub-sub-menu li {
  border-bottom: none;
  padding-left: 10px;
}

.sub-menu li:last-child,
.sub-sub-menu li:last-child {
  border-bottom: none;
}

/* Show submenu for focus and open-path */
.mldm-menu li.focus > .sub-menu,
.mldm-menu li.focus > .sub-sub-menu,
.mldm-menu li.open-path > .sub-menu,
.mldm-menu li.open-path > .sub-sub-menu {
  display: block;
}

/* Rotate arrow for open states */
.mldm-menu li.focus > a .dropdown-arrow:after,
.mldm-menu li.open-path > a .dropdown-arrow:after {
  background: url("../images/arrow-bottom.svg") no-repeat center center;
}

.mldm-menu li.current-menu-item > a {
  color: #4CBAAF;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
}

.mldm-menu li[data-always-open="1"] > ul {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.menu-heading {
  font-weight: 700;
}

.open-path > a {
  color: #4CBAAF;
  font-weight: 700;

}


/* Responsive adjustments */
@media (max-width: 768px) {
  .mldm-menu,
  .mldm-menu ul {
    position: static;
    border: none;
    box-shadow: none;
  }

  .sub-menu,
  .sub-sub-menu {
    position: static;
    box-shadow: none;
  }
}
