:root {
  /* height */
  --selection-default-height: 48px; /* 셀렉트박스, 옵션영역(기본 높이) */
  --selection-default-min-width: 280px;
  --selection-response-height: 48px; /* 셀렉트박스, 모바일 높은 높이 */

  /* 옵션 최대 개수 */
  --number-options-display: 5; /* 드롭박스에 표시할 옵션의 갯수 ( 옵션갯수 * 셀렉트박스 높이 = 드롭박스 최대높이 ) */

  /* padding */
  --selection-padding: 8px 16px; /* 셀렉트박스, 옵션영역 */

  /* background */
  --selection-bg-color: #fff; /* 셀렉트박스 */
  --dropdown-bg-color: #fff; /* 드롭박스(옵션영역) */
  --selection-disabled-bg-color: #fff; /* 비활성화된 옵션 */

  /* border */
  --selection-border-color: rgba(221, 221, 221, 1); /* 기본 */
  --selection-open-border-color: rgba(255, 131, 24, 1); /* 드롭박스 오픈 시 */

  /* font */
  --selection-font-size: 14px;
  --selection-font-color: #1d1d1f; /* 기본 */
  --selection-font-option-color: #1d1d1f; /* 옵션영역 */
  --container-placeholder-color: #b1b1b7; /* 대체텍스트(플레이스홀더) */
  --selection-disabled-font-color: #b1b1b7; /* 대체텍스트(플레이스홀더) */

  /* 옵션 상태에 따른 스타일 */
  /* hover */
  --results-choice-bg-hover-color: #f5f6f7; /* 배경 */
  --results-choice-hover-color: #222; /* 컬러 */

  /* 선택된 옵션 */
  --results-choice-selected-bg: #f5f6f7; /* 배경 */
  --results-choice-selected-color: rgba(255, 131, 24, 1); /* 컬러 */

  /* 비활성화 */
  --results-choice-unselectable-color: #b1b1b7;
}

/*================================================
     컨테이너
=================================================*/
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
  max-width: 100%;
  height: auto;
  background-color: #fff;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.create_list_h {  
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

/*================================================
     드롭다운 (전체영역)
=================================================*/
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  /* height: var(--selection-default-height); */
  z-index: 1051;
}

.select2-results {
  /* 박스내부 (옵션 출력 영역) */
  display: block;
}

.select2-results__options {
  /* 옵션 리스트 영역 */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* width */
.select2-results__options::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.select2-results__options::-webkit-scrollbar-track {
  background: #999;
  border-radius: 10px;
}

/* Handle */
.select2-results__options::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

/* Handle on hover */
.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.select2-results__option {
  /* 옵션 */
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-results__option {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: var(--selection-default-height);
  line-height: 1.5;
  padding: var(--selection-padding);
  font-family: var(--selection-font-family);
  font-size: var(--selection-font-size);
  color: var(--selection-font-option-color);
  transition: color 0.2s;
  word-break: break-all;
}

.select2-results__option[role="group"] {
  padding: 0;
}

.select2-results__option[aria-disabled="true"] {
  color: var(--results-choice-unselectable-color);
}

.select2-results__option--highlighted[aria-selected] {
  background-color: var(--results-choice-bg-hover-color);
  color: var(--results-choice-hover-color);
}

.select2-results__option[aria-selected="true"] {
  background-color: var(--results-choice-selected-bg);
  color: var(--results-choice-selected-color);
}

.select2-results__group {
  cursor: default;
  display: block;
  padding: var(--selection-padding);
}

.select2-container--open .select2-dropdown {
  border-color: #ddd;
}

/*================================================
     셀렉트 오픈 시
=================================================*/
.select2-container--open .select2-dropdown {
  /* 기본 */
  left: 0;
  padding: 8px;
}

.select2-container--open .select2-dropdown--above {
  /* 위로 오픈 */
  bottom: 4px;
  border-bottom: 1px solid #ddd;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--open .select2-dropdown--below {
  /* 아래로 오픈 */
  top: 4px;
  border-top: 1px solid #ddd;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/*================================================
     검색영역
=================================================*/
.select2-search--dropdown {
  display: block;
  padding: 0;
  margin-bottom: 8px;
}
.select2-search--dropdown .select2-search__field {
  /* 검색 입력 인풋 */
  height: 35px;
  width: 100%;
  padding: 4px;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  /* 취소버튼 */
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  /* 숨김 */
  display: none;
}

/*================================================
     단일형 셀렉트 스타일 정의
=================================================*/
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.tui-select-box-input {
  outline: none !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  /* 셀렉트박스(선택옵션 값 들어가는 곳) */
  display: block;
  padding-left: 0;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container
  .select2-selection--single[dir="rtl"]
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

/* .select2-container .select2-selection--single .select-field-response {
  height: var(--selection-response-height);
} */

.select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  height: var(--selection-default-height);
  padding: var(--selection-padding);
  border: 1px solid var(--selection-border-color);
  border-radius: 4px !important;
  background-color: var(--selection-bg-color);
  outline: 0;
}

.select2-container.select2-container--open .select2-selection--single {
  border-color: var(--selection-open-border-color);
}

.invalid .select2-container .select2-selection--single {
  border-color: var(--selection-border-color);
}

.select2-container .select2-selection--single .select2-selection__rendered {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0;
  font-size: var(--selection-font-size);
  padding-right: 20px;
}

.select2-container .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  clear: right;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
  color: var(--container-placeholder-color);
}

.select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 35px;
  height: calc(100% - 2px);
  border: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  background-image: url(../images/inc/icon_arrow_down_16_01.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  transform: translate(-50%, -50%) rotate(180deg);
  border: none;
}

.select2-container .select2-container--open .select2-selection--single {
  border: 1px solid var(--selection-open-border-color);
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  transform: translate(-50%, -50%) rotate(0);
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--results-choice-bg-hover-color);
  color: var(--results-choice-hover-color);
}

.select2-container--default .select2-results__option--selected {
  background-color: var(--results-choice-selected-bg);
  color: var(--results-choice-selected-color);
}

/* .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--results-choice-selected-bg);
  color: var(--results-choice-selected-color);
} */
.select2-results__option
  .select2-results__option--selectable
  .select2-results__option--selected {
  background-color: var(--results-choice-selected-bg);
  color: var(--results-choice-selected-color);
}

/* .select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--results-choice-selected-bg);
  color: var(--results-choice-selected-color);
} */

/*================================================
     복수형 셀렉트 스타일정의
=================================================*/

.select2-container .select2-selection--multiple {
  display: flex;
  align-items: flex-start !important;
  align-items: center;
  height: fit-content !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: var(--selection-default-min-width);
  min-height: var(--selection-default-height);
  padding: var(--selection-padding);
  padding-right: 64px !important;
  border: 1px solid var(--selection-border-color);
  border-radius: 4px !important;
  background-color: var(--selection-bg-color);
  outline: 0;
  cursor: pointer;
}

.select2-container--default .select2-selection--multiple:before {
  content: "";
  display: block;
  right: 8px;
  position: absolute;
  background-image: url(../images/inc/icon_arrow_down_32.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.select2-container--open .select2-selection--multiple:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/inc/icon_arrow_up_32.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid #ff8318;
}

.select2-selection--multiple .select2-selection__clear {
  position: absolute !important;
  right: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
}

.select2-selection--multiple .select2-selection__clear:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/inc/icon_xmark_32.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.select2-selection--multiple .select2-selection__clear span {
  display: none;
}

.select2-selection--multiple .select2-selection__rendered {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.select2-selection--multiple .select2-search {
  caret-color: transparent;
}

.select2-selection--multiple .select2-selection__choice {
  display: flex !important;
  flex-direction: row-reverse !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 32px;
  margin: 0 !important;
  padding: 0 8px !important;
  background: #ff8318 !important;
  color: #fff !important;
  border-radius: 4px !important;
  border: none !important;
}

.select2-selection--multiple .select2-selection__choice__display {
  display: flex;
  align-items: center;
  height: 100% !important;
  padding: 0px !important;
}

.select2-selection--multiple .select2-selection__choice__remove {
  display: inline-block !important;
  position: relative !important;
  border: none !important;
  background-image: url("../images/inc/icon_close_24.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px !important;
  height: 100% !important;
}

.select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: transparent !important;
}

.select2-selection--multiple .select2-selection__choice__remove span {
  display: none;
}

.select2-search--inline {
  display: flex;
  align-items: center !important;
  height: 32px !important;
  user-select: none !important;
}

.select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin: 0px !important;
  vertical-align: middle !important;
  cursor: pointer;
}

.select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-container--default .select2-results__option {
  border-radius: 5px;
}
