.navbar.navbar-trim {
  background-color: #f0f0f0 !important;
  z-index: 9999;
}
.skyline {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 32px;
}
.skyline .skyline-left {
  height: inherit;
}
.skyline .skyline-right {
  height: inherit;
}
.skyline ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 0;
  height: inherit;
}
.skyline .skyline-left ul {
  justify-content: flex-start;
}
.skyline .skyline-right ul {
  justify-content: flex-end;
}
.skyline ul li {
  list-style-type: none;
  height: inherit;
  padding: 0 16px;
  position: relative;
}
.skyline ul li a {
  font-size: .9rem !important;
  font-family: 'Open Sans', sans-serif !important;
  display: block;
  height: inherit;
  padding: 0 8px;
  line-height: 32px;
  color: rgba(0,0,0,.7);
}
.skyline ul li.has-children a {
  cursor: default;
}
.skyline ul li a:hover {
  color: rgba(0,0,0,1);
}
.skyline ul li a.locations {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.skyline ul li a svg {
  margin-right: 4px;
}
.skyline ul li a svg #map-path {
  fill: #003789;
}
.skyline ul li a.active {
  border-bottom: 3px solid #003788;
}
.skyline ul li ul {
  display: none;
  position: absolute;
  top: 32px;
  left: 16px;
  background-color: #fff;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 0;
}
.skyline ul li.has-children:hover ul {
  display: block;
}
.skyline ul li ul li {
  padding: 0;
}
.skyline ul li ul li a {
  cursor: pointer !important;
  height: 24px;
  white-space: nowrap;
  line-height: 24px;
  padding: 0 16px;
}

@media screen and (max-width:991.98px) {
  .navbar-light .navbar-toggler {
    margin: .25rem 0;
  }
  .skyline ul li a {
    font-size: .8rem !important;
    padding: 0 6px;
  }
  .skyline ul li.has-children:hover ul {
    display: none;
  }
  .skyline ul li.has-children.toggled ul {
    display: block !important;
  }
  .skyline ul li.has-children a {
    cursor: pointer;
  }
}

@media screen and (max-width:767px) {
  .skyline ul li a {
    font-size: .7rem !important;
    padding: 0 4px;
  }
}

@media screen and (max-width:576px) {
  .skyline {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
  }
  .skyline .skyline-left > ul, .skyline .skyline-right > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .skyline .skyline-left > ul > li.has-children > a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
  }
  .skyline ul li a {
    font-size: .9rem !important;
    padding: 0 8px;
  }
  .skyline ul li ul {
    top: 0;
    left: 120px;
  }
}