.text_red {
  color: #F13E3E;
}
.text_blue {
  color: #3478FE;
}
.text_orange {
  color: #F13E3E;
}
.text_green {
  color: #5FA91E;
}
.text_flow {
  display: flex;
  align-items: #002C5F;
}

.button_cancel {
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: transparent url("../../images/common/button/icon_cancel.svg") padding-box no-repeat;
  background-size: auto;
}

.logo_kia_logo {
  display: inline-flex;
  width: 51px;
  height: 12px;
  background: transparent url("../../images/logo/icon_kia_logo.svg") padding-box no-repeat;
  background-size: auto;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal h2 {
  font-size: 16px;
  line-height: 20px;
}
.modal_overlay {
  width: 100%;
  height: 100%;
  background-color: #05141F;
  opacity: 0.65;
}
.modal_main {
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  background-color: #fff;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  justify-content: space-between;
}
.modal_header {
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
  display: flex;
  border-bottom: 1px solid #DADBDC;
  padding: 30px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.modal_header_title {
  color: #05141F;
  line-height: 20px;
  font-size: 18px;
  font-family: "Kia Signature Bold";
}

.modal_footer {
  box-sizing: border-box;
  border-top: 1px solid #DADBDC;
}

.modal_footer_row {
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  gap: 10px;
}

.modal_contents {
  height: inherit;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal_wrap_row {
  display: flex;
  gap: 2px;
}
.modal_wrap_row_between {
  justify-content: space-between;
}
.modal .button_positive, .modal .button_negative_modal {
  width: 100%;
  height: 100%;
}

.modal_input {
  width: 100%;
  box-sizing: border-box;
  height: 34px;
  border: 1px solid #DADBDC;
  border-radius: 5px;
  padding: 0px 12px;
}
.modal_input:focus {
  outline: #F13E3E;
}
.modal_label p {
  font-size: 12px;
  line-height: 14px;
}
.modal_text {
  color: #404040;
}