@import url("./fonts.css");

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  color: #353535;
  background-color: #ffffff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  font-size: clamp(12px, 3.73vw, 28px);
}

.page {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: var(--page-height, 100%);
  margin: 0 auto;
  background-color: #fdf5e5;
  overflow: hidden;
}

.page__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  overflow: hidden;
}

.page-scroll {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-bg {
  position: absolute;
  left: 50%;
  bottom: 5.33vw;
}
@media (min-width: 750px) {
  .page-bg {
    bottom: 40px;
  }
}
.page-bg {
  z-index: 0;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  width: 85.33vw;
}
@media (min-width: 750px) {
  .page-bg {
    width: 640px;
  }
}

.site-header {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  background-color: #0c484e;
  border-bottom: 1px solid rgba(244, 228, 198, 0.28);
  height: 9.07vw;
}
@media (min-width: 750px) {
  .site-header {
    height: 68px;
  }
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
  height: 100%;
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .site-nav {
    padding-right: 24px;
  }
}

.site-nav__links {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.site-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  width: 1px;
  height: 0.9em;
  background-color: rgba(244, 228, 198, 0.75);
  transform: translateY(-50%);
  pointer-events: none;
}
.site-nav__item:has(.is-active)::after {
  display: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  color: #fcf5e4;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  padding-right: 1.87vw;
}
@media (min-width: 750px) {
  .site-nav__link {
    padding-right: 14px;
  }
}
.site-nav__link {
  padding-left: 1.87vw;
}
@media (min-width: 750px) {
  .site-nav__link {
    padding-left: 14px;
  }
}
.site-nav__link {
  font-size: clamp(12px, 2.93vw, 22px);
}
.site-nav__link.is-active {
  background-color: #740810;
  font-weight: 700;
}

.site-nav__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  align-self: center;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .site-nav__actions {
    gap: 16px;
  }
}

.site-nav__guest {
  display: none;
}

.site-nav__logged-in {
  display: flex;
  align-items: center;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .site-nav__logged-in {
    gap: 16px;
  }
}

.site-header.is-guest .site-nav__logged-in {
  display: none;
}
.site-header.is-guest .site-nav__guest {
  display: flex;
  align-items: center;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .site-header.is-guest .site-nav__guest {
    gap: 12px;
  }
}

.site-nav__avatar {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  width: 5.33vw;
}
@media (min-width: 750px) {
  .site-nav__avatar {
    width: 40px;
  }
}
.site-nav__avatar {
  height: 5.33vw;
}
@media (min-width: 750px) {
  .site-nav__avatar {
    height: 40px;
  }
}
.site-nav__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav__login {
  display: flex;
  align-items: center;
  color: #f4e4c6;
  text-decoration: none;
  gap: 1.07vw;
}
@media (min-width: 750px) {
  .site-nav__login {
    gap: 8px;
  }
}
.site-nav__login span {
  line-height: 1;
  font-size: clamp(12px, 3.2vw, 24px);
}

.site-nav__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 4.8vw;
}
@media (min-width: 750px) {
  .site-nav__lang {
    width: 36px;
  }
}
.site-nav__lang {
  height: 4.8vw;
}
@media (min-width: 750px) {
  .site-nav__lang {
    height: 36px;
  }
}
.site-nav__lang img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: opacity 0.2s ease;
  height: 9.33vw;
}
@media (min-width: 750px) {
  .btn {
    height: 70px;
  }
}
.btn {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .btn {
    padding-left: 24px;
  }
}
.btn {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .btn {
    padding-right: 24px;
  }
}
.btn {
  border-radius: 1.07vw;
}
@media (min-width: 750px) {
  .btn {
    border-radius: 8px;
  }
}
.btn {
  font-size: clamp(12px, 3.73vw, 28px);
}
.btn:active {
  opacity: 0.85;
}

.btn--primary {
  color: #ffffff;
  background-color: #740810;
  border: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn--cancel {
  color: #ffffff;
  background-color: #999999;
  border: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn--google {
  color: #353535;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .btn--google {
    gap: 16px;
  }
}
.btn--google {
  font-size: clamp(12px, 3.73vw, 28px);
}

.btn__icon {
  flex-shrink: 0;
  width: 4.8vw;
}
@media (min-width: 750px) {
  .btn__icon {
    width: 36px;
  }
}
.btn__icon {
  height: 4.8vw;
}
@media (min-width: 750px) {
  .btn__icon {
    height: 36px;
  }
}

.form-field {
  width: 100%;
}

.form-field + .form-field {
  margin-top: 2.67vw;
}
@media (min-width: 750px) {
  .form-field + .form-field {
    margin-top: 20px;
  }
}

.form-input {
  display: block;
  width: 100%;
  border: none;
  background-color: #ffffff;
  color: #353535;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  height: 9.33vw;
}
@media (min-width: 750px) {
  .form-input {
    height: 70px;
  }
}
.form-input {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .form-input {
    padding-left: 24px;
  }
}
.form-input {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .form-input {
    padding-right: 24px;
  }
}
.form-input {
  border-radius: 1.07vw;
}
@media (min-width: 750px) {
  .form-input {
    border-radius: 8px;
  }
}
.form-input {
  font-size: clamp(12px, 3.2vw, 24px);
}
.form-input::placeholder {
  color: #b8b8b8;
}
.form-input:focus {
  box-shadow: 0 0 0 2px rgba(116, 8, 16, 0.12);
}

.form-input--line {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0;
  background-color: transparent;
  color: #353535;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  height: 11.73vw;
}
@media (min-width: 750px) {
  .form-input--line {
    height: 88px;
  }
}
.form-input--line {
  padding-left: 0.53vw;
}
@media (min-width: 750px) {
  .form-input--line {
    padding-left: 4px;
  }
}
.form-input--line {
  padding-right: 0.53vw;
}
@media (min-width: 750px) {
  .form-input--line {
    padding-right: 4px;
  }
}
.form-input--line {
  font-size: clamp(12px, 3.47vw, 26px);
}
.form-input--line::placeholder {
  color: #b8b8b8;
}
.form-input--line:focus {
  box-shadow: none;
  border-bottom-color: #740810;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .form-check {
    gap: 12px;
  }
}

.form-check__input {
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  border: 1px solid #740810;
  background-color: #ffffff;
  width: 3.73vw;
}
@media (min-width: 750px) {
  .form-check__input {
    width: 28px;
  }
}
.form-check__input {
  height: 3.73vw;
}
@media (min-width: 750px) {
  .form-check__input {
    height: 28px;
  }
}
.form-check__input {
  margin-top: 0.53vw;
}
@media (min-width: 750px) {
  .form-check__input {
    margin-top: 4px;
  }
}
.form-check__input {
  border-radius: 0.8vw;
}
@media (min-width: 750px) {
  .form-check__input {
    border-radius: 6px;
  }
}
.form-check__input:checked {
  background-color: #740810;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% 70%;
}

.form-check__label {
  flex: 1;
  line-height: 1.4;
  color: #353535;
  font-size: clamp(12px, 3.2vw, 24px);
}
.form-check__label a {
  color: #740810;
  text-decoration: underline;
  text-underline-offset: 0.53vw;
}
@media (min-width: 750px) {
  .form-check__label a {
    text-underline-offset: 4px;
  }
}

.date-bar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
  background-color: #f2e1c3;
}

.date-bar__nav {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #353535;
  width: 6.13vw;
}
@media (min-width: 750px) {
  .date-bar__nav {
    width: 46px;
  }
}
.date-bar__nav {
  height: 12.53vw;
}
@media (min-width: 750px) {
  .date-bar__nav {
    height: 94px;
  }
}
.date-bar__nav:disabled {
  cursor: default;
  opacity: 0.35;
}

.date-bar__chevron {
  display: block;
  box-sizing: border-box;
  border-style: solid;
  border-color: #353535;
  border-top: none;
  border-right: none;
  border-width: 0 0 2px 2px;
  width: 2.13vw;
}
@media (min-width: 750px) {
  .date-bar__chevron {
    width: 16px;
  }
}
.date-bar__chevron {
  height: 2.13vw;
}
@media (min-width: 750px) {
  .date-bar__chevron {
    height: 16px;
  }
}

.date-bar__nav--prev .date-bar__chevron {
  transform: rotate(45deg);
  margin-left: 0.8vw;
}
@media (min-width: 750px) {
  .date-bar__nav--prev .date-bar__chevron {
    margin-left: 6px;
  }
}

.date-bar__nav--next .date-bar__chevron {
  transform: rotate(-135deg);
  margin-right: 0.8vw;
}
@media (min-width: 750px) {
  .date-bar__nav--next .date-bar__chevron {
    margin-right: 6px;
  }
}

.date-bar__list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.date-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #353535;
  line-height: 1.15;
  width: 12.53vw;
}
@media (min-width: 750px) {
  .date-bar__item {
    width: 94px;
  }
}
.date-bar__item {
  height: 12.53vw;
}
@media (min-width: 750px) {
  .date-bar__item {
    height: 94px;
  }
}
.date-bar__item {
  border-radius: 0;
}
.date-bar__item.is-active {
  color: #fcf5e4;
  background-color: #ac211e;
}
.date-bar__item.is-disabled, .date-bar__item:disabled {
  cursor: default;
  opacity: 0.35;
}

.date-bar__day {
  font-weight: 700;
  font-size: clamp(12px, 3.73vw, 28px);
}

.date-bar__week {
  font-weight: 400;
  margin-top: 0.53vw;
}
@media (min-width: 750px) {
  .date-bar__week {
    margin-top: 4px;
  }
}
.date-bar__week {
  font-size: clamp(12px, 2.93vw, 22px);
}

.teacher-info {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(252, 245, 228, 0.35);
}

.teacher-info__profile {
  display: flex;
  align-items: center;
  padding-top: 3.2vw;
}
@media (min-width: 750px) {
  .teacher-info__profile {
    padding-top: 24px;
  }
}
.teacher-info__profile {
  padding-right: 2.67vw;
}
@media (min-width: 750px) {
  .teacher-info__profile {
    padding-right: 20px;
  }
}
.teacher-info__profile {
  padding-bottom: 2.67vw;
}
@media (min-width: 750px) {
  .teacher-info__profile {
    padding-bottom: 20px;
  }
}
.teacher-info__profile {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .teacher-info__profile {
    padding-left: 24px;
  }
}
.teacher-info__profile {
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .teacher-info__profile {
    gap: 16px;
  }
}

.teacher-info__avatar {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(252, 245, 228, 0.55);
  width: 13.33vw;
}
@media (min-width: 750px) {
  .teacher-info__avatar {
    width: 100px;
  }
}
.teacher-info__avatar {
  height: 13.33vw;
}
@media (min-width: 750px) {
  .teacher-info__avatar {
    height: 100px;
  }
}
.teacher-info__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-info__meta {
  flex: 1;
  min-width: 0;
}

.teacher-info__name {
  margin: 0;
  color: #fcf5e4;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: clamp(12px, 4.53vw, 34px);
}

.teacher-info__followers {
  margin: 0;
  color: #fcf5e4;
  line-height: 1.3;
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .teacher-info__followers {
    margin-top: 8px;
  }
}
.teacher-info__followers {
  font-size: clamp(12px, 3.2vw, 24px);
}

.teacher-info__actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-items: center;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .teacher-info__actions {
    gap: 12px;
  }
}

.teacher-info__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #fcf5e4;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  height: 6.4vw;
}
@media (min-width: 750px) {
  .teacher-info__btn {
    height: 48px;
  }
}
.teacher-info__btn {
  padding-right: 2.93vw;
}
@media (min-width: 750px) {
  .teacher-info__btn {
    padding-right: 22px;
  }
}
.teacher-info__btn {
  padding-left: 2.93vw;
}
@media (min-width: 750px) {
  .teacher-info__btn {
    padding-left: 22px;
  }
}
.teacher-info__btn {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .teacher-info__btn {
    border-radius: 999px;
  }
}
.teacher-info__btn {
  font-size: clamp(12px, 2.93vw, 22px);
}
.teacher-info__btn {
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.teacher-info__btn:active {
  transform: scale(0.97);
}
.teacher-info__btn:disabled {
  opacity: 0.65;
  cursor: default;
}
.teacher-info__btn--follow {
  background-color: #740810;
}
.teacher-info__btn--follow.is-following {
  background-color: transparent;
  color: #fcf5e4;
  box-shadow: inset 0 0 0 1.5px rgba(252, 245, 228, 0.85);
}
.teacher-info__btn--column {
  background-color: #ac211e;
}
.teacher-info__btn:first-child {
  background-color: #740810;
}
.teacher-info__btn:last-child {
  background-color: #ac211e;
}
.teacher-info__btn--follow.is-following:first-child {
  background-color: transparent;
}

.teacher-info__topic {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
  cursor: pointer;
  background-color: transparent;
  padding-top: 1.07vw;
}
@media (min-width: 750px) {
  .teacher-info__topic {
    padding-top: 8px;
  }
}
.teacher-info__topic {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .teacher-info__topic {
    padding-right: 24px;
  }
}
.teacher-info__topic {
  padding-bottom: 3.2vw;
}
@media (min-width: 750px) {
  .teacher-info__topic {
    padding-bottom: 24px;
  }
}
.teacher-info__topic {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .teacher-info__topic {
    padding-left: 24px;
  }
}
.teacher-info__topic {
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .teacher-info__topic {
    gap: 16px;
  }
}

.teacher-info__topic-text {
  flex: 1;
  min-width: 0;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 400;
  font-size: clamp(12px, 2.93vw, 22px);
}

.teacher-info__topic-label {
  color: #fcf5e4;
  font-weight: 700;
  margin-right: 0.8vw;
}
@media (min-width: 750px) {
  .teacher-info__topic-label {
    margin-right: 6px;
  }
}

.teacher-info__topic-chevron {
  display: block;
  flex-shrink: 0;
  width: 4.53vw;
}
@media (min-width: 750px) {
  .teacher-info__topic-chevron {
    width: 34px;
  }
}
.teacher-info__topic-chevron {
  height: 2.67vw;
}
@media (min-width: 750px) {
  .teacher-info__topic-chevron {
    height: 20px;
  }
}
.teacher-info__topic-chevron {
  margin-top: 0.53vw;
}
@media (min-width: 750px) {
  .teacher-info__topic-chevron {
    margin-top: 4px;
  }
}
.teacher-info__topic-chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}

.action-sheet {
  position: absolute;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.3s;
}

.action-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.action-sheet__mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.action-sheet.is-open .action-sheet__mask {
  opacity: 1;
}

.action-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .action-sheet__panel {
    gap: 12px;
  }
}

.action-sheet.is-open .action-sheet__panel {
  transform: translateY(0);
}

.action-sheet__group {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0;
}

.action-sheet__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid #d8d8d8;
  background-color: transparent;
  color: #9a9a9a;
  cursor: pointer;
  line-height: 1.3;
  min-height: 12.8vw;
}
@media (min-width: 750px) {
  .action-sheet__option {
    min-height: 96px;
  }
}
.action-sheet__option {
  font-size: clamp(12px, 4vw, 30px);
}
.action-sheet__option:last-child {
  border-bottom: none;
}
.action-sheet__option.is-active {
  color: #353535;
  font-weight: 700;
}

.action-sheet__cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #ffffff;
  color: #353535;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  min-height: 12.8vw;
}
@media (min-width: 750px) {
  .action-sheet__cancel {
    min-height: 96px;
  }
}
.action-sheet__cancel {
  font-size: clamp(12px, 4vw, 30px);
}

.tip-dialog {
  position: absolute;
  inset: 0;
  z-index: 110;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.28s;
}

.tip-dialog.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.tip-dialog__mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.tip-dialog.is-open .tip-dialog__mask {
  opacity: 1;
}

.tip-dialog__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
  background-color: #fef6c4;
  box-shadow: 0 0 0 1px rgba(240, 208, 96, 0.55), 0 1.6vw 4.8vw rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.94);
  transition: opacity 0.28s ease, transform 0.28s ease;
  width: 74.67vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    width: 560px;
  }
}
.tip-dialog__panel {
  padding-top: 6.4vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    padding-top: 48px;
  }
}
.tip-dialog__panel {
  padding-right: 5.33vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    padding-right: 40px;
  }
}
.tip-dialog__panel {
  padding-bottom: 5.33vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    padding-bottom: 40px;
  }
}
.tip-dialog__panel {
  padding-left: 5.33vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    padding-left: 40px;
  }
}
.tip-dialog__panel {
  border-radius: 3.2vw;
}
@media (min-width: 750px) {
  .tip-dialog__panel {
    border-radius: 24px;
  }
}

.tip-dialog.is-open .tip-dialog__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tip-dialog--prize .tip-dialog__panel {
  box-shadow: 0 0 0 1px rgba(240, 208, 96, 0.7), 0 0 3.73vw rgba(240, 208, 96, 0.35), 0 1.6vw 4.8vw rgba(0, 0, 0, 0.35);
}

.tip-dialog__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16vw;
}
@media (min-width: 750px) {
  .tip-dialog__icon {
    width: 120px;
  }
}
.tip-dialog__icon {
  height: 16vw;
}
@media (min-width: 750px) {
  .tip-dialog__icon {
    height: 120px;
  }
}
.tip-dialog__icon {
  margin-bottom: 2.67vw;
}
@media (min-width: 750px) {
  .tip-dialog__icon {
    margin-bottom: 20px;
  }
}
.tip-dialog__icon img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.tip-dialog__title {
  margin: 0;
  color: #0c484e;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2.13vw;
}
@media (min-width: 750px) {
  .tip-dialog__title {
    margin-bottom: 16px;
  }
}
.tip-dialog__title {
  font-size: clamp(12px, 4.8vw, 36px);
}

.tip-dialog__desc {
  margin: 0;
  color: #ac211e;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 4.8vw;
}
@media (min-width: 750px) {
  .tip-dialog__desc {
    margin-bottom: 36px;
  }
}
.tip-dialog__desc {
  font-size: clamp(12px, 3.47vw, 26px);
}
.tip-dialog__desc em {
  color: #ac211e;
  font-style: normal;
  font-weight: 700;
}

.tip-dialog__btn {
  flex-shrink: 0;
  max-width: 48vw;
}
@media (min-width: 750px) {
  .tip-dialog__btn {
    max-width: 360px;
  }
}
.tip-dialog__btn {
  height: 10.67vw;
}
@media (min-width: 750px) {
  .tip-dialog__btn {
    height: 80px;
  }
}
.tip-dialog__btn {
  font-size: clamp(12px, 3.73vw, 28px);
}

.emoji-panel {
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fdf5e5;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.emoji-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  max-height: 56vw;
}
@media (min-width: 750px) {
  .emoji-panel.is-open {
    max-height: 420px;
  }
}

.emoji-panel__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 53.33vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    height: 400px;
  }
}
.emoji-panel__grid {
  padding-top: 2.13vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    padding-top: 16px;
  }
}
.emoji-panel__grid {
  padding-right: 1.6vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    padding-right: 12px;
  }
}
.emoji-panel__grid {
  padding-bottom: 2.13vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    padding-bottom: 16px;
  }
}
.emoji-panel__grid {
  padding-left: 1.6vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    padding-left: 12px;
  }
}
.emoji-panel__grid {
  gap: 0.53vw;
}
@media (min-width: 750px) {
  .emoji-panel__grid {
    gap: 4px;
  }
}

.emoji-panel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  aspect-ratio: 1;
  font-size: clamp(12px, 5.33vw, 40px);
}
.emoji-panel__item:active {
  background-color: rgba(12, 72, 78, 0.1);
}

.chat-more-panel {
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fdf5e5;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.2s ease;
}

.chat-more-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  max-height: 37.33vw;
}
@media (min-width: 750px) {
  .chat-more-panel.is-open {
    max-height: 280px;
  }
}

.chat-more-panel__grid {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .chat-more-panel__grid {
    padding-top: 28px;
  }
}
.chat-more-panel__grid {
  padding-right: 4.27vw;
}
@media (min-width: 750px) {
  .chat-more-panel__grid {
    padding-right: 32px;
  }
}
.chat-more-panel__grid {
  padding-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .chat-more-panel__grid {
    padding-bottom: 28px;
  }
}
.chat-more-panel__grid {
  padding-left: 4.27vw;
}
@media (min-width: 750px) {
  .chat-more-panel__grid {
    padding-left: 32px;
  }
}
.chat-more-panel__grid {
  gap: 3.73vw;
}
@media (min-width: 750px) {
  .chat-more-panel__grid {
    gap: 28px;
  }
}

.chat-more-panel__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #353535;
  cursor: pointer;
  width: 16vw;
}
@media (min-width: 750px) {
  .chat-more-panel__item {
    width: 120px;
  }
}
.chat-more-panel__item {
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .chat-more-panel__item {
    gap: 12px;
  }
}
.chat-more-panel__item:active .chat-more-panel__icon {
  opacity: 0.85;
}

.chat-more-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #0c484e;
  width: 13.33vw;
}
@media (min-width: 750px) {
  .chat-more-panel__icon {
    width: 100px;
  }
}
.chat-more-panel__icon {
  height: 13.33vw;
}
@media (min-width: 750px) {
  .chat-more-panel__icon {
    height: 100px;
  }
}
.chat-more-panel__icon {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .chat-more-panel__icon {
    border-radius: 20px;
  }
}
.chat-more-panel__icon svg {
  display: block;
  width: 6.4vw;
}
@media (min-width: 750px) {
  .chat-more-panel__icon svg {
    width: 48px;
  }
}
.chat-more-panel__icon svg {
  height: 6.4vw;
}
@media (min-width: 750px) {
  .chat-more-panel__icon svg {
    height: 48px;
  }
}

.chat-more-panel__label {
  line-height: 1.2;
  font-size: clamp(12px, 2.93vw, 22px);
}

.image-viewer {
  position: absolute;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.28s;
}

.image-viewer.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s;
}

.image-viewer__mask {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.image-viewer.is-open .image-viewer__mask {
  opacity: 1;
}

.image-viewer__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease;
  top: 3.2vw;
}
@media (min-width: 750px) {
  .image-viewer__close {
    top: 24px;
  }
}
.image-viewer__close {
  right: 3.2vw;
}
@media (min-width: 750px) {
  .image-viewer__close {
    right: 24px;
  }
}
.image-viewer__close {
  width: 7.47vw;
}
@media (min-width: 750px) {
  .image-viewer__close {
    width: 56px;
  }
}
.image-viewer__close {
  height: 7.47vw;
}
@media (min-width: 750px) {
  .image-viewer__close {
    height: 56px;
  }
}
.image-viewer__close svg {
  display: block;
  width: 100%;
  height: 100%;
}

.image-viewer.is-open .image-viewer__close {
  opacity: 1;
}

.image-viewer__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  pointer-events: none;
  padding: 10.67vw;
}
@media (min-width: 750px) {
  .image-viewer__stage {
    padding: 80px;
  }
}

.image-viewer__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
  border-radius: 1.07vw;
}
@media (min-width: 750px) {
  .image-viewer__img {
    border-radius: 8px;
  }
}

.image-viewer.is-open .image-viewer__img {
  opacity: 1;
  transform: scale(1);
}

.video-classes__list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 3.2vw;
}
@media (min-width: 750px) {
  .video-classes__list {
    padding: 24px;
  }
}
.video-classes__list {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .video-classes__list {
    gap: 20px;
  }
}

.video-card {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 0.53vw 1.6vw rgba(0, 0, 0, 0.06);
  height: 22.67vw;
}
@media (min-width: 750px) {
  .video-card {
    height: 170px;
  }
}
.video-card {
  padding: 2.67vw;
}
@media (min-width: 750px) {
  .video-card {
    padding: 20px;
  }
}
.video-card {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .video-card {
    border-radius: 20px;
  }
}
.video-card {
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .video-card {
    gap: 16px;
  }
}
@media (min-width: 750px) {
  .video-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
}

.video-card__thumb {
  flex-shrink: 0;
  overflow: hidden;
  width: 33.33vw;
}
@media (min-width: 750px) {
  .video-card__thumb {
    width: 250px;
  }
}
.video-card__thumb {
  height: 100%;
  border-radius: 1.33vw;
}
@media (min-width: 750px) {
  .video-card__thumb {
    border-radius: 10px;
  }
}
.video-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__main {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 2.13vw;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 750px) {
  .video-card__main {
    gap: 16px;
  }
}

.video-card__body {
  flex: 1;
  min-width: 0;
}

.video-card__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(12px, 3.2vw, 24px);
}

.video-card__subtitle {
  margin: 0;
  color: #5c5c5c;
  line-height: 1.3;
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .video-card__subtitle {
    margin-top: 8px;
  }
}
.video-card__subtitle {
  font-size: clamp(12px, 2.4vw, 18px);
}

.video-card__play {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.video-card__play-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 5.87vw;
}
@media (min-width: 750px) {
  .video-card__play-icon {
    height: 44px;
  }
}

.video-card__buy {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 1.07vw;
}
@media (min-width: 750px) {
  .video-card__buy {
    gap: 8px;
  }
}

.video-card__price {
  color: #0c484e;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(12px, 2.93vw, 22px);
}

.video-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.video-card__cart-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 5.87vw;
}
@media (min-width: 750px) {
  .video-card__cart-icon {
    height: 44px;
  }
}

.class-toolbar {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #f2e1c3;
  height: 10.67vw;
}
@media (min-width: 750px) {
  .class-toolbar {
    height: 80px;
  }
}
.class-toolbar {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .class-toolbar {
    padding-right: 28px;
  }
}

.class-toolbar__leading {
  display: flex;
  flex: 1;
  align-items: stretch;
  min-width: 0;
}

.class-toolbar__back {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 5.87vw;
  height: 5.87vw;
  margin-left: 1.6vw;
  color: #353535;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
@media (min-width: 750px) {
  .class-toolbar__back {
    width: 44px;
    height: 44px;
    margin-left: 12px;
  }
}
.class-toolbar__back svg {
  display: block;
  width: 70%;
  height: 70%;
}
.class-toolbar__back:active {
  transform: scale(0.96);
  background-color: rgba(53, 53, 53, 0.08);
}
.class-toolbar.has-back .class-toolbar__back {
  display: flex;
}

.class-toolbar__title {
  display: flex;
  align-items: center;
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 3.73vw;
}
@media (min-width: 750px) {
  .class-toolbar__title {
    padding-left: 28px;
  }
}
.class-toolbar__title {
  font-size: clamp(12px, 3.2vw, 24px);
}
.class-toolbar.has-back .class-toolbar__title {
  padding-left: 1.07vw;
}
@media (min-width: 750px) {
  .class-toolbar.has-back .class-toolbar__title {
    padding-left: 8px;
  }
}

.class-toolbar__tabs {
  display: none;
  align-items: stretch;
  height: 100%;
}

.class-toolbar__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  min-width: 26.67vw;
}
@media (min-width: 750px) {
  .class-toolbar__tab {
    min-width: 200px;
  }
}
.class-toolbar__tab {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .class-toolbar__tab {
    padding-right: 28px;
  }
}
.class-toolbar__tab {
  padding-left: 3.73vw;
}
@media (min-width: 750px) {
  .class-toolbar__tab {
    padding-left: 28px;
  }
}
.class-toolbar__tab {
  font-size: clamp(12px, 3.2vw, 24px);
}
.class-toolbar__tab.is-active {
  background-color: #fdf5e5;
}

.class-toolbar[data-mode=title] .class-toolbar__title {
  display: flex;
}
.class-toolbar[data-mode=title] .class-toolbar__tabs {
  display: none;
}

.class-toolbar[data-mode=tabs] .class-toolbar__title {
  display: none;
}
.class-toolbar[data-mode=tabs] .class-toolbar__tabs {
  display: flex;
}

.class-toolbar__fullscreen {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #353535;
  cursor: pointer;
  width: 4.8vw;
}
@media (min-width: 750px) {
  .class-toolbar__fullscreen {
    width: 36px;
  }
}
.class-toolbar__fullscreen {
  height: 4.8vw;
}
@media (min-width: 750px) {
  .class-toolbar__fullscreen {
    height: 36px;
  }
}

.class-toolbar__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.class-toolbar__icon--collapse {
  display: none;
}

.is-list-fullscreen .class-toolbar__icon--expand {
  display: none;
}
.is-list-fullscreen .class-toolbar__icon--collapse {
  display: block;
}

.chat-toolbar {
  display: flex;
  flex-shrink: 0;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #f2e1c3;
  height: 10.67vw;
}
@media (min-width: 750px) {
  .chat-toolbar {
    height: 80px;
  }
}
.chat-toolbar {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .chat-toolbar {
    padding-right: 28px;
  }
}

.chat-toolbar__tabs {
  display: flex;
  flex: 1;
  align-items: stretch;
  min-width: 0;
  height: 100%;
}

.chat-toolbar__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  padding-right: 2.4vw;
}
@media (min-width: 750px) {
  .chat-toolbar__tab {
    padding-right: 18px;
  }
}
.chat-toolbar__tab {
  padding-left: 2.4vw;
}
@media (min-width: 750px) {
  .chat-toolbar__tab {
    padding-left: 18px;
  }
}
.chat-toolbar__tab {
  font-size: clamp(12px, 2.93vw, 22px);
}
.chat-toolbar__tab.is-active {
  background-color: #fdf5e5;
}

.chat-toolbar__fullscreen {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #353535;
  cursor: pointer;
  width: 4.8vw;
}
@media (min-width: 750px) {
  .chat-toolbar__fullscreen {
    width: 36px;
  }
}
.chat-toolbar__fullscreen {
  height: 4.8vw;
}
@media (min-width: 750px) {
  .chat-toolbar__fullscreen {
    height: 36px;
  }
}

.chat-toolbar__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.chat-toolbar__icon--collapse {
  display: none;
}

.is-list-fullscreen .chat-toolbar__icon--expand {
  display: none;
}
.is-list-fullscreen .chat-toolbar__icon--collapse {
  display: block;
}

.buy-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #0c484e;
  color: #fdf5e5;
  height: 13.33vw;
}
@media (min-width: 750px) {
  .buy-bar {
    height: 100px;
  }
}
.buy-bar {
  padding-right: 4.8vw;
}
@media (min-width: 750px) {
  .buy-bar {
    padding-right: 36px;
  }
}
.buy-bar {
  padding-left: 4.8vw;
}
@media (min-width: 750px) {
  .buy-bar {
    padding-left: 36px;
  }
}

.buy-bar__price {
  font-weight: 700;
  line-height: 1;
  font-size: clamp(12px, 5.33vw, 40px);
}

.buy-bar__action {
  display: inline-flex;
  align-items: center;
  color: #fdf5e5;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .buy-bar__action {
    gap: 12px;
  }
}
.buy-bar__action {
  font-size: clamp(12px, 3.73vw, 28px);
}

.buy-bar__cart-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 5.87vw;
}
@media (min-width: 750px) {
  .buy-bar__cart-icon {
    height: 44px;
  }
}

.subpage-bar {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  background-color: #f2e1c3;
  height: 10.67vw;
}
@media (min-width: 750px) {
  .subpage-bar {
    height: 80px;
  }
}
.subpage-bar {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .subpage-bar {
    padding-right: 28px;
  }
}
.subpage-bar {
  padding-left: 2.67vw;
}
@media (min-width: 750px) {
  .subpage-bar {
    padding-left: 20px;
  }
}
.subpage-bar {
  gap: 1.07vw;
}
@media (min-width: 750px) {
  .subpage-bar {
    gap: 8px;
  }
}

.subpage-bar__back {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #353535;
  text-decoration: none;
  width: 5.33vw;
}
@media (min-width: 750px) {
  .subpage-bar__back {
    width: 40px;
  }
}
.subpage-bar__back {
  height: 5.33vw;
}
@media (min-width: 750px) {
  .subpage-bar__back {
    height: 40px;
  }
}
.subpage-bar__back svg {
  display: block;
  width: 100%;
  height: 100%;
}

.subpage-bar__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(12px, 3.73vw, 28px);
}

.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding-top: 12vw;
}
@media (min-width: 750px) {
  .login {
    padding-top: 90px;
  }
}
.login {
  padding-right: 14vw;
}
@media (min-width: 750px) {
  .login {
    padding-right: 105px;
  }
}
.login {
  padding-left: 14vw;
}
@media (min-width: 750px) {
  .login {
    padding-left: 105px;
  }
}

.login__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #353535;
  margin-bottom: 10.13vw;
}
@media (min-width: 750px) {
  .login__title {
    margin-bottom: 76px;
  }
}
.login__title {
  font-size: clamp(12px, 5.6vw, 42px);
}

.login__google {
  width: 100%;
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .login__google {
    margin-bottom: 28px;
  }
}

.login__divider {
  margin: 0;
  line-height: 1;
  color: #353535;
  text-align: center;
  text-transform: lowercase;
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .login__divider {
    margin-bottom: 28px;
  }
}
.login__divider {
  font-size: clamp(12px, 3.47vw, 26px);
}

.login__form {
  width: 100%;
}

.login__submit {
  margin-top: 5.33vw;
}
@media (min-width: 750px) {
  .login__submit {
    margin-top: 40px;
  }
}

.login__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.27vw;
}
@media (min-width: 750px) {
  .login__links {
    margin-top: 32px;
  }
}
.login__links {
  gap: 2.4vw;
}
@media (min-width: 750px) {
  .login__links {
    gap: 18px;
  }
}

.login__link {
  line-height: 1.3;
  color: #740810;
  text-decoration: none;
  font-size: clamp(12px, 3.47vw, 26px);
}

.login__signup {
  line-height: 1.3;
  color: #5c5c5c;
  font-size: clamp(12px, 3.47vw, 26px);
}
.login__signup a {
  color: #740810;
  text-decoration: underline;
  text-underline-offset: 0.53vw;
}
@media (min-width: 750px) {
  .login__signup a {
    text-underline-offset: 4px;
  }
}

.register__agree {
  width: 100%;
  margin-top: 4.27vw;
}
@media (min-width: 750px) {
  .register__agree {
    margin-top: 32px;
  }
}

.reset-password__title {
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .reset-password__title {
    margin-bottom: 28px;
  }
}

.reset-password__desc {
  margin: 0;
  line-height: 1.4;
  text-align: center;
  color: #353535;
  margin-bottom: 6.4vw;
}
@media (min-width: 750px) {
  .reset-password__desc {
    margin-bottom: 48px;
  }
}
.reset-password__desc {
  font-size: clamp(12px, 3.47vw, 26px);
}

.page--member-center {
  background-color: #fdf5e5;
}

.member-center {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
}

.member-center__hero {
  background-color: #0c484e;
  padding-bottom: 4.8vw;
}
@media (min-width: 750px) {
  .member-center__hero {
    padding-bottom: 36px;
  }
}

.member-center__profile {
  display: flex;
  align-items: center;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .member-center__profile {
    padding-top: 28px;
  }
}
.member-center__profile {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .member-center__profile {
    padding-right: 24px;
  }
}
.member-center__profile {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .member-center__profile {
    padding-left: 24px;
  }
}
.member-center__profile {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .member-center__profile {
    gap: 20px;
  }
}

.member-center__avatar {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  width: 16vw;
}
@media (min-width: 750px) {
  .member-center__avatar {
    width: 120px;
  }
}
.member-center__avatar {
  height: 16vw;
}
@media (min-width: 750px) {
  .member-center__avatar {
    height: 120px;
  }
}
.member-center__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-center__meta {
  flex: 1;
  min-width: 0;
}

.member-center__name {
  margin: 0;
  color: #fcf5e4;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: clamp(12px, 4.53vw, 34px);
}

.member-center__followers {
  margin: 0;
  color: #fcf5e4;
  line-height: 1.3;
  margin-top: 1.33vw;
}
@media (min-width: 750px) {
  .member-center__followers {
    margin-top: 10px;
  }
}
.member-center__followers {
  font-size: clamp(12px, 3.2vw, 24px);
}

.member-center__setting {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #fcf5e4;
  font-weight: 700;
  text-decoration: none;
  background-color: #ac211e;
  border: none;
  cursor: pointer;
  height: 6.93vw;
}
@media (min-width: 750px) {
  .member-center__setting {
    height: 52px;
  }
}
.member-center__setting {
  padding-right: 2.93vw;
}
@media (min-width: 750px) {
  .member-center__setting {
    padding-right: 22px;
  }
}
.member-center__setting {
  padding-left: 2.93vw;
}
@media (min-width: 750px) {
  .member-center__setting {
    padding-left: 22px;
  }
}
.member-center__setting {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .member-center__setting {
    border-radius: 999px;
  }
}
.member-center__setting {
  gap: 1.07vw;
}
@media (min-width: 750px) {
  .member-center__setting {
    gap: 8px;
  }
}
.member-center__setting {
  font-size: clamp(12px, 3.2vw, 24px);
}
.member-center__setting img {
  display: block;
  width: 3.73vw;
}
@media (min-width: 750px) {
  .member-center__setting img {
    width: 28px;
  }
}
.member-center__setting img {
  height: 3.73vw;
}
@media (min-width: 750px) {
  .member-center__setting img {
    height: 28px;
  }
}

.member-center__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .member-center__body {
    padding-top: 28px;
  }
}
.member-center__body {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .member-center__body {
    padding-right: 24px;
  }
}
.member-center__body {
  padding-bottom: 6.4vw;
}
@media (min-width: 750px) {
  .member-center__body {
    padding-bottom: 48px;
  }
}
.member-center__body {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .member-center__body {
    padding-left: 24px;
  }
}
.member-center__body {
  gap: 3.73vw;
}
@media (min-width: 750px) {
  .member-center__body {
    gap: 28px;
  }
}

.member-panel {
  box-sizing: border-box;
  background-color: #f4e4c6;
  border-radius: 2.13vw;
}
@media (min-width: 750px) {
  .member-panel {
    border-radius: 16px;
  }
}
.member-panel {
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .member-panel {
    padding-top: 28px;
  }
}
.member-panel {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .member-panel {
    padding-right: 24px;
  }
}
.member-panel {
  padding-bottom: 4.27vw;
}
@media (min-width: 750px) {
  .member-panel {
    padding-bottom: 32px;
  }
}
.member-panel {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .member-panel {
    padding-left: 24px;
  }
}

.member-panel__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .member-panel__title {
    margin-bottom: 28px;
  }
}
.member-panel__title {
  font-size: clamp(12px, 4vw, 30px);
}

.member-service {
  display: flex;
  justify-content: flex-start;
  gap: 6.4vw;
}
@media (min-width: 750px) {
  .member-service {
    gap: 48px;
  }
}
.member-service {
  padding-left: 2.67vw;
}
@media (min-width: 750px) {
  .member-service {
    padding-left: 20px;
  }
}

.member-service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #353535;
  text-decoration: none;
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .member-service__item {
    gap: 12px;
  }
}

.member-service__icon {
  display: block;
  width: 13.33vw;
}
@media (min-width: 750px) {
  .member-service__icon {
    width: 100px;
  }
}
.member-service__icon {
  height: 13.33vw;
}
@media (min-width: 750px) {
  .member-service__icon {
    height: 100px;
  }
}
.member-service__icon {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .member-service__icon {
    border-radius: 20px;
  }
}

.member-service__label {
  line-height: 1.2;
  text-align: center;
  font-size: clamp(12px, 2.93vw, 22px);
}

.member-welfare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .member-welfare {
    gap: 16px;
  }
}

.welfare-card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  height: 22.67vw;
}
@media (min-width: 750px) {
  .welfare-card {
    height: 170px;
  }
}
.welfare-card {
  padding-top: 2.67vw;
}
@media (min-width: 750px) {
  .welfare-card {
    padding-top: 20px;
  }
}
.welfare-card {
  padding-right: 2.13vw;
}
@media (min-width: 750px) {
  .welfare-card {
    padding-right: 16px;
  }
}
.welfare-card {
  padding-bottom: 2.67vw;
}
@media (min-width: 750px) {
  .welfare-card {
    padding-bottom: 20px;
  }
}
.welfare-card {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .welfare-card {
    padding-left: 24px;
  }
}
.welfare-card {
  border-radius: 1.6vw;
}
@media (min-width: 750px) {
  .welfare-card {
    border-radius: 12px;
  }
}

.welfare-card--gift {
  background: linear-gradient(160deg, #ffffff 35%, #cfe8f8 100%);
}

.welfare-card--points {
  background: linear-gradient(160deg, #ffffff 35%, #fff0b8 100%);
}

.welfare-card--wheel {
  background: linear-gradient(160deg, #ffffff 35%, #c8ecc0 100%);
}

.welfare-card--prize {
  background: linear-gradient(130deg, #ffffff 35%, #e4ccf5 100%);
}

.welfare-card__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  font-size: clamp(12px, 3.47vw, 26px);
}

.welfare-card__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5c5c5c;
  line-height: 1.3;
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .welfare-card__desc {
    margin-top: 8px;
  }
}
.welfare-card__desc {
  font-size: clamp(12px, 2.67vw, 20px);
}

.welfare-card__points {
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.3;
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .welfare-card__points {
    margin-top: 8px;
  }
}
.welfare-card__points {
  font-size: clamp(12px, 2.93vw, 22px);
}

.welfare-card__points-num {
  color: #ac211e;
  font-weight: 700;
}

.welfare-card__points-unit {
  color: #5c5c5c;
  margin-left: 0.8vw;
}
@media (min-width: 750px) {
  .welfare-card__points-unit {
    margin-left: 6px;
  }
}

.welfare-card__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  box-sizing: border-box;
  color: #fcf5e4;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  text-transform: uppercase;
  margin-top: auto;
  padding: 0;
  width: 20vw;
}
@media (min-width: 750px) {
  .welfare-card__action {
    width: 150px;
  }
}
.welfare-card__action {
  height: 6.13vw;
}
@media (min-width: 750px) {
  .welfare-card__action {
    height: 46px;
  }
}
.welfare-card__action {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .welfare-card__action {
    border-radius: 999px;
  }
}
.welfare-card__action {
  font-size: clamp(12px, 2.93vw, 22px);
}

.welfare-card__action--checkin {
  background-color: #3a8fd0;
  margin-top: 2.13vw;
}
@media (min-width: 750px) {
  .welfare-card__action--checkin {
    margin-top: 16px;
  }
}

.welfare-card__action--enter-wheel {
  background-color: #0c484e;
}

.welfare-card__action--enter-prize {
  background-color: #7a4fb0;
}

.welfare-card__hit {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.welfare-card__illust {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  width: 15.73vw;
}
@media (min-width: 750px) {
  .welfare-card__illust {
    width: 118px;
  }
}
.welfare-card__illust {
  height: auto;
}

.welfare-card--gift .welfare-card__illust {
  width: 12.8vw;
}
@media (min-width: 750px) {
  .welfare-card--gift .welfare-card__illust {
    width: 96px;
  }
}
.welfare-card--gift .welfare-card__illust {
  right: 0.8vw;
}
@media (min-width: 750px) {
  .welfare-card--gift .welfare-card__illust {
    right: 6px;
  }
}
.welfare-card--gift .welfare-card__illust {
  bottom: 1.07vw;
}
@media (min-width: 750px) {
  .welfare-card--gift .welfare-card__illust {
    bottom: 8px;
  }
}

.welfare-card--points .welfare-card__illust {
  width: 14.4vw;
}
@media (min-width: 750px) {
  .welfare-card--points .welfare-card__illust {
    width: 108px;
  }
}
.welfare-card--points .welfare-card__illust {
  right: 0.53vw;
}
@media (min-width: 750px) {
  .welfare-card--points .welfare-card__illust {
    right: 4px;
  }
}
.welfare-card--points .welfare-card__illust {
  bottom: 0.53vw;
}
@media (min-width: 750px) {
  .welfare-card--points .welfare-card__illust {
    bottom: 4px;
  }
}

.welfare-card--wheel .welfare-card__illust {
  width: 14.4vw;
}
@media (min-width: 750px) {
  .welfare-card--wheel .welfare-card__illust {
    width: 108px;
  }
}
.welfare-card--wheel .welfare-card__illust {
  right: 0vw;
}
@media (min-width: 750px) {
  .welfare-card--wheel .welfare-card__illust {
    right: 0px;
  }
}
.welfare-card--wheel .welfare-card__illust {
  bottom: 0vw;
}
@media (min-width: 750px) {
  .welfare-card--wheel .welfare-card__illust {
    bottom: 0px;
  }
}

.welfare-card--prize .welfare-card__illust {
  width: 12.27vw;
}
@media (min-width: 750px) {
  .welfare-card--prize .welfare-card__illust {
    width: 92px;
  }
}
.welfare-card--prize .welfare-card__illust {
  right: 1.07vw;
}
@media (min-width: 750px) {
  .welfare-card--prize .welfare-card__illust {
    right: 8px;
  }
}
.welfare-card--prize .welfare-card__illust {
  bottom: 0.53vw;
}
@media (min-width: 750px) {
  .welfare-card--prize .welfare-card__illust {
    bottom: 4px;
  }
}

.member-center__logout {
  width: 100%;
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .member-center__logout {
    margin-top: 8px;
  }
}
.member-center__logout {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .member-center__logout {
    border-radius: 999px;
  }
}

.page--video-classes {
  background-color: #fdf5e5;
}

.video-classes__hero {
  flex-shrink: 0;
  background-color: #0c484e;
}

.page--video-classes.is-list-fullscreen .video-classes__hero {
  display: none;
}

.page--member-video-classes {
  background-color: #fdf5e5;
}

.page--member-articles {
  background-color: #fdf5e5;
}

.articles__list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 3.2vw;
}
@media (min-width: 750px) {
  .articles__list {
    padding: 24px;
  }
}
.articles__list {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .articles__list {
    gap: 20px;
  }
}

.article-card {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 0.53vw 1.6vw rgba(0, 0, 0, 0.06);
  padding: 4vw;
}
@media (min-width: 750px) {
  .article-card {
    padding: 30px;
  }
}
.article-card {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .article-card {
    border-radius: 20px;
  }
}
.article-card {
  gap: 5.33vw;
}
@media (min-width: 750px) {
  .article-card {
    gap: 40px;
  }
}
@media (min-width: 750px) {
  .article-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
}

.article-card__main {
  display: block;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.article-card__body {
  flex: 1;
  min-width: 0;
}

.article-card__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #353535;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(12px, 3.47vw, 26px);
}

.article-card__excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #5c5c5c;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  margin-top: 1.6vw;
}
@media (min-width: 750px) {
  .article-card__excerpt {
    margin-top: 12px;
  }
}
.article-card__excerpt {
  font-size: clamp(12px, 2.93vw, 22px);
}

.article-card__action {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.article-card__icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 5.87vw;
}
@media (min-width: 750px) {
  .article-card__icon {
    height: 44px;
  }
}

.page--setting {
  background-color: #fdf5e5;
}

.setting {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
}

.setting-list {
  background-color: #ffffff;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font: inherit;
  text-align: left;
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #f4e4c6;
  min-height: 12.8vw;
}
@media (min-width: 750px) {
  .setting-row {
    min-height: 96px;
  }
}
.setting-row {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .setting-row {
    padding-right: 28px;
  }
}
.setting-row {
  padding-left: 4.27vw;
}
@media (min-width: 750px) {
  .setting-row {
    padding-left: 32px;
  }
}
.setting-row:last-child {
  border-bottom: none;
}

.setting-row--static {
  cursor: default;
}

.setting-row__label {
  flex-shrink: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(12px, 3.73vw, 28px);
}

.setting-row__side {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .setting-row__side {
    gap: 16px;
  }
}
.setting-row__side {
  margin-left: 3.2vw;
}
@media (min-width: 750px) {
  .setting-row__side {
    margin-left: 24px;
  }
}

.setting-row__value {
  color: #9a9a9a;
  line-height: 1.3;
  text-align: right;
  font-size: clamp(12px, 3.47vw, 26px);
}

.setting-row__avatar {
  display: block;
  overflow: hidden;
  object-fit: cover;
  border-radius: 50%;
  width: 8.53vw;
}
@media (min-width: 750px) {
  .setting-row__avatar {
    width: 64px;
  }
}
.setting-row__avatar {
  height: 8.53vw;
}
@media (min-width: 750px) {
  .setting-row__avatar {
    height: 64px;
  }
}

.setting-row__chevron {
  display: block;
  flex-shrink: 0;
  background-color: #f4e4c6;
  width: 1.87vw;
}
@media (min-width: 750px) {
  .setting-row__chevron {
    width: 14px;
  }
}
.setting-row__chevron {
  height: 3.2vw;
}
@media (min-width: 750px) {
  .setting-row__chevron {
    height: 24px;
  }
}
.setting-row__chevron {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 2l8 10-8 10'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 2l8 10-8 10'/%3E%3C/svg%3E") center/contain no-repeat;
}

.page--setting-edit {
  background-color: #fdf5e5;
}

.setting-edit {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
}

.setting-edit__panel {
  box-sizing: border-box;
  background-color: #ffffff;
  padding-top: 2.67vw;
}
@media (min-width: 750px) {
  .setting-edit__panel {
    padding-top: 20px;
  }
}
.setting-edit__panel {
  padding-right: 5.33vw;
}
@media (min-width: 750px) {
  .setting-edit__panel {
    padding-right: 40px;
  }
}
.setting-edit__panel {
  padding-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .setting-edit__panel {
    padding-bottom: 28px;
  }
}
.setting-edit__panel {
  padding-left: 5.33vw;
}
@media (min-width: 750px) {
  .setting-edit__panel {
    padding-left: 40px;
  }
}

.setting-edit__panel .form-field + .form-field {
  margin-top: 0vw;
}
@media (min-width: 750px) {
  .setting-edit__panel .form-field + .form-field {
    margin-top: 0px;
  }
}

.setting-edit__actions {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 6.4vw;
}
@media (min-width: 750px) {
  .setting-edit__actions {
    padding-top: 48px;
  }
}
.setting-edit__actions {
  padding-right: 6.4vw;
}
@media (min-width: 750px) {
  .setting-edit__actions {
    padding-right: 48px;
  }
}
.setting-edit__actions {
  padding-left: 6.4vw;
}
@media (min-width: 750px) {
  .setting-edit__actions {
    padding-left: 48px;
  }
}
.setting-edit__actions {
  gap: 3.2vw;
}
@media (min-width: 750px) {
  .setting-edit__actions {
    gap: 24px;
  }
}

.page--home {
  background-color: #fdf5e5;
}

.home {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 100%;
}

.home__hero {
  flex-shrink: 0;
  background-color: #0c484e;
}

.home-sections {
  background-color: #fdf5e5;
}

.home-sections__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-sections__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.page--chat-rooms {
  background-color: #fdf5e5;
  will-change: transform;
}

.chat-rooms__hero {
  flex-shrink: 0;
  background-color: #0c484e;
}

.page--chat-rooms.is-list-fullscreen .chat-rooms__hero {
  display: none;
}

.chat-rooms__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__body {
    padding-top: 24px;
  }
}
.chat-rooms__body {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__body {
    padding-right: 24px;
  }
}
.chat-rooms__body {
  padding-bottom: 2.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__body {
    padding-bottom: 20px;
  }
}
.chat-rooms__body {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__body {
    padding-left: 24px;
  }
}

.chat-panel {
  display: none;
  flex-direction: column;
  gap: 3.73vw;
}
@media (min-width: 750px) {
  .chat-panel {
    gap: 28px;
  }
}
.chat-panel.is-active {
  display: flex;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .chat-msg {
    gap: 16px;
  }
}

.chat-msg__avatar {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  object-fit: cover;
  width: 9.6vw;
}
@media (min-width: 750px) {
  .chat-msg__avatar {
    width: 72px;
  }
}
.chat-msg__avatar {
  height: 9.6vw;
}
@media (min-width: 750px) {
  .chat-msg__avatar {
    height: 72px;
  }
}

.chat-msg__avatar--system {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ac211e;
  color: #ffffff;
}
.chat-msg__avatar--system svg {
  display: block;
  width: 5.33vw;
}
@media (min-width: 750px) {
  .chat-msg__avatar--system svg {
    width: 40px;
  }
}
.chat-msg__avatar--system svg {
  height: 5.33vw;
}
@media (min-width: 750px) {
  .chat-msg__avatar--system svg {
    height: 40px;
  }
}

.chat-msg__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 78%;
  gap: 1.33vw;
}
@media (min-width: 750px) {
  .chat-msg__main {
    gap: 10px;
  }
}

.chat-msg__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.33vw;
}
@media (min-width: 750px) {
  .chat-msg__meta {
    gap: 10px;
  }
}

.chat-msg__name {
  color: #353535;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.2vw, 24px);
}

.chat-msg__time {
  color: #9a9a9a;
  line-height: 1.2;
  font-size: clamp(12px, 2.67vw, 20px);
}

.chat-msg__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  background-color: #740810;
  height: 4.27vw;
}
@media (min-width: 750px) {
  .chat-msg__badge {
    height: 32px;
  }
}
.chat-msg__badge {
  padding-right: 1.6vw;
}
@media (min-width: 750px) {
  .chat-msg__badge {
    padding-right: 12px;
  }
}
.chat-msg__badge {
  padding-left: 1.6vw;
}
@media (min-width: 750px) {
  .chat-msg__badge {
    padding-left: 12px;
  }
}
.chat-msg__badge {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .chat-msg__badge {
    border-radius: 999px;
  }
}
.chat-msg__badge {
  font-size: clamp(12px, 2.4vw, 18px);
}

.chat-msg__badge--for-teacher {
  background-color: #0c484e;
  gap: 0.8vw;
}
@media (min-width: 750px) {
  .chat-msg__badge--for-teacher {
    gap: 6px;
  }
}

.chat-msg__badge-icon {
  display: block;
  width: 2.4vw;
}
@media (min-width: 750px) {
  .chat-msg__badge-icon {
    width: 18px;
  }
}
.chat-msg__badge-icon {
  height: 2.4vw;
}
@media (min-width: 750px) {
  .chat-msg__badge-icon {
    height: 18px;
  }
}

.chat-msg__bubble {
  box-sizing: border-box;
  color: #353535;
  line-height: 1.45;
  word-break: break-word;
  padding-top: 2.4vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble {
    padding-top: 18px;
  }
}
.chat-msg__bubble {
  padding-right: 2.93vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble {
    padding-right: 22px;
  }
}
.chat-msg__bubble {
  padding-bottom: 2.4vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble {
    padding-bottom: 18px;
  }
}
.chat-msg__bubble {
  padding-left: 2.93vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble {
    padding-left: 22px;
  }
}
.chat-msg__bubble {
  border-radius: 1.6vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble {
    border-radius: 12px;
  }
}
.chat-msg__bubble {
  font-size: clamp(12px, 3.2vw, 24px);
}

.chat-msg--teacher .chat-msg__bubble,
.chat-msg--system .chat-msg__bubble {
  background-color: #f0d9ae;
}

.chat-msg--teacher .chat-msg__bubble {
  color: #740810;
}

.chat-msg--user {
  justify-content: flex-end;
}
.chat-msg--user .chat-msg__main {
  align-items: flex-end;
}
.chat-msg--user .chat-msg__meta {
  justify-content: flex-end;
}
.chat-msg--user .chat-msg__bubble {
  background-color: #ffffff;
}

.chat-msg__bubble--image {
  padding: 0;
  overflow: hidden;
  background-color: transparent;
  border-radius: 1.6vw;
}
@media (min-width: 750px) {
  .chat-msg__bubble--image {
    border-radius: 12px;
  }
}

.chat-msg__image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  max-width: 48vw;
}
@media (min-width: 750px) {
  .chat-msg__image {
    max-width: 360px;
  }
}
.chat-msg__image {
  max-height: 64vw;
}
@media (min-width: 750px) {
  .chat-msg__image {
    max-height: 480px;
  }
}

.chat-rooms__notice {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  background-color: #f0d9ae;
  color: #740810;
  min-height: 8.53vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice {
    min-height: 64px;
  }
}
.chat-rooms__notice {
  padding-right: 2.13vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice {
    padding-right: 16px;
  }
}
.chat-rooms__notice {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice {
    padding-left: 24px;
  }
}
.chat-rooms__notice {
  gap: 1.87vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice {
    gap: 14px;
  }
}

.chat-rooms__notice-icon {
  flex-shrink: 0;
  width: 3.73vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-icon {
    width: 28px;
  }
}
.chat-rooms__notice-icon {
  height: 3.73vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-icon {
    height: 28px;
  }
}

.chat-rooms__notice-text {
  flex: 1;
  min-width: 0;
  margin: 0;
  line-height: 1.35;
  font-size: clamp(12px, 2.93vw, 22px);
}

.chat-rooms__notice-close {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #740810;
  cursor: pointer;
  width: 5.33vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-close {
    width: 40px;
  }
}
.chat-rooms__notice-close {
  height: 5.33vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-close {
    height: 40px;
  }
}
.chat-rooms__notice-close svg {
  display: block;
  width: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-close svg {
    width: 24px;
  }
}
.chat-rooms__notice-close svg {
  height: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__notice-close svg {
    height: 24px;
  }
}

.chat-rooms__composer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  box-sizing: border-box;
  margin: 0;
  background-color: #0c484e;
  height: 13.33vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer {
    height: 100px;
  }
}
.chat-rooms__composer {
  padding-right: 2.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer {
    padding-right: 20px;
  }
}
.chat-rooms__composer {
  padding-left: 2.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer {
    padding-left: 20px;
  }
}
.chat-rooms__composer {
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer {
    gap: 16px;
  }
}

.chat-rooms__composer-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  width: 5.87vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer-btn {
    width: 44px;
  }
}
.chat-rooms__composer-btn {
  height: 5.87vw;
}
@media (min-width: 750px) {
  .chat-rooms__composer-btn {
    height: 44px;
  }
}
.chat-rooms__composer-btn svg {
  display: block;
  width: 100%;
  height: 100%;
}
.chat-rooms__composer-btn.is-active {
  opacity: 0.7;
}

.chat-rooms__input {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  border: none;
  outline: none;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background-color: #ffffff;
  color: #353535;
  line-height: 1.35;
  vertical-align: middle;
  height: 8.53vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    height: 64px;
  }
}
.chat-rooms__input {
  max-height: 16vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    max-height: 120px;
  }
}
.chat-rooms__input {
  padding-top: 2.13vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    padding-top: 16px;
  }
}
.chat-rooms__input {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    padding-right: 24px;
  }
}
.chat-rooms__input {
  padding-bottom: 2.13vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    padding-bottom: 16px;
  }
}
.chat-rooms__input {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    padding-left: 24px;
  }
}
.chat-rooms__input {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__input {
    border-radius: 999px;
  }
}
.chat-rooms__input {
  font-size: clamp(12px, 3.2vw, 24px);
}
.chat-rooms__input::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.chat-rooms__send {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #ac211e;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  height: 8.53vw;
}
@media (min-width: 750px) {
  .chat-rooms__send {
    height: 64px;
  }
}
.chat-rooms__send {
  min-width: 14.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__send {
    min-width: 110px;
  }
}
.chat-rooms__send {
  padding-right: 2.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__send {
    padding-right: 20px;
  }
}
.chat-rooms__send {
  padding-left: 2.67vw;
}
@media (min-width: 750px) {
  .chat-rooms__send {
    padding-left: 20px;
  }
}
.chat-rooms__send {
  border-radius: 133.2vw;
}
@media (min-width: 750px) {
  .chat-rooms__send {
    border-radius: 999px;
  }
}
.chat-rooms__send {
  font-size: clamp(12px, 3.2vw, 24px);
}
.chat-rooms__send:active {
  opacity: 0.85;
}

.chat-rooms__composer.is-ready .chat-rooms__composer-btn--more {
  display: none;
}
.chat-rooms__composer.is-ready .chat-rooms__send {
  display: flex;
}

.page--video-detail {
  background-color: #fdf5e5;
}
.page--video-detail.is-locked .video-detail__player {
  display: none;
}
.page--video-detail.is-locked .buy-bar {
  display: flex;
}
.page--video-detail.is-locked .chapter-list__item.is-locked .chapter-list__title {
  color: #9a9a9a;
}
.page--video-detail.is-locked.is-preview-playing .video-detail__cover {
  display: none;
}
.page--video-detail.is-locked.is-preview-playing .video-detail__player {
  display: block;
}
.page--video-detail.is-unlocked .video-detail__cover {
  display: none;
}
.page--video-detail.is-unlocked .buy-bar {
  display: none;
}
.page--video-detail.is-unlocked .chapter-list__item.is-locked .chapter-list__action--lock {
  display: none;
}
.page--video-detail.is-unlocked .chapter-list__item.is-locked .chapter-list__action--play {
  display: flex;
}
.page--video-detail.is-unlocked .chapter-list__item.is-locked .chapter-list__title {
  color: #353535;
}
.page--video-detail.is-list-fullscreen .site-header,
.page--video-detail.is-list-fullscreen .video-detail__media {
  display: none;
}

.video-detail__media {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  height: 56vw;
}
@media (min-width: 750px) {
  .video-detail__media {
    height: 420px;
  }
}

.video-detail__cover {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-detail__cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-detail__player {
  width: 100%;
  height: 100%;
}
.video-detail__player .video-js {
  width: 100%;
  height: 100%;
}
.video-detail__player video,
.video-detail__player .vjs-tech {
  object-fit: cover;
}

.video-detail__cover-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0c484e;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 13.33vw;
}
@media (min-width: 750px) {
  .video-detail__cover-btn {
    width: 100px;
  }
}
.video-detail__cover-btn {
  height: 13.33vw;
}
@media (min-width: 750px) {
  .video-detail__cover-btn {
    height: 100px;
  }
}
.video-detail__cover-btn svg {
  display: block;
  width: 6.4vw;
}
@media (min-width: 750px) {
  .video-detail__cover-btn svg {
    width: 48px;
  }
}
.video-detail__cover-btn svg {
  height: 6.4vw;
}
@media (min-width: 750px) {
  .video-detail__cover-btn svg {
    height: 48px;
  }
}

.video-detail__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .video-detail__body {
    padding-top: 28px;
  }
}
.video-detail__body {
  padding-right: 4.27vw;
}
@media (min-width: 750px) {
  .video-detail__body {
    padding-right: 32px;
  }
}
.video-detail__body {
  padding-bottom: 5.33vw;
}
@media (min-width: 750px) {
  .video-detail__body {
    padding-bottom: 40px;
  }
}
.video-detail__body {
  padding-left: 4.27vw;
}
@media (min-width: 750px) {
  .video-detail__body {
    padding-left: 32px;
  }
}

.detail-panel {
  display: none;
}
.detail-panel.is-active {
  display: block;
}

.video-detail__heading {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.35;
  font-size: clamp(12px, 3.73vw, 28px);
  margin-bottom: 3.2vw;
}
@media (min-width: 750px) {
  .video-detail__heading {
    margin-bottom: 24px;
  }
}

.video-detail__prose {
  color: #5c5c5c;
  line-height: 1.6;
  font-size: clamp(12px, 3.2vw, 24px);
}
.video-detail__prose p {
  margin: 0;
}
.video-detail__prose p + p {
  margin-top: 3.2vw;
}
@media (min-width: 750px) {
  .video-detail__prose p + p {
    margin-top: 24px;
  }
}

.chapter-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chapter-list__item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(216, 216, 216, 0.85);
  min-height: 11.73vw;
}
@media (min-width: 750px) {
  .chapter-list__item {
    min-height: 88px;
  }
}
.chapter-list__item {
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .chapter-list__item {
    gap: 16px;
  }
}

.chapter-list__index {
  flex-shrink: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(12px, 3.47vw, 26px);
  width: 6.4vw;
}
@media (min-width: 750px) {
  .chapter-list__index {
    width: 48px;
  }
}

.chapter-list__title {
  flex: 1;
  min-width: 0;
  color: #353535;
  line-height: 1.35;
  font-size: clamp(12px, 3.2vw, 24px);
}

.chapter-list__action {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.chapter-list__action--play {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.chapter-list__action--play .chapter-list__play-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 4vw;
}
@media (min-width: 750px) {
  .chapter-list__action--play .chapter-list__play-icon {
    height: 30px;
  }
}

.chapter-list__action--lock .chapter-list__lock-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 4.27vw;
}
@media (min-width: 750px) {
  .chapter-list__action--lock .chapter-list__lock-icon {
    height: 32px;
  }
}

.chapter-list__item.is-locked .chapter-list__action--play {
  display: none;
}

.page--articles {
  background-color: #fdf5e5;
}

.articles__hero {
  flex-shrink: 0;
  background-color: #0c484e;
}

.page--articles.is-list-fullscreen .articles__hero {
  display: none;
}

.article-card--buy .article-card__buy {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 1.07vw;
}
@media (min-width: 750px) {
  .article-card--buy .article-card__buy {
    gap: 8px;
  }
}
.article-card--buy .article-card__price {
  color: #0c484e;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(12px, 2.93vw, 22px);
}
.article-card--buy .article-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.article-card--buy .article-card__cart-icon {
  display: block;
  width: auto;
  object-fit: contain;
  height: 5.87vw;
}
@media (min-width: 750px) {
  .article-card--buy .article-card__cart-icon {
    height: 44px;
  }
}

.page--article-detail {
  background-color: #fdf5e5;
}
.page--article-detail.is-locked .buy-bar {
  display: flex;
}
.page--article-detail.is-locked .article-detail__lock {
  display: flex;
}
.page--article-detail.is-locked .article-detail__prose {
  mask-image: linear-gradient(180deg, #000 42%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, #000 42%, transparent 92%);
}
.page--article-detail.is-unlocked .buy-bar,
.page--article-detail.is-unlocked .article-detail__lock {
  display: none;
}
.page--article-detail.is-list-fullscreen .site-header {
  display: none;
}

.article-detail__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 4.27vw;
}
@media (min-width: 750px) {
  .article-detail__body {
    padding-top: 32px;
  }
}
.article-detail__body {
  padding-right: 4.8vw;
}
@media (min-width: 750px) {
  .article-detail__body {
    padding-right: 36px;
  }
}
.article-detail__body {
  padding-bottom: 6.4vw;
}
@media (min-width: 750px) {
  .article-detail__body {
    padding-bottom: 48px;
  }
}
.article-detail__body {
  padding-left: 4.8vw;
}
@media (min-width: 750px) {
  .article-detail__body {
    padding-left: 36px;
  }
}

.article-detail__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.35;
  font-size: clamp(12px, 4.27vw, 32px);
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .article-detail__title {
    margin-bottom: 28px;
  }
}

.article-detail__prose {
  color: #5c5c5c;
  line-height: 1.65;
  font-size: clamp(12px, 3.2vw, 24px);
}
.article-detail__prose p {
  margin: 0;
}
.article-detail__prose p + p {
  margin-top: 3.2vw;
}
@media (min-width: 750px) {
  .article-detail__prose p + p {
    margin-top: 24px;
  }
}

.article-detail__lock {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  height: 37.33vw;
}
@media (min-width: 750px) {
  .article-detail__lock {
    height: 280px;
  }
}
.article-detail__lock {
  background: linear-gradient(180deg, rgba(253, 245, 229, 0) 0%, rgba(253, 245, 229, 0.88) 45%, #fdf5e5 100%);
}

.article-detail__lock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0c484e;
  box-shadow: 0 1.07vw 3.2vw rgba(0, 0, 0, 0.12);
  width: 13.33vw;
}
@media (min-width: 750px) {
  .article-detail__lock-btn {
    width: 100px;
  }
}
.article-detail__lock-btn {
  height: 13.33vw;
}
@media (min-width: 750px) {
  .article-detail__lock-btn {
    height: 100px;
  }
}
.article-detail__lock-btn {
  margin-bottom: 5.33vw;
}
@media (min-width: 750px) {
  .article-detail__lock-btn {
    margin-bottom: 40px;
  }
}
@media (min-width: 750px) {
  .article-detail__lock-btn {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
}
.article-detail__lock-btn svg {
  display: block;
  width: 6.4vw;
}
@media (min-width: 750px) {
  .article-detail__lock-btn svg {
    width: 48px;
  }
}
.article-detail__lock-btn svg {
  height: 6.4vw;
}
@media (min-width: 750px) {
  .article-detail__lock-btn svg {
    height: 48px;
  }
}

.page--cart {
  background-color: #fdf5e5;
}

.cart__body {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .cart__body {
    padding-top: 28px;
  }
}
.cart__body {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .cart__body {
    padding-right: 28px;
  }
}
.cart__body {
  padding-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .cart__body {
    padding-bottom: 28px;
  }
}
.cart__body {
  padding-left: 3.73vw;
}
@media (min-width: 750px) {
  .cart__body {
    padding-left: 28px;
  }
}
.cart__body {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .cart__body {
    gap: 20px;
  }
}
.cart__body {
  display: flex;
  flex-direction: column;
}

.cart-card {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 0.53vw 1.6vw rgba(0, 0, 0, 0.06);
  padding: 2.67vw;
}
@media (min-width: 750px) {
  .cart-card {
    padding: 20px;
  }
}
.cart-card {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .cart-card {
    border-radius: 20px;
  }
}
.cart-card {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .cart-card {
    gap: 20px;
  }
}
@media (min-width: 750px) {
  .cart-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
}

.cart-card--row {
  justify-content: space-between;
}

.cart-card__thumb {
  flex-shrink: 0;
  overflow: hidden;
  width: 33.33vw;
}
@media (min-width: 750px) {
  .cart-card__thumb {
    width: 250px;
  }
}
.cart-card__thumb {
  height: 18.67vw;
}
@media (min-width: 750px) {
  .cart-card__thumb {
    height: 140px;
  }
}
.cart-card__thumb {
  border-radius: 1.33vw;
}
@media (min-width: 750px) {
  .cart-card__thumb {
    border-radius: 10px;
  }
}
.cart-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-card__meta {
  flex: 1;
  min-width: 0;
}

.cart-card__actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2.13vw;
}
@media (min-width: 750px) {
  .cart-card__actions {
    gap: 16px;
  }
}

.cart-card__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.33vw;
  height: 5.33vw;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: #ac211e;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
@media (min-width: 750px) {
  .cart-card__remove {
    width: 40px;
    height: 40px;
  }
}
.cart-card__remove svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cart-card__remove:active {
  transform: scale(0.94);
  opacity: 0.75;
}
.cart-card__remove:disabled {
  opacity: 0.45;
  cursor: default;
}

.cart-card__title {
  margin: 0;
  color: #0c484e;
  font-weight: 700;
  line-height: 1.35;
  font-size: clamp(12px, 3.2vw, 24px);
}

.cart-card__price {
  margin: 0;
  color: #0c484e;
  font-weight: 700;
  line-height: 1;
  margin-top: 2.13vw;
}
@media (min-width: 750px) {
  .cart-card__price {
    margin-top: 16px;
  }
}
.cart-card__price {
  font-size: clamp(12px, 3.2vw, 24px);
}

.cart-card__label {
  color: #0c484e;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.47vw, 26px);
}

.cart-card__total {
  color: #0c484e;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(12px, 5.33vw, 40px);
}

.cart-stepper {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #d8c9ad;
  height: 8vw;
}
@media (min-width: 750px) {
  .cart-stepper {
    height: 60px;
  }
}
.cart-stepper {
  border-radius: 1.33vw;
}
@media (min-width: 750px) {
  .cart-stepper {
    border-radius: 10px;
  }
}

.cart-stepper__btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #f3efe6;
  color: #d8c9ad;
  font-weight: 700;
  cursor: pointer;
  height: 100%;
  width: 7.33vw;
}
@media (min-width: 750px) {
  .cart-stepper__btn {
    width: 55px;
  }
}
.cart-stepper__btn {
  font-size: clamp(12px, 4.27vw, 32px);
}

.cart-stepper__value {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #353535;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  height: 100%;
  width: 9.33vw;
}
@media (min-width: 750px) {
  .cart-stepper__value {
    width: 70px;
  }
}
.cart-stepper__value {
  font-size: clamp(12px, 3.2vw, 24px);
}

.cart__pay-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #0c484e;
  color: #fdf5e5;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  height: 13.33vw;
}
@media (min-width: 750px) {
  .cart__pay-btn {
    height: 100px;
  }
}
.cart__pay-btn {
  font-size: clamp(12px, 4vw, 30px);
}

.page--payment {
  background-color: #fdf5e5;
}

.payment__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .payment__body {
    padding-top: 28px;
  }
}
.payment__body {
  padding-right: 3.73vw;
}
@media (min-width: 750px) {
  .payment__body {
    padding-right: 28px;
  }
}
.payment__body {
  padding-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .payment__body {
    padding-bottom: 28px;
  }
}
.payment__body {
  padding-left: 3.73vw;
}
@media (min-width: 750px) {
  .payment__body {
    padding-left: 28px;
  }
}
.payment__body {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .payment__body {
    gap: 20px;
  }
}

.payment-item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff;
  padding: 2.67vw;
}
@media (min-width: 750px) {
  .payment-item {
    padding: 20px;
  }
}
.payment-item {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .payment-item {
    border-radius: 20px;
  }
}
.payment-item {
  gap: 4vw;
}
@media (min-width: 750px) {
  .payment-item {
    gap: 30px;
  }
}

.payment-group {
  background-color: #ffffff;
  box-shadow: 0 0.53vw 1.6vw rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .payment-group {
    border-radius: 20px;
  }
}
@media (min-width: 750px) {
  .payment-group {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
}
.payment-group .payment-item {
  border-radius: 0;
  box-shadow: none;
}
.payment-group .payment-item + .payment-item {
  border-top: 1px solid rgba(216, 216, 216, 0.7);
}

.payment-item__thumb {
  flex-shrink: 0;
  overflow: hidden;
  width: 33.33vw;
}
@media (min-width: 750px) {
  .payment-item__thumb {
    width: 250px;
  }
}
.payment-item__thumb {
  height: 18.67vw;
}
@media (min-width: 750px) {
  .payment-item__thumb {
    height: 140px;
  }
}
.payment-item__thumb {
  border-radius: 1.33vw;
}
@media (min-width: 750px) {
  .payment-item__thumb {
    border-radius: 10px;
  }
}
.payment-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-item__meta {
  flex: 1;
  min-width: 0;
}

.payment-item__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(12px, 3.2vw, 24px);
}

.payment-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.13vw;
}
@media (min-width: 750px) {
  .payment-item__row {
    margin-top: 16px;
  }
}
.payment-item__row {
  gap: 1.6vw;
}
@media (min-width: 750px) {
  .payment-item__row {
    gap: 12px;
  }
}

.payment-item__qty {
  margin: 0;
  color: #0c484e;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.2vw, 24px);
}

.payment-item__price {
  margin: 0;
  color: #0c484e;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(12px, 3.2vw, 24px);
}

.payment-methods {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  background-color: #ffffff;
  height: 18.67vw;
}
@media (min-width: 750px) {
  .payment-methods {
    height: 140px;
  }
}
.payment-methods {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .payment-methods {
    padding-right: 24px;
  }
}
.payment-methods {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .payment-methods {
    padding-left: 24px;
  }
}
.payment-methods {
  border-radius: 2.67vw;
}
@media (min-width: 750px) {
  .payment-methods {
    border-radius: 20px;
  }
}
.payment-methods {
  gap: 2.67vw;
}
@media (min-width: 750px) {
  .payment-methods {
    gap: 20px;
  }
}

.payment-method {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #eeeeee;
  cursor: pointer;
  height: 9.33vw;
}
@media (min-width: 750px) {
  .payment-method {
    height: 70px;
  }
}
.payment-method {
  border-radius: 1.6vw;
}
@media (min-width: 750px) {
  .payment-method {
    border-radius: 12px;
  }
}
.payment-method.is-active {
  background-color: #000000;
}
.payment-method.is-active .payment-method__paypal-pay,
.payment-method.is-active .payment-method__paypal-pal {
  fill: #ffffff;
}
.payment-method[data-method=apple] {
  color: #000000;
}
.payment-method[data-method=apple].is-active {
  color: #ffffff;
}

.payment-method__logo {
  display: block;
  width: auto;
  height: 4.8vw;
}
@media (min-width: 750px) {
  .payment-method__logo {
    height: 36px;
  }
}
.payment-method__logo {
  max-width: 21.33vw;
}
@media (min-width: 750px) {
  .payment-method__logo {
    max-width: 160px;
  }
}

.payment__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #0c484e;
  color: #ffffff;
  height: 13.33vw;
}
@media (min-width: 750px) {
  .payment__footer {
    height: 100px;
  }
}
.payment__footer {
  padding-right: 4.8vw;
}
@media (min-width: 750px) {
  .payment__footer {
    padding-right: 36px;
  }
}
.payment__footer {
  padding-left: 4.8vw;
}
@media (min-width: 750px) {
  .payment__footer {
    padding-left: 36px;
  }
}

.payment__total {
  font-weight: 700;
  line-height: 1;
  font-size: clamp(12px, 5.33vw, 40px);
}

.payment__action {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 3.73vw, 28px);
}

.page--payment-success {
  background-color: #fdf5e5;
}

.payment-success__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding-top: 16vw;
}
@media (min-width: 750px) {
  .payment-success__body {
    padding-top: 120px;
  }
}
.payment-success__body {
  padding-right: 5.33vw;
}
@media (min-width: 750px) {
  .payment-success__body {
    padding-right: 40px;
  }
}
.payment-success__body {
  padding-left: 5.33vw;
}
@media (min-width: 750px) {
  .payment-success__body {
    padding-left: 40px;
  }
}

.payment-success__icon {
  color: #0c484e;
  width: 18.67vw;
}
@media (min-width: 750px) {
  .payment-success__icon {
    width: 140px;
  }
}
.payment-success__icon {
  height: 18.67vw;
}
@media (min-width: 750px) {
  .payment-success__icon {
    height: 140px;
  }
}
.payment-success__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.payment-success__title {
  margin: 0;
  color: #353535;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-top: 4.8vw;
}
@media (min-width: 750px) {
  .payment-success__title {
    margin-top: 36px;
  }
}
.payment-success__title {
  font-size: clamp(12px, 6.67vw, 50px);
}

.payment-success__link {
  color: #353535;
  text-decoration: underline;
  line-height: 1.4;
  margin-top: 3.73vw;
}
@media (min-width: 750px) {
  .payment-success__link {
    margin-top: 28px;
  }
}
.payment-success__link {
  font-size: clamp(12px, 4.8vw, 36px);
}

.page--lucky-wheel {
  background: radial-gradient(ellipse 80% 50% at 50% 28%, rgba(10, 74, 56, 0.95) 0%, transparent 70%), radial-gradient(circle at 18% 22%, rgba(240, 208, 96, 0.12) 0%, transparent 28%), radial-gradient(circle at 82% 18%, rgba(240, 208, 96, 0.1) 0%, transparent 24%), linear-gradient(180deg, #0a4a38 0%, #062e24 42%, #042019 100%);
}

.lucky-wheel__stage {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow-x: hidden;
  padding-bottom: 6.4vw;
}
@media (min-width: 750px) {
  .lucky-wheel__stage {
    padding-bottom: 48px;
  }
}

.lucky-wheel__coins {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  height: 96vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coins {
    height: 720px;
  }
}

.lucky-wheel__coin {
  position: absolute;
  display: block;
  object-fit: contain;
  opacity: 0.92;
  animation: lucky-coin-float 4.5s ease-in-out infinite;
}
.lucky-wheel__coin--1 {
  top: 16vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--1 {
    top: 120px;
  }
}
.lucky-wheel__coin--1 {
  left: 3.2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--1 {
    left: 24px;
  }
}
.lucky-wheel__coin--1 {
  width: 14.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--1 {
    width: 110px;
  }
}
.lucky-wheel__coin--1 {
  animation-delay: 0s;
}
.lucky-wheel__coin--2 {
  top: 11.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--2 {
    top: 88px;
  }
}
.lucky-wheel__coin--2 {
  right: 2.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--2 {
    right: 20px;
  }
}
.lucky-wheel__coin--2 {
  width: 12.8vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--2 {
    width: 96px;
  }
}
.lucky-wheel__coin--2 {
  animation-delay: 0.8s;
}
.lucky-wheel__coin--3 {
  top: 48vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--3 {
    top: 360px;
  }
}
.lucky-wheel__coin--3 {
  left: 1.07vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--3 {
    left: 8px;
  }
}
.lucky-wheel__coin--3 {
  width: 10.4vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--3 {
    width: 78px;
  }
}
.lucky-wheel__coin--3 {
  animation-delay: 1.4s;
  opacity: 0.75;
}
.lucky-wheel__coin--4 {
  top: 53.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--4 {
    top: 400px;
  }
}
.lucky-wheel__coin--4 {
  right: 1.6vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--4 {
    right: 12px;
  }
}
.lucky-wheel__coin--4 {
  width: 11.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__coin--4 {
    width: 88px;
  }
}
.lucky-wheel__coin--4 {
  animation-delay: 2s;
  opacity: 0.8;
}

@keyframes lucky-coin-float {
  0%, 100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-1.87vw) rotate(6deg);
  }
}
.lucky-wheel__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 0.53vw 0vw rgba(240, 208, 96, 0.85), 0 1.07vw 2.13vw rgba(0, 0, 0, 0.35);
  line-height: 1.15;
  margin-top: 3.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__title {
    margin-top: 28px;
  }
}
.lucky-wheel__title {
  margin-bottom: 3.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__title {
    margin-bottom: 28px;
  }
}
.lucky-wheel__title {
  padding-right: 3.2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__title {
    padding-right: 24px;
  }
}
.lucky-wheel__title {
  padding-left: 3.2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__title {
    padding-left: 24px;
  }
}
.lucky-wheel__title {
  font-size: clamp(12px, 6.93vw, 52px);
}

.lucky-wheel__machine {
  position: relative;
  z-index: 2;
  padding-top: 66.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__machine {
    padding-top: 500px;
  }
}
.lucky-wheel__machine {
  padding-bottom: 3.2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__machine {
    padding-bottom: 24px;
  }
}

.lucky-wheel__pedestal {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 86.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal {
    width: 650px;
  }
}
.lucky-wheel__pedestal {
  height: 53.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal {
    height: 400px;
  }
}
.lucky-wheel__pedestal {
  margin-top: 0vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal {
    margin-top: 0px;
  }
}
.lucky-wheel__pedestal {
  filter: drop-shadow(0 1.33vw 2.93vw rgba(0, 0, 0, 0.4));
}

.lucky-wheel__pedestal-top {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  height: 5.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-top {
    height: 40px;
  }
}
.lucky-wheel__pedestal-top {
  background: linear-gradient(180deg, #129873 0%, #0a6b54 42%, #075a46 100%);
  clip-path: polygon(3.2vw 0, calc(100% - 3.2vw) 0, 100% 100%, 0 100%);
}
.lucky-wheel__pedestal-top::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  filter: blur(1.07vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 56vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-top::before {
    width: 420px;
  }
}
.lucky-wheel__pedestal-top::before {
  height: 3.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-top::before {
    height: 28px;
  }
}
.lucky-wheel__pedestal-top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
  height: 0.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-top::after {
    height: 5px;
  }
}

.lucky-wheel__pedestal-front {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  height: 48vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-front {
    height: 360px;
  }
}
.lucky-wheel__pedestal-front {
  background: linear-gradient(180deg, #055243 0%, #033c31 100%);
  box-shadow: inset 0 0.53vw 0 rgba(255, 255, 255, 0.1);
  padding-top: 1.6vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-front {
    padding-top: 12px;
  }
}
.lucky-wheel__pedestal-front {
  padding-right: 2.13vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-front {
    padding-right: 16px;
  }
}
.lucky-wheel__pedestal-front {
  padding-bottom: 2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-front {
    padding-bottom: 15px;
  }
}
.lucky-wheel__pedestal-front {
  padding-left: 2.13vw;
}
@media (min-width: 750px) {
  .lucky-wheel__pedestal-front {
    padding-left: 16px;
  }
}

.lucky-wheel__arena {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 70.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__arena {
    width: 530px;
  }
}
.lucky-wheel__arena {
  height: 70.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__arena {
    height: 530px;
  }
}
.lucky-wheel__arena {
  transform: translateX(-50%);
}

.lucky-wheel__disk,
.lucky-wheel__frame,
.lucky-wheel__bulbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lucky-wheel__disk {
  z-index: 1;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  margin-top: 0;
  margin-left: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5e6b8;
  -webkit-mask: radial-gradient(circle at center, transparent 15%, #000 15%);
  mask: radial-gradient(circle at center, transparent 15%, #000 15%);
  transform: rotate(0deg);
  transform-origin: center center;
  transition: transform 5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lucky-wheel__slice {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: rotate(var(--rot, 0deg));
  pointer-events: none;
}

.lucky-wheel__slice-inner {
  position: absolute;
  top: 17%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
  transform: translate(-50%, -50%) rotate(calc(0deg - var(--rot, 0deg)));
}
.lucky-wheel__slice-inner img {
  display: block;
  object-fit: contain;
  width: auto;
  height: 5.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__slice-inner img {
    height: 40px;
  }
}
.lucky-wheel__slice-inner span {
  color: #ac211e;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  margin-top: 0.53vw;
}
@media (min-width: 750px) {
  .lucky-wheel__slice-inner span {
    margin-top: 4px;
  }
}
.lucky-wheel__slice-inner span {
  font-size: clamp(12px, 2.67vw, 20px);
}

.lucky-wheel__frame {
  z-index: 2;
  pointer-events: none;
}
.lucky-wheel__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lucky-wheel__bulbs {
  z-index: 3;
  pointer-events: none;
}

.lucky-wheel__bulb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  transform: rotate(calc(var(--i) * 15deg));
  pointer-events: none;
  --bx: 0px;
  --by: 0px;
}
.lucky-wheel__bulb:nth-child(1) {
  --bx: -0.13vw;
  --by: 0vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(1) {
    --bx: -1px;
    --by: 0px;
  }
}
.lucky-wheel__bulb:nth-child(2) {
  --bx: 0.93vw;
  --by: 0.11vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(2) {
    --bx: 7px;
    --by: 0.8px;
  }
}
.lucky-wheel__bulb:nth-child(3) {
  --bx: 2.2vw;
  --by: 0.3vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(3) {
    --bx: 16.5px;
    --by: 2.25px;
  }
}
.lucky-wheel__bulb:nth-child(4) {
  --bx: 2.87vw;
  --by: 0.5vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(4) {
    --bx: 21.5px;
    --by: 3.75px;
  }
}
.lucky-wheel__bulb:nth-child(5) {
  --bx: 3.6vw;
  --by: 0.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(5) {
    --bx: 27px;
    --by: 5px;
  }
}
.lucky-wheel__bulb:nth-child(6) {
  --bx: 4.4vw;
  --by: 0.8vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(6) {
    --bx: 33px;
    --by: 6px;
  }
}
.lucky-wheel__bulb:nth-child(7) {
  --bx: 5.2vw;
  --by: 0.88vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(7) {
    --bx: 39px;
    --by: 6.6px;
  }
}
.lucky-wheel__bulb:nth-child(8) {
  --bx: 5.87vw;
  --by: 0.88vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(8) {
    --bx: 44px;
    --by: 6.6px;
  }
}
.lucky-wheel__bulb:nth-child(9) {
  --bx: 6.27vw;
  --by: 0.92vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(9) {
    --bx: 47px;
    --by: 6.9px;
  }
}
.lucky-wheel__bulb:nth-child(10) {
  --bx: 6.67vw;
  --by: 0.88vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(10) {
    --bx: 50px;
    --by: 6.6px;
  }
}
.lucky-wheel__bulb:nth-child(11) {
  --bx: 7.2vw;
  --by: 0.95vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(11) {
    --bx: 54px;
    --by: 7.125px;
  }
}
.lucky-wheel__bulb:nth-child(12) {
  --bx: 8vw;
  --by: 1.12vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(12) {
    --bx: 60px;
    --by: 8.4px;
  }
}
.lucky-wheel__bulb:nth-child(13) {
  --bx: 8.8vw;
  --by: 1.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(13) {
    --bx: 66px;
    --by: 10px;
  }
}
.lucky-wheel__bulb:nth-child(14) {
  --bx: 9.27vw;
  --by: 1.55vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(14) {
    --bx: 69.5px;
    --by: 11.625px;
  }
}
.lucky-wheel__bulb:nth-child(15) {
  --bx: 9.6vw;
  --by: 1.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(15) {
    --bx: 72px;
    --by: 13px;
  }
}
.lucky-wheel__bulb:nth-child(16) {
  --bx: 10vw;
  --by: 1.87vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(16) {
    --bx: 75px;
    --by: 14px;
  }
}
.lucky-wheel__bulb:nth-child(17) {
  --bx: 10.53vw;
  --by: 2.07vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(17) {
    --bx: 79px;
    --by: 15.5px;
  }
}
.lucky-wheel__bulb:nth-child(18) {
  --bx: 11.27vw;
  --by: 2.42vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(18) {
    --bx: 84.5px;
    --by: 18.125px;
  }
}
.lucky-wheel__bulb:nth-child(19) {
  --bx: 11.97vw;
  --by: 2.77vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(19) {
    --bx: 89.75px;
    --by: 20.75px;
  }
}
.lucky-wheel__bulb:nth-child(20) {
  --bx: 12.67vw;
  --by: 2.98vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(20) {
    --bx: 95.05px;
    --by: 22.375px;
  }
}
.lucky-wheel__bulb:nth-child(21) {
  --bx: 13.47vw;
  --by: 3.23vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(21) {
    --bx: 101px;
    --by: 24.25px;
  }
}
.lucky-wheel__bulb:nth-child(22) {
  --bx: 14.53vw;
  --by: 3.6vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb:nth-child(22) {
    --bx: 109px;
    --by: 27px;
  }
}
.lucky-wheel__bulb::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5.7%;
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: inset 0 1px 3px black;
  transform: translate(-50%, -50%) translate(var(--bx), var(--by));
  width: 2.53vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb::after {
    width: 19px;
  }
}
.lucky-wheel__bulb::after {
  height: 2.53vw;
}
@media (min-width: 750px) {
  .lucky-wheel__bulb::after {
    height: 19px;
  }
}
.lucky-wheel__bulb:nth-child(odd)::after {
  background-color: #ffffff;
}
.lucky-wheel__bulb:nth-child(even)::after {
  background-color: #fd1c27;
}

.lucky-wheel__machine.is-spinning .lucky-wheel__bulb::after {
  animation-duration: 0.48s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--i) * 0.04s);
}

.lucky-wheel__machine.is-spinning .lucky-wheel__bulb:nth-child(odd)::after {
  animation-name: lucky-bulb-chase-white;
}

.lucky-wheel__machine.is-spinning .lucky-wheel__bulb:nth-child(even)::after {
  animation-name: lucky-bulb-chase-red;
}

@keyframes lucky-bulb-chase-red {
  0%, 70%, 100% {
    background-color: #fd1c27;
    box-shadow: inset 0 1px 3px black;
    filter: brightness(0.75);
  }
  35% {
    background-color: #fd1c27;
    box-shadow: inset 0 1px 3px black, 0 0 1.33vw 0.4vw rgba(253, 28, 39, 0.9);
    filter: brightness(1.35);
  }
}
@keyframes lucky-bulb-chase-white {
  0%, 70%, 100% {
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px black;
    filter: brightness(0.75);
  }
  35% {
    background-color: #ffffff;
    box-shadow: inset 0 1px 3px black, 0 0 1.33vw 0.4vw rgba(255, 255, 255, 0.95);
    filter: brightness(1.4);
  }
}
.lucky-wheel__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  transform: translate(-50%, -58%);
  cursor: pointer;
  width: 18vw;
}
@media (min-width: 750px) {
  .lucky-wheel__btn {
    width: 135px;
  }
}
.lucky-wheel__btn {
  height: auto;
}
.lucky-wheel__btn img {
  display: block;
  width: 100%;
  height: auto;
}
.lucky-wheel__btn:disabled {
  cursor: wait;
}
.lucky-wheel__btn:active:not(:disabled) img {
  transform: scale(0.96);
}

.lucky-wheel__chance {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
  flex-shrink: 0;
  max-width: 82.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__chance {
    max-width: 620px;
  }
}
.lucky-wheel__chance {
  margin-bottom: 1.07vw;
}
@media (min-width: 750px) {
  .lucky-wheel__chance {
    margin-bottom: 8px;
  }
}
.lucky-wheel__chance {
  font-size: clamp(12px, 3.2vw, 24px);
}
.lucky-wheel__chance em {
  color: #ac211e;
  font-style: normal;
  font-weight: 700;
}

.lucky-wheel__slot {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-sizing: border-box;
  background-color: #021a14;
  box-shadow: 0 0.53vw 1.07vw rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  width: 77.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__slot {
    width: 580px;
  }
}
.lucky-wheel__slot {
  height: 2vw;
}
@media (min-width: 750px) {
  .lucky-wheel__slot {
    height: 15px;
  }
}
.lucky-wheel__slot {
  border-radius: 1.07vw;
}
@media (min-width: 750px) {
  .lucky-wheel__slot {
    border-radius: 8px;
  }
}

.lucky-wheel__board {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-sizing: border-box;
  margin: 0 auto;
  background-color: #fef6c4;
  width: 70.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    width: 530px;
  }
}
.lucky-wheel__board {
  height: 35.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    height: 265px;
  }
}
.lucky-wheel__board {
  margin-top: -0.27vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    margin-top: -2px;
  }
}
.lucky-wheel__board {
  padding-top: 3.73vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    padding-top: 28px;
  }
}
.lucky-wheel__board {
  padding-right: 4.8vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    padding-right: 36px;
  }
}
.lucky-wheel__board {
  padding-bottom: 2.67vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    padding-bottom: 20px;
  }
}
.lucky-wheel__board {
  padding-left: 4.8vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board {
    padding-left: 36px;
  }
}
.lucky-wheel__board {
  border-radius: 0 0 2.67vw 2.67vw;
  box-shadow: 0 0.8vw 1.87vw rgba(0, 0, 0, 0.2), inset 0 0.27vw 0.53vw rgba(255, 255, 255, 0.35);
}

.lucky-wheel__board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(12, 72, 78, 0.18);
  padding-bottom: 1.87vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board-head {
    padding-bottom: 14px;
  }
}
.lucky-wheel__board-head {
  margin-bottom: 0.53vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board-head {
    margin-bottom: 4px;
  }
}

.lucky-wheel__board-title {
  color: #0c484e;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.2vw, 24px);
}

.lucky-wheel__board-scroll {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.lucky-wheel__board-list {
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
}
.lucky-wheel__board-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(12, 72, 78, 0.12);
  color: #ac211e;
  min-height: 7.47vw;
}
@media (min-width: 750px) {
  .lucky-wheel__board-list li {
    min-height: 56px;
  }
}
.lucky-wheel__board-list li {
  font-size: clamp(12px, 2.93vw, 22px);
}
.lucky-wheel__board-list li span,
.lucky-wheel__board-list li strong {
  color: #ac211e;
  font-weight: 700;
}

.lucky-wheel__rules {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  margin: 0 auto;
  color: #fef6c4;
  line-height: 1.55;
  width: 85.33vw;
}
@media (min-width: 750px) {
  .lucky-wheel__rules {
    width: 640px;
  }
}
.lucky-wheel__rules {
  margin-top: 0vw;
}
@media (min-width: 750px) {
  .lucky-wheel__rules {
    margin-top: 0px;
  }
}
.lucky-wheel__rules {
  font-size: clamp(12px, 2.67vw, 20px);
}
.lucky-wheel__rules ol {
  margin: 0;
  padding: 0;
}
.lucky-wheel__rules li + li {
  margin-top: 1.07vw;
}
@media (min-width: 750px) {
  .lucky-wheel__rules li + li {
    margin-top: 8px;
  }
}

.page--my-points {
  background-color: #fdf5e5;
}

.my-points__table {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  background-color: #ffffff;
}

.my-points__head {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  background-color: #f2e1c3;
  color: #353535;
  font-weight: 700;
  border-bottom: 1px solid rgba(216, 216, 216, 0.9);
  height: 10.67vw;
}
@media (min-width: 750px) {
  .my-points__head {
    height: 80px;
  }
}
.my-points__head {
  padding-right: 5.33vw;
}
@media (min-width: 750px) {
  .my-points__head {
    padding-right: 40px;
  }
}
.my-points__head {
  padding-left: 5.33vw;
}
@media (min-width: 750px) {
  .my-points__head {
    padding-left: 40px;
  }
}
.my-points__head {
  font-size: clamp(12px, 3.73vw, 28px);
}

.my-points__body {
  background-color: #fdf5e5;
  padding-right: 5.33vw;
}
@media (min-width: 750px) {
  .my-points__body {
    padding-right: 40px;
  }
}
.my-points__body {
  padding-left: 5.33vw;
}
@media (min-width: 750px) {
  .my-points__body {
    padding-left: 40px;
  }
}

.my-points__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid #d8c9ad;
  min-height: 14.67vw;
}
@media (min-width: 750px) {
  .my-points__row {
    min-height: 110px;
  }
}
.my-points__row {
  padding-top: 2.4vw;
}
@media (min-width: 750px) {
  .my-points__row {
    padding-top: 18px;
  }
}
.my-points__row {
  padding-bottom: 2.4vw;
}
@media (min-width: 750px) {
  .my-points__row {
    padding-bottom: 18px;
  }
}
.my-points__row {
  gap: 3.2vw;
}
@media (min-width: 750px) {
  .my-points__row {
    gap: 24px;
  }
}

.my-points__prize {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 1.33vw;
}
@media (min-width: 750px) {
  .my-points__prize {
    gap: 10px;
  }
}
.my-points__prize strong {
  color: #bc1013;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.2vw, 24px);
}
.my-points__prize time {
  color: #535353;
  line-height: 1.2;
  font-size: clamp(12px, 2.67vw, 20px);
}

.my-points__status {
  flex-shrink: 0;
  color: #353535;
  line-height: 1.2;
  font-size: clamp(12px, 3.47vw, 26px);
}

/* ===== Member Center / Points polish overrides ===== */
.page--member-center {
  font-family: "Plus Jakarta Sans", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
.member-center__hero {
  background:
    radial-gradient(120% 80% at 10% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, #0f555c 0%, #0c484e 55%, #08373c 100%);
}
.member-center__toolbar {
  display: flex;
  align-items: center;
  gap: 1.07vw;
  padding: 1.07vw 3.2vw 0 2.13vw;
}
@media (min-width: 750px) {
  .member-center__toolbar {
    gap: 8px;
    padding: 8px 24px 0 16px;
  }
}
.member-center__back {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5.87vw;
  height: 5.87vw;
  color: #fcf5e4;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
@media (min-width: 750px) {
  .member-center__back {
    width: 44px;
    height: 44px;
  }
}
.member-center__back svg {
  display: block;
  width: 70%;
  height: 70%;
}
.member-center__back:active {
  transform: scale(0.96);
  background-color: rgba(255, 255, 255, 0.12);
}
.member-center__toolbar-title {
  color: rgba(252, 245, 228, 0.92);
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(12px, 3.2vw, 24px);
}
.member-center__avatar {
  background: #9fd0e8;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
}
.member-center__name,
.member-panel__title,
.welfare-card__title,
.member-center__setting,
.welfare-card__action,
.member-center__logout {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
}
.member-center__name {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.member-center__followers {
  font-weight: 500;
  color: rgba(252, 245, 228, 0.9);
}
.member-center__setting {
  box-shadow: 0 6px 16px rgba(172, 33, 30, 0.28);
}
.member-center__body {
  min-height: 0;
}
.member-panel {
  border-radius: 2.67vw;
  box-shadow: 0 8px 24px rgba(12, 72, 78, 0.06);
}
@media (min-width: 750px) {
  .member-panel {
    border-radius: 20px;
  }
}
.member-panel__title {
  font-weight: 800;
  letter-spacing: 0.06em;
}
.member-service__label {
  font-weight: 600;
}
.welfare-card {
  height: 23.73vw;
  border-radius: 1.87vw;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}
@media (min-width: 750px) {
  .welfare-card {
    height: 178px;
    border-radius: 14px;
  }
}
.welfare-card__title {
  font-weight: 800;
  font-size: clamp(12px, 3.2vw, 24px);
}
.welfare-card__points-num {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 800;
}
.welfare-card__action {
  letter-spacing: 0.04em;
  font-size: clamp(12px, 2.67vw, 20px);
}
.welfare-card__action.is-done,
.welfare-card__action:disabled {
  cursor: default;
  opacity: 0.72;
  filter: grayscale(0.15);
}
.member-center__logout {
  font-weight: 700;
  letter-spacing: 0.08em;
  height: 9.6vw;
}
@media (min-width: 750px) {
  .member-center__logout {
    height: 72px;
  }
}

.page--my-points {
  font-family: "Plus Jakarta Sans", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
.my-points__summary {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  background: linear-gradient(135deg, #fff8e4 0%, #f2e1c3 100%);
  border-bottom: 1px solid rgba(216, 216, 216, 0.7);
  padding: 3.73vw 5.33vw;
}
@media (min-width: 750px) {
  .my-points__summary {
    padding: 28px 40px;
  }
}
.my-points__balance {
  margin: 0;
  line-height: 1.2;
}
.my-points__balance-num {
  color: #bc1013;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 6.4vw, 48px);
}
.my-points__balance-unit {
  color: #5c5c5c;
  font-weight: 600;
  margin-left: 1.33vw;
  font-size: clamp(12px, 3.2vw, 24px);
}
@media (min-width: 750px) {
  .my-points__balance-unit {
    margin-left: 10px;
  }
}
.my-points__hint {
  margin: 1.33vw 0 0;
  color: #9a9a9a;
  font-weight: 500;
  font-size: clamp(12px, 2.67vw, 20px);
}
@media (min-width: 750px) {
  .my-points__hint {
    margin-top: 10px;
  }
}
.my-points__head {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(12px, 3.47vw, 26px);
}
.my-points__prize strong {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
}
.my-points__change {
  flex-shrink: 0;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: clamp(12px, 3.47vw, 26px);
}
.my-points__change.is-plus {
  color: #1f8a4c;
}
.my-points__change.is-minus {
  color: #bc1013;
}
.my-points__status {
  font-weight: 600;
}
.my-points__empty {
  margin: 0;
  color: #9a9a9a;
  text-align: center;
  padding-top: 8.53vw;
  font-size: clamp(12px, 3.2vw, 24px);
}
@media (min-width: 750px) {
  .my-points__empty {
    padding-top: 64px;
  }
}
.page--lucky-wheel .subpage-bar {
  background-color: rgba(6, 46, 36, 0.92);
  color: #fef6c4;
}
.page--lucky-wheel .subpage-bar__back,
.page--lucky-wheel .subpage-bar__title {
  color: #fef6c4;
}

/*# sourceMappingURL=main.css.map */
