/* 뒤로가기 버튼 */
.back-btn {
  width: 20px;
  top: 20px;
  left: 15px;
}

/* ------------------------------------------------------------------------------- */

/* 버튼 타입-1 */
.button-type-1 {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  background: #509bf8;
  font-size: 18px;
  color: #fff;
  font-family: 'Paperlogy-5Medium';
}
.button-type-1:disabled {
  background: #e1e2e3;
}

/* 버튼 타입-2 */
.button-type-2 {
  width: 100%;
  height: 76px;
  background: #509bf8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.button-type-2 > .text {
  font-size: 20px;
  color: #fff;
  font-family: 'Paperlogy-6SemiBold';
}
.button-type-2 > .img-box {
  width: 20px;
}
.button-type-2:disabled {
  background: #e1e2e3;
}

/* 버튼 타입-3 */
.button-type-3-wrap {
  width: 100%;
  height: 76px;
  display: flex;
}
.button-type-3-wrap .button-type-3 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-family: 'Paperlogy-6SemiBold';
  box-sizing: border-box;
}
.button-type-3-wrap .button-type-3:first-child {
  background: #ffa600;
  border-right: 1px solid #ffa600;
}
.button-type-3-wrap .button-type-3:last-child {
  background: #509bf8;
}
.button-type-3-wrap .button-type-3:first-child:disabled {
  border-right: 1px solid #fff;
}
.button-type-3-wrap .button-type-3:disabled {
  background: #e1e2e3;
}

/* ------------------------------------------------------------------------------- */

/* 인풋 타입-1 */
.input-type-1 {
  width: 100%;
  height: 35px;
}
.input-type-1 input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #aaa;
  padding: 0 15px;
  background: #fff;
  border-radius: 3px;
  font-size: 14px;
  line-height: 140%;
  font-family: 'Paperlogy-5Medium';
  color: #333;
}

/* 인풋 타입-1 리스트 */
.input-type-1-list > h1 {
  margin-bottom: 7px;
  font-family: 'Paperlogy-5Medium';
  font-size: 15px;
  line-height: 130%;
  color: #333;
}
.input-type-1-list > p.error-msg {
  box-sizing: border-box;
  padding-left: 2px;
  font-size: 14px;
  line-height: 130%;
  color: #ff462e;
  margin-top: 12px;
}
.input-type-1-list > p.basic-msg {
  font-size: 14px;
  line-height: 130%;
  color: #333;
  margin-top: 7px;
}

/* ------------------------------------------------------------------------------- */

/* 텍스트 영역 타입-1 */
.textarea-type-1 {
  width: 100%;
  height: 65px;
}
.textarea-type-1 textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #aaa;
  border-radius: 3px;
  font-size: 14px;
  line-height: 130%;
  color: #333;
}
/* ------------------------------------------------------------------------------- */

/* 체크박스 타입-1 */
.checkbox-type-1 input {
  display: none;
}
.checkbox-type-1 input + label {
  display: inline-flex;
  gap: 7px;
  cursor: pointer;
}
.checkbox-type-1 input + label > .img-box {
  width: 16px;
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  min-height: 16px;
  max-height: 16px;
  margin-top: 1px;
}
.checkbox-type-1 input:checked + label > .img-box {
  content: url(../img/ico_check_type_1_active.png);
}
.checkbox-type-1 input + label > .text {
  font-size: 14px;
  line-height: 130%;
  color: #333;
  font-family: 'Paperlogy-5Medium';
  white-space: pre-line;
}
.checkbox-type-1 input + label > input {
  display: block;
  font-size: 14px;
  line-height: 130%;
  color: #333;
  font-family: 'Paperlogy-5Medium';
  border: none;
}
.checkbox-type-1 input + label > input::placeholder {
  color: #333;
}
.checkbox-type-1 input + label > .text > .sub-text {
  color: #999;
}

/* 체크박스 타입-2 */
.checkbox-type-2 > input {
  display: none;
}
.checkbox-type-2 > input + label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.checkbox-type-2 > input + label > .img-box {
  width: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  min-height: 22px;
  max-height: 22px;
}
.checkbox-type-2 > input:checked + label > .img-box {
  content: url(../img/ico_check_type_2_active.png);
}
.checkbox-type-2 > input + label > .text {
  font-size: 16px;
  color: #333;
  font-family: 'Paperlogy-5Medium';
  white-space: nowrap;
}
.checkbox-type-2 > input + label > input {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 16px;
  color: #333;
  font-family: 'Paperlogy-5Medium';
}
.checkbox-type-2 > input + label > input::placeholder {
  color: #333;
}

/* 체크박스 타입-3 */
.checkbox-type-3 input {
  display: none;
}
.checkbox-type-3 input + label {
  display: block;
  cursor: pointer;
}
.checkbox-type-3 input + label > .img-box {
  width: 24px;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  min-height: 24px;
  max-height: 24px;
}
.checkbox-type-3 input:checked + label > .img-box {
  content: url(../img/ico_check_type_3_active.png);
}

/* ------------------------------------------------------------------------------- */

/* 라디오 타입-1 */
.radio-type-1 .title-box {
  display: flex;
  align-items: center;
  gap: 7px;
}
.radio-type-1 .title-box > .img-box {
  width: 18px;
  min-width: 18px;
}
.radio-type-1 .title-box > h1 {
  font-size: 15px;
  line-height: 130%;
  color: #333;
  font-family: 'Paperlogy-5Medium';
}
.radio-type-1 .radio-wrap {
  display: flex;
  margin-top: 10px;
}
.radio-type-1 .radio-wrap .radio-box {
  width: 100%;
  height: 30px;
}
.radio-type-1 .radio-wrap .radio-box input {
  display: none;
}
.radio-type-1 .radio-wrap .radio-box input + label {
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f8f9;
  box-sizing: border-box;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.radio-type-1 .radio-wrap .radio-box:first-child input + label {
  border-left: 1px solid #ddd;
}
.radio-type-1 .radio-wrap .radio-box input + label > .text {
  font-size: 13px;
  color: #999;
}
.radio-type-1 .radio-wrap .radio-box input:checked + label {
  background: #509bf8;
}
.radio-type-1 .radio-wrap .radio-box input:checked + label > .text {
  color: #fff;
  font-family: 'Paperlogy-6SemiBold';
}
.radio-type-1 .view-text-box {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}
.radio-type-1 .view-text-box > p {
  font-size: 12px;
  color: #999;
}

/* ------------------------------------------------------------------------------- */

/* 모달 타입-1 */
.modal-type-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: none;
}
.modal-type-1.active {
  display: block;
}
.modal-type-1 .modal-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 72px);
  max-height: calc(100vh - 50px);
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 30px 25px 25px 25px;
  flex-direction: column;
  gap: 17px;
  display: none;
}
.modal-type-1 .modal-wrap.active {
  display: flex;
}
.modal-type-1 .modal-wrap .x-btn {
  width: 16px;
  position: absolute;
  top: -24px;
  right: 12px;
}
.modal-type-1 .modal-wrap .cnt-wrap .basic-text {
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #333;
  font-family: 'Paperlogy-5Medium';
}
.modal-type-1 .modal-wrap .click-btn {
  width: 100%;
  height: 50px;
  min-height: 50px;
  border-radius: 15px;
  background: #509bf8;
  font-size: 16px;
  color: #fff;
  font-family: 'Paperlogy-5Medium';
}
.modal-type-1 .modal-wrap .click-btn:disabled {
  background: #e1e2e3;
}

/* ------------------------------------------------------------------------------- */

/* 바텀 모달 타입-1 */
.bottom-modal-type-1 {
  width: 100%;
  background: #f4f6f8;
  border-radius: 25px 25px 0 0;
  box-sizing: border-box;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bottom-modal-type-1 .cnt-wrap {
  width: 100%;
  background: #fff;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 25px 20px;
}

/* ------------------------------------------------------------------------------- */

/* 홈 상단 공통 텍스트 영역 */
.home-top-text-wrap > h1 {
  font-size: 17px;
  line-height: 28px;
  color: #fff;
}
.home-top-text-wrap > h2 {
  font-size: 44px;
  line-height: 50px;
  background: linear-gradient(99.83deg, #3d7dff 11.73%, #5b58ef 83.02%);
  color: transparent;
  -webkit-background-clip: text;
  text-shadow: 0px 2px 3px #1549a859;
  margin-top: 13px;
}
.home-top-text-wrap > .h3-box {
  margin-top: 22px;
}
.home-top-text-wrap > .h3-box > h3 {
  display: inline-block;
  box-sizing: border-box;
  padding: 2px 18px;
  border-radius: 21px;
  background: #ffffff1a;
  font-size: 15px;
  line-height: 28px;
  color: #fff;
}
/* 흰 배경 버전 */
.home-top-text-wrap.white > h1 {
  font-size: 14px;
  color: #777;
}
.home-top-text-wrap.white > h2 {
  font-size: 40px;
  line-height: 48px;
  margin-top: 25px;
}
.home-top-text-wrap.white > .h3-box {
  margin-top: 20px;
}
.home-top-text-wrap.white > .h3-box > h3 {
  padding: 8px 20px;
  border-radius: 20px;
  background: #509bf814;
  font-size: 13px;
  line-height: 100%;
  color: #509bf8;
}

/* ------------------------------------------------------------------------------- */

/* 홈 상단 공통 리스트 영역 */
.home-list-wrap {
  margin: 0 auto;
  width: calc(100% - 62px);
  background: #ffffff1a;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 12px;
  gap: 13px;
}
.home-list-wrap > li {
  gap: 13px;
}
.home-list-wrap > li > .img-box {
  width: 24px;
  min-width: 24px;
}
.home-list-wrap > li > p {
  font-size: 14px;
  line-height: 130%;
  color: #fff;
}
