.dropdown-toggle {
  cursor: pointer;
}
.dropdown-toggle::after {
  display: none;
}

.menu-item--expanded.dropdown .dropdown-menu::before {
  content:''; /* Required to display content */
  position: absolute; /* Sets the position absolute to the top div */
  top: 0;
  left: 35%;/* position the little arrow */
  margin-left: -15px;
  margin-top:-15px; /* Set margin equal to border px */
  width: 0;
  z-index:1;
  height: 0;
  border-bottom: solid 15px #FFF; /* Creates the arrow pointing up, to change to a notch instead user border-top */
  border-left: solid 15px transparent; /* Creates triangle effect */
  border-right: solid 15px transparent; /* Creates triangle effect */
}

.dropdown-item.active, .dropdown-item:active {
  background-color: inherit;
}

.header .dropdown-menu a {
  border-bottom: none;
}

.header .dropdown-menu a.is-active {
  font-weight: bold;
}

.header .dropdown-menu .nav-link--child {
  padding-left: .5rem;
}

.header .dropdown-menu .nav-link--child::before {
  content: "— ";
}

@media only screen and (max-width: 992px) {
  .menu-item--expanded.dropdown .dropdown-menu::before {
    top: auto;
    left: 10%;/* position the little arrow */
    margin-top:-20px; /* Set margin equal to border px */

  }

}
