
.cstm-select {
  position: relative;
  outline: none;
}

.cstm-selected-option {
  font-size: 14px;
  font-family: font-8;
  color: #6f6f6f;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid #323232;
  position: relative;
}

.cstm-select.closed .cstm-options-container {
  display: none;
}

.cstm-control-bar .cstm-options-container {
  max-height: 200px;
}

.cstm-control-bar .cstm-options-container,
.enable-scroll .cstm-options-container {
  overflow-y: auto;
}

.cstm-options-container {
  position: absolute;
  z-index: 100;
  width: 100%;
  border: 1px solid #323232;
  margin-top: 2px;
  background-color: #111111;
}

.cstm-option-item {
  padding: 10px 16px;
  color: #6f6f6f;
  font-size: 14px;
  font-family: font-8;
  cursor: pointer;
}

.cstm-option-item:not(:last-child) {
  border-bottom: 1px solid #32323285;
}

.cstm-option-item:hover,
.cstm-option-item.cstm-active-option {
  background-color: #323232;
  color: #bdbdbd;
}

.cstm-select.closed .cstm-selected-option span::after {
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 15px;
  color: #949494;
  margin-left: 4px;
}

.cstm-select.open .cstm-selected-option span::after {
  content: "\f106";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 15px;
  color: #949494;
  margin-left: 4px;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar,
.enable-scroll .cstm-options-container::-webkit-scrollbar {
  width: 8px;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar-track,
.enable-scroll .cstm-options-container::-webkit-scrollbar-track {
  background: #e1e1e1;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar-thumb,
.enable-scroll .cstm-options-container::-webkit-scrollbar-thumb {
  background: #6f6f6f;
}
