/*
 * Custom Select jQuery Plugin Base
 */
 .custom-select {
  position: relative;
}
.custom-select__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select__option-wrap {
  position: relative;
}
.custom-select__input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border-width: 1px 0;
  border-style: solid;
  border-radius: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select__dropdown {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: 100%;
  left: 0;
}
.custom-select--dropup .custom-select__dropdown {
  top: auto;
  bottom: 100%;
}
/*
 * Custom Select jQuery Plugin Theme
 */
.custom-select__option {
  position: relative;
  padding: 18.5px 20px;
  font-size: 18px;
  color: #323240;
  line-height: 1.5;
}
.custom-select__option:focus {
  outline: none;
}

.custom-select__dropdown .custom-select__option:hover {
  background-color: #fff;
}
.custom-select__dropdown .custom-select__option:active {
  background-color: #fff;
}
.custom-select__option--value {
  height: 60px;
  padding: 10px 50px 10px 16.5px;
  font-size: 18px;
  line-height: 27px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #fff;
  border-radius: 5px;
  color: #323240;
  border: 1px solid #EAEAFF;
  outline: none;
}
.custom-select__option--value:focus .custom-select__dropdown{
  box-shadow: 0px 4px 14px rgba(68, 68, 68, 0);
}
.custom-select__option--value::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  transition: transform .3s;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.59 8.59L12 13.17L7.41 8.59L6 10L12 16L18 10L16.59 8.59Z' fill='%23282828'/%3E%3C/svg%3E%0A");
}
.custom-select--active .custom-select__option--value::after {
  transform: translateY(-50%) rotate(-180deg);
}
.custom-select--active .custom-select__option--value {
  border-bottom-color: transparent;
  border-radius: 0.25rem 0.25rem 0 0;
}
.custom-select--active .custom-select__option--value:hover, .custom-select--active .custom-select__option--value {
  border-bottom: none;
}
.custom-select--dropup.custom-select--active .custom-select__option--value {
  border-top-color: transparent;
  border-bottom-color: #e6e6e6;
  border-radius: 0 0 0.25rem 0.25rem;
}
.custom-select__option--selected {
  background-color: #fcfcfc;
}
.custom-select__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}
.custom-select__option[disabled]:hover, .custom-select__option[disabled]:focus {
  background-color: transparent;
}
.custom-select__option-wrap {
  overflow-y: auto;
  max-height: 11.25rem;
}
.custom-select__option-wrap::-webkit-scrollbar {
  width: 16px;
}
.custom-select__option-wrap::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
  background-clip: padding-box;
  border-width: 0 4px;
  border-style: solid;
  border-color: transparent;
}
.custom-select__input {
  position: relative;
  z-index: 1;
  height: 2.25rem;
  margin-top: -1px;
  padding: 0 0.75rem;
  border-color: #fff;
  transform: translateY(1px);
  font-size: 1rem;
  color: #212121;
}
.custom-select__input:focus {
  outline: none;
}
.custom-select--dropup .custom-select__input {
  border-top-width: 0;
  margin-top: 0;
  transform: translateY(0);
}
.custom-select__dropdown {
  overflow: hidden;
  top: calc(100% - 1px);
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  border: 1px solid #EAEAFF;
  border-top: none;
  box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08);
  max-height: 416px;
  overflow-y: auto;
  z-index: 2;
}
.custom-select--dropup .custom-select__dropdown {
  bottom: calc(100% - 1px);
  border-width: 1px 1px 0;
  border-radius: 0.25rem 0.25rem 0 0;
}

/* width */
.custom-select__dropdown::-webkit-scrollbar {
  width: 7px;
}
/* Track */
.custom-select__dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}
/* Handle */
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background-color: #DEDEDE;
  border-radius: 5px;
}
/* Handle on hover */
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background-color: #beb3b3;
}