/* S: top-section */
.top-section {
  background-color: #1d1d72;
  padding-bottom: 1.2rem;
}
.user-wrapper {
  margin: -16.5rem 2rem 0;
  padding: 2.8rem;
  box-sizing: border-box;
  color: #fff;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(21, 21, 77, 0.8);
  backdrop-filter: blur(8px);
  position: relative;
}

.user-wrapper .text {
  color: #eee;
  font-feature-settings: "case" on;
  text-overflow: ellipsis;
  font-family: "Pretendard";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1; /* 100% */
  letter-spacing: -0.32px;
}

.user-wrapper .privacy-btn {
  margin-top: 2rem;
  display: flex;
  width: 100%;
  height: 5.2rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0.8rem;

  font-family: "Pretendard";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25; /* 125% */
}

.user-wrapper .privacy-check {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.user-wrapper .privacy-checkbox-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}
.user-wrapper .privacy-checkbox-title .checkbox {
  display: none;
}
.user-wrapper .privacy-checkbox-title .checkbox + label {
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/assets/common/images/ic_checkbox.svg) no-repeat center / cover;
}
.user-wrapper .privacy-checkbox-title .checkbox:checked + label {
  background: url(/assets/common/images/ic_checkbox_on.svg) no-repeat center / cover;
}

.user-wrapper .privacy-checkbox-title .text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.user-wrapper .privacy-checkbox-title .privacy-checkbox-arrow {
  width: 2rem;
  transition: all 0.3s ease-in-out;
}
.user-wrapper .privacy-checkbox-title .privacy-checkbox-arrow.on {
  transform: rotate(180deg);
}
.user-wrapper .privacy-check-content {
  height: 0;
  overflow: hidden;
}
.user-wrapper .privacy-check-content.on {
  height: auto;
}
.user-wrapper .privacy-check-content .inner {
  padding: 0.8rem 0 0.8rem 2.8rem;
  color: #ccc;
  font-family: "Pretendard";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem; /* 150% */
  letter-spacing: -0.24px;
}
.user-wrapper .privacy-check-content .inner ul {
  list-style-type: disc;
}
#login-btn {
  color: rgba(0, 0, 0, 0.85);
  background: #fee500;
}
#login-btn .ic_kakao {
  width: 1.8rem;
}

.user-wrapper .text.result-text {
  text-align: center;
  font-weight: 400;
  line-height: 1.25; /* 125% */
}
#go-result-btn {
  gap: 0.4rem;
  color: #1d1d72;
  font-size: 1.6rem;
  background: #fff;
}
#go-result-btn .ic_arrow {
  width: 1.6rem;
}
#privacy-policy-btn {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  color: #bbb;
  font-feature-settings: "case" on;
  font-family: "Pretendard";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem; /* 142.857% */
  letter-spacing: -0.28px;
  text-decoration: underline;
  text-underline-offset: 0.4rem;
}

/* E: top-section */

.scroll_induction {
  position: fixed;
  bottom: 0;
  max-width: var(--content-width);
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
  z-index: 10;
}
.scroll_induction.is-active {
  opacity: 0;
}
