@font-face {
  font-family: "Pretendard-regular";
  src: url("../fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard-medium";
  src: url("../fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard-semibold";
  src: url("../fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard-bold";
  src: url("../fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard-black";
  src: url("../fonts/Pretendard-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
* {
  font-family: "Pretendard-regular", sans-serif;
}

/* Custom scrollbar styles for Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background-color: #1F2233;
}

::-webkit-scrollbar-thumb {
  background-color: #393D59;
  /* Color of the thumb (the draggable part) */
  border-top: 8px;
  border-bottom: 8px;
  border: 4px solid #1F2233;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  /* Optional: adds a border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #393D59;
  /* Color of the thumb when hovered */
}

::-webkit-scrollbar-corner {
  background-color: #393D59;
  /* Background color for the bottom-right corner */
}

.ai-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  width: 100% !important;
  justify-content: center;
  text-align: center;
}
.ai-loader .box {
  background-color: white;
  display: flex;
  align-items: center;
  width: 320px !important;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-radius: 8px;
  padding: 30px;
}
.ai-loader .ai-loader-icon {
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.toggle-btn.active .arrow {
  rotate: 180deg;
}

.white-scrollbar::-webkit-scrollbar {
  width: 14px;
}
.white-scrollbar::-webkit-scrollbar-track {
  background-color: #F5F5F7;
}
.white-scrollbar::-webkit-scrollbar-thumb {
  background-color: #DADCE2;
  /* Color of the thumb (the draggable part) */
  border-top: 8px;
  border-bottom: 8px;
  border: 4px solid #F5F5F7;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  /* Optional: adds a border around the thumb */
}
.white-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #DADCE2;
  /* Color of the thumb when hovered */
}
.white-scrollbar::-webkit-scrollbar-corner {
  background-color: #F5F5F7;
  /* Background color for the bottom-right corner */
}

.modal-space-data {
  padding-left: 30px;
}

.w-min-max-content {
  min-width: -moz-max-content;
  min-width: max-content;
}

.width-25 {
  width: 25%;
}

.tui-grid-layer-state-loading {
  display: none;
}

.bg-dark-blue {
  background-color: #42475F;
}

.text-muted {
  color: #AAA !important;
}

.text-primary {
  color: #173377 !important;
}

.loader-section-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-section-full .loader {
  width: 64px;
  height: 64px;
  animation: spin 1s linear infinite;
}
.loader-section-full .loader img {
  width: 100%;
  height: 100%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body {
  font-family: "Pretendard-regular", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1E1E1E;
}

hr {
  border: 1px solid #DADCE2;
}

.btn:focus {
  box-shadow: none;
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.input-label {
  color: var(--basic-blk, #1E1E1E);
  font-family: "Pretendard-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.24px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.input-label .required {
  color: #E8361F;
  position: relative;
  top: 2px;
}

.h-40 {
  height: 40px;
}

.h-48 {
  height: 48px;
}

.h-32 {
  height: 32px;
}

.h-68 {
  height: 68px !important;
}

.h-120px {
  height: 120px;
}

.h-112px {
  height: 112px;
}

.w-280 {
  width: 280px;
}

.w-128px {
  width: 128px;
}

.max-w-150px {
  max-width: 150px;
}

p {
  color: #1E1E1E;
  font-family: "Pretendard-regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 87.5% */
  letter-spacing: -0.64px;
}

.custom-select-wrapper {
  position: relative;
}
.custom-select-wrapper select.custom-select-dropdown::-ms-expand {
  display: none;
}
.custom-select-wrapper select.custom-select-dropdown {
  border: 1px solid #DADCE2;
  background-color: #FFF;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 32px;
  border-radius: 4px;
}
.custom-select-wrapper select.custom-select-dropdown:hover {
  border: 1px solid #C2CADB;
  background-color: #F2F2F2;
}
.custom-select-wrapper select.custom-select-dropdown:focus {
  border: 1px solid #173377;
  outline: none;
  box-shadow: none;
  background-color: #FFF;
}
.custom-select-wrapper select.custom-select-dropdown:disabled {
  border: 1px solid #C2CADB;
  background-color: #F5F6F8;
}
.custom-select-wrapper .arrow-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.custom-select-wrapper.active .arrow-icon {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
}

.input-with-cross {
  position: relative;
}
.input-with-cross .custom-input-text {
  border: 1px solid #DADCE2;
  background: #FFF;
  color: var(--Basic-blk, #1E1E1E);
  font-size: 16px;
  height: 40px;
  border-radius: 4px;
  padding-right: 45px;
}
.input-with-cross .custom-input-text.tui-datepicker-input {
  padding-right: 0;
}
.input-with-cross .custom-input-text.tui-datepicker-input .custom-input-text {
  padding-right: 0px;
}
.input-with-cross .custom-input-text:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #173377;
}
.input-with-cross .custom-input-text:disabled {
  border: 1px solid var(--Line-03, #DADCE2);
  background: var(--Line-02, #EEE);
  color: #aaa;
}
.input-with-cross .custom-input-text::-moz-placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.input-with-cross .custom-input-text::placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.input-with-cross .custom-input-text::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #aaa;
}
.input-with-cross .custom-input-text.error {
  border: 1px solid #E8361F;
}
.input-with-cross .cross-icon {
  width: 30px;
  height: 40px;
  text-align: center;
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-with-cross .cross-icon img {
  width: 20px;
}
.input-with-cross .custom-input-textarea {
  border: 1px solid #DADCE2;
  background: #FFF;
  color: var(--Basic-blk, #1E1E1E);
  font-size: 16px;
  border-radius: 4px;
  padding-right: 45px;
}
.input-with-cross .custom-input-textarea.tui-datepicker-input {
  padding-right: 0;
}
.input-with-cross .custom-input-textarea.tui-datepicker-input .custom-input-text {
  padding-right: 0px;
}
.input-with-cross .custom-input-textarea:focus {
  box-shadow: none;
  outline: none;
  border: 1px solid #173377;
}
.input-with-cross .custom-input-textarea:disabled {
  border: 1px solid var(--Line-03, #DADCE2);
  background: var(--Line-02, #EEE);
  color: #aaa;
}
.input-with-cross .custom-input-textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.input-with-cross .custom-input-textarea::placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.input-with-cross .custom-input-textarea::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #aaa;
}
.input-with-cross .custom-input-textarea.error {
  border: 1px solid #E8361F;
}

.input-item-section.error .error-message {
  display: block;
}
.input-item-section.error .custom-input-text {
  border: 1px solid #E8361F;
}

.error-message {
  display: none;
  color: #E8361F;
  font-family: "Pretendard-regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 100% */
  letter-spacing: -0.28px;
}

.btn-h-40-w-96 {
  width: 96px;
  height: 40px;
}

.font-700 {
  font-weight: 700;
}

.font-16 {
  font-size: 16px;
}

.w-140px {
  width: 140px;
}

.cursor-pointer {
  cursor: pointer;
}

.line-140 {
  line-height: 140%;
}

.font-14 {
  font-size: 14px;
}

.w-120px {
  width: 120px;
}

.w-100px {
  width: 100px;
}

.w-320px {
  width: 320px;
}

.w-200px {
  width: 200px;
}

.w-80 {
  width: 80px;
  min-width: 80px;
}

.w-88 {
  width: 88px;
}

.w-245 {
  width: 245px;
}

.w-400 {
  width: 400px !important;
}
@media (max-width: 767.98px) {
  .w-400 {
    width: 100% !important;
  }
}

.table-link {
  text-decoration: underline;
}
.table-link.blue {
  color: #173377;
}
.table-link.red {
  color: #EB271D;
}

.accordion-button-section .accordion-button {
  height: 46px;
  border: 1px solid #DADCE2;
  background: var(--bg-04, #F5F5F7);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 16px;
  color: var(--text-05, #808080);
  background: #F5F5F7;
}
.accordion-button-section .accordion-button:hover {
  background: #F5F5F7;
  color: var(--text-05, #808080);
}
.accordion-button-section .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
  color: var(--text-05, #808080);
}
.accordion-button-section .accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  background: #F5F5F7;
  border: 1px solid #DADCE2;
  color: var(--text-05, #808080);
}
.accordion-button-section .accordion-button:after {
  display: none;
}
.accordion-button-section .accordion-button .accordion-arrow-section {
  background: #F5F5F7;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.accordion-button-section .accordion-button.active .accordion-arrow-section img {
  transform: rotate(180deg);
}

.w-mx-245 {
  max-width: 245px;
  width: 100%;
}

.w-max-236 {
  max-width: 236px;
  width: 100%;
}

.w-160px {
  width: 160px !important;
}

.w-50 {
  width: 50%;
}

.w-428px {
  width: 428px;
}

.w-max-242 {
  max-width: 242px;
  width: 100%;
}

.w-500 {
  width: 500px;
  max-width: 100%;
}
@media screen and (max-width: 1279.98px) {
  .w-500 {
    width: auto;
  }
}

.w-60 {
  width: 60px;
}

.w-56px {
  width: 56px;
}

.w-65 {
  width: 65px;
}

.color-box {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.color-box.small {
  width: 8px;
  height: 8px;
}
.color-box.light-green {
  background-color: #70AD47;
}
.color-box.dark-green {
  background-color: #548235;
}
.color-box.blue {
  background-color: #4472C4;
}
.color-box.orange {
  background-color: #ED7D31;
}
.color-box.yellow {
  background-color: #FFC000;
}
.color-box.red {
  background-color: #F00;
}
.color-box.dark {
  background-color: #8C949E;
}

.badge {
  display: flex;
  padding: 3px 10px 4px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  width: -moz-max-content;
  width: max-content;
  height: 24px;
}
.badge.badge-default {
  background: #8C949E;
  color: white;
}
.badge.badge-success {
  background: #11A740;
}

.badge-box {
  border-radius: 8px;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.21px;
  padding: 3px 8px;
}
.badge-box.primary-light {
  color: #2952B6;
  background: rgba(41, 82, 182, 0.1);
}
.badge-box.orange-light {
  color: #FC6E00;
  background: rgba(252, 110, 0, 0.1);
}
.badge-box.success-light {
  color: #11A740;
  background: rgba(17, 167, 64, 0.1);
}

.toggle-section.table-toggle-section-center .custom-toggle-input {
  float: unset;
}
.toggle-section .custom-toggle .custom-toggle-input {
  height: 24px;
  width: 40px;
  cursor: pointer;
}
.toggle-section .custom-toggle .custom-toggle-input:focus {
  box-shadow: none;
  outline: none;
}

.custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}
.custom-radio input[type=radio] {
  display: none;
}
.custom-radio input[type=radio]:checked + .radio-mark {
  border-color: #173377 !important;
}
.custom-radio input[type=radio]:checked + .radio-mark::after {
  transform: scale(1);
}
.custom-radio input[type=radio]:disabled + .radio-mark {
  border-color: #173377 !important;
  opacity: 0.2;
}
.custom-radio input[type=radio]:disabled + .radio-mark::after {
  background: #173377 !important;
}
.custom-radio .radio-mark {
  width: 22px;
  height: 22px;
  border: 1px solid #DADCE2 !important;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  transition: border-color 0.2s;
}
.custom-radio .radio-mark::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #173377;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transform: scale(0);
  transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
}
.custom-radio span.label {
  font-size: 16px;
}

.custom-toggle .custom-toggle-input:focus {
  box-shadow: none !important;
  outline: none !important;
}

input:focus {
  box-shadow: none !important;
  outline: none !important;
}

.gap-10 {
  gap: 10px;
}

.font-20 {
  font-size: 20px !important;
}

.w-160 {
  width: 160px;
}

.border-top {
  border-top: 1px solid var(--basic-blk, #1E1E1E) !important;
}

.h-224 {
  height: 224px !important;
}

.text-warning {
  color: #FC6E00 !important;
}

.text-black {
  color: var(--Basic-blk, #1E1E1E) !important;
}

.text-danger {
  color: #FF4C4C !important;
}

.line-140 {
  line-height: 140%;
}

.tox .tox-statusbar {
  display: none !important;
}

.textarea-with-cross {
  position: relative;
}
.textarea-with-cross .custom-textarea {
  border-radius: 8px;
  padding: 13px 16px;
  padding-right: 42px;
  border: 1px solid #C2CADB;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
  letter-spacing: -0.56px;
  resize: none;
}
.textarea-with-cross .custom-textarea:focus {
  box-shadow: none !important;
  outline: none !important;
}
.textarea-with-cross .custom-textarea:disabled {
  border: 1px solid #C2CADB;
  background: #F2F2F2;
}
.textarea-with-cross .custom-textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.textarea-with-cross .custom-textarea::placeholder {
  color: #aaa;
  opacity: 1;
  /* Firefox */
}
.textarea-with-cross .custom-textarea::-webkit-scrollbar {
  width: 14px;
}
.textarea-with-cross .custom-textarea::-webkit-scrollbar-track {
  background-color: #F5F5F7;
}
.textarea-with-cross .custom-textarea::-webkit-scrollbar-thumb {
  background-color: #DADCE2;
  /* Color of the thumb (the draggable part) */
  border-top: 8px;
  border-bottom: 8px;
  border: 4px solid #F5F5F7;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  /* Optional: adds a border around the thumb */
}
.textarea-with-cross .custom-textarea::-webkit-scrollbar-thumb:hover {
  background-color: #DADCE2;
  /* Color of the thumb when hovered */
}
.textarea-with-cross .custom-textarea::-webkit-scrollbar-corner {
  background-color: #F5F5F7;
  /* Background color for the bottom-right corner */
}
.textarea-with-cross .custom-textarea.error {
  border: 1px solid #E8361F;
}
.textarea-with-cross .cross-icon {
  width: 30px;
  height: 100%;
  text-align: center;
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 16px;
}
.textarea-with-cross .cross-icon img {
  width: 20px;
}
.textarea-with-cross .count-text {
  color: var(--Text-01, #D3D3D3);
  text-align: right;
  font-family: "Pretendard-medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.21px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.btn-primary {
  border-radius: 4px;
  background-color: #173377;
  color: #FFF;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary:hover {
  background-color: #173377;
  color: #FFF;
}
.btn-primary:focus {
  background-color: #173377;
  color: #FFF;
}
.btn-primary:active {
  background-color: #173377 !important;
  color: #FFF;
}
.btn-primary:disabled {
  background: var(--text-01, #D3D3D3) !important;
  border-color: var(--text-01, #D3D3D3) !important;
  color: #FFF;
}

.tiles-box {
  flex-wrap: wrap;
}

.tiles {
  color: var(--Basic-wht, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.21px;
  padding: 3px 10px 4px 10px;
  border-radius: 8px;
}
.tiles.red {
  background-color: #EB271D;
}
.tiles.green {
  background-color: #11A740;
}
.tiles.dark {
  background-color: #8C949E;
}

.btn-default {
  border-radius: 4px;
  border: 1px solid #E0E3EC;
  background: #FFF;
  color: #666;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-default:hover {
  color: #666;
  border: 1px solid #E0E3EC;
  background: #FFF;
}
.btn-default:disabled {
  color: #FFF;
  border: 1px solid #D3D3D3;
  background: var(--text-01, #D3D3D3);
}

.btn-default-outline {
  border-radius: 4px;
  border: 1px solid #173377;
  background: #FFF;
  color: #173377;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-default-outline:hover {
  color: #173377;
  border: 1px solid #173377;
}
.btn-default-outline:disabled {
  color: white;
  border: 1px solid #D3D3D3;
  background: #D3D3D3;
}

.search-filter-section .sort-filter-btn {
  color: var(--Text-05, #666);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  border-radius: 4px;
  border: 1px solid var(--Button-02, #E0E3EC);
  background: var(--Basic-wht, #FFF);
}
.search-filter-section .sort-filter-btn:hover {
  opacity: 0.8 !important;
}
.search-filter-section .sort-filter-btn:disabled {
  opacity: 0.3 !important;
}
.search-filter-section .sort-filter-btn:active {
  opacity: 1 !important;
  border-radius: 4px;
  border: 1px solid #173377;
  background: var(--Basic-wht, #FFF);
}
.search-filter-section .sort-filter-btn:active .svg {
  stroke: #173377;
}
.search-filter-section .sort-filter-btn.active {
  border: 1px solid #173377;
  opacity: 1 !important;
}
.search-filter-section .sort-filter-btn.active svg {
  stroke: #173377;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.search-filter-section .search-input-group {
  display: flex;
}
.search-filter-section .search-input-group .search-input-table {
  border-right: none !important;
}
.search-filter-section .search-input-group .search-input-table:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: #173377 !important;
}
.search-filter-section .search-input-group .search-input-table:focus + .input-group-text {
  border-color: #173377 !important;
}
.search-filter-section .search-input-group .search-input-table:disabled {
  border-color: #D3D3D3 !important;
  background-color: #F5F5F7 !important;
}
.search-filter-section .search-input-group .search-input-table:disabled + .input-group-text {
  border-color: #D3D3D3 !important;
}
.search-filter-section .search-input-group .input-group-text {
  background-color: transparent;
  border-left: none !important;
}

.btn-light-outline {
  color: var(--text-06, #666);
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  border-radius: 4px;
  border: 1px solid var(--btn-02, #E0E3EC);
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 16px;
  min-width: -moz-max-content;
  min-width: max-content;
}
.btn-light-outline:hover {
  color: var(--text-06, #666);
  border: 1px solid var(--btn-02, #E0E3EC);
  background: #FFF;
}

.btn-light {
  color: #808080;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
  border-radius: 4px;
  border: 1px solid var(--btn-02, #E0E3EC);
  background: var(--btn-02, #E0E3EC);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 16px;
}
.btn-light:hover {
  color: #808080;
  border: 1px solid var(--btn-02, #E0E3EC);
  background: var(--btn-02, #E0E3EC);
}
.btn-light:disabled {
  background: var(--text-01, #D3D3D3) !important;
  border-color: var(--text-01, #D3D3D3) !important;
  color: #FFF;
}

.btn-disable-custom {
  background: var(--text-01, #D3D3D3);
  border-color: var(--text-01, #D3D3D3);
  color: #FFF;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-disable-custom:hover {
  background: var(--text-01, #D3D3D3);
  border-color: var(--text-01, #D3D3D3);
  color: #FFF;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.custom-modal {
  background: rgba(0, 0, 0, 0.8);
}
.custom-modal#signature-modal .modal-footer {
  padding-left: 30px !important;
  padding-right: 30px !important;
  padding-top: 16px !important;
}
.custom-modal .modal-dialog.extra-large-modal {
  max-width: 1400px;
}
.custom-modal .modal-dialog.large-modal {
  max-width: 1200px;
}
.custom-modal .modal-dialog.medium-modal-2 {
  max-width: 1000px;
}
.custom-modal .modal-dialog.medium-modal {
  max-width: 970px;
}
.custom-modal .modal-dialog.small-modal {
  max-width: 640px;
}
.custom-modal .modal-dialog.extra-small-modal {
  max-width: 320px;
}
.custom-modal .modal-dialog.extra-small-modal .modal-content {
  border: none !important;
  padding: 30px !important;
  padding-bottom: 20px !important;
}
.custom-modal .modal-dialog.extra-small-modal .modal-content .modal-body {
  padding: 0 !important;
}
.custom-modal .modal-dialog.extra-small-modal .modal-content .modal-footer {
  padding-bottom: 0px !important;
}
.custom-modal .modal-dialog .modal-content {
  border: 2px solid #2D324D;
  border-radius: 10px;
  overflow: hidden;
}
.custom-modal .modal-dialog .modal-content .modal-header {
  background: #2D324D;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 16px 20px;
  height: 64px;
}
.custom-modal .modal-dialog .modal-content .modal-header .modal-title {
  color: #FFF;
  font-family: "Pretendard-bold";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 28px */
  letter-spacing: -0.3px;
}
.custom-modal .modal-dialog .modal-content .modal-header .btn-close {
  padding: 0;
  opacity: 1;
  background: transparent url("../images/modal-close-icon.svg") center/1em auto no-repeat !important;
  margin-left: auto;
  margin-right: 0;
}
.custom-modal .modal-dialog .modal-content .modal-body {
  background-color: white;
  padding: 20px 30px;
  padding-bottom: 0;
}
.custom-modal .modal-dialog .modal-content .modal-body .first-title {
  color: var(--basic-blk, #1E1E1E);
  font-family: "Pretendard-bold";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 28px */
  letter-spacing: -0.3px;
}
.custom-modal .modal-dialog .modal-content .modal-body .first-semi-title {
  color: var(--text-05, #808080);
  text-align: center;
  font-family: "Pretendard-medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: -0.24px;
}
.custom-modal .modal-dialog .modal-content .modal-footer {
  background-color: white;
  padding: 0 !important;
  padding-top: 20px !important;
  padding-bottom: 30px !important;
  border: none;
  gap: 20px;
}
.custom-modal .modal-dialog .modal-content .modal-footer .btn {
  min-width: 80px;
  min-height: 40px;
  font-family: "Pretendard-semibold";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: -0.21px;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  border: none;
  padding: 0;
  color: #1E1E1E;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn .green-check-icon {
  width: 20px;
  height: 20px;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn.selected .checked-icon {
  opacity: 1 !important;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn .checked-icon-section {
  width: 22px;
  height: 22px;
  background-color: white;
  border: 1px solid #DADCE2;
  display: flex;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn .checked-icon-section .checked-icon {
  width: 100%;
  opacity: 0;
}
.custom-modal .modal-dialog .modal-content .modal-footer .skip-signature-btn .checked-icon-section {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.selector-section {
  display: flex;
  gap: 16px;
}
.selector-section .selector-item {
  border: 1px solid #C2CADB;
  background: #FFF;
  padding: 0px 12px;
  display: flex;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 100% */
  letter-spacing: -0.56px;
  height: 28px;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
}
.selector-section .selector-item .delete-btn {
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.selector-section .selector-item .delete-btn img {
  width: 12px;
}

.custom-checkbox-section {
  display: flex;
  align-items: center;
}
.custom-checkbox-section .checkbox-container {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #1E1E1E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /*100%*/
  letter-spacing: -0.24px;
  border-radius: 4px;
}
.custom-checkbox-section .checkbox-container .custom-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkbox-section .checkbox-container .custom-checkbox-input:checked ~ .checkmark {
  background-color: #173377;
  border: 1px solid #173377;
}
.custom-checkbox-section .checkbox-container .custom-checkbox-input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox-section .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #C2CADB;
}
.custom-checkbox-section .checkbox-container .checkmark.rounded-checkmark {
  border-radius: 50%;
}
.custom-checkbox-section .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tui-datepicker {
  z-index: 9999;
  margin-top: 5px;
  border: 1px solid #0068FF;
  border-radius: 8px;
  background: #FFF;
  overflow: hidden;
  padding: 16px;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar-title {
  font-size: 17px;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar th,
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar td {
  border: 1px solid #D9DFEC;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-header .tui-calendar-header-info .tui-calendar-title-today {
  display: none;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-body-header {
  display: none;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-date {
  color: #5B6371;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px;
  /* 100% */
  letter-spacing: -0.52px;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-date.tui-calendar-today {
  background: rgba(217, 223, 236, 0.5);
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-date.tui-is-selected {
  background: #0068FF !important;
  color: white !important;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-date:hover {
  background: #F2F7FF;
  color: #5B6371;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-sun {
  color: #FF4C4C;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-sat {
  color: #0068FF;
}
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-prev-month,
.tui-datepicker .tui-datepicker-body .tui-calendar-container .tui-calendar .tui-calendar-body .tui-calendar-body-inner .tui-calendar-week .tui-calendar-next-month {
  visibility: visible !important;
  opacity: 0.5;
}

.tui-datepicker-input > input:hover {
  border: 1px solid #C2CADB !important;
  background: #F2F2F2 !important;
}
.tui-datepicker-input > input:focus {
  border: 1px solid #C2CADB !important;
  background: #FFF !important;
}
.tui-datepicker-input > input:focus-visible {
  border: 1px solid #C2CADB !important;
  outline: none !important;
}
.tui-datepicker-input > input:disabled {
  border: 1px solid #C2CADB !important;
  background: #F5F6F8 !important;
}

.tui-ico-date {
  background: url("../images/calendar-icon.svg");
  background-position: center center !important;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 12px !important;
  margin: -8px 0 0 0 !important;
  width: 16px;
  height: 17px;
}

/* Remove all borders first */
.tui-grid-header-area {
  border-top: 1px solid #EEEEEE !important;
}

/* Add only bottom border for row separation */
.tui-grid-table th,
.tui-grid-table td {
  border-bottom: 1px solid #EEEEEE !important;
}

/* Optional: Remove border from last row for a clean look */
.tui-grid-table tr:last-child td {
  border-bottom: none !important;
}

.tui-grid-cell-header {
  font-size: 14px;
  font-weight: 600;
  color: #808080;
}

.tui-grid-table {
  font-size: 14px;
  color: #383D48;
}

.tui-grid-container .tui-grid-body-container:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #EEEEEE;
  position: absolute;
  bottom: 0;
}

.tui-grid-body-area::-webkit-scrollbar {
  width: 14px !important;
  height: 14px !important;
}
.tui-grid-body-area::-webkit-scrollbar-track {
  background-color: #F5F5F7 !important;
}
.tui-grid-body-area::-webkit-scrollbar-thumb {
  background-color: #DADCE2 !important;
  /* Color of the thumb (the draggable part) */
  border-top: 8px;
  border-bottom: 8px;
  border: 4px solid #F5F5F7 !important;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  /* Optional: adds a border around the thumb */
}
.tui-grid-body-area::-webkit-scrollbar-thumb:hover {
  background-color: #DADCE2 !important;
  /* Color of the thumb when hovered */
}
.tui-grid-body-area::-webkit-scrollbar-corner {
  background-color: #F5F5F7 !important;
  /* Background color for the bottom-right corner */
}

.tui-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.tui-pagination .tui-page-btn {
  border: none;
  color: #808080;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  /* 100% */
  padding: 0px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.tui-pagination .tui-page-btn.tui-is-selected {
  border: none;
  background-color: #393D59;
  color: #FFFFFF;
  font-weight: 500;
}
.tui-pagination .tui-page-btn.tui-first {
  background: #F0F4FD;
  margin-right: 0px;
  margin-left: 0;
  color: #5B6371;
}
.tui-pagination .tui-page-btn.tui-first .tui-ico-first {
  background-position: unset;
}
.tui-pagination .tui-page-btn.tui-prev {
  background: #F0F4FD;
  margin-right: 0px;
  margin-left: 0px;
  color: #5B6371;
  margin-left: -8px;
}
.tui-pagination .tui-page-btn.tui-prev .tui-ico-prev {
  background-position: unset;
}
.tui-pagination .tui-page-btn.tui-next {
  background: #F0F4FD;
  margin-right: 0px;
  margin-left: 0px;
  margin-right: -8px;
}
.tui-pagination .tui-page-btn.tui-next .tui-ico-next {
  background-position: -13px -24px;
}
.tui-pagination .tui-page-btn.tui-last {
  background: #F0F4FD;
}
.tui-pagination .tui-page-btn.tui-last .tui-ico-last {
  background-position: 0px -12px;
}

.toggle-section.table-toggle-section-center .custom-toggle-input {
  float: unset;
}
.toggle-section .custom-toggle .custom-toggle-input {
  height: 24px;
  width: 40px;
  cursor: pointer;
}

.custom-toggle .custom-toggle-input:focus {
  box-shadow: none !important;
  outline: none !important;
}

.form-check-input:checked {
  background-color: #173377 !important;
  border-color: #173377 !important;
}

.dropdown-section {
  background: white;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dropdown-section.affiliation-dropdown-4-options {
  width: 25% !important;
}
.dropdown-section .dropdown {
  position: relative;
  width: 100%;
  font-size: 14px;
}
.dropdown-section .dropdown .dropdown-button {
  width: 100%;
  height: 40px;
  border: 1px solid #DADCE2;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 16px;
  color: #1E1E1E;
  transition: all 0.2s ease;
  outline: none;
}
.dropdown-section .dropdown .dropdown-button:hover {
  color: #1E1E1E;
}
.dropdown-section .dropdown .dropdown-button:focus {
  border-color: #173377;
}
.dropdown-section .dropdown .dropdown-button:disabled {
  background: #EEEEEE;
  color: #AAAAAA;
  cursor: not-allowed;
  border-color: #DADCE2;
}
.dropdown-section .dropdown .dropdown-button:disabled .dropdown-arrow svg,
.dropdown-section .dropdown .dropdown-button:disabled .dropdown-arrow path {
  fill: #AAAAAA;
}
.dropdown-section .dropdown .dropdown-button.error {
  border-color: #FF0000;
}
.dropdown-section .dropdown .dropdown-button .dropdown-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-section .dropdown .dropdown-button .dropdown-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
  font-size: 12px;
  color: #1E1E1E;
  height: 24px;
  width: 24px;
  background-image: url("../images/dropdown-arrow-down.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.dropdown-section .dropdown .dropdown-button .dropdown-arrow img {
  display: none;
}
.dropdown-section .dropdown .dropdown-input-container {
  position: relative;
  width: 100%;
}
.dropdown-section .dropdown .dropdown-input-container .dropdown-input {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 32px 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.5%;
  color: #1E1E1E;
  background: white;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.dropdown-section .dropdown .dropdown-input-container .dropdown-input:focus {
  border-color: #173377;
  cursor: text;
}
.dropdown-section .dropdown .dropdown-input-container .dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #666;
  transition: transform 0.2s ease;
}
.dropdown-section .dropdown .dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #173377;
  border-top: 1px solid #DADCE2;
  border-radius: 0 0 4px 4px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.dropdown-section .dropdown .dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: fadeInDown 0.2s ease forwards;
}
.dropdown-section .dropdown .dropdown-content::-webkit-scrollbar {
  width: 14px;
}
.dropdown-section .dropdown .dropdown-content::-webkit-scrollbar-track {
  background-color: #F5F5F7;
}
.dropdown-section .dropdown .dropdown-content::-webkit-scrollbar-thumb {
  background-color: #DADCE2;
  /* Color of the thumb (the draggable part) */
  border-top: 8px;
  border-bottom: 8px;
  border: 4px solid #F5F5F7;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  /* Optional: adds a border around the thumb */
}
.dropdown-section .dropdown .dropdown-content::-webkit-scrollbar-thumb:hover {
  background-color: #DADCE2;
  /* Color of the thumb when hovered */
}
.dropdown-section .dropdown .dropdown-content::-webkit-scrollbar-corner {
  background-color: #F5F5F7;
  /* Background color for the bottom-right corner */
}
.dropdown-section .dropdown .dropdown-content .dropdown-item {
  height: 44px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #1E1E1E;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: -1.5%;
  transition: background-color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.dropdown-section .dropdown .dropdown-content .dropdown-item::after {
  content: "";
  width: calc(100% - 32px);
  left: 16px;
  position: absolute;
  height: 1px;
  background-color: #DADCE2;
  bottom: 0;
}
.dropdown-section .dropdown .dropdown-content .dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-section .dropdown .dropdown-content .dropdown-item:hover {
  background-color: #F5F5F7;
}
.dropdown-section .dropdown .dropdown-content .dropdown-item.selected {
  background-color: #F5F5F7;
  color: #1E1E1E;
}
.dropdown-section .dropdown .dropdown-content .dropdown-item.hidden {
  display: none;
}
.dropdown-section .dropdown.active .dropdown-button {
  border-color: #173377;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}
.dropdown-section .dropdown.active .dropdown-input {
  border-color: #173377;
  border-radius: 4px 4px 0 0;
}
.dropdown-section .dropdown[data-dropdown-id=name-dropdown] .dropdown-content {
  max-height: 130px;
}

.accordion-section .accordion .accordion-item {
  border: none;
}
.accordion-section .accordion .accordion-item.active {
  border: 1px solid #173377;
}
.accordion-section .accordion .accordion-item.active .accordion-button {
  border: none;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button {
  background: var(--bg-04, #F5F5F7);
  color: var(--text-05, #808080);
  font-family: "Pretendard-semibold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: -0.24px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  border: 1px solid #DADCE2;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: var(--bg-04, #F5F5F7);
  color: #1E1E1E;
  border-bottom: 1px solid var(--line-03, #DADCE2);
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .accordion-arrow-section img {
  transform: rotate(180deg);
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button.all {
  background-color: #bdbdbd !important;
}
.accordion-section .accordion .accordion-item .accordion-header .accordion-button .accordion-arrow-section {
  width: 46px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  background-position: center;
  border-left: 1px solid var(--line-03, #DADCE2);
  background: transparent !important;
  transition: all 0.2s ease;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body .accordion-data-item {
  border-bottom: 1px solid var(--line-03, #DADCE2);
  color: var(--basic-blk, #1E1E1E);
  font-family: "Pretendard-regular";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 22.4px */
  letter-spacing: -0.24px;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body .accordion-data-item .text {
  padding: 12px 16px;
  width: calc(100% - 240px);
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body .accordion-data-item .radio-section {
  width: 240px;
  display: flex;
  padding: 12px 16px;
  border-left: 1px solid var(--line-03, #DADCE2);
  flex: 1 1 0;
}
.accordion-section .accordion .accordion-item .accordion-collapse .accordion-body .accordion-data-item .radio-section .custom-radio {
  min-width: -moz-max-content;
  min-width: max-content;
  flex-wrap: nowrap;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.date-range-section {
  display: flex;
  align-items: center;
  gap: 8px;
}
.date-range-section .tui-datepicker-input {
  border: none;
  height: 100%;
  cursor: pointer;
  width: 140px;
}
.date-range-section .tui-datepicker-input input {
  height: 40px;
  padding: 0px 16px;
  border-radius: 4px;
  border: 1px solid #DADCE2;
  background: #FFF;
  font-size: 14px;
  color: #000;
  cursor: pointer;
}/*# sourceMappingURL=global.css.map */