.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 {
  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;
}
.skyline ul li .skyline-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: inherit;
  padding-left: 0;
  padding-bottom: 3px;
}
.skyline ul li .skyline-switch span {
  display: block;
}
.skyline ul li .skyline-switch span svg {
  width: 16px;
  height: 16px;
}
.skyline ul li .skyline-switch span svg path {
  fill: rgba(0, 0, 0, .7);
}
.skyline ul li .skyline-switch input {
  width: 44px;
  height: 16px;
  position: relative;
}
.skyline ul li .skyline-switch .custom-control-label:before {
  top: -0.4rem;
}
.skyline ul li .skyline-switch .custom-control-label:after {
  top: -0.3rem;
}

[data-theme=dark] .navbar.navbar-trim {
  background-color: #222 !important;
}
[data-theme=dark] .skyline ul li a.active {
  border-color: #eee !important;
}
[data-theme=dark] .skyline ul li a svg #map-path,
[data-theme=dark] .skyline ul li .skyline-switch span svg path {
  fill: #eee !important;
}
[data-theme=dark] .skyline ul li.has-children:hover ul {
  background-color: #333 !important;
}