.custom-select {
  position: relative;
  width: 100%;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 24px;
  z-index: 15;
}
.custom-select__label {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.custom-select__wrapper {
  position: relative;
  user-select: none;
}
.custom-select__content {
  position: relative;
  flex-grow: 1;
  white-space: nowrap;
}
.custom-select__selected {
  padding: 16px 45px 16px 20px;
  min-width: 150px;
  height: 55px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000000;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  transition: border-color .3s ease-in-out, color .2s ease-in-out;
  cursor: pointer;
}
.custom-select__selected:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  background: url("/images/icons/angle.svg") center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all .2s ease-in-out;
}
.custom-select__selected:hover {
  border-color: #ffa000;
}
.custom-select__selected_name {
  color: #a3afbc;
}
.custom-select__selected.active {
  border-color: #ffa000;
  transition: border-color .2s ease-in-out;
}
.custom-select__selected.active:after {
  transform: translateY(-50%) scale(1, -1);
}
.custom-select__options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 11;
  padding: 5px 0;
  min-width: 100%;
  max-height: 340px;
  display: none;
  overflow: auto;
  background: #f7f7f7;
  border: none;
  box-shadow: 0 4px 12px 0 #5c5c5c33;
}
.custom-select__option {
  padding: 8px 20px;
  color: #c4c4c4;
  transition: color .2s ease-in-out;
  cursor: pointer;
}
.custom-select__option:hover {
  color: #fe693a;
}
.custom-select__option.selection {
  color: #000000;
}
.custom-select__option.disabled {
  opacity: .5;
  pointer-events: none;
}
.custom-select select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
}
.custom-select_size-small {
  max-width: 300px;
}
.custom-select_radio .custom-select__content {
  max-width: max-content;
}
.custom-select_radio .custom-select__selected {
  padding: 0 20px 0 0;
  min-width: initial;
  height: auto;
  background: transparent;
  border: none;
}
.custom-select_radio .custom-select__selected:after {
  right: 5px;
}
.custom-select_radio .custom-select__options {
  width: 270px;
}
.custom-select_radio .custom-select__option {
  position: relative;
  padding: 12px 40px 12px 20px;
  color: #000000;
}
.custom-select_radio .custom-select__option:before, .custom-select_radio .custom-select__option:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.custom-select_radio .custom-select__option:before {
  border: 1px solid #c4c4c4;
  transition: border-color .2s ease-in-out;
}
.custom-select_radio .custom-select__option:after {
  background: #fe693a;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform .2s ease-in-out;
}
.custom-select_radio .custom-select__option.selection:before {
  border-color: #fe693a;
}
.custom-select_radio .custom-select__option.selection:after {
  transform: translateY(-50%) scale(0.6);
}
.custom-select_radio .custom-select__option:hover:before {
  border-color: #fe693a;
}
.custom-select_radio .custom-select__option:not(:last-child) {
  border-bottom: 1px solid #efefef;
}
.custom-select_trsp {
  width: initial;
  height: initial;
  min-width: initial;
}
.custom-select_trsp .custom-select__selected {
  min-width: initial;
  padding: 0 30px 0 0;
  height: initial;
  border: none;
  background: transparent;
}
.custom-select_trsp .custom-select__selected:after {
  right: 10px;
}

/*# sourceMappingURL=custom-select.css.map */
