/* Select */
.select {
  position: relative;
  border-radius: 100px;
  background: #EBF1FA;
}

.select-top {
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.select-icon {
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

@media (any-hover:hover) {
  .select-top {
    cursor: pointer;
  }

  .select-top:hover .select-icon {
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
  }
}

.select-value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select-img {
  margin-right: 12px;
  width: 100%;
  max-width: 22.5px;
}

.select-line {
  width: 1px;
  height: 10px;
  background-color: #fff;
}

.select-text {
  font-weight: 400;
  font-size: 12px;
  color: #000;
}

.select-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 150px;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 6px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 5px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.select.active .select-list {
  opacity: 1;
  z-index: 10;
}

.select.active .select-icon {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1);
}

.select-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 8px;
  border-radius: 15px;
}

.select-option img {
  margin-right: 12px;
}

@media (any-hover:hover) {
  .select-option {
    cursor: pointer;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .select-option:hover {
    background: #EBF1FA;
  }
}