.custom-select-container {
  font-family: var(--main-font);
  position: relative;
  box-sizing: border-box;
  width: 230px;
  background-color: #fff;
  border-radius: 5px;
  padding: 14px 20px 14px 26px;
  text-transform: lowercase;
  user-select: none;
}
.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-left: 0;
  padding-right: 30px;
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  overflow: hidden;
}
.custom-select-opener::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  content: url("data:image/svg+xml,%3Csvg width='22' height='23' viewBox='0 0 22 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='1'%3E%3Cpath d='M16.6667 8.83341L11.3333 14.1667L6 8.83341' stroke='%23141414' stroke-width='1.52381' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/g%3E%3C/svg%3E");
  /* content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC42Ij4KPHBhdGggZD0iTTE2LjAwMDIgNy45OTk5MkwxMC42NjY4IDEzLjMzMzNMNS4zMzM1IDcuOTk5OTIiIHN0cm9rZT0iIzE0MTQxNCIgc3Ryb2tlLXdpZHRoPSIxLjUyMzgxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9nPgo8L3N2Zz4K"); */
}
.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: #1e1e1e;
  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: 1039.98px) {
  .custom-select-container {
    padding: 14px 10px 14px 10px;
    /*
    border-radius: 0;
    background-color: #fff;
    */
  }

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

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