@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* ========================================
   Typography - Pretendard Font Styles (Mixins)
   ======================================== */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
/* ========================================
   Typography - Pretendard Font Styles (Mixins)
   ======================================== */
.alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.alert-dim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.alert-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  border-radius: 5px;
  padding: 20px;
  height: fit-content;
  background-color: #ffffff;
}
@media (min-width: 1280px) {
  .alert-popup {
    width: 540px;
    padding: 40px;
  }
}
.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #f5f5f5;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .alert-header {
    padding: 14px 40px;
  }
}
@media (min-width: 1280px) {
  .alert-header {
    border-bottom: unset;
    padding: 0;
    margin-bottom: 40px;
  }
}
.alert-header .alert-title {
  font-family: Pretendard;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: #000000;
  flex: 1;
  margin: 0;
}
@media (min-width: 1280px) {
  .alert-header .alert-title {
    font-family: Pretendard;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
}
.alert-header .alert-close {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .alert-content {
    padding: 20px 16px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .alert-content {
    padding: 20px 40px;
  }
}
@media (min-width: 1280px) {
  .alert-content {
    padding: 0;
  }
}
.alert-content .alert-text {
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #000000;
  margin: 0;
}
.alert-popup:not(:has(.alert-cta)) .alert-content {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .alert-popup:not(:has(.alert-cta)) .alert-content {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .alert-popup:not(:has(.alert-cta)) .alert-content {
    padding: 20px 40px;
  }
}
.alert-text--body {
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #000000;
}
.alert-cta {
  display: flex;
  gap: 10px;
  padding: 20px 16px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .alert-cta {
    padding: 20px 40px;
  }
}
@media (min-width: 1280px) {
  .alert-cta {
    padding: 0;
    margin-top: 40px;
  }
  .alert-cta:has(.btn:only-child) .btn {
    width: 100%;
    max-width: none;
  }
}
.alert-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .alert-checkbox {
    padding: 20px 40px;
  }
}
@media (min-width: 1280px) {
  .alert-checkbox {
    margin-top: 40px;
    padding: 0;
  }
}

.checkbox-input {
  width: 20px;
  height: 20px;
  border: 1.25px solid #e1e1e1;
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
  position: relative;
}
.checkbox-input:checked {
  background-color: #000000;
  border-color: #000000;
}
.checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-label {
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #000000;
  cursor: pointer;
  margin: 0;
}

.tablet-mobile-only {
  display: block;
}
@media (min-width: 1280px) {
  .tablet-mobile-only {
    display: none;
  }
}

.number-highlight {
  font-family: Pretendard;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.5px;
}

.alert-number-text {
  position: relative;
  left: -3px;
}
