@charset "UTF-8";
.custom-select {
  position: relative;
  /* dropdown */
}
.custom-select select {
  display: none;
  /*hide original SELECT element: */
}
.custom-select .select-selected {
  display: flex;
  align-items: center;
  font-size: calc(12/16 * 1em);
  font-weight: bold;
  letter-spacing: calc(1.8/12 * 1em);
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  padding: 0 calc(50/12 * 1em) 0 calc(20/12 * 1em);
  height: calc(55/12 * 1em);
  /* select arrow */
  /* active select arrow */
}
.custom-select .select-selected:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(-180deg);
  right: calc(20/12 * 1em);
  width: calc(13/12 * 1em);
  height: calc(8/12 * 1em);
  background-image: url("../images/topnav-chevron-13x8.png");
  background-size: cover;
}
.custom-select .select-selected.select-arrow-active {
  border-color: #000;
  background-color: #ECF1F3;
}
.custom-select .select-selected.select-arrow-active:after {
  transform: translateY(-50%) rotate(0deg);
}
.custom-select .select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  z-index: 99;
  box-shadow: 0 0.3125em 1.25em rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  max-height: 18em;
  /* closed dropdown */
}
.custom-select .select-items div {
  display: flex;
  align-items: center;
  min-height: calc(44/12 * 1em);
  color: #000;
  font-weight: bold;
  font-size: calc(12/16 * 1em);
  letter-spacing: calc(1.8/12 * 1em);
  text-transform: uppercase;
  word-break: break-word;
  white-space: nowrap;
  cursor: pointer;
  padding: calc(8/12 * 1em) calc(20/12 * 1em);
}
.custom-select .select-items div:hover, .custom-select .select-items div.same-as-selected {
  background-color: #0076c8;
  color: #fff;
}
.custom-select .select-items div:first-child {
  display: none;
}
.custom-select .select-items div:first-child[data-value=all]:before {
  content: "Clear ";
}
.custom-select .select-items div:first-child.same-as-selected {
  display: none;
}
.custom-select .select-items.select-items--selected div:first-child {
  display: flex;
}
.custom-select .select-items.select-hide {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .custom-select .select-items {
    right: 0;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .custom-select .select-items {
    min-width: 100%;
  }
}

/*# sourceMappingURL=custom-select.css.map */
