@charset "UTF-8";
.b-dropdown {
  position: relative;
}

.b-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  background-color: #fff;
}
.b-dropdown-menu.js-is-showing {
  display: block;
  z-index: 1000;
}

.b-dropdown--styled {
  line-height: 1.29;
  font-size: 14px;
}
.b-dropdown--styled button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  text-align: left;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.b-dropdown--styled .toggle-btn {
  border: 1px solid #606060;
  border-radius: 3px;
  position: relative;
  padding-right: 45px;
}
.b-dropdown--styled .toggle-btn .toggle-indicator {
  position: absolute;
  right: 15px;
  top: 11px;
  font-size: 14px;
}
.b-dropdown--styled .toggle-btn[aria-expanded=true] {
  border-bottom-color: #fff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  z-index: 1001;
}
.b-dropdown--styled .toggle-btn[aria-expanded=true] .toggle-indicator {
  transform: rotate(-180deg);
}
.b-dropdown--styled .toggle-btn:hover {
  background-color: #eee;
}
.b-dropdown--styled .b-dropdown-item {
  display: block;
  padding: 5px 15px;
}
.b-dropdown--styled [role=option]:hover {
  background-color: #666;
  color: #fff;
}
.b-dropdown--styled [role=option]:first-child {
  display: none;
}
.b-dropdown--styled .b-dropdown-menu {
  width: 100%;
  border: 1px solid #606060;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  max-height: 260px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.b-dropdown--styled .b-dropdown-menu.js-is-showing {
  border-top: 0;
  top: calc(100% - 1px);
}
.b-dropdown--styled .js-has-selected + .b-dropdown-menu [role=option]:first-child {
  display: block;
}

.sr-only, .select-to-dropdown select {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
}

.select-to-dropdown .js-item-selected:before {
  position: relative;
  top: 3px;
  float: left;
  content: "";
  text-indent: -15px;
  font-size: 11px;
  font-weight: 700;
}

/*# sourceMappingURL=select-to-dropdown.css.map */
