@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root {
    --vh: 1dvh;
    --viewport-bottom-gap: 0px;
    --wrap-bottom-base: 68px;
    --safe-area-top-env: env(safe-area-inset-top, 0px);
    --safe-area-top-offset: 0px;
    --safe-area-top: calc( var(--safe-area-top-env, 0px) + var(--safe-area-top-offset, 0px) );
}



html {
    background-color: #f4f4f4;
    min-height: calc(var(--vh, 1vh) * 100);
}

body {
    font-family: "Pretendard Variable";
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    background-color: #fff;
    min-height: calc(var(--vh, 1dvh) * 100);
    padding-top: var(--safe-area-top, 0px);
    padding-bottom: calc( var(--viewport-bottom-gap, 0px) + env(safe-area-inset-bottom, 0px) );
}

/* 헤더 영역 */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  height: 52px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 999;
}
header button {
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

header button.skip {
  width: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: #b4b4b4;
}

header .header_title {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  max-width: 270px;
  width: 100%;
  color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

header p {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  max-width: 280px;
  width: 100%;
  color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

header .header_title .img_box {
  width: 76px;
  height: 24px;
  background-image: url(../img/header_momq_logo.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

header .header_title b {
  width: 1px;
  height: 23px;
  background-color: #d9d9d9;
  margin: 0 4px;
}

header .header_title span {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.dal header .header_title .img_box {
  width: 46px;
  height: 22px;
  background-image: url(../img/header_dal_logo.svg);
}

.wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 52px 0 68px;
}

.input_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.input_wrap + .input_wrap {
  margin-top: 16px;
}

.input_wrap label {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #333;
  margin-bottom: 4px;
}

.input_wrap .input_box {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.input_wrap .input_box input.basic {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #c6c6c6;
  padding: 16px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #333;
  flex: 1;
  margin-bottom: 4px;
}

.input_wrap .input_box .selectBox {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #c6c6c6;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #333;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.input_wrap .input_box .selectBox p {
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #b4b4b4;
}

.input_wrap .input_box .selectBox.on p {
  color: #333;
}

.input_wrap .input_box .selectBox:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/select_arrow.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.input_wrap .input_box .optionList {
  position: absolute;
  width: 100%;
  height: 122px;
  overflow-y: auto;
  display: none;
  background-color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 10;
  right: 0;
  top: 48px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.input_wrap .input_box .optionList::-webkit-scrollbar {
  display: none;
}

.input_wrap .input_box .optionList li {
  padding: 14px 16px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #333;
  cursor: pointer;
}

.input_wrap .input_box .optionList li:hover {
  background-color: #e8e8e8;
}

.input_wrap .input_box .optionList li:last-child {
  border-bottom: none;
}

.input_wrap .input_box .textarea_wrap {
    display: flex;
    flex: 1;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #c6c6c6;
    padding: 12px 16px;
    box-sizing: border-box;
}

.input_wrap .input_box .textarea_wrap textarea {
    width: 100%;
    border: none;
    height: 120px;
    font-family: "Pretendard Variable";
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #333;
    box-sizing: border-box;
    padding-bottom: 8px;
}

.input_wrap .input_box .textarea_wrap.focus {
    border-color: #333;
}

.input_wrap .input_box .textarea_wrap textarea::placeholder {
  color: #b4b4b4;
}

.input_wrap .input_box .textarea_wrap textarea:focus {
    outline: none;
}

.input_wrap .input_box .textarea_wrap textarea::-webkit-resizer {
    display: none;
}

.input_wrap .input_box .textarea_wrap span.count {
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    color: #b4b4b4;
    text-align: right;
}

.input_wrap .input_box input.basic.error {
  border-color: #f73737;
}

.input_wrap .error_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #f73737;
  /*margin-top: 4px;*/
}

.input_wrap .grey_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #626262;
  margin-top: 4px;
}

.input_wrap .pw_result {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #333;
  margin-top: 4px;
  position: relative;
  padding-left: 26px;
}

.input_wrap .pw_result.complete {
  color: #0db11d;
}

.input_wrap .pw_result.complete::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-image: url(../img/pw_complete.svg);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.input_wrap .pw_result.fail {
  color: #f73737;
}

.input_wrap .pw_result.fail::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background-image: url(../img/pw_fail.svg);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.input_wrap .input_box button.pw_on {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/pw_on.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.input_wrap .input_box button.pw_off {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/pw_off.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.input_wrap .input_box button.copy {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/copy.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.input_wrap .input_box p.count {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #f73737;
}

.input_wrap .input_box input.basic:focus {
  outline: none;
  border-color: #333;
}

.input_wrap .input_box input.basic::placeholder {
  color: #b4b4b4;
}

.input_wrap .input_box input.basic:read-only {
  background-color: #f8f8f8;
}

.input_wrap .input_box input.basic:read-only:focus {
  outline: none;
  border-color: #c6c6c6;
}

.check_box_wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.check_box_wrap label {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.check_box_wrap label p {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: #444;
  flex: 1;
}

.check_box_wrap span.check_box_off {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_off.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.check_box_wrap span.check_box_on {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_on.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.dal .check_box_wrap span.check_box_on {
  background-image: url(../img/dal_check_on.svg);
}

.alert_modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.alert_modal_wrap.on {
  display: block;
}

.alert_modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.alert_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  max-width: 312px;
  width: 100%;
  padding: 44px 22px 24px;
  background-color: #fff;
  border-radius: 12px;
}

.alert_modal p {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #333;
  text-align: center;
}

.alert_modal p b {
  color: #f73737;
}

.alert_modal span {
  display: block;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  color: #333;
  text-align: center;
}

.alert_modal button {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  background-color: #f73737;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  margin-top: 28px;
}

.dal .alert_modal button {
  background-color: #25646c;
}

.alert_modal .two_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.alert_modal .two_btn button.line {
  background-color: #fff;
  color: #444444;
  border: 1px solid #c6c6c6;
}

button[disabled] {
  background-color: #dddddd;
  color: #b4b4b4;
  cursor: not-allowed;
}


.shadow_bottom_btn {
    position: fixed;
    bottom: calc( env(safe-area-inset-bottom, 0px) + var(--viewport-bottom-gap, 0px) );
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 100%;
    height: 68px;
    padding: 12px 16px;
    box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    z-index: 999;
}

.shadow_bottom_btn button {
  flex: 1;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
  background-color: #f73737;
  color: #fff;
}

.dal .shadow_bottom_btn button {
  background-color: #25646c;
}

.shadow_bottom_btn button.cancel {
  background-color: #fff;
  color: #333;
  border: 1px solid #e8e8e8;
}

.shadow_bottom_btn button.line {
  background-color: #fff;
  color: #f73737;
  border: 1px solid #f73737;
}

.dal .shadow_bottom_btn button.line {
  border-color: #25646c;
  color: #25646c;
}

.shadow_bottom_btn button:disabled {
  background-color: #e8e8e8;
  color: #b4b4b4;
}

.all_agree_box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #f4f4f4;
}
.all_agree_box label {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  color: #333;
}

.all_agree_box .check_box_on {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_on.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.all_agree_box .check_box_off {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_off.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.dal .all_agree_box .check_box_on {
  background-image: url(../img/dal_check_on.svg);
}

.all_agree_box p {
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #808080;
  padding-top: 4px;
}

.agree_box .check_box_on {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_on.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.agree_box .check_box_off {
  width: 22px;
  height: 20px;
  background-image: url(../img/check_off.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.dal .agree_box .check_box_on {
  background-image: url(../img/dal_check_on.svg);
  cursor: pointer;
}

.agree_box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 8px;
  border: 1px solid #e8e8e8;
  position: relative;
}
.agree_box .text_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}
.agree_box .text_box label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #333;
  align-self: flex-start;
  margin-top: 1px;
}
.agree_box .text_box label b {
  font-weight: 600;
}
.agree_box .text_box_choice {
  width: 100%;
}
.agree_box .text_box_choice .main_label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #333;
  align-self: flex-start;
}
.agree_box .text_box_choice .main_label b {
  font-weight: 600;
}
.agree_box .text_box_choice .sec_agree_box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 10px;
}
.agree_box .text_box_choice .sec_agree_box .sec_agree_box_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  gap: 4px;
}

.agree_box .text_box_choice .sec_agree_box .sec_agree_box_item .check_box_on {
  width: 22px;
  height: 20px;
  background-image: url(../img/sec_check_on.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.agree_box .text_box_choice .sec_agree_box .sec_agree_box_item .check_box_off {
  width: 22px;
  height: 20px;
  background-image: url(../img/sec_check_off.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.dal
  .agree_box
  .text_box_choice
  .sec_agree_box
  .sec_agree_box_item
  .check_box_on {
  background-image: url(../img/dal_sec_check_on.svg);
  cursor: pointer;
}
/*
.dal .agree_box.under14 {
  margin-bottom: 30px;
}*/

.agree_box .check_helper {
    /*display: none;*/
    position: absolute;
    left: 20px;
    top: 82%;
    border-radius: 8px;
    padding: 4px 8px;
    background-color: #e6f9fb;
    z-index: 10;
}

.agree_box .check_helper p {
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  color: #25646c;
}

.agree_box .check_helper .img_box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  width: 12px;
  height: 6px;
  background-image: url(../img/dal_agree_helper_arrow2.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dal .agree_box .check_helper {
  display: block;
}

.agree_box .text_box_choice .sec_agree_box .sec_agree_box_item span {
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.agree_box .text_box_choice .sec_agree_box .sec_agree_box_item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  color: #333;
  cursor: pointer;
}
.agree_box .text_box_choice .agree_helper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  padding: 8px 12px;
  background-color: #ffe5e5;
  margin-top: 16px;
}
.agree_box .text_box_choice .agree_helper p {
  font-size: 12px;
  font-weight: 500;
  line-height: 140%;
  color: #fc6060;
}

.dal .agree_box .text_box_choice .agree_helper {
  background-color: #e6f9fb;
}

.dal .agree_box .text_box_choice .agree_helper p {
  color: #25646c;
}

.agree_box .text_box_choice .agree_helper .img_box {
  position: absolute;
  left: 44px;
  bottom: 100%;
  width: 12px;
  height: 10px;
  background-image: url(../img/agree_helper_arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.dal .agree_box .text_box_choice .agree_helper .img_box {
  background-image: url(../img/dal_agree_helper_arrow.svg);
}

.radio_box .radio_box_off {
  width: 20px;
  height: 20px;
  background-image: url(../img/radio_off.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.radio_box .radio_box_on {
  width: 20px;
  height: 20px;
  background-image: url(../img/radio_on.svg);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.dal .radio_box .radio_box_on {
  background-image: url(../img/dal_radio_on.svg);
}

.result_desc {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  cursor: pointer;
}

.common-popup {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 600px;
    width: 100%;
    height: calc(100vh - 50px);
    z-index: 1000;
    background: transparent; /* ✅ 흰 배경 제거 */
    animation: modalFullSlideUp 0.35s ease forwards;
}
    .common-popup.hidden {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
        max-width: 600px;
        width: 100%;
        height: 95%;
        z-index: 1000;
        background: transparent; /* ✅ 여기도 투명 */
        animation: modalFullSlideDown 0.35s ease forwards;
    }
 /* hidden 상태일 때 bg를 서서히 투명하게 */
 .common-popup.hidden .popup-bg {
     opacity: 0;
 }
    .common-popup .popup-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200vh;
        background: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: opacity 0.35s ease;
        /*opacity: 0;*/ /* ✅ 기본값 0으로 명시 */
    }
 /* 보이는 상태 */
/*.common-popup.fade-in .popup-bg {
  opacity: .7;
}*/
@keyframes modalFullSlideUp {
    from {
        transform: translate(-50%, 100%);
    }

    to {
        transform: translate(-50%, 0);
    }
}

@keyframes modalFullSlideDown {
    from {
        transform: translate(-50%, 0);
    }

    to {
        transform: translate(-50%, 100%);
    }
}
.common-popup .popup-header {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 16px;
    /* 투명 필요해도 iOS 안정화 위해 거의 투명이라도 주는 편 */
    background: rgba(255,255,255,0.98);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: none;
}
.common-popup .popup-inner {
    /*margin-top: 52px;
    width: 100%;
    height: calc(100vh - 50px);
    padding: 20px 16px 20px;
    background: transparent;*/ /* ✅ 흰 배경 제거 */
    /*position: relative;
    z-index: 1001;
    overflow: auto;*/
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* 필요하면 유지 */
    padding: 16px;
}


.common-popup {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-weight: 400;
}

.common-popup table {
    border-spacing: 0;
    border-collapse: collapse;
}

.common-popup .termsarea table {
    max-height: 700px;
    overflow-y: auto;
}

.common-popup .termsarea table {
    border: 1px solid #eee;
    border-left: 0;
    border-bottom: 0;
}

    .common-popup .termsarea table tr {
        display: table-row;
        vertical-align: inherit;
        unicode-bidi: isolate;
        border-color: inherit;
        line-height: initial;
    }

    .common-popup .termsarea table td {
        padding: 10px;
        vertical-align: top;
        color: #909090;
        font-size: 14px;
        border-bottom: 1px solid #eee;
        border-left: 1px solid #eee;
        word-break: break-word;
    }

    .common-popup .termsarea table th {
        padding: 5px 10px;
        background-color: #fafafa;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
    }

.pop-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 50px);
    background: #fff;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}


.termsarea p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

.common-popup caption, .common-popup hr {
    height: 0;
    border: 0;
    font-size: 0;
    width: 100%;
}

/*#privacy-popup .popup-inner {
    width: 100%;
    padding: 72px 16px 20px;
    overflow-y: auto;*/ /* 스크롤은 여기서만 */
    /*border-radius: 0;
}*/

#privacy-popup .popup-inner .title {
  padding: 12px 0 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #333;
}

#privacy-popup .popup-inner .table_wrap {
  width: 100%;
}
#privacy-popup .popup-inner .table_wrap table {
  width: 100%;
}

#privacy-popup .popup-inner .table_wrap table tr {
  border-bottom: 1px solid #e8e8e8;
}

#privacy-popup .popup-inner .table_wrap table tr:first-child {
  border-top: 1px solid #e8e8e8;
}

#privacy-popup .popup-inner .table_wrap table th {
  width: 140px;
  padding: 15px 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  color: #444;
  background-color: #f6f5f5;
  display: table-cell;
  vertical-align: middle;
}
#privacy-popup .popup-inner .table_wrap table td {
  width: calc(100% - 140px);
  padding: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #444;
  word-break: break-all;
}

#privacy-popup .popup-inner .privacy_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #444;
  padding-top: 20px;
}

#privacy-popup .popup-inner .btn_wrap {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

#privacy-popup .popup-inner .btn_wrap button {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #f73737;
  background-color: #fff;
  color: #f73737;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}

.dal #privacy-popup .popup-inner .btn_wrap button {
  border: 1px solid #25646c;
  color: #25646c;
}

#privacy-popup .popup-inner .btn_wrap button.full {
  border: none;
  background-color: #25646c;
  color: #fff;
}

.common-popup.under14_popup {
  position: fixed !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  max-width: 600px;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  z-index: 1001;
  background: #fff;
  padding-top: 72px;
  overflow-y: auto;
}

.under14_popup .title p {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  color: #333;
}

.under14_popup .table_wrap {
  margin-top: 20px;
  padding: 0 16px;
}

.under14_popup .table_wrap table {
  width: 100%;
}

.under14_popup .table_wrap table th {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  line-height: 140%;
  height: 85px;
  background-color: #f6f5f5;
  display: table-cell;
  vertical-align: middle;
  padding: 8px;
}

.under14_popup .table_wrap table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

.under14_popup .table_wrap table tbody tr:first-child {
  border-top: 1px solid #e8e8e8;
}

.under14_popup .table_wrap table tbody td {
  padding: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  color: #444;
  word-break: break-all;
}

.under14_popup .privacy_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  color: #444;
  padding-top: 20px;
}

.under14_popup .privacy_text {
  padding: 20px 16px 40px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 140%;
  color: #444;
}

.common-popup .btn_wrap {
  max-width: 600px;
  width: 100%;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 1002;
}
.common-popup .btn_wrap button {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #25646c;
  background-color: #fff;
  color: #25646c;
  text-align: center;
}
.momq .common-popup .btn_wrap button.full {
    border: none;
    background-color: #f73737;
    color: #fff;
    text-align: center;
}
.mygf .common-popup .btn_wrap button.full {
    border: none;
    background-color: #25646c;
    color: #fff;
    text-align: center;
}
.lottie_box {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.3);
}

/* toastify */
.toast {
    position: fixed;
    top: auto !important;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) !important;
    opacity: 0;
    transition: opacity 0.4s ease, opacity 0.4s ease;
    text-align: center;
    max-width: 280px;
    width: 100%;
    height: auto;
    z-index: 9999;
    padding: 12px 22px;
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #fff;
}

.toastify.on {
    transform: translateY(0);
    opacity: 1;
}

.input_wrap .input_box .child_select {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #c6c6c6;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #333;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .input_wrap .input_box .child_select p {
        font-size: 14px;
        font-weight: 500;
        line-height: 120%;
        color: #b4b4b4;
    }

    .input_wrap .input_box .child_select.on p {
        color: #333;
    }

    .input_wrap .input_box .child_select:after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background-image: url(../img/select_arrow.svg);
        background-size: 20px;
        background-position: center;
        background-repeat: no-repeat;
    }

    .input_wrap .input_box .child_select .option_list {
        position: absolute;
        width: 100%;
        max-height: 170px;
        overflow-y: auto;
        display: none;
        background-color: #fff;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
        z-index: 10;
        right: 0;
        top: 48px;
        border: 1px solid #e8e8e8;
        box-sizing: border-box;
    }

        .input_wrap .input_box .child_select .option_list::-webkit-scrollbar {
            display: none;
        }

        .input_wrap .input_box .child_select .option_list li {
            padding: 14px 16px;
            background-color: #fff;
            font-size: 14px;
            font-weight: 500;
            line-height: 140%;
            color: #333;
            cursor: pointer;
        }

            .input_wrap .input_box .child_select .option_list li:hover {
                background-color: #e8e8e8;
            }

            .input_wrap .input_box .child_select .option_list li:last-child {
                border-bottom: none;
            }

.select_input {
    position: relative;
    width: 150px;
}

    .select_input input {
        width: 100%;
    }

    .select_input ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 170px;
        overflow-y: auto;
        background-color: #fff;
        z-index: 10;
        border: 1px solid #e8e8e8;
        display: block;
        border-radius: 8px;
    }

        .select_input ul:empty {
            border: none;
            display: none;
        }

        .select_input ul::-webkit-scrollbar {
            display: none;
        }

        .select_input ul li {
            padding: 14px 16px;
            background-color: #fff;
            font-size: 14px;
            font-weight: 500;
            line-height: 140%;
            color: #333;
            cursor: pointer;
        }
