[data-select-input] {
  position: relative;
  z-index: 1;
}
[data-select-input] [data-select] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
[data-select-input].edition-show::before, [data-select-input].edition-show::after {
  display: block;
}
[data-select-input].edition-hide::before, [data-select-input].edition-hide::after {
  display: none;
}
[data-select-input].active {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  z-index: 2;
}
[data-select-input].active input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
[data-select-input].active::before, [data-select-input].active::after {
  display: block;
}
[data-select-input].active::before {
  right: 22px;
  transform: translateY(-50%) rotate(-45deg);
}
[data-select-input].active::after {
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}
[data-select-input]::before, [data-select-input]::after {
  content: "";
  position: absolute;
  display: none;
  top: calc(50% + 2px);
  z-index: 3;
  width: 11px;
  height: 2px;
  background: #01abe8;
  transition: all 0.1s linear;
}
[data-select-input]::before {
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
[data-select-input]::after {
  right: 14px;
  transform: translateY(-50%) rotate(-45deg);
}

[data-select-list] {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  max-height: 200px;
  overflow-y: scroll;
}

.select__option {
  background: #fff;
  padding: 10px;
  transition: all 0.15s linear;
  cursor: pointer;
}
.select__option:hover {
  background: #01abe8;
  color: #fff;
}
[data-select-input].open-up [data-select-list] {
  bottom: 100%;
  top: auto;
}/*# sourceMappingURL=selectInput.css.map */