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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  justify-content: center;
  align-items: start;
}
.modal h2 {
  font-size: 16px;
  line-height: 20px;
}
.modal_overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}
.modal_main {
  display: flex;
  flex-direction: column;
  height: fit-content;
  max-width: 1024px;
  margin: 20px 0px;
  border-radius: 24px;
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.1) 19.23%,
    rgba(255, 255, 255, 0.1) 80.77%
  );
  backdrop-filter: blur(22.5px);
  overflow-y: auto;
}
.modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  height: 60px;
  padding: 16px 36px;
}
.modal_header_title {
  color: black;
  line-height: 20px;
  font-size: 18px;
  font-family: "Kia Signature Bold";
}
.modal_footer {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 154px;
  padding: 0px 18%;
  gap: 10px;
  border-top: 1px solid #767676;
}
.modal_contents {
  display: flex;
  flex-direction: column;
  height: inherit;
  padding: 0px 32px;
  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_input {
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0px 12px;
  border: 1px solid white;
  border-radius: 5px;
}
.modal_input:focus {
  outline: #ff0000;
}
.modal_label p {
  line-height: 14px;
  font-size: 12px;
}

.next_contents > h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}
.next_contents > h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

@media screen and (max-width: 768px) {
  .detail_text {
    margin: 0px 4% 13% !important;
  }
}
