@charset "UTF-8";
.text_red {
  color: #F13E3E;
}
.text_blue {
  color: #3478FE;
}
.text_orange {
  color: #F13E3E;
}
.text_green {
  color: #5FA91E;
}
.text_gray {
  color: #636B74;
}
.text_flow {
  display: flex;
  align-items: #002C5F;
}

@font-face {
  font-family: "Kia Signature Loght";
  src: url("../../fonts/KIA_Light.ttf") format("truetype");
}
@font-face {
  font-family: "Kia Signature Medium";
  src: url("../../fonts/KIA_Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Kia Signature MortorsMedium";
  src: url("../../fonts/KIA_MortorsMedium.ttf") format("truetype");
}
@font-face {
  font-family: "Kia Signature Bold";
  src: url("../../fonts/KIA_Bold.ttf") format("truetype");
}
* {
  font-family: "Kia Signature Medium";
  font-size: 14px;
  line-height: 20px;
  user-select: none;
  -webkit-user-select: none; /* 사파리 */
  -moz-user-select: none; /* 파이어폭스 */
  -ms-user-select: none; /* IE */
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-button {
  display: none;
}
::-webkit-scrollbar-thumb {
  background-color: #888; /* 스크롤바 색상 */
  border-radius: 100px; /* 스크롤바 둥글게 */
  border: 3px solid #f1f1f1; /* 스크롤바와 트랙 사이에 공간 */
}
::-webkit-scrollbar:hover {
  background: #555; /* 스크롤바 위에 마우스를 올렸을 때 */
}

body {
  margin: 0px;
}

textarea {
  resize: none;
}

label {
  cursor: pointer;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Kia Signature Bold";
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

fieldset {
  border: 0px;
}

a {
  color: #707070;
  text-decoration: none;
}

nav {
  width: -moz-fit-content;
  width: fit-content;
}

iframe {
  width: 100%;
  height: -webkit-fill-available;
  border: 0px;
}

button {
  border: 0px;
  padding: 0px;
  margin: 0px;
  background-color: unset;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 24px;
  outline: none;
}

input {
  padding: 0px 6px;
  outline: none;
}
input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-clear-button {
  display: none;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  color: transparent;
}

.margin_right_five {
  margin-right: 5px;
}
.margin_right_ten {
  margin-right: 10px;
}
.margin_right_twenty {
  margin-right: 20px;
}
.margin_right_fourty {
  margin-right: 40px;
}
.margin_top_auto {
  margin-top: auto;
}
.margin_top_ten {
  margin-top: 10px;
}
.margin_top_twenty {
  margin-top: 20px;
}
.margin_left_five {
  margin-left: 5px;
}
.margin_left_ten {
  margin-left: 10px;
}
.margin_left_twenty {
  margin-left: 20px;
}
.margin_left_thirty {
  margin-left: 30px;
}
.margin_left_forty {
  margin-left: 40px;
}
.margin_bottom_five {
  margin-bottom: 5px;
}
.margin_bottom_ten {
  margin-bottom: 10px;
}
.margin_bottom_twenty {
  margin-bottom: 20px;
}
.margin_bottom_thirty {
  margin-bottom: 30px;
}

.app_wrap {
  display: inline-flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  box-sizing: border-box;
  background: #ffffff;
}
.app_container {
  display: flex;
  overflow: hidden;
  height: calc(100% - 50px);
}
.app_main {
  overflow-y: auto;
}

.wrap_row {
  display: flex;
  min-height: 30px;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 1px solid #CCD0D3;
}
.wrap_row:first-child {
  border-top: 1px solid #05141F;
}
.wrap_row_double {
  height: 88px;
}
.wrap_row_double .wrap_col {
  flex-direction: column;
}
.wrap_row_double .wrap_row:first-child {
  border: none;
}
.wrap_row_between {
  justify-content: space-between;
}
.wrap_col {
  display: flex;
  height: 100%;
}
.wrap_col_full {
  width: 100%;
}
.wrap_col_half {
  width: 50%;
}
.wrap_col_triple {
  width: 33%;
}
.wrap_col_quarter {
  width: 24%;
}
.wrap_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px;
  background-color: #EFF0F1;
  height: 44px;
  border-top: 1px solid #DADBDC;
}
.wrap_header_button {
  display: flex;
}
.wrap_header_title {
  display: flex;
  align-items: center;
  font-family: "Kia Signature Bold";
}
.wrap_header_select {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
}
.wrap_header_sub {
  gap: 10px;
  background-color: #F8F8F8;
}
.wrap_header_end {
  justify-content: flex-end;
}
.wrap_header_center {
  justify-content: center;
}
.wrap_component {
  display: flex;
  align-items: center;
  width: 100%;
  height: initial;
  position: relative;
  box-sizing: border-box;
}
.wrap_component_radio {
  gap: 10px;
  align-items: end;
}
.wrap_label {
  flex: 0 0 110px;
  display: inline-flex;
  width: 100%;
  height: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  background-color: #F8F8F8;
  padding: 0px 16px;
  border-right: 1px solid #DADBDC;
  border-left: 1px solid #DADBDC;
}
.wrap_label_full {
  display: inline-flex;
  width: 100%;
  height: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: start;
  background-color: #F8F8F8;
  padding: 0px 16px;
  border-right: 1px solid #DADBDC;
  border-left: 1px solid #DADBDC;
}
.wrap_select {
  flex: 1;
  display: flex;
  width: 100%;
  height: 32px;
  padding-left: 6px;
  border-radius: 2px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
  cursor: pointer;
}
.wrap_select_double {
  height: 48px;
}
.wrap_input {
  display: flex;
  width: 100%;
  height: 32px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
}
.wrap_input_date {
  padding-right: 24px;
}
.wrap_input_read_only {
  display: flex;
  width: 100%;
  height: 32px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
  background-color: #F9F9F9;
}
.wrap_input_checkbox {
  display: none;
}
.wrap_input_checkbox_label {
  display: flex;
}
.wrap_checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid #707070;
}
.wrap_textarea {
  display: flex;
  width: 100%;
  height: calc(100% - 10px);
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
  min-height: 150px;
}
.wrap_button {
  display: flex;
  justify-content: center;
}
.wrap_text {
  display: flex;
  min-height: 30px;
  align-items: center;
  padding-left: 10px;
}
.wrap_body .wrap_row .wrap_col .wrap_label {
  max-width: 110px;
  box-sizing: border-box;
  font-size: 12px;
  text-align: center;
}
.wrap_space_triple {
  width: 33%;
}
.wrap_space_normal {
  width: 15%;
}
.wrap_tip {
  font-size: 12px;
}
.wrap_tip * {
  font-size: 12px;
}
.wrap_sub {
  color: #636B74;
  font-size: 12px;
  text-align: center;
}

.select_icon {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  cursor: pointer;
}

.input_icon {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  cursor: pointer;
}

.cursor_unset {
  cursor: unset;
}

.page_title {
  display: flex;
  justify-content: space-between;
}
.page_title_text {
  display: flex;
  align-items: flex-end;
  font-family: "Kia Signature Bold";
  font-size: 20px;
}
.page_title_buttons {
  display: flex;
}

.search_field {
  display: flex;
  border: 1px solid #DADBDC;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0784313725);
}
.search_field .wrap_component {
  padding-left: 0px;
}
.search_fieldset {
  display: flex;
  flex-direction: column;
}
.search_fieldset_fuul {
  width: 100%;
}
.search_fieldset_half {
  width: 50%;
}
.search_fieldset_triple {
  width: 30%;
}
.search_fieldset_normal {
  width: 15%;
}
.search_fieldset_short {
  width: 10%;
}

.pipe_line {
  display: flex;
  width: 1px;
  height: 14px;
}
.pipe_line_vertical {
  background-color: #05141F;
  display: none;
  justify-content: center;
  width: 16px;
  height: 2px;
  margin: 6px 0px;
  transition: display 0.5s ease-out;
  position: absolute;
  top: 23px;
}
.pipe_line_vertical.show {
  display: flex;
}
.pipe_line_gray {
  background-color: #DADBDC;
}
.pipe_line_black {
  background-color: #05141F;
}
.pipe_line_white {
  background-color: #fff;
}

.form {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0px 16px;
  box-sizing: border-box;
  gap: 10px;
}
.form_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form_row_full {
  width: 100%;
}
.form_row > sub {
  font-size: 12px;
  color: #636B74;
}
.form_col {
  display: flex;
}
.form_label {
  width: -moz-fit-content;
  width: fit-content;
}
.form_label_essential {
  position: relative;
}
.form_label_essential::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -8px;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-left: 4px;
  background-color: #F13E3E;
}
.form_input {
  border-radius: 4px;
  border-color: #CCD0D3;
  padding: 0px 10px;
  box-sizing: border-box;
}

.complete_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F2F4F6;
  padding: 20px 0;
  gap: 10px;
}
.complete_icon {
  background-position: 50% 50%;
  border-radius: 50%;
  padding: 16px;
  background-color: #fff;
}
.complete_sub {
  text-align: center;
  font-size: 12px;
  color: #636B74;
}
.complete_no {
  display: flex;
  align-items: center;
  gap: 8px;
}
.complete_choice {
  display: flex;
  justify-content: space-between;
}
.complete_choice .wrap_select {
  border: none;
}

.choice_search {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #F5F6F7;
  padding: 14px 0px;
  justify-content: center;
  gap: 10px;
}
.choice_search > p {
  font-size: 16px;
  text-align: center;
}
.choice_search .wrap_component {
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.choice_search .wrap_row {
  gap: 24px;
}
.choice_search_row {
  display: flex;
  gap: 24px;
}

.guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  gap: 15px;
}
.guide_label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F4F6;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
.guide > h4 {
  text-align: center;
}

button {
  color: inherit;
  -webkit-appearance: none;
  background: none;
  border: none;
}