select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff; /* 원하는 배경색으로 변경 */
  border: 1px solid #ddd;
  color: #000;
  padding: 8px;
}

/* iOS에서 기본 스타일 제거 */
select::-ms-expand {
  display: none;
}

/* iOS에서 배경색 강제 적용 */
select {
  background-image: none !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
}
.select_box {
  margin-top: 50px;
  width: 90%;
  max-width: 250px;
}
.select_box .select_box1, .select_box .select_box2, .select_box .select_box3 {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.select_box .select_box1::before, .select_box .select_box2::before, .select_box .select_box3::before {
  content: "";
  position: absolute;
  right: 0px;
  top: 0%;
  width: 35px;
  height: 40px;
  background: #acacac;
  pointer-events: none;
  cursor: pointer;
  z-index: 10;
}
.select_box .select_box1::after, .select_box .select_box2::after, .select_box .select_box3::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  right: 12px;
  top: 40%;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 12;
}
.select_box .select_box3::after {
  background: url(../images/search_icon.png) no-repeat center center/contain;
  border: none;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  right: 7px;
  top: 40%;
}
.select_box select {
  margin-bottom: 10px;
  width: 100%;
  max-width: 250px;
  height: 40px;
  border-radius: 5px;
  text-align: end;
  padding: 0 20px;
  outline: none;
  border: none;
  cursor: pointer;
  padding-right: 60px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.select_box select option {
  text-align: start; 
}
.select_box select::-ms-expand {
  display: none;
}

.select_search_1{
  max-width: unset;
}