#app {
  background-color: #f6f6f6 !important;
}
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #110c0f;
}
.banner img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.banner.before-start {
  background-color: #110c0f;
  height: 360px;
}
.banner.before-start img {
  width: 1920px;
}
.banner.start {
  background-color: #110c0f;
  height: 470px;
}
.banner.start img {
  width: 1920px;
}
.banner.count-down > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.banner.count-down > div p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}
.banner.count-down > div span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.banner.count-down > div p:first-child {
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
}
.banner.before-start > div p:nth-of-type(2) {
  margin-top: 30px;
}

.banner.count-down > div .units {
  width: 660px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 50px;
}
.banner.count-down > div .unit-name {
  margin-top: 8px;
  margin-bottom: 12px;
}

.banner.count-down .unit {
  display: flex;
  justify-content: space-between;
}
.banner.count-down .card-container {
  position: relative;
  width: 58px;
  height: 80px;
}
.banner.count-down .card-item {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 6px;
  width: 48px;
  height: 38px;
  font-size: 50px;
  line-height: 80px;
  font-weight: bold;
  color: #000000;
  overflow: hidden;
}
.banner.count-down .card2 {
  background-color: #ffffff;
  top: 50%;
  line-height: 0;
  transform-origin: center top;
  backface-visibility: hidden;
  z-index: 1;
  border-radius: 0 0 12px 12px;
}
.openupcard {
  animation: openupcard 1s linear infinite;
}
.banner.count-down .card3 {
  background-color: #ffffff;
  transform-origin: center bottom;
  backface-visibility: hidden;
  z-index: 1;
  border-radius: 12px 12px 0 0;
}
.shutdowncard {
  animation: shutdowncard 1s linear infinite;
}
.banner.count-down .card4 {
  top: 50%;
  line-height: 0;
}

@keyframes openupcard {
  0% {
    transform: rotateX(180deg);
  }
  30% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
@keyframes shutdowncard {
  0% {
    transform: rotateX(0deg);
  }
  30% {
    transform: rotateX(-180deg);
  }
  100% {
    transform: rotateX(-180deg);
  }
}
.banner.before-end {
  background-color: #110c0f;
  height: 448px;
}
.banner.before-end img {
  width: 1920px;
}
.banner.before-end.count-down > div {
  position: absolute;
  top: 193px;
  left: 50%;
  transform: translateX(-600px);
}
.banner.before-end.count-down > div .units {
  gap: 40px;
  width: 638px;
}
.banner.end {
  background-color: #110c0f;
  height: 448px;
}
.banner.end img {
  width: 1920px;
}
.banner.end > div .icon-explaination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.event-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 0 117px;
}
.event-end > p {
  color: #000000;
}
.event-end > p:nth-of-type(1) {
  margin: 0 auto 23px;
  font-size: 36px;
  font-weight: 500;
}
.event-end > p:nth-of-type(2) {
  font-size: 18px;
  font-weight: 500;
  color: #7b7b7b;
  text-align: center;
  max-width: 950px;
}
.event-end > a {
  display: block;
  margin: 36px auto 44px;
  padding: 10px 22px;
  border-radius: 106px;
  background: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
  cursor: pointer;
}
.event-end > p:nth-of-type(3) {
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
}
.icon-explaination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.icon-explaination p {
  margin-left: 14px;
  font-size: 16px;
  color: #9e9e9e;
}
.shopping-guide > p:nth-of-type(1) {
  margin-top: 50px;
  font-size: 36px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.shopping-guide > p:nth-of-type(2) {
  margin: 4px 0 26px;
  font-size: 18px;
  font-weight: 500;
  color: #7b7b7b;
  text-align: center;
}
.shopping-guide .shopping-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  margin-bottom: 32px;
}
.shopping-guide .shopping-steps > i {
  position: absolute;
  color: #c0c0c0;
  font-weight: bold;
  font-size: 22px;
  top: 50%;
  left: 32.5%;
  transform: translate(-50%, -50%);
}
.shopping-guide .shopping-steps > i:nth-of-type(2) {
  left: 67.5%;
}
.shopping-guide .shopping-steps section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 12px 0 20px;
}
.shopping-guide .shopping-steps section i {
  font-size: 52px;
  color: #ff5a00;
  height: 68px;
}
.shopping-guide .shopping-steps section b {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}
.shopping-guide .shopping-steps section p {
  font-size: 16px;
  font-weight: normal;
  color: #6d6d6d;
  margin-top: 15px;
  padding: 0 16px;
}
.shopping-guide .shopping-steps section .line {
  width: 100%;
  height: 1px;
  background-color: #f6f6f6;
  margin-top: 20px;
}
.select-tags {
  background-color: #ffffff;
  margin-bottom: 26px;
}
.select-tags.sticky {
  position: sticky;
  top: 60px;
  z-index: 1;
}
.select-tags .tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.select-tags .tags .tag {
  height: 60px;
  cursor: pointer;
}
.select-tags .tags .tag span {
  line-height: 60px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.select-tags .tags .tag:hover span {
  color: #ff5a00;
}
.select-tags .tags .tag.select span {
  color: #ff2a00;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event-rules > p {
  margin: 40px auto 30px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #ff4800;
}
.event-rules > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.event-rules > ul section {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 10px 24px 22px;
}
.event-rules > ul section p {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  display: flex;
  align-items: center;
}
.event-rules > ul section p i {
  font-size: 42px;
  margin-right: 20px;
  color: #ff4800;
}
.event-rules > ul section li {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  color: #6d6d6d;
  margin-bottom: 25px;
  left: 20px;
}
.event-rules > ul section li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 8px;
  background-color: #6d6d6d;
  width: 6px;
  height: 6px;
  border-radius: 4px;
}
.terms-and-conditions {
  margin-top: 32px;
  background-color: #ffffff;
}
.terms-and-conditions > p {
  font-size: 30px;
  font-weight: 500;
  color: #ff4800;
  line-height: 72px;
  text-indent: 26px;
  border-bottom: 3px solid #f6f6f6;
}
.terms-and-conditions > ul {
  padding: 26px;
}
.terms-and-conditions > ul section:not(:last-of-type) {
  margin-bottom: 30px;
}
.terms-and-conditions > ul section p {
  color: #666666;
  font-weight: 400;
  font-size: 18px;
}
.terms-and-conditions > ul section > p:first-of-type {
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}
.end-line {
  color: #cccccc;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  padding: 20px 0 40px;
}
#mc_embed_signup_scroll {
  position: relative;
  width: 370px;
}
#mc_embed_signup {
  margin-top: 10px;
}
#mce-EMAIL {
  width: 370px;
  height: 50px;
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  text-indent: 1em;
  border-radius: 8px;
}
#mce-EMAIL::placeholder {
  font-size: 16px;
  color: #000000;
}
#mc_embed_signup_scroll i {
  position: absolute;
  top: 0;
  right: 0;
  color: #000000;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
#mc-embedded-subscribe {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 1;
}
