/* ===== 루트 설정 ===== */
html {
  font-size: 62.5%; /* 1rem = 10px */
}

:root {
  --blue: #0068ff;
  --blue-light: #cce1ff;
  --gray-1: #F2F4F7;
  --gray-2: #e5e7eb;
  --gray-3: #9ca3af;
  --text: #1f2937;
  --text-sub: #7e7e7e;

  /* 반응형 컨테이너 */
  --container-max: 120rem;
  --container-pad: 2rem;
}

body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  -webkit-text-size-adjust: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  box-sizing: border-box;
}

.blue { color: var(--blue); }
.mo{display: none !important;}
.pc{display: block !important;}

/* ===== 헤더 ===== */
#header {
    background: #fff;
    margin-bottom: 2.4rem;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5.6rem;
}
.logo_link { flex-shrink: 0; }
.logo_link img {
    height: 2.5rem;
    width: auto;
    display: block;
}
.header_date {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 500;
}
.header_date .dot {
  width: 0.7rem;
  height: 0.7rem;
  background: #E22323;
  border-radius: 50%;
  animation: dot_blink 1.4s ease-in-out infinite;
}

@keyframes dot_blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.1; }
}
.header_date .ban{color: #9ca3af;font-weight: normal;}
.header_date .date{font-weight: 600;}

/* 모바일 전용 하단 CTA/바텀시트 (PC에서는 숨김) */
.btm_cta, .btm_sheet, .btm_sheet_dim { display: none; }

/* ===== 보종별 네비게이션 ===== */
.nav_wrap {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav_item {
  flex: 1;
  height: 100%;
  display: flex;
}

.nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 0.4rem;
  font-size: 1.7rem;
  color: var(--text-sub);
  text-decoration: none;
  position: relative;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.nav_link.active {
  color: var(--blue);
  font-weight: 700;
}

.nav_link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--blue);
}

/* ===== 메인 레이아웃 ===== */
.main_layout {
  display: grid;
  grid-template-columns: 1fr 40rem;
  padding-top: 0;
  align-items: start;
}
.main_left {
  position: relative;
  padding-right: 3rem;
  border-right:1px solid var(--gray-2);
}


/* ===== 히어로 ===== */
.hero {
  background: var(--blue);
  color: #fff;
  border-radius: 1.6rem;
  padding: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  gap: 1rem;
}
.hero_text { flex: 1; min-width: 0; }
.tag_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.tag {
  display: flex;
  padding: 0.6rem 1.4rem;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
  align-items: center;
}
.tag img{height:1.6rem;width: 1.6rem;}
.tag_white  { background: #fff; color: var(--blue); }

.hero_title {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 1.6rem 0 1.2rem;
}
.hero_desc {
  font-size: 1.6rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero_features {
  font-size: 1.4rem;
  opacity: 0.85;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.4rem;
}
.hero_features .dot_sep {
  margin: 0 0.6rem;
}
.hero_note {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-top: 0.4rem;
}
.hero_img {
  flex-shrink: 0;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 4rem;
}
.hero_img img {
  width: 100%;
  max-width: 23rem;
}

/* ===== 폼 (우측 sticky) ===== */
.main_right { position: sticky; top:4rem; }

.form_box {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem;
}
.form_title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0rem;
}
.form_sub {
  font-size: 1.8rem;
  color: var(--text-sub);
  margin-bottom: 4.5rem;
}
.field { margin-bottom: 1.8rem; }

.field > label,
.field > .field_label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-sub);
}

.field label.active {
  color: var(--blue);
}

.sex_field > .field_label { margin-bottom: 0.8rem; }

.field input[type="text"],
.field input[type="tel"],
.field select {
  width: 100%;
  height: 4.4rem;
  border: none;
  border-bottom: 1px solid var(--gray-2);
  font-size: 2.4rem;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  font-weight: 700;
  color: var(--text);
}
.field input[type="text"]::placeholder,
.field input[type="tel"]::placeholder{color: var(--gray-3);}

.field input[type="text"]:focus,
.field input[type="tel"]:focus{border-bottom: 1px solid var(--blue);}

.field_help {
  font-size: 1.6rem;
  color: var(--text-sub);
  margin-top: 0.6rem;
}
.mobile_wrap { display: flex; gap: 0.8rem; }
.mobile_wrap select { width: 9rem; flex-shrink: 0; }

.sex_wrap { display: flex; gap: 0.8rem; }
.sex_wrap input[type="radio"] { display: none; }
.sex_btn {
  flex: 1;
  height: 4.4rem;
  border: 1px solid var(--gray-2);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  background: #fff;
  color: var(--text-sub);
  font-weight: 700;
}
.sex_wrap input[type="radio"]:checked + .sex_btn {
  border-color: var(--blue);
  color: var(--blue);
  font-weight: 700;
}

.submit_btn {
  width: 100%;
  height: 5.7rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 3rem;
}
.submit_btn .sub {
  font-weight: 400;
  font-size: 1.4rem;
  opacity: 0.85;
  margin-left: 0.4rem;
  display: block;
}

/* ===== Point 섹션 ===== */
.point {
  background: #fff;
  margin-bottom: 3rem;
  border-top: 1px solid var(--gray-2);
  padding-top: 4rem;
}

.point:last-of-type{border-bottom: 1px solid var(--gray-2);padding-bottom: 2rem;}
.point.bordernone{border: none;}
.point_badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.4rem 1.2rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}
.point_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.point_desc {
  font-size: 1.6rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

/* 특약 박스 */
.feature_box {
  background: var(--blue);
  color: #fff;
  border-radius: 1.2rem;
  padding: 2.8rem;
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature_box figure{background: #F2F4F7;width: 50%;border-radius: 1rem;display: flex;align-items: center;justify-content: center;}

.feature_box h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1rem 0;
  text-align: center;
}

.feature_box h3.single{margin-bottom: 0;}


.feature_box p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.8;
  text-align: center;
}

/* 상황 리스트 */
.situation_title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 1rem;
}
.situation ol { list-style: none; padding: 0; }
.situation li {
  background: var(--gray-1);
  border-radius: 1.5rem;
  padding: 1.4rem 1.6rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1rem;
  font-weight: 500;
}
.situation .num {
  flex-shrink: 0;
  width: 2.2rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  position: absolute;
  left: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 2.2rem;
}


/* 지급 조건 토글 */
.terms {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
}
.btn_terms_toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-sub);
  cursor: pointer;
  padding: 0.6rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn_terms_toggle .arrow {
  width: 2rem;
  transition: transform 0.3s;
}
.btn_terms_toggle.active .arrow { transform: rotate(180deg); }

.terms_content {
  display: none;
  font-size: 1.4rem;
  color: var(--text-sub);
  line-height: 1.4;
  padding-top: 1.2rem;
}
.terms_content2 {
  font-size: 1.4rem;
  color: var(--text-sub);
  line-height: 1.4;
}
.terms_content p { line-height: 1.6; }

/* ===== 가입 시 유의사항 ===== */
.notice_wrap {
  background: #fff;
  border-radius: 1.6rem;
  margin-top: 2rem;
}
.btn_notice_toggle {
  width: 100%;
  border: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  background: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 1.5rem;
}
.btn_notice_toggle img{width: 2rem;transition: 0.3s;}
.btn_notice_toggle.active img{transform: rotate(180deg);}
.notice_content {
  display: none;
  padding: 2.4rem;
  font-size: 1.2rem;
  color: var(--text-sub);
  line-height: 1.7;
  position: relative;
}
.notice_content.active { display: block; }

.notice_content::after{content: ""; width: 100%;height: 1.5rem;background: var(--gray-1);position: absolute;left: 0;bottom: 0;}

/* ===== 반응형 ===== */
@media (max-width: 1600px) {
  html { font-size: 50%; }
}


@media (max-width: 1280px) {
  html { font-size: 48%;}
}


@media (max-width: 1024px) {
  html { font-size: 42%; }
}


@media (max-width: 900px) {
  html { font-size: 40%; }
}

@media (max-width: 768px) {
  :root { --mo-gutter: 2rem; }

  .pc { display: none !important; }
  .mo { display: block !important; }
  html { font-size: 62.5%; }          /* 모바일 폰트 고정 (줌 X) */

 
  .main_layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .main_left { padding-right: 0; min-width: 0; }
  .main_left::after { display: none; }
  .main_right { position: static; }

  /* ===== 헤더 ===== */
  #header { margin-bottom: 1.6rem; }
  .header_top { padding: 0 var(--mo-gutter); height: 5.5rem; }
  .logo_link img { height: 2.8rem; }

  /* ===== 네비 ===== */
  .nav_link { font-size: 1.7rem; padding: 0 0.8rem; }
  .nav_link.active::after { height: 3px; }

  /* ===== 히어로 ===== */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 3rem 10rem;
    margin: 0 var(--mo-gutter) 1.6rem;
    border-radius: 1.6rem;
  }
  .tag_wrap{margin-bottom: 0.8rem;}
  .tag { font-size: 1.3rem; }
  .hero_title { font-size: 3rem; font-weight: 600; margin: 1.2rem 0 0.8rem; }
  .hero_features { font-size: 1.3rem; opacity: 0.9; display: flex;flex-wrap: wrap;}
  .hero_img {
    max-width: 45rem;
    width: 100%;
    padding: 0;
    margin-top: 0.4rem;
    box-sizing: border-box;
  }
  .hero_img img { display: block; margin: 0 auto; max-width: 20rem; }
  .point_badge{width: 6.7rem;display: block;margin: 0 auto;margin-bottom: 1.5rem;}
  /* ===== 폼 ===== */
  .form_box {
    background: #F2F4F7;
    margin: 0 var(--mo-gutter) 1.6rem;
    padding: 2.4rem 2rem;
    border-radius: 1.6rem;
  }
  .form_title { font-size: 2.4rem; margin-bottom: 2rem; }
  .form_title strong { color: var(--blue); }

  /* 이름 + 성별을 한 줄에 배치 */
  #bohum_form { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1rem; }
  #bohum_form > .field:nth-of-type(1) { grid-column: 1; grid-row: 1; }
  #bohum_form > .field:nth-of-type(4) { grid-column: 2; grid-row: 1; }
  #bohum_form > .field:nth-of-type(2) { grid-column: 1 / -1; grid-row: 2; }
  #bohum_form > .field:nth-of-type(3) { grid-column: 1 / -1; grid-row: 3; }
  #bohum_form > .submit_btn          { grid-column: 1 / -1; }

  .field { margin-bottom: 1.6rem; }
  .field > label { font-size: 1.6rem; }
  .field input[type="text"],
  .field input[type="tel"],
  .field select { background: none; font-size: 2.2rem; font-weight: 600; }

  .sex_wrap { gap: 0.6rem; align-items: flex-end;margin-bottom: 1rem;}
  .sex_btn {
    flex: 1;
    height: 4.5rem;
    border: none;
    border-radius: 1.2rem;
    background: #e0e3e7;
    color: var(--text-sub);
    font-size: 1.8rem;
  }
  .sex_wrap input[type="radio"]:checked + .sex_btn {
    color: var(--blue);
    background: var(--blue-light);
  }

  .submit_btn { margin-top: 0.6rem; height: 5.6rem; font-size: 1.9rem; }
  .submit_btn .sub { font-size: 1.5rem; }

  /* ===== Point ===== */
  .point {
    border-top: none;
    margin-bottom: 0;
    padding: 3rem var(--mo-gutter) 1rem;
  }
  .point:last-of-type { border-bottom: none; padding-bottom: 1rem; }
  #point1 { border-top: 1px solid var(--gray-2); }
  .point_title { font-size: 2.4rem; }
  .point_desc { font-size: 1.5rem; }

  .feature_box { padding: 2.4rem 2rem; }
  .feature_box figure { width: 100%; box-sizing: border-box; padding: 0.5rem 1.5rem; }
  .feature_box figure img { max-width: 100%; height: auto; }
  .feature_box p { font-size: 1.5rem; }

  .situation li { font-size: 1.5rem; padding: 1.5rem 1.6rem;}

  /* ===== 유의사항 토글 ===== */
  .notice_wrap { margin-top: 1.6rem; }
  .btn_notice_toggle { width: auto; margin:0 auto; }

  /* ===== 하단 고정 CTA ===== */
  .btm_cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 -0.4rem 1.6rem rgba(0, 0, 0, 0.08);
    transform: translateY(130%);
    transition: transform 0.3s ease;
    border-radius: 1.5rem;
    margin: 0 2rem 2rem 2rem;
  }
  .btm_cta.show { transform: translateY(0); }
  .btm_cta_btn {
    width: 100%;
    height: 5.6rem;
    border: none;
    border-radius: 1.2rem;
    background: var(--blue);
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-direction: column;
  }
  .btm_cta_btn .sub { font-size: 1.5rem; font-weight: 500; opacity: 0.65;}

  /* ===== 바텀시트 폼 ===== */
  .btm_sheet_dim {
    display: block;
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .btm_sheet_dim.show {  visibility: visible;}

  .btm_sheet {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: -20px;
    z-index: 101;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    margin:1.5rem;
    box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.4);
  }
  .btm_sheet.show { transform: translateY(0); bottom: 5px;}
  .btm_sheet_head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.6rem;
  }
  .btm_sheet_title { font-size: 2.2rem; font-weight: 700; }
  .btm_sheet_title strong { color: var(--blue); }
  .btm_sheet .submit_btn { width: 100%; margin-top: 0.6rem; }

  /* 바텀시트 폼: 이름 + 성별을 한 줄에 (모바일 메인 폼과 동일) */
  #bohum_form__btm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1.4rem;
    align-items: center;
  }
  #bohum_form__btm .field { margin-bottom: 0; }
  #bohum_form__btm > :nth-child(1) { grid-row: 1; grid-column: 1; }       /* 이름 */
  #bohum_form__btm > :nth-child(2) { grid-row: 1; grid-column: 2; }       /* 성별 */
  #bohum_form__btm > :nth-child(3) { grid-row: 2; grid-column: 1 / -1; }  /* 생년월일 */
  #bohum_form__btm > :nth-child(4) { grid-row: 3; grid-column: 1 / -1; }  /* 전화번호 */
  #bohum_form__btm > :nth-child(5) { grid-row: 4; grid-column: 1 / -1; }  /* 제출 */
}

@media (max-width: 650px) {
  .nav {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }

  .nav_wrap {
    min-width: 64rem;
    justify-content: space-between;
  }

  .hero {padding: 3rem 7rem;}

}
@media (max-width: 540px) {
  :root { --mo-gutter: 1.6rem; }
  .hero {padding: 2rem;}
  .field{margin-bottom: 1rem;}
  .nav_wrap{min-width: 40rem;}
  .nav_link{font-size: 1.4rem;}
  .nav_item{flex: 1;}
  .feature{word-break: keep-all;}
  .situation li{justify-content: flex-start;padding-left: 5rem;}
}

@media (max-width: 480px) {
  :root { --mo-gutter: 1.4rem; }
  .logo_link img{height: 2.2rem;}
  .header_date{font-size: 1.2rem;}
  .hero_title{font-size: 2.5rem;}
}

@media (max-width: 375px) {
  :root { --mo-gutter: 1.2rem; }
  .feature_box p{font-size: 1.2rem;}
  .situation li{padding-left: 4.8rem;}
}

















/* ===== 유의사항 ===== */
.notice_wrap ul li { margin-bottom: 1.6rem; line-height: 1.7; }
.notice_wrap strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text-sub);
}
.notice_wrap ul li.sim{margin-bottom: 4rem;}
.notice_wrap p {
  font-size: 1.4rem;
  color: var(--text-sub);
}
.always_wrap {
  border-radius: 1.2rem;
  padding: 2rem;
}
.always_wrap .notice_title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  opacity: 0.8;
}
.always_wrap ul li {
  font-size: 1.4rem;
  color: var(--text-sub);
  line-height: 1.4;
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
}
.always_wrap ul li::before {
  content: '·';
  position: absolute;
  left: 0;
}
.sim_date {
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-top: 1.2rem;
}







#complete_modal_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#complete_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  z-index: 10000;
  width: 38rem;
}

#complete_modal_msg {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  word-break: keep-all;
}

#complete_modal_confirm {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 4rem;
  font-size: 1.8rem;
  cursor: pointer;
  width: 100%;
}

@media screen and (max-width: 480px) {
  #complete_modal {
    width: 32rem;
    max-width: calc(100% - 3rem);
    padding: 2.5rem 2rem;
    border-radius: 1.4rem;
  }

  #complete_modal_msg {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }

  #complete_modal_confirm {
    padding: 1.4rem 2rem;
    font-size: 1.6rem;
    border-radius: 0.8rem;
  }
}

/* ===== 커스텀 alert(경고) 모달 ===== */
.custom_alert_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100000;
}

.custom_alert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40rem;
  max-width: calc(100% - 4rem);
  background: #fff;
  border-radius: 2.4rem;
  padding: 2rem 2rem;
  box-sizing: border-box;
  z-index: 100001;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
}

.custom_alert_msg {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3f4856;
  margin-bottom: 2.4rem;
  word-break: keep-all;
  text-align: left;
}

.custom_alert_confirm {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 1.4rem;
  padding: 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

@media screen and (max-width: 720px) {
  .custom_alert {
    border-radius: 2.8rem;
    padding: 3.4rem 2.6rem 2.6rem;
  }

  .custom_alert_msg {
    font-size: 2.1rem;
    margin-bottom: 2.6rem;
  }

  .custom_alert_confirm {
    border-radius: 1.6rem;
    padding: 1.8rem;
    font-size: 1.9rem;
  }
}

