:root {
  --discount_content_height: 700px;
  --discount_items_mb: 40px;
}

#cn {
  --discount_content_height: 730px;
}

/* icon */
.icon_1::before {
  content: '\e92d';
}
.icon_2::before {
  content: '\e92c';
}
.icon_3::before {
  content: '\e930';
}
.icon_4::before {
  content: '\e931';
}
.icon_5::before {
  content: '\e932';
}
.icon_6::before {
  content: '\e933';
}
.icon_7::before {
  content: '\e92b';
}
.icon_8::before {
  content: '\e916';
}
.icon_9::before {
  content: '\e900';
}
/* icon */

/* common */
body {
  cursor: url('../campaign/img/campaign_cursor_style_1.png'), auto;
  background-color: #080808;
  overflow-x: hidden;
}
[class*='icon_'],
[class^='icon_'] {
  margin: 0;
}
.cursor_click_style_1 {
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
}
.title_h2 {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 42px;
  font-weight: 500;
}
.title_h2 span {
  font-size: 80px;
}
.scrollbar_style::-webkit-scrollbar {
  width: 8px;
}
.scrollbar_style::-webkit-scrollbar-thumb {
  background: #212122;
  border-radius: 6px;
}
.man_btn_style1 {
  border-radius: 15px;
  background: url('../campaign/img/campaign_blackfriday_img_22.png') no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.man_btn_style1 p {
  position: relative;
  z-index: 1;
  color: #000;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 500;
}
.man_btn_style1:hover {
  background: url('../campaign/img/campaign_blackfriday_img_23.png') no-repeat;
  background-size: cover;
  background-position: center center;
}
.man_btn_style1 .three-stage-loading {
  display: none;
}
.man_btn_style1.loading .three-stage-loading {
  display: block;
}
.man_btn_style1.loading p {
  display: none;
}
.ckdg_coupon {
  display: none !important;
}
/* common */

/* smooth animation */
.smooth-item {
  will-change: transform, opacity;
}
.smooth-animating {
  transition: transform 480ms cubic-bezier(0.22, 1.24, 0.32, 1), opacity 380ms ease-out;
}
.smooth-enter {
  opacity: 0;
  transform: translateY(-24px);
}
/* smooth animation */

/* switch btn */
.switch {
  --switch_width: 44px;
  --switch_slider_width: 16px;
  --pad: 2px;
  position: relative;
  width: var(--switch_width);
  height: 20px;
  box-sizing: border-box;
  display: block;
}
.switch input {
  display: none;
}
.switch_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #221830, #111016) padding-box,
    linear-gradient(180deg, #ffa47d 23%, #ee3de7 68%, #8e61ff 100%) border-box;
  border-radius: 8px;
  transition: 0.3s;
}
.switch_slider:before {
  position: absolute;
  content: '';
  height: var(--switch_slider_width);
  width: var(--switch_slider_width);
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 7px;
  background: linear-gradient(107deg, #ffa47d 23.66%, #ee3de7 66.12%, #8e61ff 96.67%),
    linear-gradient(90deg, #2c67ff 0%, #9e62ff 100%);
  transition: 0.3s;
}
.switch input:checked + .switch_slider {
  background-color: #4caf50;
}
.switch input:checked + .switch_slider:before {
  transform: translate(
    calc(var(--switch_width) - var(--switch_slider_width) - var(--pad) * 2 - 1.5px),
    -50%
  );
}
/* switch btn */

/* shimmer_btn */
.shimmer_btn {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 1.5px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.shimmer_btn::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -1000%;
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(212, 144, 255, 0) 0%,
    rgba(212, 144, 255, 0) 50%,
    rgba(212, 144, 255, 0.6) 60%,
    rgba(212, 144, 255, 0) 100%
  );
  animation: spin 3.5s linear infinite;
}
.shimmer_inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: white;
  border-radius: 12px;
  background: #1d0d27;
  box-sizing: border-box;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* shimmer_btn */

/* popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 888;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  display: none;
}
.popup_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 90%;
  border-radius: 20px;
  border: 1px solid #212124;
  background: #0f1117;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 32px 0;
}
.popup_header {
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
}
.popup_header_close {
  cursor: pointer;
  color: #7e8c8c;
  font-size: 16px;
}
.popup_header_close:hover {
  color: #fff;
}
.popup_content {
  flex: 1;
  overflow: auto;
  padding: 0 32px;
}
/* popup */

/* loading */
.three-stage-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.three-stage-loading .loading-animation {
  display: flex;
  align-items: center;
  gap: 6px;
}
.three-stage-loading .bar {
  width: 10px;
  height: 8px;
  border-radius: 5px;
}
.three-stage-loading .el1 {
  background-color: #ffa47d;
  animation: el1_a 0.5s ease-in-out 0s, el1_a_b 1.5s ease-in-out 0.5s infinite normal;
}
.three-stage-loading .el2 {
  background-color: #ee3de7;
  animation: el2_a 0.5s ease-in-out 0s, el2_a_b 1.5s ease-in-out 0.5s infinite normal;
}
.three-stage-loading .el3 {
  background-color: #8e61ff;
  animation: el3_a 0.5s ease-in-out 0s, el3_a_b 1.5s ease-in-out 0.5s infinite normal;
}
@keyframes el1_a {
  from {
    width: 8px;
  }
  to {
    width: 33px;
  }
}
@keyframes el2_a {
  from {
    width: 8px;
  }
  to {
    width: 33px;
  }
}
@keyframes el3_a {
  from {
    width: 8px;
  }
  to {
    width: 8px;
  }
}
@keyframes el1_a_b {
  0% {
    width: 33px;
  }
  33% {
    width: 8px;
  }
  66% {
    width: 8px;
  }
  100% {
    width: 33px;
  }
}
@keyframes el2_a_b {
  0% {
    width: 8px;
  }
  33% {
    width: 33px;
  }
  66% {
    width: 8px;
  }
  100% {
    width: 8px;
  }
}
@keyframes el3_a_b {
  0% {
    width: 8px;
  }
  33% {
    width: 8px;
  }
  66% {
    width: 33px;
  }
  100% {
    width: 8px;
  }
}
/* loading */

/* tips msg */
.tips_msg {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  max-width: 320px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-sizing: border-box;
  color: #eee;
  background: #2b2b2b;
  border: 1px solid #444;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  display: none;
}
.tips_msg::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #2b2b2b;
  z-index: 5;
}
.tips_msg::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2b2b2b;
  z-index: 10;
}
/* tips msg */

/* banner */
.banner {
  background: url('../campaign/img/banner_blackfriday_bg.png') no-repeat;
  background-size: auto 100%;
  background-position: bottom center;
  padding: 100px 0 150px 0;
}
body .banner {
  overflow: unset !important;
}
.banner_container {
  max-width: 1360px;
  margin: 0 auto;
  width: 94%;
}
.banner_time {
  margin: 0 auto;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  height: 76px;
  background: url('../campaign/img/campaign_blackfriday_img_1.png') no-repeat;
  background-size: auto 100%;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_time p {
  min-width: 300px;
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.banner h1 {
  background: radial-gradient(63.43% 56.96% at 50% 50%, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Kanit;
  font-size: 60px;
  font-weight: 800;
}
.banner_discounts_container {
  margin: 32px 0;
  position: relative;
}
.banner_discounts_container > img {
  margin: 0 auto;
  display: block;
  object-fit: cover;
}
.banner_discounts_img_light {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeEffect-light 0.2s ease-out 500ms forwards;
}
.banner_discounts_img_dark {
  z-index: 1;
  animation: fadeEffect-dark 0s ease-out 500ms forwards;
}
@keyframes fadeEffect-dark {
  100% {
    opacity: 0;
  }
}
@keyframes fadeEffect-light {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.banner_btns {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.banner_btn_item .des {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}
.banner_light_btn,
.banner_dark_btn {
  min-width: 292px;
  width: fit-content;
  height: 56px;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.banner_light_btn p,
.banner_dark_btn p {
  font-size: 20px;
  font-weight: 600;
  font-family: Kanit;
  position: relative;
  z-index: 1;
}
.banner_light_btn {
  color: #000;
  background: #fff;
  overflow: hidden;
}
.banner_light_btn::before {
  content: '';
  position: absolute;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #ffa1a1;
  filter: blur(30px);
  top: 50%;
  left: 80%;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}
.banner_light_btn:hover,
.banner_dark_btn:hover {
  transform: scale(1.03);
}
.banner_dark_btn:hover .shimmer_btn::before {
  animation-play-state: running;
}
.banner_light_btn:hover::before {
  transform: scale(10);
  left: -4%;
}
.banner_dark_btn {
  color: #fff;
}
.banner_dark_btn .shimmer_inner {
  background-color: #0b0b0f;
}
.banner_dark_btn .shimmer_btn::before {
  background: conic-gradient(
    from 90deg at 50% 50%,
    rgba(255, 161, 161, 0) 0%,
    rgba(255, 161, 161, 0) 50%,
    rgba(255, 161, 161, 1) 60%,
    rgba(255, 161, 161, 0) 100%
  );
  animation-play-state: paused;
}
/* banner */

/* container main 1 */
.container_main_1 {
  background: url('../campaign/img/campaign_container_1_bg.png') no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
/* container main 1 */

/* section 1 */
.section_1 {
  margin: 0 auto;
  width: 94%;
  padding-top: 70px;
}
.section_1_steps {
  margin-top: 73px;
  display: flex;
  justify-content: center;
  gap: 44px;
}
.section_1_steps_item {
  max-width: 370px;
  height: 160px;
  border-radius: 30px 30px 20px 20px;
  background: url('../campaign/img/campaign_section_1_bg.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 0 26px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_1_step_icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: url('../campaign/img/campaign_blackfriday_img_3.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  position: absolute;
  left: 50%;
  top: -33px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 35px;
  font-weight: 500;
}
.section_1_step_desc {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.section_1_step_desc span {
  display: block;
  opacity: 0.8;
  background: linear-gradient(107deg, #ffa47d 8.42%, #ee3de7 66.11%, #8e61ff 96.64%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}
.discount_container {
  margin-top: 60px;
}
/* section 1 */

/* section 2 */
.section_2 {
  margin: 0 auto;
  margin-top: 110px;
  width: 96%;
}
.section_2 .des {
  margin: 0 auto;
  max-width: 1142px;
  width: 94%;
  color: #b2b2b2;
  text-align: center;
  font-family: Kanit;
  font-size: 20px;
  font-weight: 400;
  margin-top: 12px;
}

.discount_date_switch {
  margin: 0 auto;
  max-width: 240px;
  height: 48px;
  border-radius: 87px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.21);
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
.discount_date_switch_tip_img {
  position: absolute;
  left: 90%;
  bottom: 50%;
}
.discount_date_switch p {
  flex: 1;
  color: #e6e6e6;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 58px;
}
.discount_date_switch p:hover {
  color: #fff;
}
.discount_date_switch p.active {
  background: rgba(0, 0, 0, 0.8);
  color: #c28cff;
  font-weight: 600;
}
.discount_box {
  margin: 0 auto;
  max-width: 1360px;
  position: relative;
  height: calc(var(--discount_content_height) / 2.2);
}
.discount_box_content {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.discount_items {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: var(--discount_items_mb);
}
.discount_item {
  max-width: 433px;
  width: 32%;
  height: var(--discount_content_height);
  background: url('../campaign/img/campaign_blackfriday_img_4.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  border-radius: 30px 30px 20px 20px;
  box-sizing: border-box;
  padding: 40px;
}
.discount_item_title {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.discount_item_price_box {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(83, 68, 155, 0.31);
  background: linear-gradient(270deg, rgba(98, 70, 255, 0.03) 6.25%, rgba(166, 70, 255, 0.18) 100%);
  margin-bottom: 18px;
}
.pro_discount_price_type {
  margin: 0 auto;
  background: linear-gradient(107deg, #ffa47d 23.66%, #ee3de7 66.12%, #8e61ff 96.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 12px;
}
.team_solo_change {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}
.team_solo_switch .switch_slider {
  background: linear-gradient(90deg, #221830, #111016) padding-box,
    linear-gradient(
        180deg,
        rgb(255 164 125 / 40%) 23%,
        rgb(238 61 231 / 40%) 68%,
        rgb(142 97 255 / 40%) 100%
      )
      border-box;
}
.team_solo_switch:hover .switch_slider {
  background: linear-gradient(90deg, #221830, #111016) padding-box,
    linear-gradient(180deg, #ffa47d 23%, #ee3de7 68%, #8e61ff 100%) border-box;
}
.team_up_text {
  background: linear-gradient(107deg, #ffa47d 23.66%, #ee3de7 66.12%, #8e61ff 96.67%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 500;
}
.solo_text {
  color: #fff;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 300;
}
.discount_price_box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.discount_now_price {
  position: relative;
}
.discount_now_price P {
  color: #fff;
  text-shadow: 0 0 15px rgba(190, 22, 143, 0.47), 0 0 20px rgba(252, 186, 255, 0.24);
  font-family: Kanit;
  font-size: 34px;
  font-weight: 600;
  line-height: 42px;
}
.discount_now_price i {
  font-size: 12px;
  position: absolute;
  left: calc(100% + 2px);
  top: 0;
  color: rgba(245, 245, 245, 0.3);
  cursor: pointer;
}
.discount_price_type {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
}
.discount_original_price {
  color: rgba(245, 245, 245, 0.4);
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}
.discount_item_price_btn {
  width: 100%;
  height: 56px;
  border-radius: 15px;
  background: url('../campaign/img/campaign_blackfriday_img_24.png') no-repeat;
  background-size: cover;
  cursor: pointer;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#en .discount_item_price_btn {
  margin-bottom: 12px;
}
.discount_item_price_btn p {
  color: #000;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 500;
}
.discount_item_price_btn:hover {
  background: url('../campaign/img/campaign_blackfriday_img_25.png') no-repeat;
  background-size: cover;
}
.team_up_tips {
  margin: 0 auto;
  width: fit-content;
  color: #b2b2b2;
  text-align: center;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
.team_up_tips[data-type='join'] {
  cursor: pointer;
  text-decoration: underline;
}
.discount_item_price_tips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.discount_item_price_tips .line_left {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 195, 152, 0), #ffc398);
}
.discount_item_price_tips .line_right {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #ffc398, rgba(255, 195, 152, 0));
}
.discount_item_price_tips > p {
  color: #ffc0a3;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 700;
}
.discount_item_desc {
  color: #b2b2b2;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.discount_item_list li {
  color: #b2b2b2;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.discount_item_list li p {
  position: relative;
}
.discount_item_list li .tips {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: calc(100% + 4px);
}
.discount_item_list li.style1 p,
.discount_item_list li.style1 i {
  background: linear-gradient(90deg, #ffa47d 0%, #ee3de7 60%, #9e62ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.discount_item_desc2 {
  color: #ffc0a3;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  padding: 12px;
  background: url('../campaign/img/campaign_blackfriday_img_5.png') no-repeat;
  background-size: cover;
}
.discount_item_desc3 {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}
.discount_box_btn {
  margin: 0 auto;
  width: fit-content;
  color: #c2c2c2;
  font-family: Kanit;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.discount_box_btn i {
  font-size: 16px;
  transition: all 0.2s ease-in-out;
  margin-top: 2px;
}
.discount_box_btn:hover {
  color: #fff;
}
.discount_box_btn:hover i {
  transform: translateX(10px);
}
/* section 2 */

/* container main 2 */
.container_main_2 {
  padding-top: calc(var(--discount_content_height) / 1.8 + var(--discount_items_mb) + 30px);
  background: linear-gradient(
    180deg,
    rgba(33, 11, 46, 0) 0%,
    #0d061a 27.85%,
    #0f0d0d 84.92%,
    rgba(15, 13, 13, 0) 100%
  );
}
/* container main 2 */

/* section 3 */
.section_3 {
  margin: 0 auto;
  max-width: 1360px;
  width: 94%;
  border-radius: 30px;
  border: 1px solid #231f34;
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(2.558119058609009px);
  margin-top: 100px;
  position: relative;
  box-sizing: border-box;
  padding: 60px 10px 40px 10px;
}
.section_3_search {
  margin: 40px auto;
  max-width: 800px;
  height: 68px;
  width: 90%;
  position: relative;
}
.section_3_search input {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  padding: 0 68px 0 32px;
  box-sizing: border-box;
  background: #000;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b2b2b2;
  font-family: Kanit;
  font-size: 20px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.search_btn {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
.search_btn .loading_box {
  display: none;
}
.search_btn.loading .loading_box {
  display: block;
}
.search_btn.loading i {
  display: none;
}
.search_btn i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #b2b2b2;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.section_3_search:hover input {
  border-color: #c28cff;
}
.search_btn i:hover {
  background-color: rgba(194, 140, 255, 0.2);
  color: #c28cff;
}
.section_3_search input:focus {
  border-color: #c28cff;
}
.section_3_groups_list {
  height: 490px;
  overflow: auto;
  padding: 0 20px;
}
.section_3_groups_list_mask {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  height: 32px;
  background: rgba(10, 10, 11, 0.4);
  filter: blur(4px);
}
.section_3_groups_list_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 620px));
  justify-content: center;
  gap: 20px;
}
.section_3_groups_loading {
  margin-top: 10px;
  text-align: center;
  display: none;
}
.section_3_groups_list_item {
  padding: 20px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #18181b;
  background: radial-gradient(
      21.21% 101.23% at 2.66% 0%,
      rgba(255, 204, 250, 0.12) 0%,
      rgba(255, 161, 161, 0) 100%
    ),
    #151217;
}
.groups_item_user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.groups_user_img_box {
  cursor: pointer;
}
.groups_user_img,
.groups_user_hover_img {
  display: block;
}
.groups_user_hover_img {
  display: none;
  cursor: pointer;
}
.groups_user_img_box:hover .groups_user_img {
  display: none;
}
.groups_user_img_box:hover .groups_user_hover_img {
  display: block;
}
.groups_item_user p {
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 300;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.groups_item_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.groups_item_time_title {
  color: #8f8f8f;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 12px;
}
.groups_item_time_title span {
  color: #ff8b5a;
  font-weight: 500;
}
.groups_item_time_box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.groups_item_time_box .text1 {
  color: #8f8f8f;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
}
.groups_count_down_time {
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.groups_item_join_btn {
  position: relative;
  min-width: 194px;
  width: fit-content;
  padding: 0 18px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  cursor: pointer;
  background: url('../campaign/img/campaign_blackfriday_img_40.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.groups_item_join_btn .shimmer_btn {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.groups_item_join_btn .shimmer_btn::before {
  animation-play-state: paused;
}
.groups_item_join_btn:hover {
  background: url('../campaign/img/campaign_blackfriday_img_41.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.groups_item_join_btn:hover .shimmer_btn::before {
  animation-play-state: running;
}
.groups_item_join_btn > P {
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.groups_item_join_btn:hover > p {
  color: #c28cff;
}
.groups_item_join_btn_tips {
  width: 108px;
  height: 36px;
  position: absolute;
  left: 55%;
  bottom: 50%;
}
.groups_item_join_btn_tips img {
  width: 100%;
  height: 100%;
  display: block;
}
.groups_item_join_btn_tips span {
  color: #fff;
  font-family: Kanit;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 2px;
  transform: translateX(-50%);
}
.group_search_tips {
  margin: 0 auto;
  border-radius: 10px;
  border: 1.5px dashed #313131;
  background: #1f1f1f;
  width: fit-content;
  height: 44px;
  padding: 0 32px;
  margin-bottom: 20px;
  box-sizing: border-box;
  display: none;
}
.group_search_tips p {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
}
.search_result {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
  height: 150px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  position: relative;
}
.search_result .shimmer_btn {
  padding: 2px;
  border-radius: 20px;
}
.search_result .shimmer_inner {
  background: radial-gradient(
      21.21% 101.23% at 2.66% 0%,
      rgba(255, 204, 250, 0.12) 0%,
      rgba(255, 161, 161, 0) 100%
    ),
    #151217;
  border-radius: 20px;
}
.search_result .shimmer_btn::before {
  animation-iteration-count: 1;
}
.search_result_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
}
.search_result_left {
  flex: 1;
  position: relative;
  z-index: 1;
}
.search_result_right {
  position: relative;
  z-index: 1;
}
.search_result_user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search_result_user .user_name {
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 300;
  word-break: break-all;
}
.search_result_progress {
  max-width: 650px;
  width: 63%;
  margin: 12px 0;
}
/* --- join --- */
.search_join_progress {
  display: none;
}
.search_join_tips {
  display: none;
}
.search_result_join_btn {
  width: 180px;
  height: 48px;
  display: none;
}
/* --- success --- */
.search_success_progress,
.search_expired_progress {
  display: none;
  align-items: center;
  gap: 10px;
}
.search_success_progress > p,
.search_expired_progress p {
  color: #8f8f8f;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
}
.search_success_progress > span,
.search_expired_progress span {
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
}
.progress_container {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: #252029;
  overflow: hidden;
}
.progress_container div {
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: #d490ff;
}
.search_success_tips,
.search_expired_tips {
  display: none;
  align-items: center;
  gap: 12px;
}
.search_success_tips p,
.search_expired_tips p {
  color: #fff;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
}
.search_result_success_btn {
  border: 1px solid rgba(83, 68, 155, 0);
  background: linear-gradient(
    274deg,
    rgba(101, 70, 255, 0) 0%,
    rgba(101, 70, 255, 0.6) 52.45%,
    rgba(101, 70, 255, 0) 93.12%
  );
  backdrop-filter: blur(1px);
  width: 180px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #bbadff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}
/* --- expired --- */
.groups_result_expired .user_name {
  color: #8f8f8f;
}
.search_expired_progress .progress_container div {
  background: #4a4a4a;
}
.search_expired_progress .progress_container_num {
  color: #8f8f8f;
}
.search_result_expired_btn {
  border: 1px solid rgba(64, 64, 64, 0);
  background: linear-gradient(
    274deg,
    rgba(64, 64, 64, 0) 2.17%,
    rgba(186, 186, 186, 0.6) 54.44%,
    rgba(64, 64, 64, 0) 94.98%
  );
  backdrop-filter: blur(1px);
  width: 180px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #e2e2e2;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
}
.groups_result_join .search_join_progress {
  display: block;
}
.groups_result_join .search_join_tips,
.groups_result_join .search_result_join_btn {
  display: flex;
}
.groups_result_success .search_success_progress,
.groups_result_success .search_success_tips,
.groups_result_success .search_result_success_btn {
  display: flex;
}
.groups_result_expired .search_expired_progress,
.groups_result_expired .search_expired_tips,
.groups_result_expired .search_result_expired_btn {
  display: flex;
}
/* section 3 */

/* section 4 */
.section_4 {
  margin: 0 auto;
  max-width: 1360px;
  width: 96%;
  margin-top: 120px;
}
.section_4_list {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.section_4_list_item {
  width: 100%;
  border-radius: 30px;
  position: relative;
  padding: 0.64rem 0.4rem;
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}
.section_4_list_item.max_width_1 {
  max-width: 32.3%;
}
.section_4_list_item.max_width_2 {
  max-width: 49.2%;
}
.style_1 {
  border: 1px solid #6a70f9;
  background: linear-gradient(180deg, rgba(106, 112, 249, 0.08) 0%, rgba(90, 95, 227, 0.08) 100%);
}
.style_2 {
  border: 1px solid #663ebb;
  background: linear-gradient(180deg, rgba(102, 62, 187, 0.08) 0%, rgba(85, 44, 173, 0.08) 100%);
}
.style_3 {
  border: 1px solid #2765dc;
  background: linear-gradient(180deg, rgba(39, 101, 220, 0.08) 0%, rgba(26, 86, 202, 0.08) 100%);
}
.section_4_list_item .cont_text {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.24rem;
}
.section_4_list_item .cont_text h3 {
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.section_4_list_item .cont_text p {
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.section_4_list_item .cont_hover_text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  box-sizing: border-box;
  padding: 0 0.4rem;
}
.section_4_list_item .cont_hover_text h3 {
  width: 100%;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.section_4_list_item .cont_hover_text p {
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.section_4_list_item:hover .cont_text {
  transform: translateY(-100%);
  opacity: 0;
}
.section_4_list_item:hover .cont_hover_text {
  transform: translateY(0);
  opacity: 1;
}
/* section 4 */

/* section 5 */
.section_5 {
  margin: 0 auto;
  max-width: 1360px;
  width: 96%;
  margin-top: 120px;
}
.faq_container {
  margin-top: 60px;
  margin-bottom: 140px;
}
.faq_item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(28, 28, 28, 0.4);
  box-sizing: border-box;
  padding: 24px 20px;
  cursor: pointer;
  margin-bottom: 24px;
}
.faq_item:last-child {
  margin-bottom: 0;
}
.faq_item.active .faq_q h4 i {
  background: rgba(194, 140, 255, 0.12);
  color: #c28cff;
}
.faq_item.active {
  border-color: #c28cff;
}
.faq_item:hover {
  border-color: #c28cff;
}
.faq_item:hover h4 i {
  background: rgba(194, 140, 255, 0.4);
  color: #c28cff;
}
.faq_q h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faq_q h4 p {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 20px;
  font-weight: 600;
}
.faq_q h4 i {
  margin: 0;
  color: rgba(164, 164, 164, 1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  flex-shrink: 0;
}
.faq_a {
  color: #b2b2b2;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
}
/* section 5 */

/* container main footer */
.container_main_footer {
  background: url('../campaign/img/campaign_blackfriday_img_14.png') no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding: 0.8rem 0 1.2rem 0;
}
.main_footer_cont {
  margin: 0 auto;
  max-width: 948px;
}
.container_main_footer_logo {
  margin: 0 auto;
  width: 178px;
  height: 178px;
  position: relative;
  margin-bottom: 46px;
}
.container_main_footer_logo img {
  width: 100%;
  height: 100%;
  display: block;
}
.container_main_footer_logo .logo_mask {
  position: absolute;
  top: 96%;
  left: 0;
}
.main_footer_title {
  margin: 0 auto;
  width: 94%;
  text-align: center;
}
.main_footer_title span {
  color: #e6e6e6;
  opacity: 0.6;
  font-family: 'Poltawski Nowy';
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}
.main_footer_title p {
  color: #e6e6e6;
  font-family: Kanit;
  font-size: 36px;
  font-weight: 600;
  margin-top: 10px;
}
.main_footer_btn {
  margin: 0 auto;
  max-width: 460px;
  min-width: fit-content;
  width: 60%;
  padding: 0 20px;
  height: 60px;
  border-radius: 15px;
  opacity: 0.7;
  border-radius: 15px;
  background: linear-gradient(180deg, #4a4a4a 0%, #2a2d38 118.55%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: Kanit;
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  box-sizing: border-box;
}
.main_footer_btn i {
  font-weight: 400;
  transform: rotate(180deg);
}
.main_footer_btn:hover {
  opacity: 1;
}
/* container main footer */

/* groupSuccess */
#groupSuccess .popup_container {
  max-width: 620px;
}
.popup_content_success h2 {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
.popup_content_success ul {
  margin-top: 24px;
  list-style-type: disc;
  padding-left: 16px;
}
.popup_content_success ul li {
  color: #b2b2b2;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 300;
}
.group_success_copy_link {
  width: 160px;
  height: 48px;
}
/* groupSuccess */

/* comparePlans */
#comparePlans .popup_container {
  max-width: 1360px;
  background: url('../campaign/img/campaign_blackfriday_img_19.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  border: none;
}
.popup_content_compare h2 {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: Kanit;
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 60px;
}
.sec3 {
  padding: 2rem 0 0;
  margin-top: -1.1rem;
  position: relative;
}
.sec3::after {
  content: '';
  display: block;
  background: url('../img/pricing-sec3-bgimg.png') no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  transition: all 1s ease-in-out;
}
.sec3_bg_show::after {
  opacity: 1;
}
.compare-box {
  max-width: 1400px;
  width: 96%;
  margin: 0.7rem auto 0;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
  background: url(../img/pricing-table-bgimg.png) top center no-repeat;
  background-size: 100% 100%;
  border-radius: 0.4rem;
}
.compare-table {
  width: 100%;
  min-width: 700px;
  position: relative;
}
.compare-table .bgcolor1 {
  position: absolute;
  left: calc((var(--col) - 0) * (100% / var(--cols)) - 1%);
  border-radius: 0.3rem 0.3rem 0 0;
  background: linear-gradient(
    189deg,
    rgba(255, 255, 255, 0.1) 7.76%,
    rgba(255, 255, 255, 0) 94.22%
  );
  backdrop-filter: blur(2px);
  width: 26%;
  z-index: 0;
  height: 100%;
  top: -1px;
}
.compare-table .bgcolor2 {
  position: absolute;
  left: calc((var(--col) - 2) * (100% / var(--cols)) - 6%);
  border-radius: 0.3rem 0.3rem 0 0;
  background: linear-gradient(
    189deg,
    rgba(255, 255, 255, 0.1) 7.76%,
    rgba(255, 255, 255, 0) 94.22%
  );
  backdrop-filter: blur(2px);
  width: 26%;
  z-index: 0;
  height: 100%;
  top: -1px;
}
.compare-table .bgcolor3 {
  position: absolute;
  left: calc((var(--col) - 1) * (100% / var(--cols)) - 3.5%);
  border-radius: 0.3rem 0.3rem 0 0;
  background: linear-gradient(
    13deg,
    rgba(158, 98, 255, 0.05) 12.2%,
    rgba(70, 0, 183, 0.6) 63.61%,
    rgba(158, 98, 255, 0.6) 99.45%
  );
  backdrop-filter: blur(2px);
  width: 26%;
  z-index: 0;
  height: 100%;
  top: -1px;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
}
.table1 td.border-line {
  border-radius: 0.2rem 0.2rem 0 0;
  padding: 0.3rem 0;
}
.table2 table {
  max-width: 100%;
  width: 100%;
}
.table2 td.border-line.border-bottom {
  border-radius: 0 0 0.2rem 0.2rem;
}
.table-plan {
  color: #e6e6e6;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
}
.thead-box button {
  display: none;
}
.table-price {
  background: linear-gradient(180deg, #ffdaaf 0%, #ffad4c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 400;
  margin-top: 0.12rem;
}
.table-price span {
  background: linear-gradient(180deg, #ffdaaf 0%, #ffad4c 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.table2 table tr td:last-child {
  border-right: 1px solid #34343d;
}
.table1 {
  border-radius: 0.3rem 0.3rem 0 0;
  border: 1px solid #34343d;
  border-bottom: none;
}
.table1.sticky {
  position: sticky;
  top: 0px;
  z-index: 2;
  background: #111;
  border-radius: unset;
}
.table2 td {
  padding: 0.12rem 0.16rem;
  border-top: 1px solid #34343d;
  color: #e6e6e6;
  text-align: center;
}
.table2 td.clb3 {
  border-right: 1px solid #34343d;
  border-bottom: none;
  color: #b3b3b3;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.table2 td.clb3 .icon_3 {
  cursor: pointer;
}
.thead-title {
  border: 1px solid #34343d;
  position: relative;
  z-index: 0;
}
.table2 table:first-child .thead-title td {
  border-top: none;
}
.table2 table .thead-title td {
  position: relative;
  text-align: left;
}
.table2 table .thead-title td:first-child::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #111;
}
.thead-title td {
  padding: 0.12rem 0.16rem;
  color: #b3b3b3;
}
.thead-title td.border-line {
  border-bottom: none;
}
.toggle-down {
  cursor: pointer;
  color: #000;
  font-weight: 600;
}
.table2 td.toggle-down:hover {
  color: #fff;
}
.toggle-down::before {
  display: inline-block;
  content: '\e90f';
  transform: rotateZ(90deg);
  margin-right: 0.1rem;
  font-size: 12px;
  font-family: 'iconfont';
}
.special-font {
  background: linear-gradient(-45deg, #009dff, #a100ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.thead-title td.special-font {
  border-right: 1px solid #34343d;
}
.special-font svg {
  display: inline-block;
  margin-top: -0.2rem;
}
.ishide .toggle-down::before {
  transform: rotateZ(-90deg);
}
.table-last {
  border-radius: 0 0 0.2rem 0.2rem;
}
.table2:last-child {
  border: 1px solid #34343d;
  border-radius: 0 0 0.2rem 0.2rem;
  border-right: none;
}
.table2 .table-last {
  border: 1px solid #34343d;
}
.table2 .table-last tr td:last-child {
  border-right: none;
}
/* comparePlans */

/* inviteGroup */
#inviteGroup .popup_container {
  max-width: 1280px;
  background: #14171f;
}
.popup_content_invite h2 {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 24px;
}
.popup_content_invite .des {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}
#inviteGroup .discount_item {
  flex: 1;
  height: auto;
}
#inviteGroup .discount_item:nth-child(1),
#inviteGroup .discount_item:nth-child(3) {
  background: #10131a;
  box-shadow: 0 0 12px 0 #503a66 inset;
}
#inviteGroup .discount_item:nth-child(2) {
  background: url('../campaign/img/campaign_blackfriday_img_39.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
#inviteGroup .discount_item_price_box {
  width: 100%;
  background: none;
  padding: 0;
  border: none;
}
.popup_content_invite .discount_items {
  gap: 20px;
}
/* inviteGroup */

/* inputEmail */
#inputEmail .popup_container {
  max-width: 464px;
}
.popup_content_email img {
  margin: 0 auto;
  display: block;
}
.popup_content_email h2 {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: Kanit;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}
.popup_content_email .des {
  max-width: 352px;
  width: 100%;
  margin: 0 auto;
  color: #aaa;
  text-align: center;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
}
.popup_email_input_box {
  position: relative;
  margin-bottom: 35px;
}
.popup_content_email input {
  width: 100%;
  height: 55px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  padding: 0 32px;
  box-sizing: border-box;
  color: #fff;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 400;
}
.popup_content_email input:hover,
.popup_content_email input:focus {
  border-color: #c28cff;
}
.popup_email_input_box .error_tips {
  position: absolute;
  top: 100%;
  left: 0;
  color: #ff6056;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  display: none;
}
.popup_email_input_box.error .error_tips {
  display: block;
}
.popup_email_input_box.error input {
  border-color: #ff6056;
}
.popup_content_email input::placeholder {
  color: #999;
}
.input_email_btn {
  width: 100%;
  height: 48px;
}
/* inputEmail */

/* groupExpired */
#groupExpired .popup_container {
  max-width: 564px;
}
.popup_content_expired img {
  display: block;
  margin: 0 auto;
}
.popup_content_expired h2 {
  color: #e6e6e6;
  text-align: center;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.popup_content_expired .des {
  color: #b2b2b2;
  text-align: center;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 32px;
}
.popup_content_expired_btn {
  margin: 0 auto;
  max-width: 364px;
  height: 48px;
  margin-bottom: 24px;
}
.popup_content_expired_create {
  margin: 0 auto;
  color: #c2c2c2;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 600;
  width: fit-content;
  cursor: pointer;
}
/* groupExpired */

/* buySuccess */
#buySuccess .popup_container {
  max-width: 444px;
}
.popup_content_buy_success img {
  display: block;
  margin: 0 auto;
}
.popup_content_buy_success h2 {
  color: #e6e6e6;
  text-align: center;
  font-family: Kanit;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.popup_content_buy_success .des {
  color: #b2b2b2;
  text-align: center;
  font-family: Kanit;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 32px;
}
.popup_content_buy_success_btn {
  margin: 0 auto;
  max-width: 244px;
  height: 48px;
}
/* buySuccess */

/* share box */
.share_box {
  position: fixed;
  bottom: 14%;
  right: 30px;
  width: 100px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #23293d;
  box-shadow: 0 0 24px 10px rgba(54, 55, 98, 0.25);
  backdrop-filter: blur(14.600000381469727px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 200;
}
.share_box a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.share_box a img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.share_box a .img2 {
  display: none;
}
.share_box a:hover .img1 {
  display: none;
}
.share_box a:hover .img2 {
  display: block;
}
/* share box */

/* teamUpConfirm */
#teamUpConfirm .popup_container {
  max-width: 510px;
}
.popup_content_team_up h2 {
  color: #fff;
  text-align: center;
  font-family: Kanit;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}
.team_up_confirm_box {
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid #18181b;
  background: radial-gradient(
      21.21% 101.23% at 2.66% 0%,
      rgba(255, 204, 250, 0.12) 0%,
      rgba(255, 161, 161, 0) 100%
    ),
    #1c171f;
}
.team_up_confirm_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.team_up_confirm_header p {
  background: linear-gradient(202deg, #d96795 7.52%, #7e01eb 77.97%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team_up_confirm_list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 22px;
}
.team_up_confirm_list li {
  color: #f5f5f5;
  font-family: Kanit;
  font-size: 16px;
  font-weight: 300;
}
.team_up_confirm_list li.style1 {
  font-weight: 500;
}
.team_up_confirm_btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_up_confirm_btns > div {
  height: 48px;
}
.team_up_confirm_solo {
  width: 100%;
  box-sizing: border-box;
}
.team_up_confirm_solo.groups_item_join_btn {
  background: url('../campaign/img/campaign_blackfriday_img_43.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
.team_up_confirm_solo.groups_item_join_btn:hover {
  background: url('../campaign/img/campaign_blackfriday_img_44.png') no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}
/* teamUpConfirm */

@media screen and (max-width: 1400px) {
  .section_4_list_item.max_width_2 {
    max-width: 49%;
  }
  .section_4_list_item.max_width_1 {
    max-width: 32%;
  }
  .discount_item {
    padding: 40px 20px;
  }
  .discount_items {
    gap: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .section_3_groups_list_box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section_3_groups_list_item {
    width: 100%;
  }
}

@media screen and (max-width: 1060px) {
  .section_4_list {
    justify-content: center;
  }
  .section_4_list_item.max_width_2,
  .section_4_list_item.max_width_1 {
    max-width: 6.2rem;
  }
  .discount_items {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 980px) {
  .banner_time img {
    display: none;
  }
  .discount_items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  .discount_item {
    width: 100%;
    height: auto;
  }
  .container_main_1 {
    background: none;
  }
  .discount_box_content {
    position: relative;
  }
  .discount_box {
    height: auto;
  }
  .container_main_2 {
    padding-top: 50px;
  }
  .section_1_steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .banner {
    padding: 60px 0;
  }
  .banner_time p {
    font-size: 20px;
  }
  .banner h1 {
    font-size: 40px;
  }
  .banner_light_btn p,
  .banner_dark_btn p {
    font-size: 18px;
  }
  .title_h2 {
    font-size: 28px;
  }
  .title_h2 span {
    font-size: 48px;
  }
  .section_1 {
    padding-top: 30px;
  }
  .section_2 {
    margin-top: 60px;
  }
  .discount_container {
    margin-top: 40px;
  }
  .discount_date_switch {
    margin-bottom: 30px;
  }
  .section_3 {
    margin-top: 10px;
  }
  .section_4,
  .section_5 {
    margin-top: 60px;
  }
  .section_4_list {
    margin-top: 40px;
  }
  .faq_container {
    margin-top: 40px;
    margin-bottom: 100px;
  }
  .container_main_footer_logo {
    width: 130px;
    height: 130px;
  }
  .section_3_search input {
    font-size: 14px;
  }
  .banner_discounts_container > img {
    width: 80%;
  }
}

@media screen and (max-width: 780px) {
  .banner_btns {
    flex-direction: column;
    align-items: center;
  }
  .search_result {
    height: auto;
  }
  .search_result_box {
    flex-direction: column;
  }
  .search_result_progress {
    width: 100%;
    text-align: center;
  }
  .groups_item_time_box {
    justify-content: center;
  }
  .section_3 {
    width: 100%;
    border: none;
  }
  .banner {
    background: url('../campaign/img/banner_blackfriday_bg_mo.png') no-repeat;
    background-size: 100% auto;
    background-position: top center;
    padding-top: 70px;
  }
  .banner h1 .text1 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .banner h1 .text2 {
    font-size: 25px;
  }
  .share_box {
    padding: 14px;
    width: auto;
    right: 10px;
  }
  .share_box a {
    width: 30px;
    height: 30px;
  }
  .banner_discounts_container > img {
    width: 100%;
  }
  .discount_date_switch_tip_img {
    display: none;
  }
}

@media screen and (max-width: 580px) {
  .groups_item_user {
    justify-content: center;
  }
  .groups_item_info {
    flex-direction: column;
    gap: 20px;
  }
  .banner {
    padding-bottom: 0px;
  }
  .banner h1 {
    font-size: 30px;
  }
  .banner_time {
    margin-bottom: 13px;
    max-height: 40px;
  }
  .banner_time p {
    font-size: 14px;
  }
  .banner_light_btn p,
  .banner_dark_btn p {
    font-size: 14px;
  }
  .title_h2 {
    font-size: 20px;
  }
  .section_1_steps {
    margin-top: 50px;
  }
  .section_1_step_desc {
    font-size: 14px;
  }
  .section_4_list_item .cont_text h3,
  .section_4_list_item .cont_hover_text h3 {
    font-size: 16px;
  }
  .section_4_list_item .cont_hover_text p {
    font-size: 14px;
  }
  .faq_q h4 p {
    font-size: 16px;
  }
  .faq_a {
    font-size: 14px;
  }
  .container_main_footer_logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  .main_footer_title span {
    font-size: 15px;
  }
  .main_footer_title p {
    font-size: 20px;
  }
  .main_footer_btn {
    font-size: 14px;
    margin-top: 20px;
  }
  .discount_now_price P {
    font-size: 20px;
    line-height: 30px;
  }
  .discount_price_type {
    font-size: 14px;
  }
  .discount_price_box {
    gap: 6px;
  }
  .discount_original_price {
    font-size: 14px;
  }
  .discount_item_price_tips > p {
    font-size: 14px;
  }
  .groups_item_time_title {
    text-align: center;
  }
  .popup_content {
    padding: 0 16px;
  }
  .faq_container {
    margin-bottom: 40px;
  }
}
