:root {
  --primary-color: #003da6;
  --red: #c70000;
}

/* //* 공통 */
.w100 {
  width: 100%;
}
.dis_flex {
  display: flex;
}
.dis_none {
  display: none !important;
}
.flex_column {
  flex-direction: column;
}
.align_items_center {
  align-items: center;
}
.justify_content_center {
  justify-content: center;
}
.pos_rel {
  position: relative;
}
.pos_abs {
  position: absolute;
}
.pos_center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button_text {
  font-size: 20px;
}
.max_container {
  max-width: 1024px;
  margin: 0 auto;
}
#upward_btn {
  bottom: 80px;
}
.award_login_wrap {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  height: 100dvh;
  min-height: 740px;
  position: relative;
}
.enter_award_info_wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;

  width: 55%;
}

/* //* 메인페이지 */
.award_enter_page {
  background: #ede5df;
}
.main_logo {
  width: 25%;
  max-width: 120px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.main_button_wrap {
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.main_button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 65%;
  min-width: 230px;
  height: 70px;
  font-weight: bold;
  border-radius: 100vw;
}
.main_button span {
  font-size: 20px;
}
.enter_59_button {
  border: 1px solid var(--primary-color);
}
.enter_59_button span {
  color: var(--primary-color);
}
.enter_60_button {
  border: 1px solid var(--primary-color);
}
.enter_60_button span {
  color: var(--primary-color);
}
.enter_61_button {
  border: var(--primary-color);
  background: var(--primary-color);
}
.enter_61_button span {
  color: #ffffff;
}

.detail_info_popup {
  display: none;

  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.85);
  overflow: hidden;

  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
}
.detail_info_popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail_info_popup.platinum .popup_platinum_content_wrap {
  display: flex;
}
.detail_info_popup.platinum .popup_content_wrap {
  display: none;
}
.detail_info_popup.normal .popup_platinum_content_wrap {
  display: none;
}
.detail_info_popup.normal .popup_content_wrap {
  display: block;

}
.detail_info_popup .popup_platinum_content_wrap {
  width: 95%;
  max-width: 400px;
}
.detail_info_popup .popup_content_wrap {
  width: 80%;
  max-width: 400px;
  
  position: relative;
}
.detail_info_popup .popup_content_wrap .img_detail_swiper {
  height: 100%;
}
.detail_info_popup .close_btn {
  display: none;

  width: 45px;
  height: 45px;
  background: none;
  border: none;

  position: absolute;
  left: calc(50% - 22.5px);
  top: calc(100% + 30px);
}
.detail_info_popup .close_btn img {
  width: 100%;
  height: 100%;
}
.detail_info_popup .close_popup_button {
  display: flex;
  align-items: center;
  justify-content: center;
  
  width: 65%;
  max-width: 320px;
  height: 40px;
  margin-top: 60px;
  background: #4d4d4d;
  border: none;
}
.detail_info_popup.platinum {
  align-items: start;
  overflow-y: auto;
}
.detail_info_popup .close_popup_button span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}