@charset "UTF-8";
@font-face {
  font-family: "MBCorpoATitle";
  src: url("../fonts/MB-Font/MBCorpoATitle-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../font/Noto_Sans_TC/NotoSansTC-Regular.ttf") format("truetype");
}
@keyframes fadeInDown {
  0% {
    transform: translate3d(0, -10%, 0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "MBCorpoATitle", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
  background: #262626;
}

* {
  box-sizing: border-box;
  letter-spacing: 2px;
  line-height: 1;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.bg {
  background-size: cover;
  background-position: center;
}

.bg1 {
  background-image: url("../images/bg_1.jpg");
}
@media screen and (max-width: 1024px) {
  .bg1 {
    background-image: url("../images/mb_bg_01.jpg");
  }
}

.bg2 {
  background-image: url("../images/bg_2.jpg");
}
@media screen and (max-width: 1024px) {
  .bg2 {
    background-image: url("../images/mb_bg_02.jpg");
  }
}

.bg3 {
  background-image: url("../images/bg_3.jpg");
}
@media screen and (max-width: 1024px) {
  .bg3 {
    background-image: url("../images/mb_bg_03.jpg");
  }
}

.bg4 {
  background-image: url("../images/bg_4.jpg");
}

.bg5 {
  background-image: url("../images/bg_5.jpg");
}

.wraper {
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  max-width: 1192px;
  margin: 0 auto;
  padding: 1rem 12px 0;
}
.header .logo {
  width: 155px;
}
.header a {
  border: 1px solid rgb(178, 178, 178);
  padding: 9px 12px 9px;
  display: block;
  color: white;
  text-decoration: none;
}
.header > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header #menu {
  display: none;
  cursor: pointer;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 10px 12px 10px;
    position: fixed;
    left: 0;
    right: 0;
    background: #262626;
    z-index: 2;
  }
  .header .logo {
    width: 130px;
  }
  .header #menu {
    display: inline-block;
  }
}

.cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.links {
  color: rgba(246, 246, 246, 0.8);
  padding-left: 8%;
}
.links #link-x {
  display: none;
}
.links .link {
  white-space: nowrap;
  color: rgba(248, 225, 197, 0.7);
  text-decoration: none;
  margin-bottom: 22px;
  padding-left: 1rem;
  position: relative;
  display: block;
  cursor: pointer;
}
.links .link::before {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  background: rgba(248, 225, 197, 0.7);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.links .link.active, .links .link:hover {
  color: #f8e1c5;
}
.links .link.active::before, .links .link:hover::before {
  background: #f8e1c5;
}
.links .link.active::after, .links .link:hover::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #f8e1c5;
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    padding: 5rem 2rem 2rem;
    background: url("../images/bg_1.jpg");
    z-index: 3;
    transition: left 0.3s ease-in-out;
  }
  .links .link {
    font-size: 20px;
    margin-bottom: 36px;
  }
  .links #link-x {
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    display: block;
  }
  .links.open {
    left: 0;
  }
}

.card-container {
  width: 100%;
  text-align: center;
  padding: 40px 15% 90px 0;
}
.card-container .title {
  color: #f8e1c5;
  font-size: 48px;
  margin-bottom: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .card-container .title {
    font-size: 32px;
    margin-bottom: 28px;
    margin-top: 88px;
  }
}
.card-container .upgrade-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .card-container .upgrade-section {
    margin-bottom: 28px;
  }
}
.card-container .divider {
  height: 1px;
  background-color: rgba(246, 246, 246, 0.8);
  flex-grow: 1;
  opacity: 0.5;
  max-width: 160px;
}
@media screen and (max-width: 1024px) {
  .card-container .divider {
    max-width: 20%;
  }
}
.card-container .upgrade-title {
  padding: 0 20px;
  font-size: 2rem;
  font-weight: 400;
  color: rgb(246, 246, 246);
}
@media screen and (max-width: 1024px) {
  .card-container .upgrade-title {
    font-size: 28px;
  }
}
.card-container .benefit-text {
  font-size: 22px;
  line-height: 1.6;
  color: rgb(246, 246, 246);
  margin-bottom: 30px;
  font-weight: 300;
}
.card-container .benefit-text span {
  font-size: 40px;
}
.card-container .benefit-text.small {
  display: none;
  margin-bottom: 0px;
  font-size: 20px;
}
.card-container .benefit-text.small:last-of-type {
  margin-bottom: 40px;
}
.card-container .benefit-text.small span {
  font-size: 38px;
}
@media screen and (max-width: 1024px) {
  .card-container .benefit-text {
    display: none;
  }
  .card-container .benefit-text.small {
    display: block;
  }
}
.card-container .cards-display {
  display: flex;
  gap: 8%;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .card-container .cards-display {
    gap: 6%;
  }
}
.card-container .card .card-wrapper.active {
  position: relative;
}
.card-container .card .card-wrapper.active img {
  transform: scale(1);
}
.card-container .card .card-wrapper img {
  max-width: 264px;
  transform: scale(0.9);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .card-container .card .card-wrapper img {
    max-width: 165px;
    width: 100%;
  }
}
.card-container .card .card-btn {
  color: rgba(246, 246, 246, 0.8);
  display: inline-block;
  margin: 2rem auto 0;
  padding: 9px 28px;
  background: url("../images/btn.png");
  background-size: cover;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.card-container .card .card-btn.active {
  background: url("../images/btn_hover.png");
}
@media screen and (max-width: 1024px) {
  .card-container {
    padding: 46px 12px 76px;
  }
}

.promo-container {
  display: flex;
  width: 100%;
  color: rgba(246, 246, 246, 0.8);
}
@media screen and (max-width: 1024px) {
  .promo-container {
    flex-direction: column;
  }
}
.promo-container .promo-image {
  max-width: 42%;
}
.promo-container .promo-image .promo1-small {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-image {
    max-width: none;
  }
  .promo-container .promo-image .promo1-big {
    display: none;
  }
  .promo-container .promo-image .promo1-small {
    display: block;
    flex: 1;
  }
}
.promo-container .promo-des-title {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-des-title {
    text-align: center;
  }
}
.promo-container .promo-content {
  padding: 9% 30px 0;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-content {
    padding: 45px 24px 50px;
  }
  .promo-container .promo-content .promo-more {
    width: 100%;
  }
}
.promo-container .card-type {
  color: #f8e1c5;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .promo-container .card-type {
    text-align: center;
    font-size: 16px;
  }
}
.promo-container .promo-title {
  color: #f8e1c5;
  font-size: 3rem;
  margin: 0.5rem 0 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-title {
    font-size: 2rem;
    text-align: center;
    margin: 0.5rem 0 12px;
  }
}
.promo-container .promo-period {
  margin-bottom: 65px;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-period {
    text-align: center;
    margin-bottom: 42px;
  }
}
.promo-container .point-rewards {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .promo-container .point-rewards {
    flex-direction: column;
  }
}
.promo-container .point-rewards .reward-item {
  flex: 1;
}
.promo-container .point-rewards .reward-type {
  font-size: 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .promo-container .point-rewards .reward-type {
    text-align: center;
  }
}
.promo-container .point-rewards .reward-value {
  font-size: 28px;
  margin-top: 12px;
  color: rgb(246, 246, 246);
  font-weight: 300;
  text-align: left;
}
.promo-container .point-rewards .reward-value.small {
  display: none;
}
@media screen and (max-width: 1024px) {
  .promo-container .point-rewards .reward-value {
    text-align: center;
  }
  .promo-container .point-rewards .reward-value.big {
    display: none !important;
  }
  .promo-container .point-rewards .reward-value.small {
    display: block;
  }
}
.promo-container .point-rewards .reward-value span {
  font-size: 40px;
}
.promo-container .point-rewards .reward-value span.big-content {
  font-size: 28px;
}
@media screen and (max-width: 1024px) {
  .promo-container .point-rewards .reward-value span.big-content {
    display: none;
  }
}
.promo-container .point-rewards .reward-hr {
  width: 1px;
  height: 93px;
  background: rgba(165, 165, 165, 0.6);
  margin-right: 20px;
  position: relative;
  transform: translateY(-11%);
}
@media screen and (max-width: 1024px) {
  .promo-container .point-rewards .reward-hr {
    height: 1px;
    width: 100%;
    transform: none;
    margin: 26px 0;
  }
}
.promo-container .promo-note {
  font-size: 14px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .promo-container .promo-note {
    margin: 48px 0 60px;
    text-align: center;
  }
}

.promo-more {
  color: #f8e1c5;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .promo-more {
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .second-promo-container {
    flex-direction: column-reverse;
  }
}
.second-promo-container .promo-content {
  padding: 11% 0 0 8%;
}
@media screen and (max-width: 1024px) {
  .second-promo-container .promo-content {
    padding: 48px 12px 60px;
  }
}
.second-promo-container .promo-period {
  margin-bottom: 60px;
}
.second-promo-container .point-rewards {
  margin-bottom: 60px;
}

.rewards-container {
  padding: 100px 12px;
}
@media screen and (max-width: 1024px) {
  .rewards-container {
    padding: 48px 24px 60px;
  }
  .rewards-container:last-of-type:last-of-type, .rewards-container:last-of-type:nth-last-of-type(2) {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.rewards-container .card-type {
  text-align: center;
  color: #f8e1c5;
  margin-bottom: 12px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .rewards-container .card-type {
    font-size: 1rem;
  }
  .rewards-container .card-type.courtesy-card-type {
    font-size: 22px;
  }
}
.rewards-container .title {
  text-align: center;
  margin-bottom: 60px;
  color: #f8e1c5;
  font-size: 48px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .rewards-container .title {
    font-size: 36px;
    margin-bottom: 42px;
  }
}
.rewards-container .rewards-items {
  max-width: 1150px;
  width: 100%;
  display: flex;
  margin: 0 auto 66px;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items {
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .rewards-container .rewards-items hr {
    display: none;
  }
}
.rewards-container .rewards-items > div {
  flex: 6;
  display: flex;
  flex-direction: column;
}
.rewards-container .rewards-items > div .promo-more {
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items > div {
    width: 50%;
    flex: unset;
    padding: 24px 7px 24px 0;
    border-bottom: 1px solid rgba(165, 165, 165, 0.3);
  }
  .rewards-container .rewards-items > div .promo-more {
    text-align: left;
    font-size: 15px;
  }
}
.rewards-container .rewards-items > div .reward-title {
  font-size: 20px;
  color: rgba(246, 246, 246, 0.8);
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items > div .reward-title {
    font-size: 1rem;
  }
}
.rewards-container .rewards-items > div .reward-desc {
  font-size: 28px;
  color: rgb(246, 246, 246);
  margin: 10px 0 44px;
  letter-spacing: 4px;
}
.rewards-container .rewards-items > div .reward-desc span {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 3px;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items > div .reward-desc {
    font-size: 20px;
    margin-bottom: 24px;
    letter-spacing: 1px;
  }
  .rewards-container .rewards-items > div .reward-desc span {
    font-size: 32px;
    display: inline-block;
  }
  .rewards-container .rewards-items > div .reward-desc.reward-safety-desc span {
    font-size: 20px;
  }
}
.rewards-container .rewards-items.courtesy-items {
  flex-wrap: wrap;
  margin: 0 auto;
}
.rewards-container .rewards-items.courtesy-items > div {
  width: 29%;
  flex: none;
  margin-bottom: 60px;
}
.rewards-container .rewards-items.courtesy-items > div:last-of-type, .rewards-container .rewards-items.courtesy-items > div:nth-last-of-type(2), .rewards-container .rewards-items.courtesy-items > div:nth-last-of-type(3) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items.courtesy-items > div {
    width: 49%;
    margin-bottom: 0px;
  }
}
.rewards-container .rewards-items.courtesy-items > div .courtesy-title {
  color: #f8e1c5;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items.courtesy-items > div .courtesy-title {
    font-size: 22px;
  }
}
.rewards-container .rewards-items.courtesy-items > div br {
  display: none;
}
.rewards-container .rewards-items.courtesy-items > div .courtesy-desc-container {
  margin-bottom: 40px;
}
.rewards-container .rewards-items.courtesy-items > div .courtesy-desc {
  color: rgb(246, 246, 246);
  font-weight: 400;
  line-height: 1.5;
  font-size: 28px;
}
.rewards-container .rewards-items.courtesy-items > div .courtesy-desc span {
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .rewards-container .rewards-items.courtesy-items > div .courtesy-desc {
    display: inline;
    font-size: 22px;
    line-height: 1.8;
  }
  .rewards-container .rewards-items.courtesy-items > div .courtesy-desc:last-of-type {
    margin-left: -5px;
  }
  .rewards-container .rewards-items.courtesy-items > div .courtesy-desc span {
    font-size: 30px;
  }
  .rewards-container .rewards-items.courtesy-items > div .courtesy-desc br {
    display: block;
  }
}
.rewards-container hr {
  border: none;
  flex: 1;
  display: flex;
  justify-content: center;
  align-self: stretch;
}
.rewards-container hr::before {
  width: 1px;
  background-color: rgba(165, 165, 165, 0.4);
  height: 156px;
  content: "";
  position: relative;
  display: block;
  transform: translateY(-12px);
}
.rewards-container hr.courtesy-hr::before {
  min-height: 186px;
}

.limit-container {
  padding: 100px 24px;
}
.limit-container .card-title {
  text-align: center;
  font-size: 20px;
  color: #f8e1c5;
  margin-bottom: 12px;
}
.limit-container .title {
  text-align: center;
  margin-bottom: 42px;
  color: #f8e1c5;
  font-size: 48px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .limit-container .title {
    font-size: 36px;
  }
}
.limit-container .desc {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.limit-container .desc p {
  line-height: 1.2;
  font-size: 22px;
  color: rgb(246, 246, 246);
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc p {
    font-size: 16px;
  }
}
.limit-container .desc-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-items {
    justify-content: flex-start;
  }
}
.limit-container .desc-items .desc-icon {
  flex: 1;
  text-align: center;
  font-size: 22px;
  color: #f8e1c5;
  align-self: center;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-items .desc-icon {
    flex: unset;
    width: 10%;
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.limit-container .desc-items .desc-item {
  flex: 3;
  border: 1px solid #f8e1c5;
  padding: 1rem;
  border-radius: 1rem;
  color: #f8e1c5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-items .desc-item {
    flex: unset;
    width: 40%;
    margin-bottom: 24px;
  }
}
.limit-container .desc-items .desc-item .desc-item-title {
  font-size: 28px;
  padding-bottom: 2px;
  border-bottom: 1px solid #f8e1c5;
  display: inline-block;
  margin-bottom: 12px;
}
.limit-container .desc-items .desc-item .desc-item-title span {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-items .desc-item .desc-item-title {
    font-size: 20px;
  }
  .limit-container .desc-items .desc-item .desc-item-title span {
    font-size: 24px;
  }
}
.limit-container .desc-items .desc-item .desc-item-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}
.limit-container .desc-items .desc-item .desc-item-desc span {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-items .desc-item .desc-item-desc {
    font-size: 16px;
  }
  .limit-container .desc-items .desc-item .desc-item-desc span {
    font-size: 20px;
  }
}
.limit-container .desc-eg {
  margin-top: 24px;
  color: rgb(246, 246, 246);
  font-weight: 300;
}
.limit-container .desc-eg p {
  font-size: 18px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .limit-container .desc-eg p {
    font-size: 14px;
  }
}
.limit-container .desc-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}
.limit-container .desc-note {
  font-size: 12px;
  color: rgba(246, 246, 246, 0.8);
  font-weight: 300;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.gift-container .gift {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  padding: 90px 0;
}
@media screen and (max-width: 1024px) {
  .gift-container .gift {
    padding: 0;
    flex-direction: column;
  }
}
.gift-container .gift-content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .gift-container .gift-content {
    padding: 48px 24px 60px;
    text-align: center;
  }
}
.gift-container .gift-img {
  width: 386px;
  margin-right: 80px;
  flex-shrink: 0;
}
.gift-container .gift-img .small {
  display: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .gift-container .gift-img {
    width: 100%;
  }
  .gift-container .gift-img .big {
    display: none;
  }
  .gift-container .gift-img .small {
    display: block;
  }
}
.gift-container .gift-title {
  color: #f8e1c5;
  font-size: 3rem;
  margin: 0.5rem 0 1rem;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .gift-container .gift-title {
    font-size: 2rem;
  }
}
.gift-container .gift-period {
  margin-bottom: 60px;
  color: rgba(246, 246, 246, 0.8);
}
@media screen and (max-width: 1024px) {
  .gift-container .gift-period {
    font-size: 14px;
    margin-bottom: 42px;
  }
}
.gift-container .gift-desc-title {
  font-size: 20px;
  color: rgba(246, 246, 246, 0.8);
  margin-bottom: 24px;
}
.gift-container .gift-desc {
  font-size: 18px;
  color: rgb(246, 246, 246);
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .gift-container .gift-desc {
    margin-bottom: 3rem;
  }
}
.gift-container .card-type {
  color: #f8e1c5;
  margin-bottom: 12px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .gift-container .card-type {
    text-align: center;
  }
}
.gift-container .promo-more {
  margin-top: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .gift-container .promo-more {
    margin-bottom: 0;
  }
}

.footer-1 {
  display: flex;
  padding: 40px 0;
  justify-content: center;
  color: rgba(246, 246, 246, 0.8);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", sans-serif;
}
@media screen and (max-width: 1024px) {
  .footer-1 {
    flex-direction: column;
    padding: 20px 15px 12px;
  }
}
.footer-1 .footer-title {
  font-size: 38px;
  margin-right: 5%;
  margin-top: 18px;
}
@media screen and (max-width: 1024px) {
  .footer-1 .footer-title {
    text-align: center;
    margin-right: 0;
    font-size: 24px;
    margin: 0 0 10px;
  }
}
.footer-1 .footer-desc p {
  line-height: 1.6;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .footer-1 .footer-desc p {
    font-size: 12px;
    line-height: 1.2;
  }
}

footer {
  background-color: rgb(215, 12, 24);
  text-align: center;
  padding: 8px 0;
  color: white;
  letter-spacing: 1px;
  font-weight: 200;
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", "Microsoft YaHei", sans-serif;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 8px 40px 12px;
    font-size: 12px;
    line-height: 1.3;
  }
}

dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  margin: 0;
  width: auto;
  border: none;
  height: auto;
  display: none;
  justify-content: center;
  align-items: center;
  max-width: unset;
  max-height: unset;
}
dialog[open] {
  display: flex;
}
dialog .dialog-container {
  max-width: 596px;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  dialog .dialog-container {
    padding: 50px 20px 36px;
  }
}
dialog .dialog-container .x {
  position: absolute;
  right: 28px;
  top: 28px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  dialog .dialog-container .x {
    right: 1rem;
    top: 1rem;
  }
}
dialog .dialog-container .dialog-title {
  color: rgb(189, 152, 107);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  dialog .dialog-container .dialog-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
dialog .dialog-container .dialog-period {
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  dialog .dialog-container .dialog-period {
    margin-bottom: 28px;
  }
}
dialog .dialog-container .reward-section {
  margin-bottom: 2rem;
}
dialog .dialog-container .reward-title {
  color: rgb(189, 152, 107);
  line-height: 1.6;
  margin-bottom: 4px;
  font-weight: 300;
  letter-spacing: 1px;
}
dialog .dialog-container .reward-title span {
  font-size: 18px;
}
dialog .dialog-container .reward-title .note {
  font-size: 14px;
  color: rgb(60, 56, 56);
}
dialog .dialog-container .reward-content {
  color: rgb(60, 56, 56);
  line-height: 1.6;
  font-size: 14px;
  letter-spacing: 1px;
}
dialog .dialog-container .reward-content span {
  font-size: 16px;
}
dialog .dialog-container .reward-content .gold-text {
  font-size: 14px;
  color: rgb(189, 152, 107);
}
dialog .dialog-container .note {
  text-align: center;
  color: rgb(127, 121, 121);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
}
dialog .dialog-container .note a {
  color: rgb(68, 147, 220);
  letter-spacing: 1px;
  font-weight: 300;
}

.unlimited-content {
  display: block;
}

.d-block {
  display: block !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}/*# sourceMappingURL=style.css.map */