.custom-select-container {
  position: relative;
  padding: 14px 20px 14px 26px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 13px;
  user-select: none;
  box-sizing: border-box;
}
.custom-select-container * {
  box-sizing: border-box;
}
.custom-select-container.is-disabled {
  opacity: 0.333;
}
.custom-select-container .text-danger {
  position: absolute;
  top: 100%;
  left: 0;
}
.custom-select-opener {
  background-color: transparent;
  display: block;
  cursor: pointer;
  width: 100%;
  border-left: none;
  padding-left: 0;
  padding-right: 30px;
  position: relative;
  color: #141414;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.custom-select-opener::after {
  position: absolute;
  top: -4px;
  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");
}
.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: #00483a;
  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;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /*
    background-color: #fff;
    */
  }

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

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

  .is-open .custom-select-opener::after {
    transform: translateY(-50%) rotate(-90deg);
  }

  .custom-select-opener::after {
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
  }
}