.custom-select-container {
  position: relative;
  box-sizing: border-box;;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: .333;
}
.custom-select-opener {
  background: #FEF9F0;
  border-radius: 25px;
  padding: 10px 36px 10px 16px;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.custom-select-opener::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 15px;
  width: 11px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4.5 4.5L8 1' stroke='%232D2923' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
}
.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  transition: max-height .5s ease-out, overflow-y 0.1s 0.5s;
  overflow: hidden;
  background-color: #FEF9F0;
  position: absolute;
  top: 100%;
  z-index: 1;
  width: 100%;
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto;
  border-radius: 0 0 20px 20px;
}
.customSelect.is-open .custom-select-opener{
  border-radius: 20px 20px 0 0;
}
.custom-select-option {
  font-family: "Roboto", sans-serif;
  padding: 5px 17px;
  font-weight: 400;
  font-size: 14px;
}

.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}


