.hashpass-wrapper {
  font-family: "Pretendard", "Segoe UI", sans-serif;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding-bottom: 128px;
  overflow: hidden;
  background: url("/static/img/hashpass/backgrounds/hashpass_background.webp") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .hashpass-wrapper {
    gap: 48px;
    padding-bottom: 128px;
    background-image: url("/static/img/hashpass/backgrounds/hashpass_background_mobile.webp");
  }
}

@media (max-width: 767px) {
  .hero-background__sticky {
    height: 592px;
  }
}

.hero-background {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
.hero-background picture,
.hero-background img {
  width: 100%;
  height: 100%;
}
.hero-background img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .hero-background img {
    min-width: 360px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hashpass-hero {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: 60px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
  color: #1a72c2;
}
@media (max-width: 767px) {
  .hashpass-hero {
    height: auto;
    gap: 24px;
    justify-content: flex-start;
    padding: 64px 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .hashpass-hero__sub-title {
    width: 60vw;
  }
}
.hashpass-hero h1 {
  width: min(1039px, 80vw);
  margin: 0;
}
.hashpass-hero h1 img {
  width: 100%;
}
@media (max-width: 767px) {
  .hashpass-hero h1 {
    width: calc(100vw - 47px);
  }
}
.hashpass-hero__description {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  white-space: nowrap;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .hashpass-hero__description {
    width: 90%;
    font-size: 14px;
    line-height: 1.5;
    white-space: normal;
  }
}
.hashpass-hero__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
}
@media (max-width: 767px) {
  .hashpass-hero__note {
    width: 90%;
    font-size: 10px;
    line-height: 1.8;
  }
}

.discount-ribbon {
  display: flex;
  height: 46px;
  align-items: stretch;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .discount-ribbon {
    height: 36px;
  }
}
.discount-ribbon > img:first-child {
  width: 17px;
}
@media (max-width: 767px) {
  .discount-ribbon > img:first-child {
    width: 13px;
  }
}
.discount-ribbon > img:last-child {
  width: 22px;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .discount-ribbon > img:last-child {
    width: 22px;
  }
}
.discount-ribbon > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  background: #64b2eb;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .discount-ribbon > div {
    gap: 10px;
    padding: 8px 32px;
    font-size: 14px;
  }
}
.discount-ribbon strong {
  color: #ffe747;
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 767px) {
  .discount-ribbon strong {
    font-size: 24px;
  }
}
.discount-ribbon small {
  font-size: 16px;
}
@media (max-width: 767px) {
  .discount-ribbon small {
    font-size: 12px;
  }
}

.hashpass-container {
  width: 1280px;
  max-width: calc(100% - 48px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 96px 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hashpass-container {
    max-width: calc(100% - 16px);
    gap: 48px 24px;
  }
}

.content-section {
  position: relative;
  display: flex;
  width: 1280px;
  max-width: calc(100% - 48px);
  flex-direction: column;
  align-items: center;
  padding: 64px 24px 48px;
  border: 1px solid #7ab5f9;
  border-radius: 16px;
  background: rgba(250, 250, 255, 0.9);
  box-shadow: 0px 0px 16px 0px #abd3e1;
}
@media (max-width: 767px) {
  .content-section {
    max-width: calc(100% - 16px);
    padding: 64px 2vw 48px;
  }
}
.content-section.pass-section {
  grid-column: span 2;
  width: 100%;
  max-width: initial;
}
@media (max-width: 767px) {
  .content-section.pass-section {
    max-width: initial;
  }
}

.section-heading {
  --heading-min-width: 480px;
  --heading-height: 60px;
  position: absolute;
  top: calc(var(--heading-height) * -0.5);
  z-index: 2;
  display: flex;
  width: min(100% - 15px, var(--heading-min-width));
  min-height: var(--heading-height);
  align-items: center;
  justify-content: space-between;
  padding: 8px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(181deg, #a7cffb, #4a8cfd);
  color: #fff;
}
@media (max-width: 767px) {
  .section-heading {
    --heading-min-width: 320px;
    --heading-height: 40px;
    min-width: 0;
    padding: 6px 20px;
    margin-bottom: calc(var(--heading-height) * -0.5);
  }
}
.section-heading h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.3));
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 20px;
  }
}
.section-heading__texture {
  position: absolute;
  left: -120px;
  width: calc(100% + 210px);
  height: 430px;
  opacity: 0.6;
  mix-blend-mode: overlay;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-heading__sparkle {
  position: relative;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .section-heading__sparkle {
    width: 24px;
    height: 24px;
  }
}

.pass-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 17px;
}
@media (max-width: 1220px) {
  .pass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .pass-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.pass-card {
  width: 100%;
  position: relative;
  isolation: isolate;
  border: 1px solid #cacfff;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(124, 146, 255, 0.1);
  cursor: pointer;
}
.pass-card[data-grade=Bronze] {
  --grade-color: #ff8d25;
}
.pass-card[data-grade=Silver] {
  --grade-color: #8f9294;
}
.pass-card[data-grade=Gold] {
  --grade-color: #ff9915;
}
.pass-card[data-grade=Platinum] {
  --grade-color: #18d100;
}
.pass-card[data-grade=Dia] {
  --grade-color: #ff5ad6;
}
.pass-card[data-grade=Master] {
  --grade-color: #ff2a0d;
}
.pass-card.is-current .pass-card__content {
  box-shadow: inset 0 0 6px 2px var(--grade-color);
}
.pass-card__purse-effect {
  --purse-shift: 6px;
  position: absolute;
  top: calc(var(--purse-shift) * -1);
  left: calc(var(--purse-shift) * -1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: calc(100% + var(--purse-shift) * 2);
  height: calc(100% + var(--purse-shift) * 2);
  filter: blur(12px);
}
.pass-card__purse-effect::before {
  content: "";
  position: absolute;
  height: 120%;
  aspect-ratio: 1;
  border-radius: 1000px;
  background: linear-gradient(45deg, var(--grade-color), #ffffff, var(--grade-color));
  animation: active-pass-pulse 2s linear infinite;
}
@keyframes active-pass-pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pass-card__content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 8px 16px;
  border-radius: 11px;
  background: #fff;
}
@media (max-width: 767px) {
  .pass-card__content {
    gap: 14px;
    padding: 8px 12px;
  }
}
@media (max-width: 360px) {
  .pass-card__content {
    gap: 12px;
    padding: 8px;
  }
}
.pass-card__visual {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  overflow: hidden;
}
.pass-card__visual img {
  width: 100%;
  position: relative;
}
.pass-card__glow {
  position: absolute;
  width: 128px;
  height: 96px;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(circle, var(--grade-color), transparent 67%);
}
@media (max-width: 767px) {
  .pass-card__glow {
    width: 96px;
    height: 72px;
  }
}
.pass-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .pass-card__copy {
    gap: 16px;
  }
}
.pass-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}
.pass-card dl,
.pass-card dd {
  margin: 0;
}
.pass-card dl {
  display: flex;
  flex-direction: column;
}
.pass-card dl > div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pass-card dl > div,
.pass-card dd {
  white-space: nowrap;
}
.pass-card dt {
  font-size: 12px;
}
@media (max-width: 767px) {
  .pass-card dt {
    font-size: 10px;
  }
}
.pass-card__original dd {
  color: #4a4a4a;
  font-size: 12px;
  text-decoration: line-through;
}
.pass-card__sale {
  font-weight: 700;
}
.pass-card__sale dt {
  font-size: 14px;
}
.pass-card__sale dd {
  font-size: 14px;
}
.pass-card__sale strong {
  font-size: 20px;
}
@media (max-width: 767px) {
  .pass-card__sale strong {
    font-size: 16px;
  }
}
.pass-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  .pass-card__actions {
    gap: 10px;
  }
}
.pass-card__actions p {
  margin: 0;
  color: #7b91ff;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  .pass-card__actions p {
    font-size: 12px;
  }
}
.pass-card__discount {
  color: #d52d2d;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .pass-card__discount {
    font-size: 10px;
  }
}

.cart-button {
  width: 100%;
  padding: 10px 5px;
  border: 1px solid #686868;
  border-radius: 999px;
  background: #fff;
  color: #383838;
  font-size: 14px;
  transition: 0.2s ease;
}
@media (max-width: 767px) {
  .cart-button {
    padding: 10px 3px;
    font-size: 14px;
  }
}
.cart-button:hover, .cart-button:focus-visible, .cart-button.is-selected {
  border-color: #7b91ff;
  background: #eef1ff;
  color: #526bea;
  outline: none;
}
.cart-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.cart-button.is-applied {
  border-color: #2ca45d;
  background: #ecf9f1;
  color: #168047;
  font-weight: 700;
  opacity: 1;
}

.reward-overview {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.reward-overview:not(.reward-overview--split) {
  grid-column: span 2;
}
@media (max-width: 1220px) {
  .reward-overview {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .reward-overview {
    gap: 16px;
  }
}

.pass-usage,
.today-rewards {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7ab5f9;
  border-radius: 16px;
  background: rgba(250, 250, 255, 0.9);
  box-shadow: 0px 0px 16px 0px #abd3e1;
}
@media (max-width: 767px) {
  .pass-usage,
  .today-rewards {
    min-height: 0;
  }
}

.pass-usage {
  gap: 32px;
  padding: 32px 48px;
  container-type: inline-size;
  container-name: rule;
}
@media (max-width: 767px) {
  .pass-usage {
    gap: 24px;
    padding: 32px 16px;
  }
}
.pass-usage__rules {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
}
@container rule (min-width: 628px) {
  .pass-usage__rules {
    gap: 64px;
    padding: 32px 0;
  }
}
@media (max-width: 1100px) {
  .pass-usage__rules {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .pass-usage__rules {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.pass-usage__rule {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #282828;
  text-align: center;
  word-break: keep-all;
}
@container rule (min-width: 628px) {
  .pass-usage__rule {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 1100px) {
  .pass-usage__rule {
    flex-direction: column;
  }
}
.pass-usage__rule img {
  width: min(80%, 96px);
  height: auto;
  margin-bottom: 16px;
}
@container rule (min-width: 628px) {
  .pass-usage__rule img {
    margin-right: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 1100px) {
  .pass-usage__rule img {
    margin: 0;
    margin-bottom: 16px;
  }
}
.pass-usage__rule b {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  white-space: nowrap;
  margin-bottom: 6px;
}
.pass-usage__rule p {
  margin: 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
}
.pass-usage__rule p span {
  display: inline-block;
}
.pass-usage__badge {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid #104c10;
  border-radius: 50%;
  background: #fff;
  color: #104c10;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
}

.today-rewards {
  width: 100%;
  gap: 16px;
  padding: 48px 24px;
}
@media (max-width: 1220px) {
  .today-rewards {
    grid-area: 1/span 2;
  }
}
@media (max-width: 767px) {
  .today-rewards {
    gap: 24px;
    padding: 32px 16px;
  }
}
.today-rewards__track {
  width: 100%;
  padding: 16px 0;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.today-rewards__track.is-draggable {
  cursor: grab;
}
.today-rewards__track.is-dragging {
  cursor: grabbing;
}
.today-rewards__wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  gap: 16px;
  will-change: transform;
}
.today-rewards__empty {
  display: grid;
  width: 100%;
  min-height: 186px;
  place-items: center;
  margin: 0;
  color: #525252;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.today-reward-card {
  width: 140px;
  flex: 0 0 140px;
}
@media (max-width: 767px) {
  .today-reward-card {
    flex-basis: 25vw;
  }
}

.get-all-pass-rewards {
  min-height: 34px;
  padding: 12px 24px;
  border: 1px solid #686868;
  border-radius: 999px;
  background: #fff;
  color: #383838;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  transition: 0.2s ease;
}
.get-all-pass-rewards:hover:not(:disabled), .get-all-pass-rewards:focus-visible:not(:disabled) {
  border-color: #0b71b2;
  color: #0b71b2;
  outline: none;
}
.get-all-pass-rewards:disabled {
  cursor: not-allowed;
  border-color: #c9cedf;
  background: #f4f5f8;
  color: #8f94a3;
}

.attendance-grid {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-auto-flow: row dense;
  gap: 8px;
}
@media (max-width: 1100px) {
  .attendance-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .attendance-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 4px;
    padding: 64px 12px 48px;
  }
}
.attendance-grid--inactive .attendance-card {
  pointer-events: none;
}
.attendance-grid__lock-overlay {
  position: absolute;
  z-index: 5;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  border-radius: 16px;
}
.attendance-grid__locker {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  pointer-events: none;
}
.attendance-grid__locker img {
  display: block;
  max-width: 160px;
  height: auto;
}
@media (max-width: 767px) {
  .attendance-grid__locker {
    transform: translate(-50%, -50%) scale(0.5);
  }
}
.attendance-grid__buy-btn {
  position: absolute;
  z-index: 6;
  top: calc(50% + 120px);
  left: 50%;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.attendance-grid__buy-btn img {
  display: block;
  max-width: 220px;
  height: auto;
}
.attendance-grid__buy-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .attendance-grid__buy-btn {
    top: calc(50% + 80px);
    transform: translate(-50%, -50%) scale(0.75);
  }
}

@media (max-width: 767px) {
  .attendance-section {
    max-width: calc(100% - 16px);
  }
}

.attendance-preview-toggle {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 12px;
  padding: 0 48px;
}
@media (max-width: 767px) {
  .attendance-preview-toggle {
    justify-content: center;
    padding: 0 12px;
  }
}
.attendance-preview-toggle__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.attendance-preview-toggle__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.attendance-preview-toggle__switch {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #c9cedf;
  transition: background 0.2s ease;
}
.attendance-preview-toggle__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}
.attendance-preview-toggle__input:checked + .attendance-preview-toggle__switch {
  background: #0b71b2;
}
.attendance-preview-toggle__input:checked + .attendance-preview-toggle__switch::after {
  transform: translateX(20px);
}
.attendance-preview-toggle__input:focus-visible + .attendance-preview-toggle__switch {
  outline: 3px solid #7b91ff;
  outline-offset: 2px;
}
.attendance-preview-toggle__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  color: #1f2937;
}
.attendance-preview-toggle__text strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.attendance-preview-toggle__text small {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}

.attendance-card {
  position: relative;
  display: block;
  height: 170px;
  min-width: 0;
  overflow: visible;
  border: 1px solid #c7d0ff;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 16px rgba(124, 146, 255, 0.1);
}
@media (max-width: 767px) {
  .attendance-card {
    height: 134px;
    border-radius: 12px;
    gap: 6px;
  }
}
.attendance-card img {
  pointer-events: none;
}
.attendance-card__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.attendance-card__content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.attendance-card__content.is-actionable {
  cursor: pointer;
}
.attendance-card__content.is-actionable:focus-visible {
  outline: 3px solid #7b91ff;
  outline-offset: -3px;
}
.attendance-card__content--success {
  opacity: 0.5;
}
.attendance-card__day {
  width: 100%;
  margin: 0;
  padding: 8px 4px 0;
  color: #0b71b2;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .attendance-card__day {
    padding-top: 6px;
    font-size: 12px;
  }
}
.attendance-card__day-wrapper {
  width: 100%;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}
.attendance-card__day-wrapper span {
  display: inline-block;
}
.attendance-card__day.is-marquee .attendance-card__day-wrapper {
  text-align: left;
}
.attendance-card__day.is-marquee .attendance-card__day-wrapper span {
  animation: day-marquee 4s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .attendance-card__day.is-marquee .attendance-card__day-wrapper span {
    animation: none;
  }
}
@keyframes day-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-shift, 0));
  }
}
.attendance-card__reward {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .attendance-card__reward {
    width: 52px;
    height: 52px;
  }
}
.attendance-card__price {
  width: 100%;
  margin: auto 0 0;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b71b2;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .attendance-card__price {
    padding: 6px 2px;
    font-size: 12px;
  }
}
.attendance-card__alert {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 1000px;
  box-shadow: 0 0 16px rgba(68, 68, 68, 0.25);
}
.attendance-card__alert::before, .attendance-card__alert::after {
  content: "";
  position: absolute;
  display: block;
  width: 90%;
  height: 90%;
  background: #ff4130;
  border-radius: 1000px;
  opacity: 0;
}
.attendance-card__alert::before {
  animation: bounce 1s infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.attendance-card__alert::after {
  animation: bounce 1s 0.25s infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes bounce {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  .attendance-card__alert {
    width: 16px;
    height: 16px;
    top: -4px;
    right: -4px;
  }
}
.attendance-card__content--failed {
  background: linear-gradient(#f9f9f9, #adadad);
}
.attendance-card__content--preview {
  gap: 6px;
  background: linear-gradient(180deg, #f7fbff 0%, #d7e7f5 100%);
  box-shadow: inset 0 0 0 1px rgba(11, 113, 178, 0.28);
}
.attendance-card__content--preview .attendance-card__reward {
  width: 64px;
  height: 64px;
}
@media (max-width: 767px) {
  .attendance-card__content--preview .attendance-card__reward {
    width: 44px;
    height: 44px;
  }
}
.attendance-card__content--preview .attendance-card__price {
  padding-top: 4px;
  background: transparent;
  color: #4b5563;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .attendance-card__content--preview .attendance-card__price {
    font-size: 12px;
  }
}
.attendance-card__preview-hint {
  width: 100%;
  margin: auto 0 0;
  padding: 8px 4px 0;
  color: #0b71b2;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 767px) {
  .attendance-card__preview-hint {
    padding-top: 4px;
    font-size: 12px;
  }
}
.attendance-card--milestone {
  grid-column: span 2;
}
.attendance-card--milestone[data-panels="3"] {
  grid-column: span 3;
}
.attendance-card--milestone[data-panels="4"] {
  grid-column: span 4;
}
.attendance-card--milestone[data-panels="5"] {
  grid-column: span 5;
}
.attendance-card--milestone[data-panels="6"] {
  grid-column: span 6;
}
@media (max-width: 767px) {
  .attendance-card--milestone {
    width: auto;
    grid-column: span 3;
  }
  .attendance-card--milestone[data-panels="3"] {
    grid-column: span 4;
  }
  .attendance-card--milestone[data-panels="4"], .attendance-card--milestone[data-panels="5"], .attendance-card--milestone[data-panels="6"] {
    grid-column: span 4;
  }
}
.attendance-card--milestone .attendance-card__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .attendance-card--milestone .attendance-card__wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
.attendance-card--milestone[data-panels="3"] .attendance-card__wrapper {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .attendance-card--milestone[data-panels="3"] .attendance-card__wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.attendance-card--milestone[data-panels="4"] .attendance-card__wrapper {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .attendance-card--milestone[data-panels="4"] .attendance-card__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.attendance-card--milestone[data-panels="5"] .attendance-card__wrapper, .attendance-card--milestone[data-panels="6"] .attendance-card__wrapper {
  grid-template-columns: repeat(var(--attendance-panels, 5), minmax(0, 1fr));
}
@media (max-width: 767px) {
  .attendance-card--milestone[data-panels="5"] .attendance-card__wrapper, .attendance-card--milestone[data-panels="6"] .attendance-card__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.attendance-card--milestone[data-panels="5"] {
  --attendance-panels: 5;
}
.attendance-card--milestone[data-panels="6"] {
  --attendance-panels: 6;
}
.attendance-card--milestone .attendance-card__content + .attendance-card__content {
  border-radius: 0 16px 16px 0;
}
@media (max-width: 767px) {
  .attendance-card--milestone .attendance-card__content + .attendance-card__content {
    border-radius: 0 12px 12px 0;
  }
}
.attendance-card--milestone .attendance-card__content + .attendance-card__content + .attendance-card__content {
  border-radius: 0;
}
.attendance-card--milestone .attendance-card__content:last-child {
  border-radius: 0 16px 16px 0;
}
@media (max-width: 767px) {
  .attendance-card--milestone .attendance-card__content:last-child {
    border-radius: 0 12px 12px 0;
  }
}
.attendance-card__content--claimable {
  border-color: #7b91ff;
  background: linear-gradient(180deg, #edf7ff 0%, #9ad5ff 100%);
}
@media (max-width: 767px) {
  .attendance-card__content--claimable .attendance-card__reward {
    width: 72px;
  }
}

.attendance-action {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  min-width: 92px;
  padding: 7px 12px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: #526bea;
  box-shadow: 0 4px 12px rgba(45, 69, 187, 0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}
@media (max-width: 767px) {
  .attendance-action {
    min-width: 62px;
    padding: 5px 6px;
    font-size: 8px;
  }
}

.attendance-countdown {
  position: absolute;
  inset: auto 6px 28px;
  z-index: 2;
  margin: 0;
  color: #526bea;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
.attendance-countdown__time {
  display: inline-block;
}
@media (max-width: 767px) {
  .attendance-countdown {
    inset: auto 3px 22px;
    font-size: min(8px, 2vw);
  }
}

.attendance-state {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}
@media (max-width: 767px) {
  .attendance-state {
    width: 66px;
    height: 66px;
    gap: 1px;
    border-width: 1px;
    font-size: 7px;
  }
}
.attendance-state img {
  height: 27px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .attendance-state img {
    width: 20px;
    height: 16px;
  }
}
.attendance-state strong {
  font-size: 16px;
}
@media (max-width: 767px) {
  .attendance-state strong {
    font-size: 10px;
  }
}
.attendance-state span {
  color: #525252;
}
.attendance-state--success {
  color: #169c5e;
}
.attendance-state--failed {
  color: #d40000;
}
.attendance-state--failed img {
  width: 28px;
  height: 28px;
}
@media (max-width: 767px) {
  .attendance-state--failed img {
    width: 16px;
    height: 16px;
  }
}

.guide {
  width: 1280px;
  max-width: calc(100% - 48px);
  padding: 64px 100px;
  border-radius: 16px;
  border: 1px solid #7ab5f9;
  border-radius: 16px;
  background: rgba(250, 250, 255, 0.9);
  box-shadow: 0px 0px 16px 0px #abd3e1;
}
@media (max-width: 767px) {
  .guide {
    max-width: calc(100% - 16px);
    padding: 32px 16px;
  }
}
.guide__inner {
  width: 100%;
  color: #252525;
  font-size: 14px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .guide__inner {
    font-size: 10px;
    line-height: 1.5;
  }
}
.guide h2 {
  margin: 0 0 16px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .guide h2 {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
.guide h2:not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .guide h2:not(:first-child) {
    margin-top: 16px;
  }
}
.guide h3 {
  margin: 16px 0 6px;
  font-size: 15px;
}
@media (max-width: 767px) {
  .guide h3 {
    margin: 12px 0 4px;
    font-size: 11px;
  }
}
.guide p {
  margin: 0;
}
.guide ol {
  margin: 0;
  padding-left: 18px;
}

.to-top {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(44, 91, 121, 0.15);
  color: #525252;
  font-size: 12px;
  transition: transform 0.2s ease;
}
.to-top:hover {
  transform: translateY(-3px);
}
.to-top img {
  width: 26px;
  height: 13px;
}/*# sourceMappingURL=hashpass.css.map */