.custom-select-container {
  position: relative;
  box-sizing: border-box;
  max-width: 280px;
  width: 100%;
  background: #fff;
  border-radius: 13px;
  padding: 12px 16px 12px 14px;
  user-select: none;
  border-radius: 5px;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: 0.333;
}
.custom-select-opener {
  background-color: transparent;
  display: block;
  cursor: pointer;
  width: 100%;
  border-left: none;
  padding-right: 0;
  padding-left: 30px;
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 186%;
  color: #6b7280;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  overflow: hidden;
}
.custom-select-opener::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  content: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M14%205.16666H2C1.72667%205.16666%201.5%204.93999%201.5%204.66666C1.5%204.39332%201.72667%204.16666%202%204.16666H14C14.2733%204.16666%2014.5%204.39332%2014.5%204.66666C14.5%204.93999%2014.2733%205.16666%2014%205.16666Z%22%20fill%3D%22black%22%20%2F%3E%3Cpath%20d%3D%22M12%208.5H4C3.72667%208.5%203.5%208.27333%203.5%208C3.5%207.72667%203.72667%207.5%204%207.5H12C12.2733%207.5%2012.5%207.72667%2012.5%208C12.5%208.27333%2012.2733%208.5%2012%208.5Z%22%20fill%3D%22black%22%20%2F%3E%3Cpath%20d%3D%22M9.33335%2011.8333H6.66669C6.39335%2011.8333%206.16669%2011.6067%206.16669%2011.3333C6.16669%2011.06%206.39335%2010.8333%206.66669%2010.8333H9.33335C9.60669%2010.8333%209.83335%2011.06%209.83335%2011.3333C9.83335%2011.6067%209.60669%2011.8333%209.33335%2011.8333Z%22%20fill%3D%22black%22%20%2F%3E%3C%2Fsvg%3E");
}
.is-open .custom-select-opener::after {
  transform: rotate(-90deg);
}
.custom-select-container select {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.custom-select-panel {
  max-height: 0;
  transition: max-height 0.5s ease-out, overflow-y 0.1s 0.5s;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: 100%;
  z-index: 222;
  width: 100%;
  left: 0;
}
.custom-select-container.is-open .custom-select-panel {
  max-height: 10.7em;
  overflow-y: auto;
}
.custom-select-option {
  padding: 0.5em;
  cursor: pointer;
  font-size: 13px;
}
.custom-select-option.has-focus {
  background-color: #006EF9;
  color: #fff;
}
.custom-select-optgroup > .custom-select-option {
  padding-left: 2em;
}
.custom-select-optgroup::before {
  content: attr(data-label);
  display: block;
  padding: 0.5em;
  color: #888;
}

@media (max-width: 1199.98px) {
  .custom-select-container {
    padding: 8px 10px 8px 10px;
    /*
    border-radius: 0;
    background-color: #fff;
    */
  }

  .custom-select-container select {
    height: 100%;
  }

  .custom-select-opener {
    font-size: 12px;
  }

  .custom-select-opener::after {
    top: -3px;
  }
}
