
.custSelBoxWrap{
  max-width: 1080px; width: 90%; margin: 0 auto; margin-bottom: 80px;
  display: flex; justify-content: center;
}
.custSelBox{ 
  width: fit-content; height: fit-content; line-height: 44px;
  letter-spacing: -0.5px !important;
  font-family: inherit;
  margin-top: 30px;
}
.custSelBox * { box-sizing: border-box; }
.custSelBox span.sel_arrow {position: relative; width: 16px; height: 6px;}
.custSelBox .sel_arrow img{
  position: absolute; top: 50%; right: 0px; transform: translateY(-50%);
  width: 100%;
}
.custSelBox .sel_arrow.on img{display: none;}
.custSelBox .sel_arrow.on::after{
  content: '';
  position: absolute; top: 0; right: 0px;
  width: 16px; height: 6px;
  transform:rotate(180deg);
  background-image: url(/assets/img/com/select2.svg);
  background-repeat: no-repeat; background-size: cover;
}
.custSelBox .label {
  box-sizing: border-box;
  border: 1px solid #b8b8b8; border-radius: 7px;  background-color: #FFFFFF;
  font-size: 14px; font-weight: 500; font-family: inherit; color: #555;
  padding-left: 9px; padding-right: 8px; letter-spacing: -0.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%; height: 42px; line-height: 43px;
  outline: 0 none; cursor: pointer;
}
.custSelBox .label.on{color:black;}
.custSelBox .optionList {
  width: 100%;
  background: #fff; color: #000;
  padding: 0; margin: unset;
  margin-top: 7px; 
  border-radius: 7px;
  overflow: hidden;
  max-height: 0;
}
.custSelBox.active .optionList {max-height: fit-content;  border: 1px solid #b8b8b8; padding: 6px 0 ;}

.custSelBox .optionList::-webkit-scrollbar {width: 6px;}
.custSelBox .optionList::-webkit-scrollbar-track {background: transparent; }
.custSelBox .optionList::-webkit-scrollbar-thumb {background: #303030; border-radius: 45px;}
.custSelBox .optionList::-webkit-scrollbar-thumb:hover {background: #303030;}

/* firefox 브라우져 css 별도 적용 */
.custSelBox .optionList{
  scrollbar-width: thin; /* 스크롤바 두께 */
  scrollbar-color: #303030 transparent; /* 손잡이 색상과 트랙 색상 */
}

.custSelBox .optionList_item {
  height: 32px;
  font-size: 14px; letter-spacing: -0.5px; padding: 0px 9px;
  display: flex; align-items: center; cursor: pointer;
}
.custSelBox .optionList_item:hover {background: #f8f8f8;}
.custSelBox .optionList_item a{line-height: 30px; letter-spacing: -0.4px;}

@media all and (min-width:640px){
  .custSelBoxWrap{justify-content: flex-start;}
  .custSelBox .label{padding-left: 12px; padding-right: 12px;}
  .custSelBox .optionList_item { padding: 0px 12px; }
}

@media all and (min-width:768px){
  .custSelBoxWrap{width: 95%;}
}


