.nativejs-select {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  position: absolute;
  left: -999999999px;
}

.select_common {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 24px;
  position: relative;
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.select_common.error {
  border-color: #ef532a;
}

.select_common .placeholder_select {
  position: relative;
  padding: 15px;
  font-size: 16px;
  color: #333;
}

.select_common .placeholder_select:before {
  content: '';
  display: block;
  width: 16px;
  height: 9px;
  background: url('/static/img/catalog/select-arrow.svg');
  position: absolute;
  right: 12px;
  top: calc(50% - 4.5px);
}

.select_common .select_items {
  width: calc(100% + 2px);
  position: absolute;
  transform: translateY(100%);
  left: -1px;
  right: 0;
  bottom: -1px;
  z-index: 5;
  display: none;
  border: 1px solid #e1e1e1;
  border-top: none;
  background: #fff;
  max-height: 200px;
  overflow: hidden auto;
}

.select_common .select_items li {
  padding: 10px 15px;
  color: #757474;
}

.select_common .select_items li:hover {
  background: #eef5ff;
}

.select_active {
  border-radius: 8px 8px 0 0;
}

.select_active .placeholder_select:before {
  transform: rotate(180deg);
}

.select_active .select_items {
  display: block;
  border-radius: 0 0 8px 8px;
}
