
/* RS PROP DESK V8 C6S - Dark readable dropdown for MARKET/RISK */
#marketSelect, #riskSelect {
  background: #061620 !important;
  color: #eaffff !important;
}
#marketSelect option, #riskSelect option {
  background: #061620 !important;
  color: #eaffff !important;
}
.rsNativeHidden {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
}
.rsCustomSelect {
  position: relative;
  width: 100%;
  min-width: 116px;
}
.rsSelectLabel {
  width: 100%;
  height: 28px;
  border: 1px solid rgba(41, 77, 98, .92);
  border-radius: 7px;
  background: linear-gradient(180deg, #0b2535, #061620);
  color: #eaffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-align: left;
  padding: 0 25px 0 9px;
  cursor: pointer;
  box-shadow: inset 0 0 12px rgba(25,168,255,.12), 0 0 0 1px rgba(0,0,0,.2);
}
.rsSelectLabel::after {
  content: "▾";
  position: absolute;
  right: 8px;
  color: #19a8ff;
}
.rsSelectMenu {
  display: none;
  position: absolute;
  z-index: 99999;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  border: 1px solid rgba(25,168,255,.65);
  border-radius: 8px;
  background: #061620;
  box-shadow: 0 16px 44px rgba(0,0,0,.78);
  overflow: hidden;
}
.rsCustomSelect.open .rsSelectMenu {
  display: block;
}
.rsSelectOption {
  display: block;
  width: 100%;
  height: 31px;
  border: 0;
  border-bottom: 1px solid rgba(18,50,71,.82);
  background: #061620;
  color: #dff8ff;
  text-align: left;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.rsSelectOption:hover,
.rsSelectOption.active {
  background: #0d3550;
  color: #ffffff;
}
