select.custom-ui {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 60px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.custom-select-selected {
  height: 30px;
  line-height: 30px;
  border: 1px solid #fff;
  transition: border-color 0.2s;
  color: #fff;
  padding-right: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-select-selected:after {
  content: "";
  width: 11px;
  height: 100%;
  background-image: url("icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
  position: absolute;
  right: 9px;
}
.custom-select-selected.select-arrow-active {
  border-color: #007bff;
}
.custom-select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}
.custom-select-items {
  padding-top: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-select-items div {
  height: 30px;
  line-height: 29px;
  text-align: center;
  background-color: #fff;
  transition: 0.2s;
}
.custom-select-items div:hover {
  background-color: #f7d0d4;
}
.custom-select-items div:not(:last-child):after {
  content: " ";
  display: block;
  height: 1px;
  width: 70%;
  margin: 0 auto;
  background-color: #ddd;
}
.custom-select-items div:last-child {
  border-bottom: none;
}
.custom-select-items div.selected {
  color: #AA1E2D;
}
.custom-select-hide {
  display: none;
}

/*# sourceMappingURL=customSelector.css.map */
