.custom-select-container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  /*background-color: #f4f4f4;*/
  border-radius: 13px;
  padding: 7px 20px 7px 26px;
  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: 22px;
  padding-right: 0;
  position: relative;
  color: #000;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  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");*/
}
.custom-select-opener::before {
  position: absolute;
  top: 0;
  left: 2px;
  /*
  width: 22px;
  height: 23px;
  */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  content: url("/image/template/arrow-sort.svg");
}
.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; */
    padding-left: 0;
    padding-right: 0;
    /* width: auto; */
    /*
    border-radius: 0;
    background-color: #fff;
    */
  }

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

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