@charset "UTF-8";
/*
XET CSS v2.0.4 2024-08-02 for supported in all modern browsers
By xetemplate(https://xetemplate.com)
*/

::placeholder {
  color: var(--xet-theme-muted-color);
  opacity: 1;
}

:-ms-input-placeholder,
::-ms-input-placeholder {
  color: var(--xet-theme-muted-color);
}

.xet-form .control-group + .control-group {
  margin-top: 20px;
}
.xet-form .control-group .controls-row {
  display: flex;
  gap: 4px;
}
.xet-form .control-group .controls-row > div {
  flex: 1;
}
.xet-form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]) {
  vertical-align: top;
  font-size: inherit;
  width: 100%;
  height: var(--xet-theme-input-height);
  padding: 0 16px;
  outline: 0;
/*  border-radius: 16px; */
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--xet-theme-input-bg);
  color: var(--xet-theme-text-strong-color);
}
.xet-form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]).input-md {
  height: var(--xet-theme-input-height);
}
.xet-form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]).input-md ~ .xet-btn {
  height: var(--xet-theme-input-height);
  border-radius: 16px;
}
.xet-form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]) ~ .xet-btn {
  padding: 0;
  min-width: var(--xet-theme-input-height);
  height: var(--xet-theme-input-height);
  border-radius: 16px;
}
.xet-form input[type=file] {
  cursor: pointer;
  padding: 0;
  outline: 0;
  width: 100%;
  height: var(--xet-theme-input-height);
  font-size: inherit;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--xet-theme-input-focus-bg);
  border: 1px solid var(--xet-theme-input-border-color);
  color: var(--xet-theme-muted-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.xet-form input[type=file]::file-selector-button {
  font-size: 14px;
  text-align: center;
  height: var(--xet-theme-input-height);
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  margin-top: 0;
  font-size: inherit;
  text-align: center;
  cursor: pointer;
  color: var(--xet-theme-muted-color);
  border: 0;
  border-right: 1px solid var(--xet-theme-input-border-color);
  background: var(--xet-theme-input-focus-bg);
}
.xet-form input[type=file] + label {
  display: none;
}
.xet-form input:not([type=button]):not([type=submit]):focus {
  border-color: var(--xet-theme-input-border-color) !important;
  color: var(--xet-theme-text-strong-color) !important;
  background-color: var(--xet-theme-input-focus-bg) !important;
}
.xet-form input:-webkit-autofill {
  -webkit-text-fill-color: var(--xet-theme-text-strong-color);
  -webkit-box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.xet-form input:-webkit-autofill:hover, .xet-form input:-webkit-autofill:focus, .xet-form input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--xet-theme-text-strong-color);
  -webkit-box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.xet-form input:autofill {
  -webkit-text-fill-color: var(--xet-theme-text-strong-color);
  -webkit-box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.xet-form input:autofill:hover, .xet-form input:autofill:focus, .xet-form input:autofill:active {
  -webkit-text-fill-color: var(--xet-theme-text-strong-color);
  -webkit-box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  box-shadow: 0 0 0px 1000px var(--xet-theme-input-focus-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.xet-form textarea {
  width: 100%;
  height: 120px;
  padding: 16px;
  border: 1px solid var(--xet-theme-input-border-color);
  background: var(--xet-theme-input-focus-bg);
  color: var(--xet-theme-text-strong-color);
  resize: vertical;
}
.xet-form input[disabled],
.xet-form textarea[disabled],
.xet-form select[disabled],
.xet-form input[readonly],
.xet-form select[readonly],
.xet-form textarea[readonly] {
  cursor: not-allowed;
  opacity: 1;
  border-color: var(--xet-theme-input-border-color) !important;
  color: var(--xet-theme-input-disabled-color) !important;
  background-color: var(--xet-theme-input-disabled-bg) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.xet-form input.error {
  border-color: var(--xet-theme-red-color) !important;
  color: var(--xet-theme-text-strong-color) !important;
}
.xet-form input.error::-moz-placeholder, .xet-form input.error::placeholder {
  color: var(--xet-theme-muted-color);
}
.xet-form select {
  position: relative;
  width: 100%;
  height: var(--xet-theme-input-height);
  font-size: inherit;
  margin: 0;
  padding: 0 48px 0 16px;
  border: 1px solid var(--xet-theme-input-border-color);
  border-radius: 16px;
  color: inherit;
  cursor: pointer;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='14' height='14' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='rgba(255,255,255,0.5)'/></g></svg>") no-repeat;
  background-position: right 1rem top 50%;
  background-color: var(--xet-theme-input-focus-bg);
}
.xet-form select.select-xs {
  height: 28px;
}
.xet-form select.select-md {
  height: var(--xet-theme-btn-height);
}
.xet-form select.select-md ~ .xet-btn {
  height: var(--xet-theme-btn-height) !important;
}
.xet-form select:required:invalid {
  color: var(--xet-theme-muted-color);
}
.xet-form select option {
  color: var(--xet-theme-dark-text-strong-color);
  background-color: var(--xet-theme-input-focus-bg);
}
.xet-form .ts-wrapper.input-active .ts-control input[type=text] {
  display: none !important;
  pointer-events: none !important;
}
.xet-form .ts-wrapper .ts-control {
  white-space: nowrap;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 16px;
  font-size: 1rem;
  height: var(--xet-theme-input-height);
  border: 1px solid transparent;
  border-radius: 16px;
  background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='14' height='14' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='rgba(255,255,255,0.5)'/></g></svg>") no-repeat;
  background-position: right 1rem top 50%;
  background-color: var(--xet-theme-input-focus-bg) !important;
  color: var(--xet-theme-dark-text-base-color);
}
.xet-form .ts-wrapper .ts-control:not(.rtl) {
  padding-right: 60px !important;
}
.xet-form .ts-wrapper .ts-control input[type=text] {
  width: auto !important;
  height: auto !important;
  background: none !important;
}
.xet-form .ts-wrapper .ts-dropdown {
  margin: 0;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--xet-theme-input-border-color);
  background-color: #303030 !important;
  color: var(--xet-theme-dark-text-base-color);
}
.xet-form .ts-wrapper .ts-dropdown [data-selectable].option {
  font-size: 1rem;
  padding: 10px 12px;
  margin: 6px 0;
}
.xet-form .ts-wrapper .ts-dropdown .active {
  border-radius: 16px;
  background-color: #000;
  color: var(--xet-theme-dark-text-strong-color);
}
.xet-form input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  /* Active Radio Button */
}
.xet-form input[type=radio] + label {
  position: relative;
  padding-left: 26px;
  margin-right: var(--xet-theme-gap);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.xet-form input[type=radio] + label::before, .xet-form input[type=radio] + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
}
.xet-form input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: var(--xet-theme-input-focus-bg);
  border: 1px solid var(--xet-theme-input-border-color);
}
.xet-form input[type=radio] + label::after {
  width: 10px;
  height: 10px;
  left: 5px;
  transform: translateY(-50%) scale(0);
  background: var(--xet-theme-color) !important;
}
.xet-form input[type=radio]:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.xet-form label.radio-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  border: 0;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  /* 선택된 버튼 스타일 */
}
.xet-form label.radio-button input[type=radio] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}
.xet-form label.radio-button:has(input[type=radio]:checked) {
  background-color: #FFFFFF4D;
  color: #fff;
  font-weight: bold;
}

/* chechkbox 스위치 */
.xet-form .checkbox-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.xet-form .checkbox-switch + .checkbox-switch {
  margin-left: 8px;
}
.xet-form .checkbox-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
}
.xet-form .checkbox-switch input + label {
  cursor: pointer;
  height: 24px;
  padding: 0 0 0 54px !important;
  margin: 0 !important;
}
.xet-form .checkbox-switch input + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
  background: #808080;
  border-radius: 50px;
  transform: none !important;
  cursor: pointer;
  transition: all 0.2s;
}
.xet-form .checkbox-switch input + label::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: none !important;
  background: #fff !important;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.xet-form .checkbox-switch input:checked + label::after {
  left: 27px;
}
.xet-form .checkbox-switch input:checked + label::before {
  background: #34DAFE;
}
.xet-form .checkbox-switch input:disabled + label::after {
  background-color: #505050 !important;
}


.xet-form .checkbox-check {
  position: relative;
  cursor: pointer;
}
.xet-form .checkbox-check input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
}
.xet-form .checkbox-check .label-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xet-form .checkbox-check .label-box .check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: transparent;
  border: 0 solid gray;
  position: absolute;
  left: 0;
  top: 4px;
}
.xet-form .checkbox-check .label-box .check-icon::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 30%;
  height: 55%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-70%) rotateZ(40deg);
  border-right: 1.7px solid gray;
  border-bottom: 1.7px solid gray;
}
.xet-form .checkbox-check .label-box label {
  padding-left: 24px;
  cursor: pointer;
}
.xet-form .checkbox-check input[type=checkbox]:checked + .label-box .check-icon::before {
  border-color: var(--xet-theme-primary-color);
}
.xet-form .checkbox-round {
  position: relative;
  cursor: pointer;
}
.xet-form .checkbox-round input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
}
.xet-form .checkbox-round .label-box {
  position: relative;
  display: block;
}
.xet-form .checkbox-round .label-box .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.16);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.xet-form .checkbox-round .label-box .check-icon::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 30%;
  height: 55%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-70%) rotateZ(40deg);
  border-right: 1.7px solid gray;
  border-bottom: 1.7px solid gray;
  border: 0;
}
.xet-form .checkbox-round .label-box label {
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.xet-form .checkbox-round input[type=checkbox]:checked + .label-box .check-icon {
  border-color: var(--xet-theme-primary-color);
  background-color: var(--xet-theme-primary-color);
}
.xet-form .checkbox-round input[type=checkbox]:checked + .label-box .check-icon::before {
  border-right: 1.7px solid gray;
  border-bottom: 1.7px solid gray;
  border-color: #000;
}
.xet-form.search-form {
  display: flex;
  align-items: center;
  border-radius: 16px;
  margin-bottom: 20px;
  background: var(--xet-theme-input-bg);
}
.xet-form.search-form select {
  width: 130px;
  border-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 0;
}
.xet-form.search-form .ts-wrapper .ts-control {
  max-width: 130px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.xet-form.search-form input[type=text] {
  background: none !important;
  border-radius: 0 !important;
  border: 0 !important;
}
.xet-form.search-form input[type=text]:focus {
  background: none !important;
}
.xet-form.search-form button[type=submit] {
  background: none;
  border-radius: 0 !important;
}

/* .xet-form textarea:focus {
  border-color: var(--xet-theme-input-border-color);
} */
/* .xet-form input[type=checkbox] + label {
  position: relative;
  padding-left: 26px;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.xet-form input[type=checkbox] + label::before, .xet-form input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
}
.xet-form input[type=checkbox] + label::before {
  transform: translateY(-50%);
  background: var(--xet-theme-input-focus-bg);
  border: 1px solid var(--xet-theme-input-border-color);
}
.xet-form input[type=checkbox] + label::after {
  transform: translateY(-50%) scale(0);
  background: url(./icons/check.png) no-repeat center var(--xet-theme-color) !important;
  background-size: 14px !important;
}
.xet-form input[type=checkbox]:checked + label::after {
  transform: translateY(-50%) scale(1);
}
.xet-form input[type=checkbox]:checked + label::before {
  border-color: var(--xet-theme-color) !important;
}
.xet-form .checkbox-style {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  background: #f1f1f1;
}
.xet-form .checkbox-style input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.xet-form .checkbox-style input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.xet-form .checkbox-style input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 10px;
  transform: none !important;
  cursor: pointer;
  transition: all 0.2s;
}
.xet-form .checkbox-style input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: none !important;
  background: #fff !important;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.xet-form .checkbox-style input:checked + label:after {
  left: 20px;
}
.xet-form .checkbox-style input:checked + label:before {
  background: var(--xet-theme-color) !important;
} */
/* LG */


.radio-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}


/* 라디오 기반 스위치형 */
.radio-switch input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* 뒤 배경(track) */
.radio-switch .switch-track {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #ddd; /* 기본 OFF 색 */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
    transition: background 0.25s;
    z-index: 1;
}

/* 동그란 손잡이(thumb) */
.radio-switch .switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px; /* 기본: 왼쪽 */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: left 0.25s;
    z-index: 2;
}

/* 클릭(hit) 영역 */
.radio-switch .switch-hit {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    cursor: pointer;
    z-index: 3;           /* 제일 위 */
    background: transparent;
}

.radio-switch .switch-hit-off { left: 0; }
.radio-switch .switch-hit-on  { right: 0; }

/* 두 번째 라디오(ON, Y)가 체크되면 → 파랑 배경 + 오른쪽으로 이동 */
.radio-switch input[type="radio"]:nth-of-type(2):checked ~ .switch-track {
    background: #24d3ff; /* ON 색 */
}

.radio-switch input[type="radio"]:nth-of-type(2):checked ~ .switch-thumb {
    left: calc(100% - 2px - 20px); /* 오른쪽 2px 여백 */
}