.customSelect {
  width: 180px;
}
.custom-select-container {
  position: relative;
  box-sizing: border-box;
  z-index: 1000;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: .333;
}
.custom-select-opener {
  background-color: #444654;
  background-image: var(--chevron);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 14px;
  padding: 6px 10px 7px;
  display: block;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
}
.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  transition: max-height .3s ease-out, overflow-y 0.1s 0.5s;
  overflow: hidden;
  background-color: #444654;
  position: absolute;
  top: 100%;
  transform: translateY(5px);
  z-index: 1;
  width: 100%;
  border-radius: 6px !important;
  box-shadow: 0px 3px 7px 2px rgba(0, 0, 0, 0.15);
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto
}
.custom-select-option {
  padding: 0.5em;
  cursor: pointer;
  transition: 0.1s background-color ease-in-out;
}
.custom-select-option.has-focus {
  background-color: #606c80;
}
/* .custom-select-option.is-selected::before {
  content: "✔";
  padding-right: 0.5em;
} */
.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}