@font-face {
  font-family: "Made Regular";
  src: url("../fonts/Made-Tommy_regular.woff") format("woff"),
    url("../fonts/Made-Tommy_regular.woff2") format("woff2");
}
@font-face {
  font-family: "Made Medium";
  src: url("../fonts/Made-Tommy_medium.woff") format("woff"),
    url("../fonts/Made-Tommy_medium.woff2") format("woff2");
}
@font-face {
  font-family: "Made Bold";
  src: url("../fonts/Made-Tommy_bold.woff") format("woff"),
    url("../fonts/Made-Tommy_bold.woff2") format("woff2");
}
@font-face {
  font-family: "Made Extra";
  src: url("../fonts/Made-Tommy_extrabold.woff") format("woff"),
    url("../fonts/Made-Tommy_extrabold.woff2") format("woff2");
}

html {
  font-size: 1vw;
}

:root {
  --mainblue: #2fc3e5;
  --mainyellow: #fbd406;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

body {
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #000000;
  overflow-x: hidden;
  background: #ffffff;
}

textarea,
input {
  font-family: "Poppins", sans-serif;
}

textarea {
  height: 150px;
  resize: none;
  line-height: 1.5;
}

select {
  font-family: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.3rem;
  font-weight: 500;
}

p {
  font-size: min(1rem, 16px);
  line-height: 1.5;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.defaultbutton {
  background: #000000;
  border-radius: 40px;
  padding: 0.75rem 1.5rem;
  color: #ffffff;
  transition: all ease 0.3s;
  border: none;
  font-size: min(1rem, 16px);
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.defaultbutton.yellow {
  background: var(--mainyellow);
  color: #000000;
}

.content-row {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

.content-row .rowcover {
  padding: 3.75rem 0;
  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
}

.header_new {
  background: #1e1e1e;

  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  box-shadow: 0rem 0.0625rem 0.625rem 0rem rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 0rem 0.0625rem 0.625rem 0rem rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 0rem 0.0625rem 0.625rem 0rem rgba(0, 0, 0, 0.37);
}

.header_new .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.875rem;
}

.header_new .rowcover .logo {
  padding-right: 20px;
}

.header_new .rowcover .logo a {
  color: #ffffff;
  font-family: "Made Extra";
  font-size: 2rem;
  transition: all ease 0.3s;
}

.header_new .rowcover .logo a:hover {
  color: var(--mainyellow);
  transition: all ease 0.3s;
}

.header_new .rowcover .navbar {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header_new .rowcover .navbar .links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header_new .rowcover .navbar a {
  color: #ffffff;
  font-weight: 600;
  transition: all ease 0.3s;
  font-size: min(1.2rem, 16px);
}

.header_new .rowcover .navbar a.mobileonly {
  display: none;
}

.header_new .rowcover .navbar a:hover {
  color: #79caf3;
  transition: all ease 0.3s;
}

.header_new .rowcover .actionbar {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  margin-right: 0;
}

.header_new .rowcover .actionbar .language {
  position: relative;
  font-weight: 600;
}

.header_new .rowcover .actionbar .language .current {
  color: #ffffff;
  cursor: pointer;
  font-size: min(1.2rem, 16px);
}

.header_new .rowcover .actionbar .language .dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 2rem);
  border-radius: 0.4375rem;
  display: none;
  flex-direction: column;
  padding: 0.625rem 0.625rem;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(3.8499999046325684px);
}

.header_new .rowcover .actionbar .language .dropdown.show {
  display: flex;
}

.header_new .rowcover .actionbar .language .dropdown .item {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  cursor: pointer;
  border-radius: 6px;

  padding: 0.8rem 1rem;
}

.header_new .rowcover .actionbar .language .dropdown .item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.header_new .rowcover .actionbar .buynow {
  background: #2fc3e5;
  border-radius: 6px;
  text-align: center;
  padding: 0.625rem 1.25rem;
  color: #ffffff;
  justify-content: center;
  font-weight: 600;
}

.header_new .rowcover .actionbar .buynow:hover {
  color: #ffffff;
}

.header_new .rowcover .actionbar .login,
.header_new .rowcover .actionbar .cart {
  color: #ffffff;
  position: relative;
}

.header_new .rowcover .actionbar .cart .in-cart {
  position: absolute;
  right: -0.375rem;
  top: -0.375rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 100%;
  background: red;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.625rem;
}

.header_new .rowcover .actionbar a p {
  display: none;
}

.footer_new {
  background: #1e1e1e;

  color: #ffffff;
  line-height: 1.5;
  position: relative;
  z-index: 10;
}

.footer_new .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3.125rem 0rem;
}

.footer_new .rowcover .upperpart {
  padding-bottom: 3.125rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
}

.footer_new .rowcover .upperpart .left {
  width: calc(100% - 25rem);
  font-size: min(1rem, 16px);
  line-height: 3ch;
}

.footer_new .rowcover .upperpart .right {
  width: 21.25rem;
}

.footer_new .rowcover .upperpart .right .newsletter .text {
  font-size: min(1.25rem, 18px);
  font-weight: 600;
  padding-bottom: 0.625rem;
}

.footer_new .rowcover .upperpart .right .newsletter .input {
  display: block;
  position: relative;
  width: 100%;
  height: 2.5rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  padding: 0rem 8.375rem 0rem 2.75rem;
}
.footer_new .rowcover .upperpart .right .newsletter .input > i {
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
  top: calc(50% - 0.75rem);
  left: 0.625rem;
  color: #234354;
}
.footer_new .rowcover .upperpart .right .newsletter .input > a {
  display: block;
  position: absolute;
  width: 7.5rem;
  height: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 2rem;
  text-align: center;
  top: 0.25rem;
  right: 0.25rem;
  background: #2fc3e5;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0rem 1.125rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.footer_new .rowcover .upperpart .right .newsletter .input input {
  display: block;
  position: relative;
  height: 2.5rem;
  line-height: 2.5rem;
  border: none;
  background: rgba(0, 0, 0, 0);
  margin: 0rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0rem;
  font-size: 0.875rem;
}

.footer_new .rowcover .lowerpart {
  padding-top: 3.125rem;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer_new .rowcover .lowerpart .company {
  width: min(21.875rem, 350px);
  font-size: 0.875rem;
}

.footer_new .rowcover .lowerpart .company > div {
  font-weight: 600;
  font-size: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer_new .rowcover .lowerpart .company ul li {
  display: flex;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer_new .rowcover .lowerpart .company .socials-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer_new .rowcover .lowerpart .company .socials-link a {
  color: #ffffff;
  max-width: 2.25rem;
  max-height: 2.25rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.footer_new .rowcover .lowerpart .company .socials-link a img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.footer_new .rowcover .lowerpart .directory {
  /* width: calc(100% - 31.25rem); */
  flex: 1;
}

.footer_new .rowcover .lowerpart .directory .directorycover {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  justify-content: space-between;
  row-gap: 1.875rem;
}

.footer_new .rowcover .lowerpart .directory .directorycover .box > div {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 1.25rem;
}

.footer_new .rowcover .lowerpart .directory .directorycover .box span {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer_new .rowcover .lowerpart .directory .directorycover .box span a {
  font-size: min(1rem, 16px);
  color: #969696;
}

.footer_new .rowcover .lowerpart .directory .directorycover .box span a:hover {
  color: #2fc3e5;
}

.newhome-topbanner {
  width: 100%;
  position: relative;
  background: #2fc3e5;
  background: linear-gradient(
    90deg,
    rgba(47, 195, 229, 1) 0%,
    rgba(251, 212, 6, 1) 100%
  );
}

.newhome-topbanner .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 32.375rem;
  color: #ffffff;
  z-index: 3;
}

.newhome-topbanner .rowcover .text {
  position: relative;
  z-index: 3;
}

.newhome-topbanner .rowcover .text h1 {
  font-weight: 800;
  padding-bottom: 1.25rem;
  display: block;
  text-transform: uppercase;
  line-height: 1.3;
}

.newhome-topbanner .rowcover .text p {
  font-size: 1.875rem;
  font-weight: 500;
}

.newhome-topbanner .rowcover .bgimage {
  position: absolute;
  right: 0;
  width: 43.75rem;
  z-index: 2;
  transition: all ease 0.3s;
}

.newhome-topbanner .rowcover .bgimage.hide {
  opacity: 0.5;
  transition: all ease 0.3s;
}

.newhome-topbanner .rowcover .bgimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newhome-topbanner .rowcover .randombg {
  position: absolute;
  width: 1.875rem;
}

.newhome-topbanner .rowcover .randombg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newhome-topbanner .rowcover .randombg.c1 {
  top: 1.875rem;
  left: 1.25rem;
}

.newhome-topbanner .rowcover .randombg.c2 {
  bottom: 3.125rem;
  left: 25rem;
}

.newhome-topbanner .rowcover .randombg.c3 {
  right: 3.125rem;
  top: 4.375rem;
}

.newhome-topbanner .rowcover .randombg.p1 {
  bottom: 5rem;
  left: 7.5rem;
}

.newhome-topbanner .rowcover .randombg.p2 {
  top: 5rem;
  left: 21.875rem;
}

.newhome-topbanner .rowcover .videocover {
  position: absolute;
  width: 15.625rem;
  bottom: 6.25rem;
  right: 0;
  z-index: 5;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: all ease 0.3s;
}

.newhome-topbanner .rowcover .videocover.show {
  width: 37.5rem;
  transition: all ease 0.3s;
}

.newhome-topbanner .rowcover .videocover video {
  width: 100%;
  display: block;
}

.newhome-topbanner .rowcover .videocover .playbutton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  cursor: pointer;
}

.newhome-topbanner .rowcover .videocover .playbutton span {
  color: #000000;
  font-size: 1.875rem;
}

.newhome-latestproducts {
  width: 100%;

  background: #ffffff;
  position: relative;
  z-index: 3;
}

.newhome-latestproducts .rowcover {
  position: relative;
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  display: flex;
  gap: 2%;
  top: -2.5rem;
}

.newhome-latestproducts .rowcover .left {
  width: 49%;
}

.newhome-latestproducts .rowcover .right {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.newhome-latestproducts .rowcover .right .top,
.newhome-latestproducts .rowcover .right .btm {
  width: 100%;
}

.newhome-latestproducts .rowcover .left .bannerimg {
  width: 100%;
  height: 100%;
}

.newhome-latestproducts .rowcover .left .bannerimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.newhome-latestproducts .rowcover .left .bigbanner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.875rem;
  background-image: linear-gradient(
      95.91deg,
      #f7c41b 33.01%,
      rgba(247, 196, 27, 0) 62.12%
    ),
    url("../images/new/home-slide.png");
  background-repeat: no-repeat;
  background-position: center right;
  overflow: hidden;
  border-radius: 0.5rem;
}

.newhome-latestproducts .rowcover .left .bigbanner .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  height: 100%;
  font-family: "Poppins", sans-serif;
  width: 18.75rem;
  padding-bottom: 1.25rem;
}

.newhome-latestproducts .rowcover .left .bigbanner .text p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

.newhome-latestproducts .rowcover .left .bigbanner .text p span {
  display: block;
  font-size: 1.5625rem;
  color: #000000;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 1.25rem;
}

.newhome-latestproducts .rowcover .left .bigbanner .text a {
  border-radius: 1.25rem;
  border: 0.1875rem solid #ffffff;
  text-align: center;
  padding: 0.625rem 0.625rem;
  width: 12.5rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  transition: all ease 0.3s;
}

.newhome-latestproducts .rowcover .left .bigbanner .text a:hover {
  background: #ffffff;
  color: #000000;
  transition: all ease 0.3s;
}

.newhome-latestproducts .rowcover .left .bigbanner img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.newhome-latestproducts .rowcover .right .top,
.newhome-latestproducts .rowcover .right .btm {
  height: 50%;
  padding: 1.875rem;
  display: flex;
  align-items: center;
  position: relative;
}

.newhome-latestproducts .rowcover .right .top {
  background: linear-gradient(97.02deg, #000105 41%, rgba(142, 142, 142, 0) 71%),
    url("../images/new/cardgame.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: all ease 0.3s;
}

.newhome-latestproducts .rowcover .right .btm {
  background: linear-gradient(96.89deg, #250301 40%, rgba(142, 142, 142, 0) 60%),
    url("../images/new/partypatch.png");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: all ease 0.3s;
}

.newhome-latestproducts .rowcover .right .top .banner,
.newhome-latestproducts .rowcover .right .btm .banner {
  width: 100%;
  position: relative;
}

.newhome-latestproducts .rowcover .right .top a,
.newhome-latestproducts .rowcover .right .btm a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}

.newhome-latestproducts .rowcover .right .top:hover,
.newhome-latestproducts .rowcover .right .btm:hover {
  background-size: 110%;
  transition: all ease 0.3s;
}

.newhome-latestproducts .rowcover .right .top .text,
.newhome-latestproducts .rowcover .right .btm .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  position: relative;
  height: 100%;
  font-family: "Poppins", sans-serif;
  width: 50%;
}

.newhome-latestproducts .rowcover .right .top .text p,
.newhome-latestproducts .rowcover .right .btm .text p {
  font-size: 1rem;
  color: #f8c905;
  font-weight: 600;
  text-transform: uppercase;
}

.newhome-latestproducts .rowcover .right .top .text p span,
.newhome-latestproducts .rowcover .right .btm .text p span {
  display: block;
  font-size: 1.5625rem;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  padding-top: 0.625rem;
}

.bannerSwiper {
  width: 100%;
  height: 100%;
}

.bannerSwiper .swiper-pagination {
  display: flex;
  justify-content: flex-start;
  padding-left: 1.875rem;
  padding-bottom: 0.625rem;
}

.bannerSwiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 1;
  height: 0.75rem;
  width: 0.75rem;
}

.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #000000;
}

.newhome-ingredients {
  background: #fafafa;
}

.newhome-ingredients .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3.125rem 0rem;
}

.newhome-ingredients .rowcover .title {
  text-align: center;
  padding-bottom: 3.125rem;
}

.newhome-ingredients .rowcover .title p {
  padding-bottom: 0.625rem;
}

.newhome-ingredients .rowcover .title h2 {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
}

.newhome-ingredients .rowcover .title h2 b {
  color: #2fc3e5;
}

.newhome-ingredients .rowcover .list {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}

.newhome-ingredients .rowcover .list .item {
  width: 15%;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.25rem;
  background: #d7d7d7;
  position: relative;
  height: 12.5rem;
}

.newhome-ingredients .rowcover .list .item p {
  color: #164556;
  font-weight: 700;
  font-size: 1.125rem;
}

.newhome-ingredients .rowcover .list .text {
  position: absolute;
  bottom: -12.5rem;
  transition: all ease 0.3s;
  color: #164556;
  font-size: 0.75rem;
  line-height: 1.3;
  width: 100%;
  left: 0;
  padding: 0rem 1.25rem;
}

.newhome-ingredients .rowcover .list .icon {
  width: 4.375rem;
  position: absolute;
  right: 0.625rem;
  bottom: 1.875rem;
  transition: all ease 0.3s;
}

.newhome-ingredients .rowcover .list .icon img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-ingredients .rowcover .list .item:hover .icon {
  bottom: 6.25rem;
  opacity: 0.3;
  transition: all ease 0.3s;
}

.newhome-ingredients .rowcover .list .item:hover .text {
  bottom: 0.625rem;
}

.newhome-ourpartners {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0rem 1.25rem;
  z-index: 2;
}
.newhome-ourpartners > .rowcover {
  display: block;
  position: relative;
  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 3.125rem 0rem;
}
.newhome-ourpartners > .rowcover > .title {
  display: block;
  position: relative;
  width: 100%;
  font-size: 2rem;
  margin: 0rem 0rem 1.25rem 0rem;
  text-align: center;
  font-weight: 800;
  color: #000000;
  text-transform: uppercase;
}

.newhome-ourpartners > .rowcover > .title b {
  color: #2fc3e5;
}

.newhome-ourpartners > .rowcover > .subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #0f4759;
  line-height: 1.5;
  max-width: 43.75rem;
  margin: 0 auto;
  font-weight: 500;
}

.newhome-ourpartners .featuredin-logo a {
  display: flex;
  align-items: center;
}

.newhome-ourpartners > .rowcover .featuredin-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
}

.newhome-ourpartners > .rowcover .featuredin-logo div {
  width: 9.375rem;
  display: flex;
  justify-content: center;
  background: #ffffff;
  height: 9.375rem;
}

.newhome-ourpartners > .rowcover .featuredin-logo div img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-itembanner {
  background: linear-gradient(90deg, #fbd406 0%, #ffe768 100%);

  position: relative;
  z-index: 3;
  border-bottom: 0.25rem solid #ffffff;
}

.newhome-itembanner .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 1.25rem 0rem;
  color: #1e1e1e;
  position: relative;
  min-height: 28.125rem;
  display: flex;
  align-items: center;
}

.newhome-itembanner .rowcover .text {
  width: calc(100% - 29.375rem);
  position: relative;
  z-index: 2;
}

.newhome-itembanner .rowcover .text span {
  display: block;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
}

.newhome-itembanner .rowcover .text strong {
  font-weight: 800;
  font-size: 2rem;
  display: block;
  padding-bottom: 1.875rem;
}

.newhome-itembanner .rowcover .text p {
  line-height: 1.5;
  padding-bottom: 1.875rem;
}

.newhome-itembanner .rowcover .text a {
  background: #000000;
  border-radius: 1.875rem;
  padding: 0.9375rem 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: all ease 0.3s;
}

.newhome-itembanner .rowcover .text a:hover {
  background: #ffffff;
  color: #000000;
  transition: all ease 0.3s;
}

.newhome-itembanner .rowcover .image {
  width: 28.125rem;
  position: absolute;
  right: 0;
  top: -1.25rem;
}

.newhome-itembanner .rowcover .image img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-itembanner .rowcover .randombg {
  position: absolute;
  width: 2.5rem;
  z-index: 1;
}

.newhome-itembanner .rowcover .randombg img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-itembanner .rowcover .randombg.c1 {
  top: 1.875rem;
  left: 3.125rem;
}

.newhome-itembanner .rowcover .randombg.c2 {
  left: 37.5rem;
  bottom: 3.125rem;
}

.newhome-itembanner .rowcover .randombg.p1 {
  left: 28.125rem;
  top: 7.5rem;
}

.newhome-lastbanner {
  background: linear-gradient(90deg, #3edbff 0%, #2fc3e5 100%);

  position: relative;
  z-index: 4;
  border-bottom: 0.3125rem solid #ffffff;
}

.newhome-lastbanner .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 1.25rem 0rem;
  color: #1e1e1e;
  position: relative;
  min-height: 28.125rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.newhome-lastbanner .rowcover .image {
  width: 28.125rem;
  position: absolute;
  left: 0;
  top: -1.25rem;
}

.newhome-lastbanner .rowcover .image img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-lastbanner .rowcover .text {
  width: calc(100% - 29.375rem);
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.newhome-lastbanner .rowcover .text span {
  display: block;
  font-size: 1.25rem;
  padding-bottom: 0.625rem;
}

.newhome-lastbanner .rowcover .text strong {
  font-weight: 800;
  font-size: 2rem;
  display: block;
  padding-bottom: 1.875rem;
}

.newhome-lastbanner .rowcover .text p {
  line-height: 1.5;
  padding-bottom: 1.875rem;
}

.newhome-lastbanner .rowcover .text a {
  background: #ffffff;
  border-radius: 1.875rem;
  padding: 0.9375rem 2.5rem;
  color: #2fc3e5;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  transition: all ease 0.3s;
}

.newhome-lastbanner .rowcover .text a:hover {
  background: #000000;
  color: #ffffff;
  transition: all ease 0.3s;
}

.newhome-lastbanner .rowcover .certicon {
  display: flex;
  gap: 1.25rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3.25rem;
  z-index: 5;
  width: 21.25rem;
}

.newhome-lastbanner .rowcover .certicon img {
  width: 6.25rem;
  display: block;
  object-fit: contain;
}

.newhome-lastbanner .rowcover .randombg {
  position: absolute;
  width: 2.5rem;
  z-index: 1;
}

.newhome-lastbanner .rowcover .randombg img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-lastbanner .rowcover .randombg.p1 {
  top: 1.875rem;
  right: 28.125rem;
}

.newhome-lastbanner .rowcover .randombg.p2 {
  right: 3.125rem;
  bottom: 4.375rem;
}

.newhome-lastbanner .rowcover .randombg.c1 {
  right: 21.875rem;
  bottom: 1.875rem;
}

.newhome-partyenthusiasts {
  background-image: url("../images/new/partyehthusiasts-bg.png");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 25rem;
  position: relative;
  z-index: 5;
  background-color: #fafafa;
}

.newhome-partyenthusiasts .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 5rem 0rem 3.125rem;
}

.newhome-partyenthusiasts .rowcover .title {
  color: #000000;
  line-height: 1.3;
  position: relative;
}

.newhome-partyenthusiasts .rowcover .title h2 {
  font-weight: 800;
  font-size: 2rem;
  padding-bottom: 1.875rem;
  display: block;
}

.newhome-partyenthusiasts .rowcover .title a {
  background: #000000;
  text-align: center;
  color: #ffffff;
  padding: 0.9375rem 1.875rem;
  border-radius: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.newhome-partyenthusiasts .rowcover .enthusiasts-slider {
  padding-top: 2.5rem;
}

.enthusiasts-reviewBox {
  padding: 0.625rem;
  border-radius: 0.625rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9375rem;
  width: 31.25rem;
  box-shadow: 0rem 0.25rem 0.625rem 0rem rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.enthusiasts-reviewBox .image {
  width: 12.5rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 0.625rem;
}

.enthusiasts-reviewBox img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.enthusiasts-reviewBox .comment {
  width: calc(100% - 12.5rem);
  line-height: 1.5;
  font-size: 1rem;
  padding: 0.9375rem 1.25rem 0.9375rem 0rem;
}

.enthusiastsSwiper .swiper-wrapper {
  padding-bottom: 1.875rem;
}

.enthusiastsSwiper .swiper-slide {
  width: auto !important;
}

.newhome-partyenthusiasts .rowcover .title .enthusiastsSwiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.newhome-partyenthusiasts
  .rowcover
  .title
  .enthusiastsSwiper-pagination
  .button {
  background: #000000;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.newhome-partyenthusiasts
  .rowcover
  .title
  .enthusiastsSwiper-pagination
  .button.swiper-button-disabled {
  opacity: 0.3;
}

.newhome-officialpartner {
  background: #ffffff;
}

.newhome-officialpartner .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3.125rem 0rem;
}

.newhome-officialpartner .rowcover .title {
  text-align: center;
  color: #1e1e1e;
}

.newhome-officialpartner .rowcover .title h2 {
  font-weight: 800;
  font-size: 2rem;
  padding-bottom: 1.875rem;
  display: block;
}

.newhome-officialpartner .rowcover .title h2 b {
  color: #2fc3e5;
}

.newhome-officialpartner .rowcover .partner-logo {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.newhome-officialpartner .rowcover .partner-logo > div {
  width: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
}

.newhome-officialpartner .rowcover .partner-logo > div img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newhome-officialpartner .rowcover .clicktoshow {
  display: block;
  width: 15.625rem;
  text-align: center;
  padding: 0.9375rem 0.625rem;
  color: #ffffff;
  background: #000000;
  border-radius: 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 auto;
  cursor: pointer;
}

.page-topintro {
  /* background: linear-gradient(93.22deg, #fbd406 0.67%, #2fc3e5 100%); */
  background: #fafafa;
  position: relative;
  z-index: 3;
}

.page-topintro .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 3rem 0;
  color: #1e1e1e;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.pagebreadcumb {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.pagebreadcumb a {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 1rem;
}

.page-topintro .rowcover .pageDesc .title {
  font-weight: 800;
  font-size: 2.5rem;
  text-transform: uppercase;

  line-height: 1.3;
}

.page-topintro .rowcover .pageDesc .title span {
  color: var(--mainblue);
}

.page-topintro .rowcover .pageDesc p {
  line-height: 1.5;
  padding-top: 0.625rem;
}

.page-topintro .rowcover .pageDesc p a {
  color: var(--mainblue);
}

.page-topintro .rowcover .pageButton {
  padding-top: 1rem;
}

.page-topintro .rowcover .pageButton .tab-option {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-topintro .rowcover .pageButton .tab-option a {
  padding: 0.7rem 1rem;
  text-align: center;
  color: #000000;
  background: #e9e9e9;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.page-topintro .rowcover .pageButton .tab-option a.active,
.page-topintro .rowcover .pageButton .tab-option a:hover {
  background: #000000;
  color: #ffffff;
}

.newshop .newProductlist {
  display: flex;
  gap: 2%;
  row-gap: 1.25rem;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.newshop .newProductlist .productBox {
  width: 32%;
  padding: 0.625rem 0.9375rem 1.875rem;
  border-radius: 0.5rem;
  background: #f5f5f5;
  position: relative;
}

.newshop .newProductlist .productBox .productImage {
  width: 100%;
  display: flex;
  align-items: center;
}

.newshop .newProductlist .productBox .productImage img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.newshop .newProductlist .productBox .productDesc {
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.newshop .newProductlist .productBox .productDesc .name {
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  text-align: center;
  height: 2.625rem;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.3;
  padding: 0rem 1.25rem;
}

.newshop .newProductlist .productBox .productDesc .price {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  color: #000000;
  font-size: 1rem;
}

.newshop .newProductlist .productBox .productDesc .price .ori_price {
  color: #a9b1b3;
  text-decoration: line-through;
}

.newshop .newProductlist .productBox .productstatus {
  position: absolute;
  left: 0.9375rem;
  top: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.newshop .newProductlist .productBox .productstatus > div {
  background: #000000;
  color: #ffffff;
  padding: 0.3125rem 0.9375rem;
  border-radius: 1.875rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
}

.newshop .newProductlist .productBox a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.newshop .newProductlist .productBox:hover {
  background: #c9f5ff;
  transition: all ease 0.3s;
}

.newshop .newProductlist .productBox .soldout {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
}

.productdetailTop {
  width: 100%;
  position: relative;
  background: linear-gradient(104deg, #fbd406 -41.56%, #2fc3e5 71.17%);
}

.productdetailTop .product-bg-layer {
  position: absolute;
  right: 0;
  top: 0;
  width: 60vw;

  opacity: 0.3;
}

.productdetailTop .rowcover {
  padding: 5rem 0;
  width: 100%;
  margin: 0 auto;
  max-width: 68.75rem;
}

.productdetailTop .productTopcover {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  margin-top: 20px;
}

.productdetailTop .productTopcover .productImage {
  width: calc(100% - 33.75rem);
  position: relative;
  display: flex;
  align-items: center;
}

.productdetailTop .productTopcover .productAddtocart {
  width: 31.25rem;
  padding: 1.875rem;
  border-radius: 1.25rem;
  border: 0.0625rem solid #fff;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1.25rem);
  line-height: 1.3;
  color: #000000;
}

.productdetailTop .productTopcover .productAddtocart .productName {
  font-weight: 800;
  font-size: 1.75rem;
  padding-bottom: 0.625rem;
}

.productdetailTop .productTopcover .productAddtocart .productShortdesc {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.3);
  font-size: 0.875rem;
}

.productdetailTop .productTopcover .productAddtocart .purchaseType {
  padding: 1.25rem 0rem;
}

.productdetailTop .productTopcover .productAddtocart .purchaseType b {
  font-weight: 700;
  display: block;
  padding-bottom: 0.625rem;
}

.productdetailTop .productTopcover .productAddtocart .purchaseType .plan {
  padding-bottom: 1.25rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option {
  display: flex;
  gap: 0.625rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label {
  cursor: pointer;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  input {
  display: none;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  .text {
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.625rem 0.9375rem;
  border: 0.0625rem solid #000000;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  .text
  div {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  .text
  span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.375rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  input:checked
  + .text {
  background: #000000;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  input:checked
  + .text
  div,
.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .plan
  .option
  label
  input:checked
  + .text
  span {
  color: #ffffff;
}

.productdetailTop .productTopcover .productAddtocart .purchaseType .amount {
  padding-bottom: 1.25rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .amount
  .amountcover {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .amount
  .amountcover
  span {
  display: flex;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 100%;
  border: 0.0625rem solid #000000;
  justify-content: center;
  align-items: center;
  font-size: 1.875rem;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .amount
  .amountcover
  span:hover {
  background: #000000;
  color: #ffffff;
  transition: all ease 0.3s;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .purchaseType
  .amount
  .amountcover
  input {
  background: none;
  width: 1.25rem;
  text-align: center;
  border: none;
  font-size: 1.5625rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.productdetailTop .productTopcover .productAddtocart .productPrice {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.productdetailTop .productTopcover .productAddtocart .productPrice p {
  font-weight: 700;
  font-size: 1.5625rem;
}

.productdetailTop .productTopcover .productAddtocart .productPrice > div {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .productPrice
  > div
  a.likebutton {
  line-height: 1;
  font-size: 1.875rem;
  color: #000000;
  cursor: pointer;
}

.productdetailTop
  .productTopcover
  .productAddtocart
  .productPrice
  > div
  a.likebutton.active {
  color: red;
}

.productdetailTop .productTopcover .productAddtocart a.addtocart {
  background: #ffffff;
  color: #000000;
  text-transform: capitalize;
  padding: 0.9375rem 1.875rem;
  border-radius: 1.875rem;
  font-weight: 500;
  text-align: center;
}

.productdetailTop .productTopcover .productAddtocart a.addtocart:hover {
  background: #000000;
  color: #ffffff;
  transition: all ease 0.3s;
}

.productShowcase {
  width: calc(100% - 6.25rem);
  margin: 0 0 !important;
  overflow: hidden;
  border-radius: 0.5rem;
}

.thumbsliderCover {
  position: absolute !important;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.productThumbs {
  height: 25rem !important;
  width: 5.375rem;
}

.productThumbs .swiper-slide {
  width: 100%;
}

.productThumbs .swiper-slide .image,
.productThumbs .swiper-slide .vid {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

.productThumbs .swiper-slide img,
.productShowcase .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.productShowcase .swiper-slide {
  height: 100%;
}

.productShowcase .swiper-slide .image,
.productShowcase .swiper-slide .vid {
  aspect-ratio: 1 / 1;
}

.productShowcase .swiper-slide video,
.productThumbs .swiper-slide video {
  height: 100%;
  width: 100%;
  background: #000000;
  display: flex;
  align-items: center;
}

.thumbsliderCover .productThumbs-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  z-index: 10;
  cursor: pointer;
}

.thumbsliderCover .productThumbs-arrow.thumbs-prev {
  top: 1.875rem;
}

.thumbsliderCover .productThumbs-arrow.thumbs-next {
  bottom: 1.875rem;
}

.thumbsliderCover .productThumbs-arrow.swiper-button-disabled {
  opacity: 0.3;
}

.productdetailBtm {
  padding: 3.125rem 0.625rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.productdetailBtm .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
}

.productdetailBtm .rowcover .productBenefit {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}

.productdetailBtm .rowcover .productBenefit .item {
  width: 16%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

.productdetailBtm .rowcover .productBenefit .item p {
  font-weight: 600;
}

.header_new .rowcover .mobile-click {
  position: relative;
  display: none;
  z-index: 31;
  cursor: pointer;
}

.header_new .rowcover .mobile-click span {
  color: #ffffff;
  font-size: 2.5rem;
}

.header_new .rowcover .mobile-click .mobile_cart {
  position: absolute;
  right: 0rem;
  top: 0rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 100%;
  background: red;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.625rem;
}

.newfooterbottom {
  color: #ffffff;
  line-height: 1.5;
}

.newfooterbottom .rowcover {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 2rem 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(1rem, 16px);
  color: #000000;
  flex-wrap: wrap;
  gap: 1rem;
}

.newfooterbottom .rowcover .right {
  display: flex;
  gap: 3rem;
}

.newfooterbottom .rowcover .right a {
  color: #000000;
}

.product-extra-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 3.125rem 0.625rem;
  background-color: #f9f9f9;
}

.product-extra-desc .cover {
  width: 100%;
  margin: 0 auto;
  max-width: 68.75rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  background: #ffffff;
  line-height: 1.5;
}

.product-extra-desc .cover .title {
  font-weight: 700;
  padding-bottom: 10px;
  font-size: min(1.2rem, 18px);
}

.product-extra-desc .cover p > b {
  font-size: min(1.2rem, 18px);
}

.product-extra-desc .cover ul {
  list-style: disc;
  margin-left: 20px;
}

.product-extra-desc .cover ol {
  list-style: decimal;
  margin-left: 20px;
}

.product-extra-desc .cover ul li,
.product-extra-desc .cover ol li {
  margin: 5px 0px;
  font-size: min(1rem, 14px);
}

.product-extra-desc .cover ul li b,
.product-extra-desc .cover ol li b {
  font-weight: 700;
}

.product-extra-desc .cover ol li b {
  display: block;
}

.product-extra-desc .cover ol li b i {
  font-style: italic;
  font-weight: 500;
}

.faq {
  display: block;
  position: relative;
  width: 100%;
  padding: 3.125rem 0.625rem;
}
.faq > .faqcover {
  width: 100%;
  margin: 0 auto;
  max-width: 68.75rem;
}

.faq > .faqcover .list {
  display: block;
  position: relative;
  width: 100%;
}
.faq > .faqcover .list .faq-category {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.faq > .faqcover .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  background: #ffffff;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 10px 0px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.faq > .faqcover .list .box > .question {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 1.5rem 3.125rem 1.5rem 1.75rem;
  font-size: min(1.2rem, 18px);
  font-weight: 600;
  line-height: 1.5;
}
.faq > .faqcover .list .box > .answer {
  display: none;
  position: relative;
  width: 100%;
}
.faq > .faqcover .list .box.active > .answer {
  display: block;
}
.faq > .faqcover .list .box > .answer > div {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 4rem 1.75rem 1.75rem;
  font-size: min(1rem, 16px);
  line-height: 1.5;
}
.faq > .faqcover .list .box > .icon {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 1.75rem;
}
.faq > .faqcover .list .box > .icon > div {
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #000000;
  top: calc(50% - 1px);
  left: 0px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.faq > .faqcover .list .box > .icon > span {
  display: block;
  position: absolute;
  width: 2px;
  height: 14px;
  background: #000000;
  top: 0px;
  left: calc(50% - 1px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.faq > .faqcover .list .box.active > .icon > span {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.faq > .faqcover .list .box > .answer > div > b {
  display: block;
  font-size: 1.1rem;
  padding-bottom: 10px;
  font-weight: 600;
  font-style: normal;
}

.product-info {
  display: block;
  position: relative;
  width: 100%;
  padding: 3.125rem 0.625rem;
  background-color: #f9f9f9;
}

.product-info .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 68.75rem;
  display: flex;
}

.product-info .product-effect {
  width: 40%;
  padding: 3.125rem 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  background: #01b4dd;
  gap: 3.125rem;
  box-sizing: border-box;
}

.product-info .product-effect .cover {
  display: flex;
  align-items: center;
  width: 100%;
}

.product-info .product-effect .cover .icon {
  width: 3.125rem;
}

.product-info .product-effect .cover .icon img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.product-info .product-effect .cover .desc {
  width: calc(100% - 3.125rem);
  padding-left: 1.875rem;
  color: #ffffff;
  line-height: 1.3;
}

.product-info .product-effect .cover .desc b {
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  padding-bottom: 0.5rem;
}

.product-info .product-detail {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: stretch;
  border-right: 1px solid #d7d7d7;
}

.product-info .product-detail .row {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-info .product-detail .row:first-child {
  border-top: 1px solid #d7d7d7;
}

.product-info .product-detail .row .category {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding: 1.25rem 1.25rem;
  background: #ffffff;
  cursor: pointer;
}

.product-info .product-detail .row .category .icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}

.product-info .product-detail .row .category .icon > div {
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #000000;
  top: calc(50% - 1px);
  left: 0px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.product-info .product-detail .row .category .icon > span {
  display: block;
  position: absolute;
  width: 2px;
  height: 14px;
  background: #000000;
  top: 0px;
  left: calc(50% - 1px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.product-info .product-detail .row .category.active .icon span {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.product-info .product-detail .row .content {
  padding: 1.25rem 1.25rem;
  line-height: 1.5;
  display: none;
}

.product-info .product-detail .row .content .report {
  display: flex;
  gap: 20px;
}

.product-info .product-detail .row .content .report .image {
  width: 50%;
  cursor: pointer;
}

.product-info .product-detail .row .content .report .image img {
  display: block;
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

.product-info .product-detail .row .content .fullpdf {
  padding-top: 15px;
}

.product-info .product-detail .row .content .fullpdf a {
  display: block;
  width: 100%;
  padding: 0.625rem 0.625rem;
  border-radius: 4px;
  background: #2fc3e5;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: min(1rem, 16px);
  box-sizing: border-box;
  cursor: pointer;
  transition: all ease 0.3s;
}

.product-info .product-detail .row .content .fullpdf a:hover {
  background: #124759;
  transition: all ease 0.3s;
}

.product-info .product-detail .row .content table.nutritionTable {
  width: 100%;
}

.product-info .product-detail .row .content table.nutritionTable th {
  font-weight: 600;
  padding: 3px 10px;
  text-align: left;
  border: 1px solid #000000;
}

.product-info .product-detail .row .content table.nutritionTable td {
  border: 1px solid #000000;
  text-align: center;
  padding: 3px 10px;
}

.product-info
  .product-detail
  .row
  .content
  table.nutritionTable
  td:first-child {
  text-align: left;
  text-transform: capitalize;
  width: 50%;
}

.image-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  display: none;
}

.image-fullscreen .content {
  width: 95%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
}

.image-fullscreen .content img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.image-fullscreen .content .closeimage {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.image-fullscreen .content .closeimage span {
  font-size: 40px;
}

.contactus-cover {
  display: flex;
  align-items: center;
}

.contactus-cover .left {
  width: 50%;
  padding-right: 100px;
}

.contactus-cover .left .title {
  line-height: 1.5;
  padding-bottom: 80px;
}

.contactus-cover .left .title h3 {
  padding-bottom: 20px;
}

.contactus-cover .left .title h3 span {
  color: var(--mainblue);
}

.contactus-cover .left .title > div {
  font-size: min(1.2rem, 20px);
  font-weight: 400;
}

.contactus-cover .left .location {
  display: flex;
  flex-wrap: wrap;
  row-gap: 3rem;
  justify-content: space-between;
}

.contactus-cover .left .location .box {
  padding-right: 1rem;
  flex: 0 1 auto;
  min-width: 50%;
}

.contactus-cover .left .location .box .subject {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
}

.contactus-cover .left .location .box .subject b {
  font-weight: 600;
  font-size: min(1.2rem, 18px);
}

.contactus-cover .left .location .box .text {
  font-size: min(1rem, 16px);
  line-height: 1.5;
  color: #000000;
}

.contactus-cover .left .location .box .social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contactus-cover .left .location .box .social a {
  height: 3rem;
  width: 3rem;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #000000;
  font-size: min(1.2rem, 22px);
}

.contactus-cover .right {
  padding: 3rem;
  border-radius: 18px;
  background: #fafafa;
  width: 50%;
}

.contactus-cover .right .enquiry .title {
  font-size: min(1.8rem, 28px);
  font-weight: 600;
  padding-bottom: 3rem;
}

.contactus-cover .right .enquiry .form form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contactus-cover .right .enquiry .form .inputbox {
  width: 100%;
}

.contactus-cover .right .enquiry .form .inputbox div {
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 5px;
}

.contactus-cover .right .enquiry .form .inputbox input {
  width: 100%;
  padding: 0px 0px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
}

.contactus-cover .right .enquiry .form .inputbox textarea {
  width: 100%;
  padding: 0px 0px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  background: none;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  height: 80px;
  resize: none;
}

.contactus-cover .right .enquiry .form .submit {
  display: inline-block;
  max-width: 50%;
}

.cart-wrapper {
  display: flex;
  gap: min(2rem, 30px);

  max-width: 68.75rem;
  width: 100%;
  margin: 0 auto;
}

.cart-wrapper .shoppingCart {
  padding: 5rem 0;
  flex: 1;
}

.cart-wrapper .shoppingCart .cartHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c7c7c7;
  font-weight: 600;
  position: relative;
}

.cart-wrapper .shoppingCart .cartHeader span {
  font-size: 1.2rem;
}

.cart-wrapper .shoppingCart .cartTable {
  padding-top: 1.5rem;
}

.cart-wrapper .shoppingCart .cartTable .chead {
  display: flex;
  gap: 5px;
  padding-bottom: 2rem;
}

.cart-wrapper .shoppingCart .cartTable .chead .col {
  color: #979797;
  font-size: min(1rem, 12px);
  text-transform: uppercase;
  font-weight: 600;
}

.cart-wrapper .shoppingCart .cartTable .chead .col-product {
  width: 50%;
}

.cart-wrapper .shoppingCart .cartTable .chead .col-quantity {
  width: 20%;
  text-align: center;
}

.cart-wrapper .shoppingCart .cartTable .chead .col-price {
  width: 15%;
}

.cart-wrapper .shoppingCart .cartTable .chead .col-total {
  width: 15%;
  text-align: right;
}

.cart-wrapper .shoppingCart .cartTable .cbody {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-product {
  width: 50%;
  display: flex;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-quantity {
  width: 20%;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-price {
  width: 15%;
  font-size: min(1rem, 16px);
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-total {
  width: 15%;
  text-align: right;
  font-size: min(1rem, 16px);
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .image {
  width: 6.25rem;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .details {
  width: calc(100% - 6.25rem);
  padding: 0rem 1rem;
  line-height: 1.3;
  font-size: min(0.9rem, 16px);
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .details .name {
  padding-bottom: 0.5rem;
}

.cart-wrapper
  .shoppingCart
  .cartTable
  .cbody
  .row
  .col-product
  .details
  .purchasetype {
  color: #b12e19;
  padding-bottom: 10px;
}

.cart-wrapper
  .shoppingCart
  .cartTable
  .cbody
  .row
  .col-product
  .details
  .remove {
  color: #aaaaaa;
  cursor: pointer;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-quantity .amountcover {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.cart-wrapper
  .shoppingCart
  .cartTable
  .cbody
  .row
  .col-quantity
  .amountcover
  span {
  font-size: min(1.2rem, 18px);
  cursor: pointer;
  font-weight: 600;
}

.cart-wrapper
  .shoppingCart
  .cartTable
  .cbody
  .row
  .col-quantity
  .amountcover
  input {
  width: 3rem;
  text-align: center;
  border: 1px solid #000000;

  font-size: min(1.1rem, 16px);
}

.cart-wrapper
  .shoppingCart
  .cartTable
  .cbody
  .row
  .col-quantity
  .amountcover
  input:read-only {
  border: 0;
  padding: 0;
  width: auto;
}

.cart-wrapper .shoppingCart .cartFooter {
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
}

.cart-wrapper .shoppingCart .cartFooter a.continue {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #4d9cbe;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-wrapper .shoppingCart .cartFooter a.continue span {
  color: #000000;
  font-size: 1.1rem;
}

.cart-wrapper .shoppingCart .cartAddress {
  width: 100%;
  margin-bottom: 100px;
  margin-top: 20px;
}

.cart-wrapper .shoppingCart .cartAddress .btn {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.cart-wrapper .shoppingCart .cartAddress .empty {
  padding: 20px;
  background: #fafafa;
  font-size: min(1rem, 14px);
}

.cartAddress--detail {
  cursor: pointer;
  display: block;
  margin-bottom: 10px;
}

.cartAddress--detail .cover {
  padding: 20px 70px 20px 20px;
  position: relative;
  width: 100%;
  display: block;
  border-left: 5px solid #ffffff;
  background: #ffffff;
}

.cartAddress--detail input {
  display: none;
}

.cartAddress--detail input:checked + .cover {
  border-left: 5px solid #01b4dd;
  background: #fafafa;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.cartAddress--detail .name {
  font-size: min(1.1rem, 16px);
  font-weight: 600;
  padding-bottom: 10px;
}

.cartAddress--detail .mobile,
.cartAddress--detail .address {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: min(1rem, 14px);
  line-height: 1.5;
  margin-top: 10px;
}

.cartAddress--detail .cover .action {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.cartAddress--detail .cover .action .modify {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  float: left;
  margin: 0px 8px 0px 0px;
  color: #000000;
  font-size: min(1.5rem, 16px);
}

.cart-wrapper .orderSummary {
  width: min(25rem, 400px);
  position: sticky;
  top: 0;
  background: #f8f8f8;
  padding: 5rem min(2rem, 30px);
}

.cart-wrapper .orderSummary .title {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #c7c7c7;
  font-weight: 600;
}

.cart-wrapper .orderSummary .orderTable {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.cart-wrapper .orderSummary .orderTable table {
  width: 100%;
}

.cart-wrapper .orderSummary .orderTable table tr td {
  font-weight: 600;
  font-size: min(1.2rem, 14px);
  padding: 10px 0;
}

.cart-wrapper .orderSummary .orderTable table tr td:last-child {
  text-align: right;
}

.cart-wrapper .orderSummary .orderTable .orderTotal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode b {
  font-weight: 600;
  font-style: normal;
  display: block;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode .codecover {
  width: 100%;
  position: relative;
}

.cart-wrapper
  .orderSummary
  .orderTable
  .orderTotal
  .promocode
  .codecover
  .deletecode {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: red;
  cursor: pointer;
  display: none;
  width: auto;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode input.promo {
  background: #ffffff;
  border: none;
  padding: 10px;
  color: #000000;
  font-size: min(1rem, 16px);
  width: 100%;
  border-radius: 4px;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode a.apply {
  padding: 10px;
  font-size: min(1rem, 14px);
  background: #f26666;
  color: #ffffff;
  display: inline-block;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode span {
  color: #929292;
  line-height: 1.5;
  font-size: min(1rem, 14px);
  display: block;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .promocode span b {
  color: #9b4545;
  text-decoration: underline;
  display: inline-block;
  cursor: pointer;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: min(1rem, 16px);
  color: #000000;
  font-weight: 600;
  row-gap: 20px;
  padding-top: 20px;
  align-items: flex-end;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal .paymentbutton {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 3ch;
  flex-wrap: wrap;
  row-gap: 5px;
}

.cart-wrapper
  .orderSummary
  .orderTable
  .orderTotal
  .grandTotal
  .paymentbutton
  span {
  font-size: min(1.2rem, 14px);
  font-weight: 400;
  margin: 0 auto;
}

.cart-wrapper .orderSummary .orderTable .orderTotal a.continueshopping {
  display: block;
  text-align: center;
  color: #000000;
  text-decoration: underline;
  font-size: min(1rem, 14px);
  margin-top: 20px;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal form {
  width: 100%;
}

.cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal span {
  font-size: min(1.2rem, 18px);
}

.cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal a.checkout {
  width: 100%;
  font-weight: 400;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement label {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement label input {
  display: none;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement label .checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  position: relative;
  border-radius: 4px;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement label .checkmark span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--mainblue);
  z-index: 1;
  display: none;
}

.cart-wrapper
  .orderSummary
  .orderTable
  .orderAgreement
  label
  input:checked
  + .checkmark
  span {
  display: block;
}

.cart-wrapper .orderSummary .orderTable .orderAgreement label .text {
  line-height: 1.5;
  width: calc(100% - 30px);
  font-size: min(1rem, 14px);
}

.popup-module {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  display: none;
}

.popup-module .popup-content {
  width: 95%;
  max-width: 50%;
  max-height: 95vh;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  color: #000000;
  box-sizing: border-box;
  border-radius: 8px;
  overflow-y: auto;
}

.popup-module .popup-content .content {
  font-size: 1rem;
  line-height: 1.3;
}

.popup-module .popup-content .content .title {
  font-size: 1.563rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 15px;
}

.popup-module .popup-content .content a {
  color: #154759;
  text-decoration: underline;
}

.popup-module .popup-content .content .popup-link {
  color: #fcd404;
}

.popup-module .popup-content .redirect_link {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.popup-module .popup-content .redirect_link a.viewcart {
  background: #fcd404;
  color: #234354;
}

.popup-module .popup-content .closepopup-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  background: #ffffff;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup-module .popup-content .closepopup-icon:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  height: 15px;
  width: 2px;
  background: #000000;
  border-radius: 15px;
  transform: rotate(45deg);
}

.popup-module .popup-content .closepopup-icon:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  height: 15px;
  width: 2px;
  border-radius: 15px;
  background: #000000;
  transform: rotate(-45deg);
}

.popup-module .popup-content .otp-message .text {
  font-size: 1rem;
  padding-bottom: 1rem;
}

.popup-module .popup-content .otp-message .otp-input {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 40rem;
}

.popup-module .popup-content .otp-message .otp-input .input-field {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #ffffff;
  padding: 0.5rem 1rem;
  width: calc(100% - 11rem);
}

.popup-module .popup-content .otp-message .otp-input .resendotp {
  width: 10rem;
}

.popup-module .popup-content .otp-message .otp-input .msgsend {
  color: red;
  font-size: 0.9rem;
  width: 100%;
}

.popup-module .popup-content .otp-message .otp-input .action_button {
  padding-top: 1rem;
}

.pdf-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20000;
}

.pdf-popup .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 50%;

  border-radius: 8px;
  box-sizing: border-box;
}

.pdf-popup .content img {
  display: block;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.pdf-popup .content .swiper .swiper-slide {
  max-height: 95vh;
  overflow: auto;
}

.pdf-popup .content .close-pdf-popup {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  background: #ffffff;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
}

.pdf-popup .content .close-pdf-popup:before {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  height: 15px;
  width: 2px;
  background: #000000;
  border-radius: 15px;
  transform: rotate(45deg);
}

.pdf-popup .content .close-pdf-popup:after {
  content: "";
  position: absolute;
  left: 14px;
  top: 8px;
  height: 15px;
  width: 2px;
  border-radius: 15px;
  background: #000000;
  transform: rotate(-45deg);
}

.fullscreenPopup {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all ease 0.5s;
}

.fullscreenPopup.active {
  top: 0;
  opacity: 1;
  visibility: visible;
  z-index: 20000;
  transition: all ease 0.5s;
}

.fullscreenPopup .closethis {
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  z-index: 20;
}

.fullscreenPopup .closethis span {
  font-size: 4rem;
}

.fullscreenPopup .popupcontent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 37rem;
  height: auto;
  max-height: 90vh;
}

.fullscreenPopup .popupcontent .title {
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 2rem;
}

.fullscreenPopup .popupcontent .voucher {
  display: block;
  width: 100%;
}

.fullscreenPopup .popupcontent .voucher .search {
  display: flex;
  align-items: center;
}

.fullscreenPopup .popupcontent .voucher .list {
  margin-top: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.fullscreenPopup .popupcontent .voucher .list .box {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.fullscreenPopup .popupcontent .voucher .list .box .code {
  background: var(--mainblue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  font-size: 1rem;
}

.fullscreenPopup .popupcontent .voucher .list .box .details {
  padding: 1rem;
  width: calc(100% - 18rem);
}

.fullscreenPopup .popupcontent .voucher .list .box .details .main {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 1rem;
}

.fullscreenPopup .popupcontent .voucher .list .box .details .note {
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.3;
}

.fullscreenPopup .popupcontent .voucher .list .box .details .category {
  opacity: 0.7;
  font-weight: 600;
  font-size: 0.9rem;
}

.fullscreenPopup .popupcontent .voucher .list .box .action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 10rem;
  padding-right: 1rem;
}

.fullscreenPopup .popupcontent .voucher .list .box .action .expired {
  background: #d7d7d7;
  color: rgba(0, 0, 0, 0.5);
}

.fullscreenPopup .popupcontent .form {
  display: flex;
  gap: 2%;
  row-gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  height: min(50vh, 600px);
  overflow-y: auto;
  overflow-x: hidden;
}

.fullscreenPopup .popupcontent .form .row {
  width: 49%;
}

.fullscreenPopup .popupcontent .form .row > div {
  padding-bottom: 5px;
  font-size: min(1.1rem, 16px);
}

.fullscreenPopup .popupcontent .form .row input,
.fullscreenPopup .popupcontent .form .row select {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 36px;
  padding: 0px 14px;
}

.fullscreenPopup .popupcontent .form .row select {
  height: 38px;
}

.fullscreenPopup .popupcontent .action {
  margin-top: 20px;
}

.loginregister_wrapper {
  display: flex;
  width: 100%;
}

.loginregister_wrapper .content,
.loginregister_wrapper .background {
  width: 50%;
}

.loginregister_wrapper .background {
  background-image: url("../images/new/signup_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.loginregister_wrapper .content {
  padding: 5rem;
}

.loginregister_wrapper .content .inputform-cover {
  width: 100%;
  position: relative;
}

.loginregister_wrapper .content .inputform-cover .title {
  line-height: 1.5;
  padding-bottom: 2rem;
}

.loginregister_wrapper .content .inputform-cover .title h1 {
  text-transform: uppercase;
  font-family: "Made Extra";
  font-style: normal;
  font-weight: 400;
}

.loginregister_wrapper .content .inputform-cover .form {
  width: 100%;
  max-width: 70%;
}

.loginregister_wrapper .content .inputform-cover .form .field {
  position: relative;
  margin-bottom: 2rem;
}

.loginregister_wrapper .content .inputform-cover .form .field > div {
  font-size: min(1rem, 16px);
  padding-bottom: 5px;
}

.loginregister_wrapper .content .inputform-cover .form .field .input-field {
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #ffffff;
  padding: 0.5rem 1rem;
  width: 100%;
}

.loginregister_wrapper .content .inputform-cover .form .field .reminder {
  display: block;
  font-size: 0.8rem;
  line-height: 1.3;
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.8);
  font-style: italic;
}

.loginregister_wrapper .content .inputform-cover .form .field .input-symbol {
  position: relative;
  width: 100%;
}

.loginregister_wrapper
  .content
  .inputform-cover
  .form
  .field
  .input-symbol
  .toggle-password {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  cursor: pointer;
}

.loginregister_wrapper .content .inputform-cover .form .action_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-bottom: 4rem;
  cursor: pointer;
}

.loginregister_wrapper .content .inputform-cover .form .action_link .remember {
  display: flex;
  align-items: center;
}

.loginregister_wrapper .content .inputform-cover .form .action_link a {
  color: #000000;
}

.loginregister_wrapper .content .inputform-cover .form .action_button {
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.loginregister_wrapper .content .inputform-cover .form .action_button input {
  width: 100%;
  text-transform: uppercase;
}

.loginregister_wrapper .content .inputform-cover .form .action_others {
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  text-transform: uppercase;
}

.loginregister_wrapper .content .inputform-cover .form .divline {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.loginregister_wrapper .content .inputform-cover .form .action_others a#otp {
  width: 100%;
  font-weight: 500;
}

.loginregister_wrapper
  .content
  .inputform-cover
  .form
  .action_others
  a.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #000000;
  font-size: min(1rem, 16px);
  font-weight: 600;
  gap: 10px;
  border-radius: 40px;
  font-family: "Poppins", sans-serif;
}

.loginregister_wrapper
  .content
  .inputform-cover
  .form
  .action_others
  a.google-login-btn
  img {
  width: 2rem;
}

.loginregister_wrapper .content .inputform-cover .form .redirect {
  text-align: center;
}

.loginregister_wrapper .content .inputform-cover .form .redirect a {
  color: var(--mainblue);
  text-decoration: underline;
}

.loginregister_wrapper .content .inputform-cover .form .agreement {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  padding-bottom: 2rem;
  cursor: pointer;
}

.loginregister_wrapper .content .inputform-cover .form .agreement label {
  line-height: 1.5;
  cursor: pointer;
}

.loginregister_wrapper .content .inputform-cover .form .agreement label a {
  color: var(--mainblue);
}

.loginregister_wrapper .content .inputform-cover .form .otp_option {
  display: flex;
  gap: 10px;
  padding-bottom: 2rem;
}

.loginregister_wrapper .content .inputform-cover .form .otp_option > div {
  padding: 1rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  text-align: center;
  width: 50%;
  color: #000000;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all ease 0.3s;
}

.loginregister_wrapper .content .inputform-cover .form .otp_option > div:hover {
  background: rgba(0, 0, 0, 0.2);
  transition: all ease 0.3s;
}

.loginregister_wrapper
  .content
  .inputform-cover
  .form
  .otp_option
  > div.active {
  background: var(--mainblue);
  color: #ffffff;
  border: 1px solid var(--mainblue);
}

.videos_wrapper {
  width: 100%;
}

.videos_wrapper .featured_videos {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
}

.videos_wrapper .featured_videos .thumbnail {
  width: calc(100% - 25rem);
}

.videos_wrapper .featured_videos .details {
  width: 25rem;
  background: #1e1e1e;
  padding: 2rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.videos_wrapper .featured_videos .details .tag {
  display: flex;
  gap: 10px;
  padding-bottom: 1rem;
  width: 100%;
}

.videos_wrapper .featured_videos .details .tag > span {
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  color: #000000;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
}

.videos_wrapper .featured_videos .details .title {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
}

.videos_wrapper .featured_videos .details a {
  color: #000000;
  background: var(--mainyellow);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: flex;
  gap: 10px;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  position: Relative;
  margin-top: auto;
}

.videos_wrapper .video-row {
  padding-top: 4rem;
}

.videos_wrapper .video-row .list {
  width: 100%;
  position: relative;
  padding-bottom: 3rem;
}

.videos_wrapper .video-row .list .slider {
  padding-top: 1rem;
}

.videos_wrapper .video-row .list .video-swiper {
  overflow: visible;
}

.videos_wrapper .video-row .list .video-category-title {
  font-weight: 600;
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.videos_wrapper .video-row .list .video-swiper .video-click .thumbnail {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.videos_wrapper .video-row .list .video-swiper .video-click .tag {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.videos_wrapper .video-row .list .video-swiper .video-click .tag span {
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  color: #ffffff;
  text-align: center;
  background: #000000;
  border-radius: 8px;
  line-height: 1;
  display: none;
}

.videos_wrapper .video-row .list .video-swiper .video-click .title {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
}

.videos_wrapper .video-row .list .video-swiper .swiper-slide .video-click {
  transition: all ease 0.3s;
  padding: 5px;
}

.videos_wrapper .video-row .list .video-swiper .swiper-slide:hover {
  z-index: 99;
}

.videos_wrapper
  .video-row
  .list
  .video-swiper
  .swiper-slide:hover
  .video-click
  .tag
  span {
  display: block;
}

.videos_wrapper
  .video-row
  .list
  .video-swiper
  .swiper-slide:hover
  .video-click {
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  background: #fff;
  box-shadow: 0 11px 10px 4px rgba(0, 0, 0, 0.09);
}

.videos_wrapper
  .video-row
  .list
  .video-swiper
  .swiper-slide:hover
  .video-click {
  transform: scale(1.1);
  transition: all ease 0.3s;
  transform-origin: center;
}

.videos_wrapper .embed-video {
  width: 100%;
  position: relative;
}

.videos_wrapper .embed-video .iframecover {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}

.videos_wrapper .embed-video .iframecover iframe {
  border-radius: 8px;
  overflow: hidden;
}

.videos_wrapper .embed-video .title {
  line-height: 1.3;
  text-align: center;
  padding-bottom: 10px;
}

.videos_wrapper .embed-video .tag {
  display: flex;
  justify-content: center;
  align-items: center;
}

.videos_wrapper .embed-video .tag span {
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  color: #ffffff;
  text-align: center;
  background: #000000;
  border-radius: 8px;
  line-height: 1;
}

.cart-wrapper .shoppingCart .cartTable .cbody .row .col-price .mobiletext,
.cart-wrapper .shoppingCart .cartTable .cbody .row .col-total .mobiletext {
  display: none;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0) !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
}

.policy-content p {
  padding-bottom: 2rem;
}

.policy-content b {
  font-size: 1.3rem;
  padding-bottom: 10px;
  display: block;
}

.dropdown-box {
  position: relative;
}

.dropdown-box .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.dropdown-box .list .faq-category {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.dropdown-box .list .box {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background: #fafafa;
  position: relative;
}

.dropdown-box .list .box.active {
  background: #f0f0f0;
}

.dropdown-box .list .box .question {
  padding: 1.5rem 3rem 1.5rem 1.5rem;
  font-size: min(1.2rem, 18px);
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.dropdown-box .list .box .answer {
  padding: 1rem 3rem 1.5rem 1.5rem;
  font-size: min(1.1rem, 16px);
  display: none;
}

.dropdown-box .list .box.active .answer {
  display: block;
  line-height: 1.3;
}

.dropdown-box .list .box .answer p {
  padding-bottom: 10px;
}

.dropdown-box .list .box .answer b {
  font-style: normal;
  font-weight: 600;
  display: block;
  padding-bottom: 10px;
}

.dropdown-box .list .box .answer p > b {
  display: inline;
  padding: 0;
}

.dropdown-box .list .box .answer ul,
.dropdown-box .list .box .answer ol {
  margin-left: 20px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  line-height: 1.3;
  font-size: 1rem;
}

.dropdown-box .list .box .answer ol {
  list-style-type: decimal;
}

.dropdown-box .list .box .answer a {
  color: var(--mainblue);
}

.dropdown-box .list .box .icon {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 1.7rem;
  right: 1.5rem;
}
.dropdown-box .list .box .icon > div {
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #000000;
  top: calc(50% - 1px);
  left: 0px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.dropdown-box .list .box .icon > span {
  display: block;
  position: absolute;
  width: 2px;
  height: 14px;
  background: #000000;
  top: 0px;
  left: calc(50% - 1px);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.dropdown-box .list .box.active .icon > span {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.newshop .product-category {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
}

.newshop .product-category .box {
  border-radius: 8px;
  background: #f2f2f2;
  position: relative;
  padding: 2rem;
  cursor: pointer;
}

.newshop .product-category .box.active {
  background: var(--mainyellow);
}

.newshop .product-category .box:hover {
  background: var(--mainblue);
}

.newshop .product-category .box .icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 100%;
  padding: 10px;
  margin: 0 auto;
}

.newshop .product-category .box .icon img {
  width: 50%;
  display: block;
  object-fit: contain;
}

.newshop .product-category .box .cat-name {
  text-align: center;
  padding-top: 10px;
}

.pageButton .moments-year {
  display: flex;
  gap: 10px;
}

.pageButton .moments-year a {
  padding: 0.7rem 1rem;
  text-align: center;
  color: #000000;
  background: #e9e9e9;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  display: block;
}

.pageButton .moments-year a.active,
.pageButton .moments-year a:hover {
  color: #ffffff;
  background: #1e1e1e;
}

.moments-gallery .moments-wrapper {
  width: 100%;

  max-height: 800px; /* initial visible portion */
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.moments-gallery .moments-wrapper .moments-blur-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2%;
}

/* The blur overlay */
.moments-gallery .moments-wrapper .blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-image: url(../images/new/bluroverlay.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top 5px;
  display: block;
  border-bottom: 2px solid #ffffff;
}

.moments-gallery .moments-wrapper .moments-list {
  width: 32%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moments-gallery .moments-wrapper .reviews-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.moments-gallery .moments-wrapper .reviews-list .gallery {
  flex: 0 0 25%;
}

.moments-gallery .moments-wrapper .gallery {
  padding: 5px;
}

.moments-gallery .moments-wrapper .gallery .inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.moments-gallery .moments-wrapper .gallery .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0;
  transition: all ease 0.3s;
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem;
}

.moments-gallery .moments-wrapper .reviews-list .gallery .text {
  font-size: 0.9rem;
  font-weight: 400;
}

.moments-gallery .moments-wrapper .gallery:hover .text {
  opacity: 1;
  transition: all ease 0.3s;
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #25d366;
  z-index: 9999;
}

.whatsapp-floating a {
  color: #ffffff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.whatsapp-floating a i {
  font-size: 40px;
}

.daily_subscribe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
}

.daily_subscribe .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 400px;
  max-height: 95vh;
  overflow: auto;
  border-radius: 8px;
  border: 3px solid #fcd404;
  padding: 40px 10px 20px;
  box-sizing: border-box;
  background: #ffffff;
}

.daily_subscribe .content .title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  line-height: 1.3;
}

.daily_subscribe .content .title b {
  color: #fcd404;
}

.daily_subscribe .content .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px 20px;
}

.daily_subscribe .content .logo img {
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.daily_subscribe .content .text {
  text-align: center;
  line-height: 1.3;
  padding: 20px 0px 30px;
  font-size: 12px;
}

.daily_subscribe .content .button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.daily_subscribe .content .button a {
  display: flex;
  padding: 10px 30px;
  border-radius: 10px;
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 10px;
  align-items: center;
  font-size: 20px;
}

.daily_subscribe .content .button a:hover {
  background: var(--mainyellow);
  color: #000000;
}

.daily_subscribe .content .close_subscribe {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.retails-wrapper {
  width: 100%;
  position: relative;
}

.retailfilter {
  display: flex;
  gap: 15px;
}

.retailfilter .option {
  padding: 1rem 2rem;
  border-radius: 4px;
  background: #e9e9e9;
  color: #000000;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  font-size: min(1rem, 16px);
  cursor: pointer;
}

.retailfilter .option:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  transition: all ease 0.3s;
}

.retailfilter .option.active {
  background: #000000;
  color: #ffffff;
  transition: all ease 0.3s;
}

.retails-wrapper .search-filter {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  justify-content: space-between;
  width: 100%;
}

.retails-wrapper .search-filter .category {
  position: relative;
  z-index: 2;
  width: 40%;
}

.retails-wrapper .search-filter .category > span {
  display: block;
  font-size: 0.9rem;
  padding-bottom: 10px;
}

.retails-wrapper .search-filter .category .selectoption {
  position: relative;
  width: 100%;
}

.retails-wrapper .search-filter .category .searchinput {
  position: relative;
  border-radius: 4px;
  border: none;
  border: 1px solid #d3d3d3;
  overflow: hidden;
}

.retails-wrapper .search-filter .category .searchinput button {
  position: absolute;
  right: 0;
  top: 0;
  height: 47px;
  width: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mainblue);
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.retails-wrapper .search-filter .category .input-field {
  width: 100%;
  display: block;
  padding: 0.8rem 50px 0.8rem 1rem;
  height: 47px;
  line-height: 1;
  border: none;
  background: #fbfbfb;
}

.retails-wrapper .search-filter .category .selected {
  padding: 1rem 1rem;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  background: #fbfbfb;
  position: relative;
  color: #000000;
  font-size: 14px;
  cursor: pointer;
  height: 49px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.retails-wrapper .search-filter .category .selectoption .selected > span {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.retails-wrapper .search-filter .category .selectoption .options-cover {
  position: absolute;
  left: 0;
  top: calc(100% + 0.2rem);
  border: 1px solid #d3d3d3;
  background: #fbfbfb;
  padding: 0.2rem;
  border-radius: 4px;
  width: 100%;
  display: none;
  max-height: 150px;
  overflow-y: auto;
}

.retails-wrapper .search-filter .category .selectoption .options-cover.show {
  display: block;
}

.retails-wrapper .search-filter .category .selectoption .options-cover a {
  cursor: pointer;
  padding: 0.7rem;
  font-size: 14px;
  border-radius: 4px;
  display: block;
}

.retails-wrapper .search-filter .category .selectoption .options-cover a:hover {
  background: #efeeee;
}

.retails-shoplist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.retails-shoplist .shop {
  display: flex;
  align-items: flex-start;
  border-radius: 8px;
  padding: 0.5rem;
  background: #fafafa;
}

.retails-shoplist .shop:nth-child(even) {
  background: #eff1f1;
}

.retails-shoplist .shop .image {
  border-radius: 8px;
  overflow: hidden;
  flex: 0 0 auto;
  width: 60%;
}

.retails-shoplist .shop .content {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 40%;
}

.retails-shoplist .shop .content > div {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  position: relative;
}

.retails-shoplist .shop .content > div span.material-symbols-rounded {
  font-size: 1.2rem;
}

.retails-shoplist .shop .content > div .text {
  font-size: 0.9rem;
  line-height: 1.3;
}

.retails-shoplist .shop .content .name {
  font-size: 1.6rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.retails-shoplist .shop .content .location {
  padding-right: 50px;
}

.retails-shoplist .shop .content .location .waze {
  cursor: pointer;
  border-radius: 100%;
  position: absolute;
  right: 0px;
  width: 2rem;
  top: 0;
}

.retails-shoplist .shop .content .workinghour .text {
  width: 50%;
}

.retails-shoplist .shop .content .workinghour .text ul {
  margin-bottom: 0.5rem;
}

.retails-shoplist .shop .content .workinghour .text ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.retails-shoplist .shop .content .workinghour .viewall {
  color: #b4b4b4;
  text-transform: capitalize;
  font-size: 0.9rem;
  cursor: pointer;
}

.mediapublishers {
  width: 100%;
  position: relative;
}

.mediapublishers .list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mediapublishers .list a {
  flex: 1 0 calc(20% - 20px); /* 5 items per row with gap */
  border-radius: 8px;
  border: 1px solid #c8c8c8;
  padding: 0.5rem;
  max-width: calc(20% - 20px);
  transition: all ease 0.3s;
}

.mediapublishers .list a:hover {
  border: 1px solid #000000;
  transition: all ease 0.3s;
}

.media-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10002;
  display: none;
}

.media-popup .content {
  position: absolute;
  width: 95%;
  max-width: 500px;
  max-height: 95vh;
  overflow-y: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.media-popup .content .mediaSwiper .image img {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  height: 100%;
}

.mediaSwiper .swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 15px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 15px)
  );
  display: inline-block;
  opacity: 1;
  background: #f5f5f5;
  border: 1px solid #234354;
}

.mediaSwiper .swiper-pagination-bullet-active {
  background: #fcd404;
}

.media-popup .content .closemedia {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  z-index: 10;
  background: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.media-popup .content .closemedia span {
  font-size: 40px;
}

.dashboard {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 20px;
}

.dashboard .sidemenu {
  position: relative;
}

.sidemenu-mobile {
  position: relative;
  width: 100%;
  border: 1px solid #d7d7d7;
  padding: 20px 20px;
  color: #000000;
  border-radius: 5px;
  font-size: min(1.2rem, 18px);
  background: #ffffff;
  display: none;
  box-sizing: border-box;
}

.sidemenu-mobile span {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.dashboard .sidemenu .sidemenu-cover {
  display: flex;
  flex-direction: column;
}

.dashboard .sidemenu .sidemenu-cover a {
  height: 3rem;
  display: flex;
  align-items: center;
  padding: 0px 1.2rem;
  font-size: min(0.9rem, 16px);
  color: #000000;
  gap: 1ch;
  border-radius: 4px;
}

.dashboard .sidemenu .sidemenu-cover a:hover {
  background: rgba(0, 0, 0, 0.05);
  transition: all ease 0.3s;
}

.dashboard .sidemenu .sidemenu-cover a.active {
  background: var(--mainblue);
  color: #ffffff;
  transition: all ease 0.3s;
}

.dashboard .sidemenu .sidemenu-cover a.inactive {
  pointer-events: none;
  background: #d7d7d7;
  color: #ffffff;
}

.dashboard .sidemenu .sidemenu-cover a i {
  font-size: 1.2rem;
}

.dashboard-content {
  position: relative;
  width: 100%;
  padding-left: 20px;
  min-height: 50svh;
}

.dashboard-content .title {
  font-size: min(1.7rem, 20px);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.dashboard-content .title > a {
  display: block;

  font-size: min(1rem, 14px);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px var(--mainblue);

  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 1ch;
  padding: 10px 10px;
  color: var(--mainblue);
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.dashboard-content .title > a:hover {
  background: var(--mainblue);
  color: #ffffff;
}

.dashboard-content .dashboard-warning {
  padding: 20px;
  border-radius: 6px;
  background: var(--mainyellow);
  color: #000;
  line-height: 1.5;
  font-size: min(1rem, 14px);
  font-weight: 400;
  margin-bottom: 30px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.4);
}

.dashboard-content .dashboard-warningb {
  font-weight: 600;
}

.dashboard-content .dashboard-warning a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.dashboard-content .account .profile {
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columns */
  gap: 1rem; /* both row and column gap */
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .profile .row > div {
  color: #7b7b7b;
  line-height: 2em;
}

.dashboard-content .account .profile .row > div .note {
  font-size: min(1rem, 12px);
  margin-left: 5px;
  display: inline-block;
  vertical-align: text-top;
  height: 18px;
}

.dashboard-content .account .profile .row > div .note span {
  font-size: 18px;
}

.dashboard-content .account .profile .row > div .note.unverify {
  color: red;
}

.dashboard-content .account .profile .row > div .note.verify {
  color: green;
}

.dashboard-content .account .profile .row > span {
  font-weight: 600;
}

.dashboard-content .account .line {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  margin: 30px 0;
  height: 1px;
}

.dashboard-content .account .shipping {
  width: 100%;
  position: relative;
}

.dashboard-content .account .shipping > .list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
}

.dashboard-content .account .shipping > .list .adbox {
  padding: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  position: relative;
}

.dashboard-content .account .shipping > .list .adbox > .contact {
  display: flex;
  gap: 3ch;
  align-items: center;
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .shipping > .list .adbox > .contact > div {
  font-weight: 600;
}

.dashboard-content .account .shipping > .list .adbox > .address {
  margin: 1rem 0;
  line-height: 1.5;
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .shipping > .list .adbox > .action {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.dashboard-content .account .shipping > .list .adbox > .action a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  float: left;
  margin: 0px 8px 0px 0px;
  color: #000000;
  font-size: min(1.5rem, 16px);
}

.dashboard-content .account .shipping > .list .adbox > .action a.delete {
  color: red;
}

.dashboard-content .account .shipping > .list .adbox > a {
  color: var(--mainblue);
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .shipping > .list .adbox > .default {
  color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .shipping > .list .adbox.default {
  border: 1px solid var(--mainblue);
  background: rgba(0, 0, 0, 0.03);
}

.dashboard-content .account .shipping > .list .adbox .cta-address {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.dashboard-content .account .shipping > .list .adbox .cta-address > .content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--mainblue);
}

.dashboard-content .account .shipping > .list .adbox .cta-address > .content p {
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.8rem;
}

.dashboard-content
  .account
  .shipping
  > .list
  .adbox
  .cta-address
  > .content
  .button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dashboard-content
  .account
  .shipping
  > .list
  .adbox
  .cta-address
  > .content
  .button
  input {
  display: block;
  width: 100px;
  padding: 10px 10px;
  background: #ffffff;
  border-radius: 5px;
  text-align: center;
  color: #000000;
  border: none;
  cursor: pointer;
}

.dashboard-content .account .form {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
}

.dashboard-content .account .form .row {
  width: 48%;
}

.dashboard-content .account .form .row span.reminder {
  font-size: min(0.8rem, 12px);
  display: block;
  margin-top: 5px;
}

.dashboard-content .account .form .row > div {
  padding-bottom: 5px;
  font-size: min(1.1rem, 16px);
}

.dashboard-content .account .form .row > div.verify-input {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}

.dashboard-content .account .form .row > div.verify-input a {
  font-size: 12px;
}

.dashboard-content .account .form .row > div.verify-input a.verify {
  color: red;
  text-decoration: underline;
  cursor: pointer;
}

.dashboard-content .account .form .row > div.verify-input a.verified {
  color: green;
  pointer-events: none;
}

.dashboard-content .account .form .row input,
.dashboard-content .account .form .row select {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 36px;
  padding: 0px 14px;
}

.dashboard-content .account .form .row input:read-only {
  background: rgba(0, 0, 0, 0.1);
}

.dashboard-content .account .form .row select {
  height: 38px;
}

.dashboard-content .account .btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 30px;
}

.dashboard-content .voucher {
  position: relative;
  width: 100%;
}

.dashboard-content .voucher .search {
  width: min(50%, 400px);
  position: relative;
  margin-bottom: 40px;
}

.dashboard-content .voucher .search form {
  display: flex;
  width: 100%;
}

.dashboard-content .voucher .search form .input-field {
  display: block;
  position: relative;
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.4);
  border-radius: 4px 0px 0px 4px;
  -webkit-border-radius: 4px 0px 0px 4px;
  padding: 0px 14px;
}

.dashboard-content .voucher .search form .submit {
  display: block;
  position: relative;
  white-space: nowrap;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  height: 42px;
  line-height: 42px;
  background: #2fc3e5;
  padding: 0px 14px;
  font-size: min(1rem, 14px);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0px 4px 4px 0px;
  -webkit-border-radius: 0px 4px 4px 0px;
  cursor: pointer;
  border: solid 1px rgba(0, 0, 0, 0.4);
}

.dashboard-content .voucher .list {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
}

.dashboard-content .voucher .list .box {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  width: 100%;
}

.dashboard-content .voucher .list .box .code {
  background: var(--mainblue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  font-size: min(1.2rem, 18px);
}

.dashboard-content .voucher .list .box .code span {
  word-break: break-all;
  text-align: center;
  padding: 0 5px;
}

.dashboard-content .voucher .list .box .details {
  padding: 1rem;
  width: calc(100% - 18rem);
}

.dashboard-content .voucher .list .box .details .main {
  font-size: min(1.2rem, 20px);
  font-weight: 600;
  padding-bottom: 1rem;
}

.dashboard-content .voucher .list .box .details .note {
  opacity: 0.6;
  font-size: min(1rem, 14px);
  line-height: 1.3;
}

.dashboard-content .voucher .list .box .details .category {
  opacity: 0.7;
  font-weight: 600;
  font-size: min(1rem, 14px);
}

.dashboard-content .voucher .list .box .action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 10rem;
  padding-right: 1rem;
}

.dashboard-content .voucher .list .box .action .expired {
  background: #d7d7d7;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.dashboard-content .orders {
  position: relative;
  width: 100%;
}

.dashboard-content .orders .tab {
  display: flex;
  position: relative;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}

.dashboard-content .orders .tab a {
  display: block;
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: min(1rem, 14px);
  font-weight: 600;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 0px;
  text-align: center;
  color: #000000;
}

.dashboard-content .orders .tab a.active {
  background: var(--mainblue);
  color: #ffffff;
}

.dashboard-content .orders .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-content .orders .list .box {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

.dashboard-content .orders .list .box .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: rgba(0, 0, 0, 0.02);
}

.dashboard-content .orders .list .box .date > div {
  position: relative;
  font-size: min(1rem, 14px);
}

.dashboard-content .orders .list .box .date > span {
  position: relative;
  font-size: min(1rem, 14px);
  font-weight: 600;
}

.dashboard-content .orders .list .box.pending .date > span {
  color: var(--mainyellow);
}

.dashboard-content .orders .list .box.ongoing .date > span {
  color: #f1842e;
}

.dashboard-content .orders .list .box.completed .date > span {
  color: #30b441;
}

.dashboard-content .orders .list .box.cancelled .date > span {
  color: #ca1616;
}

.dashboard-content .orders .list .box .detail {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.dashboard-content .orders .list .box .detail .image {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}

.dashboard-content .orders .list .box .detail .name {
  width: calc(100% - 380px);
  padding: 0px 10px;
}

.dashboard-content .orders .list .box .detail .name .namecover > div {
  font-size: min(1rem, 14px);
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 8px;
}

.dashboard-content .orders .list .box .detail .name .namecover > span {
  font-size: min(1rem, 14px);
}

.dashboard-content .orders .list .box .detail .amount {
  font-size: min(1rem, 14px);
  width: 100px;
  padding: 0px 10px;
}

.dashboard-content .orders .list .box .detail .cost {
  display: flex;
  justify-content: flex-end;
  font-size: min(1rem, 14px);
  width: 160px;
  padding: 0px 10px;
}

.dashboard-content .orders .list .box .fee {
  padding: 20px;
}

.dashboard-content .orders .list .box .fee .text {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dashboard-content .orders .list .box .fee .text .ship {
  font-size: min(1rem, 14px);
}

.dashboard-content .orders .list .box .fee .text .total {
  font-size: min(1rem, 16px);
}

.dashboard-content .orders .list .box .fee .text .ship > span,
.dashboard-content .orders .list .box .fee .text .total > span {
  font-weight: 600;
}

.dashboard-content .orders .list .box .fee .action {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.dashboard-content .item {
  width: 100%;
  position: relative;
}

.dashboard-content .item .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: min(1rem, 14px);
  margin-bottom: 20px;
}

.dashboard-content .item .step {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 0px 20px 0px;
}

.dashboard-content .item .step > .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
  left: 0px;
  top: 10px;
}

.dashboard-content .item .step .stepbox {
  display: block;
  position: relative;
  float: left;
  width: calc(25% - 9px);
  margin: 0px 12px 0px 0px;
  z-index: 1;
}

.dashboard-content .item .step .stepbox .dot {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #ececec;
  border: solid 1px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin: 0px 0px 8px 0px;
}

.dashboard-content .item .step .stepbox.active .dot {
  border: solid 1px #2fc3e5;
}

.dashboard-content .item .step .stepbox > .dot > span {
  display: none;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #2fc3e5;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.dashboard-content .item .step .stepbox.active .dot span {
  display: block;
}
.dashboard-content .item .step .stepbox .text {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 12px);
  line-height: 18px;
}

.dashboard-content .item .step .stepbox.active .text {
  font-weight: 600;
  color: var(--mainblue);
}

.dashboard-content .item .step .stepbox:nth-child(3) {
  text-align: center;
}
.dashboard-content .item .step .stepbox:nth-child(4) {
  text-align: center;
}
.dashboard-content .item .step .stepbox:last-child {
  margin: 0px;
  text-align: right;
}

.dashboard-content .item .shipment {
  display: flex;
  position: relative;
  width: 100%;
  border: solid 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0px 0px 20px 0px;
}

.dashboard-content .item .shipment .address,
.dashboard-content .item .shipment .cost {
  padding: 20px;
  position: relative;
  width: 50%;
}

.dashboard-content .item .shipment .cost {
  border-left: solid 1px rgba(0, 0, 0, 0.1);
}

.dashboard-content .item .shipment .title {
  font-size: min(1.1rem, 18px);
  font-weight: 600;
  margin-bottom: 20px;
}

.dashboard-content .item .shipment .address .text {
  width: 100%;
}

.dashboard-content .item .shipment .address .text > div {
  font-size: min(1rem, 14px);
  margin-bottom: 10px;
  font-weight: 600;
}

.dashboard-content .item .shipment .address .text > span {
  display: block;
  font-size: min(1rem, 14px);
  line-height: 1.5;
}

.dashboard-content .item .shipment .cost .list {
  width: 100%;
}

.dashboard-content .item .shipment .cost .list .row {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: min(1rem, 14px);
  line-height: 1.5;
}

.dashboard-content .item .shipment .cost .list .row span {
  font-weight: 600;
  text-align: right;
}

.dashboard-content .item .shipment .cost .list .row:last-child {
  margin: 14px 0px 0px 0px;
  padding: 14px 0px 0px 0px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.dashboard-content .item .shipment .cost .list .row:last-child span {
  color: var(--mainblue);
}

.dashboard-content .item .product {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: solid 1px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-border-radius: 4px;
}

.dashboard-content .item .product .date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 0px 20px;
  background: rgba(0, 0, 0, 0.02);
}

.dashboard-content .item .product .date > div {
  position: relative;
  font-size: min(1rem, 14px);
}

.dashboard-content .item .product .detail {
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.dashboard-content .item .product .detail .image {
  width: 120px;
  height: 120px;
  -webkit-border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}

.dashboard-content .item .product .detail .name {
  width: calc(100% - 380px);
  padding: 0px 10px;
}

.dashboard-content .item .product .detail .name .namecover > div {
  font-size: min(1rem, 14px);
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 8px;
}

.dashboard-content .item .product .detail .name .namecover > span {
  font-size: min(1rem, 14px);
}

.dashboard-content .item .product .detail .amount {
  font-size: min(1rem, 14px);
  width: 100px;
  padding: 0px 10px;
}

.dashboard-content .item .product .detail .cost {
  display: flex;
  justify-content: flex-end;
  font-size: min(1rem, 14px);
  width: 160px;
  padding: 0px 10px;
}

.dashboard-content .item .product .fee {
  padding: 20px;
}

.dashboard-content .item .product .fee .text {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 20px;
}

.dashboard-content .item .product .fee .text .ship {
  font-size: min(1rem, 14px);
}

.dashboard-content .item .product .fee .text .total {
  font-size: min(1rem, 16px);
}

.dashboard-content .item .product .fee .text .ship > span,
.dashboard-content .item .product .fee .text .total > span {
  font-weight: 600;
}

.dashboard-content .item .product .fee .action {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
}

.aboutus {
  width: 100%;
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.aboutus > div {
  width: calc(50% - 10px);
}

.aboutus__ourquest {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.aboutus__ourjourney {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.aboutus__ourquest .bigimage,
.aboutus__ourjourney .bigimage {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.aboutus__ourquest .smallimage,
.aboutus__ourjourney .smallimage {
  border-radius: 20px;
  overflow: hidden;
  max-width: 80%;
}

.aboutus__ourquest .text {
  text-align: right;
  margin-top: 20px;
}

.aboutus__ourjourney .text {
  margin-bottom: 20px;
  text-align: left;
}

.aboutus__ourquest .text span,
.aboutus__ourjourney .text span {
  display: block;
  font-size: min(1.2rem, 18px);
  line-height: 1.5;
  margin-bottom: 10px;
}

.aboutus--title {
  font-size: min(2.5rem, 40px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.aboutus--title b {
  color: var(--mainblue);
}

.aboutus__ourquest .text p,
.aboutus__ourjourney .text p {
  font-size: min(1rem, 14px) !important;
  max-width: 90%;
  margin-left: auto;
}

.aboutus__ourjourney .text p {
  margin-right: auto;
  margin-left: initial;
}

.aboutus__ourcreations {
  background-image: url("../images/new/aboutus_5.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.aboutus__ourcreations:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 102%;
  top: 0;
  left: 0;
}

.aboutus__ourcreations .text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.aboutus__ourcreations .text span {
  font-size: min(1.2rem, 18px);
  margin-bottom: 20px;
  display: block;
}

.aboutus__ourcreations .text .title {
  margin-bottom: 30px;
}

.aboutus__ourcreations .text p {
  font-size: min(1rem, 14px) !important;
  max-width: 90%;
  line-height: 3ch;
  margin: 0 auto;
}

.aboutus__principles,
.aboutus__ourtribe,
.aboutus__ourvision {
  width: 100%;
  text-align: center;
}

.aboutus--subtitle {
  display: block;
  font-size: min(1.2rem, 18px);
  line-height: 1.5;
  margin-bottom: 10px;
}

.aboutus__principles--list {
  display: flex;
  flex-wrap: wrap;
}

.aboutus__principles--list .box {
  width: 25%;
  padding: 20px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  transition: all ease 0.3s;
}

.aboutus__principles--list .box:hover {
  border: 1px solid #e8e8e8;
  background: #fcfcfc;
  transition: all ease 0.3s;
}

.aboutus__principles--list .box .icon {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 7rem;
  padding: 1.7rem;
  border-radius: 100%;
  background: #f4f4f4;
  align-items: center;
  margin: 0 auto 2rem;
}

.aboutus__principles--list .box b {
  font-size: min(1.3rem, 24px);
  display: block;
  margin-bottom: 15px;
}

.aboutus__principles--list .box p {
  font-size: min(1rem, 12px) !important;
  line-height: 1.5;
}

.aboutus__ourtribe .desc {
  line-height: 1.5;
  font-size: min(1rem, 14px);
  margin: 0 auto;
  max-width: 80%;
}

.aboutus__ourtribe--imageslider {
  margin-top: 2rem;
}

.aboutus__ourtribe--imageslider .tribeSwiper {
  width: 100vw;
}

.aboutus__ourtribe--imageslider .tribeSwiper .swiper-slide .image {
  border-radius: 8px;
  overflow: hidden;
}

.aboutus__ourtribe--imageslider .tribeSwiper .swiper-slide {
  width: 19%;
}

.aboutus__ourtribe--rowcover {
  padding: 0px !important;
}

.aboutus__ourvision--rowcover {
  padding-bottom: 0px !important;
}

.aboutus__ourvision .desc {
  font-size: min(1rem, 14px);
  line-height: 1.5;
  margin: 0 auto;
  margin-bottom: 3rem;
  max-width: 80%;
}

.aboutus__ourvision .photo {
  width: 90%;
  margin: 0 auto;
  height: 25rem;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-radius: 10px 10px 0 0;
}

.eventslist {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 20px;
}

.eventslist--box {
  width: 32%;
}

.eventslist--box .poster {
  width: 100%;
  position: relative;
}

.eventslist--box .poster .status {
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 6px;
  border: 1px solid #ffffff;
  text-align: center;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background: #535353;
}

.eventslist--box .status.ongoing {
  background: #1aa313;
}

.eventslist--box .status.comingsoon {
  background: #d06818;
}

.eventslist--box .status.ended {
  background: #535353;
}

.eventslist--box .info {
  padding: 15px 15px;
  background: #ffffff;
  line-height: 1.5;
  color: #000000;
}

.eventslist--box .info .title {
  font-size: min(1.2rem, 18px);
  font-weight: 700;
  margin-bottom: 10px;

  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eventslist--box .info .add {
  margin-bottom: 10px;
}

.eventslist--box .info .add,
.eventslist--box .info .date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.eventslist--box .info .add div,
.eventslist--box .info .date div {
  font-size: min(1rem, 14px);
}

.eventslist--box:hover .info {
  background: #f8f8f8;
}

.eventslist__details {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.eventslist__details--poster {
  width: 400px;
}

.eventslist__details--info {
  flex: 1;
  line-height: 1.5;
}

.eventslist__details--info .date {
  background: #000;
  color: #fff;
  padding: 10px 30px 10px 20px;
  border-left: 10px solid var(--mainblue);
  margin-bottom: 30px;
  font-weight: 700;
  font-size: min(1.2rem, 20px);
  display: inline-block;
}

.eventslist__details--info .shortdesc {
  display: block;
  font-size: min(1.2rem, 20px);
  font-weight: 500;
  margin-bottom: 30px;
}

.eventslist__details--info .title {
  font-weight: 700;
  font-size: min(1.5rem, 28px);
  margin-bottom: 20px;
}

.eventslist__details--info .content {
  display: block;
  margin-bottom: 30px;
}

.eventslist__details--info .content a {
  color: var(--mainblue);
}

.eventslist__details--info .content img {
  width: auto;
  display: inline-block;
}

.eventslist__details--info .content,
.eventslist__details--info .content p {
  font-size: min(1rem, 14px);
}

.eventslist__details--info .content h3 {
  font-size: min(1.2rem, 18px);
  margin: 0;
}

.eventslist__details--info .event_link {
  display: flex;
  gap: 20px;
}

.eventslist__details--info .event_link .event_off {
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}

.eventslist__details--info .content strong,
.eventslist__details--info .content h2,
.eventslist__details--info .content h1,
.eventslist__details--info .content h4 {
  margin: 0;
}

.eventslist__eventphoto .title {
  font-size: min(2.5rem, 40px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.eventslist__eventphoto .title b {
  color: var(--mainblue);
}

.action_result_page {
  width: 100%;
  min-height: 50svh;
}

.action_result_page .title {
  font-size: min(2rem, 26px);
  font-weight: 600;
  margin-bottom: 20px;
}

.action_result_page .cover > b {
  font-weight: 700;
  display: block;
  padding-bottom: 20px;
  font-size: min(1rem, 16px);
  line-height: 1.5;
}

.action_result_page .cover p a {
  color: var(--mainblue);
}

.action_result_page .redeem_code table {
  width: 100%;
  max-width: 500px;
}

.action_result_page .redeem_code .input-form {
  width: 100%;
  display: flex;
  padding-bottom: 3rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.action_result_page .redeem_code .input-form p {
  width: 100%;
}

.action_result_page .redeem_code .input-form .input-field {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 36px;
  padding: 0px 14px;
}

.action_result_page .redeem_code .howtouse-code {
  padding-top: 3rem;
}

.action_result_page .redeem_code .howtouse-code p {
  margin-bottom: 10px;
}

.action_result_page .redeem_code .howtouse-code .guideimage {
  width: 100%;
  max-width: 500px;
}

.action_result_page .voucher_cover {
  margin-bottom: 20px;
}

.action_result_page .redeem_code table tr td {
  padding: 10px 10px;
  text-align: center;
  text-transform: capitalize;
  border: 2px solid #000;
  vertical-align: middle;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  font-size: min(1rem, 16px);
}

.action_result_page .redeem_code table tr td span {
  font-weight: 800;
  display: block;
  text-transform: uppercase;
  color: var(--mainblue);
}

.action_result_page .redeem_code table tr td b {
  font-weight: 800;
  font-size: 20px;
  display: block;
  padding: 0;
  margin: 0;
  color: #000000;
}

.action_result_page .redeem_code table tr td p {
  font-size: 10px;
  padding-bottom: 0;
  font-weight: 400;
  letter-spacing: 2px;
  color: #000000;
}

.action_result_page .redeem_code table tr:last-child td {
  text-transform: uppercase;
}

.action_result_page .redeem_code table tr:first-child td {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.gamemaster {
  width: 100%;
}

.gamemaster .subtitle {
  margin-bottom: 5rem;
}

.gamemaster .subtitle > b {
  font-weight: 600;
  font-size: min(1.4rem, 16px);
  display: block;
  padding-bottom: 20px;
}

.gamemaster .subtitle p {
  font-size: min(1.3rem, 14px);
}

.gamemaster .subtitle > a {
  color: var(--mainblue);
}

.gamemaster .gamecontent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2%;
  row-gap: 20px;
  margin-bottom: 40px;
}

.gamemaster .gamecontent > div {
  width: 49%;
  padding: 30px;
  background: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
}

.gamemaster .gamecontent > div span {
  display: block;
  font-weight: 700;
  font-size: min(2rem, 26px);
  user-select: none;
}

.gamemaster .gamecontent > div .expand {
  padding-top: 20px;
  line-height: 1.5;
  display: none;
}

.gamemaster .gamecontent > div.active {
  background: #fafafa;
  box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.39);
  -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.39);
  -moz-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.39);
}

.gamemaster .gamecontent > div.active .expand {
  display: block;
}

.gamemaster .gamecontent > div .expand p {
  margin-bottom: 10px;
}

.gamemaster .gamecontent > div .expand ul {
  margin-left: 20px;
  list-style-type: disc;
  font-size: min(1.3rem, 14px);
}

.gamemaster .gamecontent > div .expand ul li {
  margin: 10px 0;
}

.gamemaster .gamecontent > div .expand ul li b {
  font-style: italic;
  font-weight: 600;
}

.gamemaster .card-type {
  display: flex;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.gamemaster .card-type .card {
  display: grid;
  perspective: 1000px;
  width: 23.5%;
  position: relative;
  box-sizing: border-box;
  height: auto;
}

.gamemaster .card-type .card .card-inner {
  width: 100%;
  display: grid; /* Ensures the height follows the image */
  transform-style: preserve-3d;
  transition: transform 0.6s;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
}

.gamemaster .card-type .card:hover .card-inner {
  transform: rotateY(180deg);
}

.gamemaster .card-type .card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: auto;
}

.gamemaster .card-type .card .card-front,
.gamemaster .card-type .card .card-back {
  grid-area: 1 / 1; /* Ensures both sides overlap */
  backface-visibility: hidden;
}

.gamemaster .card-type .card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  top: 0;
  left: 0;
  background: #234354;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  font-size: min(1.3rem, 14px);
  padding: 30px;
  line-height: 1.3;
  box-sizing: border-box;
  transition: transform 0.6s;
  transform: rotateY(180deg);
  border-radius: 5px;
}

.gamemaster .card-type .card .card-back b {
  display: block;
  font-size: min(1.3rem, 14px);
  font-weight: 700;
  color: #fcd404;
  padding-bottom: 5px;
}

.nightout {
  width: 100%;
}

.nightout .text {
  padding: 50px 60px;
  border-radius: 8px;
  background: #79caf3;
  color: #ffffff;
  text-align: center;
  font-size: min(3rem, 32px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.nightout .post-list {
  display: flex;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
}

.nightout .post-list .post-cover {
  width: 49%;
}

.nightout .post-list .post-cover .post-image {
  aspect-ratio: 40 / 21;
  width: 100%;
}

.nightout .post-list .post-cover .post-image iframe {
  width: 100% !important;
  height: 100%;
}

.nightout .post-list .post-cover .post-detail {
  color: #000000;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: min(1.3rem, 14px);
  font-weight: 500;
  padding-top: 10px;
}

.nightout .post-list .post-cover .post-detail .title {
  font-weight: 700;
}

.ambassadors {
  width: 100%;
  margin-bottom: 50px;
}

.ambassadors__list {
  display: flex;
  gap: 2%;
  row-gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.ambassadors__list .box {
  width: 23.5%;
  aspect-ratio: 1;
  position: relative;
}

.ambassadors__list .box .profile {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.ambassadors__list .box .profile img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.ambassadors__list .box .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: #ffffff;
  transition: all ease 0.3s;
}

.ambassadors__list .box .link .name {
  font-size: min(2.5rem, 22px);
  font-weight: 700;
  text-align: center;
}

.ambassadors__list .box .link .professional {
  font-size: min(1.3rem, 16px);
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  padding: 0px 10px 20px;
}

.ambassadors__list .box .link a {
  padding: 10px 20px;
  border: 1px solid #ffffff;
  text-align: center;
  display: block;
  width: auto;
  max-width: 80%;
  margin: 0 auto;
  font-size: min(1.3rem, 16px);
  color: #ffffff;
  font-weight: 700;
}

.ambassadors__list .box .link a:hover {
  background: #ffffff;
  color: #000000;
}

.ambassadors__list .box:hover .link {
  opacity: 1;
  transition: all ease 0.5s;
}

.ambassadors__profile {
  width: 100%;
}

.ambassadors__profile .top {
  display: flex;
  margin-bottom: 30px;
  gap: 20px;
  align-items: flex-start;
}

.ambassadors__profile .top .left {
  width: 100%;
  max-width: 300px;
}

.ambassadors__profile .top .right {
  flex: 1;
}

.ambassadors__profile .top .right .social-media {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.ambassadors__profile .top .right .social-media a {
  color: #000000;
  font-size: min(2rem, 25px);
}

.ambassadors__profile .top .right .social-media a .fa-facebook {
  color: #1877f2;
}

.ambassadors__profile .top .right .social-media a .fa-instagram {
  color: #e1306c;
}

.ambassadors__profile .top .right .social-media a .fa-youtube {
  color: #ff0000;
}

.ambassadors__profile .top .right .name {
  font-size: min(2rem, 28px);
  font-weight: 800;
  padding-bottom: 15px;
}

.ambassadors__profile .top .right .position {
  font-size: min(1.3rem, 20px);
  font-weight: 700;
  padding-bottom: 30px;
}

.ambassadors__profile .top .right .desc {
  line-height: 1.3;
  font-size: min(1.2rem, 16px);
}

.ambassadors__profile .top .right .desc strong,
.ambassadors__profile .top .right .desc b {
  font-weight: 800;
}

.ambassadors__profile .top .right .desc ul,
.ambassadors__profile .top .right .desc ol {
  margin-left: 20px;
}

.ambassadors__profile .top .right .desc li {
  margin: 5px 0px;
}

.ambassadors__profile .top .right .desc ul {
  list-style-type: disc;
}

.ambassadors__profile .top .right .desc ol {
  list-style-type: decimal;
}

.ambassadors__profile .images .title {
  font-size: min(2.5rem, 40px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.ambassadors__profile .images .title b {
  color: var(--mainblue);
}

.customer-service {
  display: flex;
  align-items: flex-start;
}

.customer-service .left {
  width: 300px;
  position: relative;
}

.customer-service .right {
  flex: 1;
  padding-left: 20px;
}

.customer-service .right .service-content {
  display: none;
}

.customer-service .right .service-content#message {
  display: block;
}

.customer-service .right .service-content .message-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-service .right .service-content .message-contact .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(1.5rem, 16px);
  background: #fafafa;
  border-radius: 8px;
  padding: 20px;
}

.customer-service .right .service-content .message-contact .row b {
  font-size: min(1.5rem, 18px);
}

.customer-service .right .service-content .message-contact .row a {
  color: var(--mainblue);
  font-size: min(2.5rem, 32px);
}

.customer-service .right .service-content .message-contact .row a .fa-whatsapp {
  color: #25d366;
}

.customer-service .right .affiliate-form {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 20px;
  justify-content: space-between;
  line-height: 1.5;
}

.customer-service .right .affiliate-form .title {
  font-size: min(2rem, 20px);
  font-weight: 600;
}

.customer-service .right .affiliate-form .subtitle {
  font-size: min(2rem, 16px);
  font-weight: 400;
}

.customer-service .right .affiliate-form p {
  width: 100%;
}

.customer-service .right .affiliate-form .input-cover {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.customer-service .right .affiliate-form .input-cover.full {
  width: 100%;
}

.customer-service .right .affiliate-form .input-cover .input-field {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 36px;
  padding: 0px 14px;
}

.customer-service .right .affiliate-form .input-cover textarea.input-field {
  line-height: 1.5;
  padding: 10px 14px;
}

.customer-service .right .social-checkbox {
  display: flex;
  gap: 2%;
  row-gap: 20px;
  background: #fafafa;
  border-radius: 8px;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.customer-service .right .social-checkbox .checkbox-cover {
  width: 49%;
}

.customer-service .right .social-checkbox .checkbox-cover label {
  display: flex;
  gap: 5px;
  align-items: center;
}

.customer-service .right .social-checkbox .checkbox-cover label .box {
  height: 15px;
  width: 15px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: -2px;
  background: #ffffff;
  display: none;
}

.customer-service .right .social-checkbox .checkbox-cover label p {
  font-size: min(1.3rem, 16px);
}

.customer-service .left .mobile-option {
  height: 60px;
  padding: 0px 20px;
  border-radius: 6px;
  border: 1px solid #d7d7d7;
  font-size: min(2rem, 18px);
  cursor: pointer;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.customer-service .left .mobile-cover {
  display: flex;
  flex-direction: column;
}

.customer-service .left .mobile-cover .link {
  height: 52px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0px 20px;
  border-radius: 6px;
  color: #000;
  font-size: min(2rem, 16px);
  cursor: pointer;
}

.customer-service .left .mobile-cover .link:hover {
  background: #fafafa;
}

.customer-service .left .mobile-cover .link.active {
  background: var(--mainblue);
  color: #ffffff;
}

.eventslist__ticket--banner {
  height: 400px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.eventslist__ticket--banner span {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.eventslist__ticket {
  position: relative;
  z-index: 2;
}

.eventslist__ticket .pagebreadcumb,
.eventslist__ticket .pagebreadcumb a {
  color: #ffffff;
}

.eventslist__ticket--content {
  margin-top: 30px;
}

.eventslist__ticket--content .fullbanner {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.eventslist__ticket--content .eventname {
  text-align: center;
  font-weight: 700;
  font-size: min(1.5rem, 20px);
  margin: 20px auto 40px;
}

.eventslist__ticket--option {
  width: 100%;
  display: flex;
  gap: 2%;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 20px;
}

.eventslist__ticket--option label {
  width: 32%;
}

.eventslist__ticket--option label input {
  display: none;
}

.eventslist__ticket--option label form {
  height: 100%;
}

.eventslist__ticket--option label .ticketDetails {
  border-radius: 8px 8px;
  background: #fafafa;
  line-height: 1.5;
  position: relative;
  font-size: min(1rem, 14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  overflow: hidden;
  background: #234354;
}

.eventslist__ticket--option label .ticketDetails .desc {
  padding: 20px;
  font-size: min(1rem, 16px);
  color: #ffffff;
}

.eventslist__ticket--option label .ticketDetails .title {
  font-weight: 700;
  font-size: min(1.2rem, 18px);
  margin: 10px 0;
}

.eventslist__ticket--option label .ticketDetails .ticketprice {
  background: var(--mainblue);
  color: #ffffff;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  padding: 10px 10px;
  position: relative;
  font-size: min(1.2rem, 16px);
}

.eventslist__ticket--option label .price {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #d7d7d7;
  position: relative;
}

.eventslist__ticket--option label .price select {
  width: 100%;
  max-width: 100px;
  text-align: center;
}

.eventslist__ticket--total {
  margin: 30px auto;
  display: block;
  width: 100%;
  max-width: 75%;
}

.eventslist__ticket--total .left {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 30px;
}

.eventslist__ticket--total .left table {
  width: 100%;
}

.eventslist__ticket--total .left table thead {
  background: #d7d7d7;
}

.eventslist__ticket--total .left table tr th,
.eventslist__ticket--total .left table tr td {
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  font-size: min(1.2rem, 16px);
}

.eventslist__ticket--total .left table tr th:nth-child(2),
.eventslist__ticket--total .left table tr td:nth-child(2) {
  text-align: center;
}

.eventslist__ticket--total .left table tr th:nth-child(3),
.eventslist__ticket--total .left table tr td:nth-child(3) {
  text-align: right;
}

.eventslist__ticket--total .left table tr th:last-child,
.eventslist__ticket--total .left table tr td:last-child {
  width: 50px;
}

.eventslist__ticket--total .left table tr td .delete {
  cursor: pointer;
}

.eventslist__ticket--total .left table tfoot tr td {
  font-weight: 700;
  font-size: min(1.3rem, 18px);
  border-top: 1px solid #d7d7d7;
}

.eventslist__ticket--total .left table tr td .amountcover {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.eventslist__ticket--total .left table tr td .amountcover > span {
  width: 25px;
  height: 25px;
  background: #124759;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  cursor: pointer;
  font-size: min(1.2rem, 20px);
}

.eventslist__ticket--total .right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
  row-gap: 20px;
  padding: 50px 20px;
  background: #fafafa;
  border-radius: 8px;
}

.eventslist__ticket--total .right .text {
  width: 100%;
  font-weight: 600;
  font-size: min(1.1rem, 18px);
}

.eventslist__ticket--total .right .input-cover {
  width: 49%;
}

.eventslist__ticket--total .right .input-cover.full {
  width: 100%;
}

.eventslist__ticket--total .right .input-cover .input-field {
  display: block;
  position: relative;
  width: 100%;
  font-size: min(1rem, 14px);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  border: solid 1px rgba(0, 0, 0, 0.2);
  line-height: 36px;
  padding: 0px 14px;
}

.eventslist__ticket--success {
  width: 100%;
  text-align: center;
  line-height: 1.5;
  padding: 20px 20px;
  background: #fafafa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 50vh;
}

.eventslist__ticket--success .title {
  text-align: center;
  font-size: min(2rem, 26px);
  font-weight: 800;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1200px) {
  .rowcover,
  .product-extra-desc .cover,
  .faq > .faqcover,
  .product-info .wrapper,
  .cart-wrapper {
    max-width: 77.5rem !important;
  }

  .ui-datepicker {
    width: 250px !important;
  }

  .ui-datepicker table,
  .ui-datepicker .ui-datepicker-title select {
    font-size: 14px !important;
  }

  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    width: 18px !important;
    height: 18px !important;
  }

  .loginregister_wrapper .content .inputform-cover .form .field > div,
  .loginregister_wrapper .content .inputform-cover .form .agreement label {
    font-size: 12px;
  }
}

@media only screen and (max-width: 900px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem !important;
  }

  h3 {
    font-size: 2.3rem;
  }

  p {
    font-size: 14px;
  }

  .dashboard-content .account .form .row span.reminder {
    font-size: 10px;
  }

  .eventslist__ticket--content .eventname {
    font-size: 18px;
  }

  .eventslist__ticket--option label .ticketDetails .desc,
  .eventslist__ticket--option label .ticketDetails .ticketprice,
  .eventslist__ticket--total .left table tr th,
  .eventslist__ticket--total .left table tr td,
  .eventslist__ticket--total .left table tr td .amountcover > span {
    font-size: 14px;
  }

  .eventslist__ticket--total .right .text,
  .eventslist__ticket--total .left table tfoot tr td,
  .eventslist__ticket--option label .ticketDetails .title {
    font-size: 16px;
  }

  .customer-service .right .social-checkbox .checkbox-cover label p {
    font-size: 14px;
  }

  .customer-service .right .affiliate-form .title {
    font-size: 20px;
  }

  .customer-service .right .affiliate-form .subtitle {
    font-size: 16px;
  }

  .customer-service .right .affiliate-form .input-cover .input-field,
  .customer-service .right .service-content .message-contact .row b {
    font-size: 14px;
  }

  .customer-service .right .service-content .message-contact .row a {
    font-size: 32px;
  }

  .eventslist__details--info .content,
  .eventslist__details--info .content p {
    font-size: 12px;
  }

  .ambassadors__profile .images .title {
    font-size: 26px;
  }

  .ambassadors__profile .top .right .desc {
    font-size: 14px;
  }

  .ambassadors__profile .top .right .position {
    font-size: 18px;
  }

  .ambassadors__profile .top .right .name,
  .ambassadors__profile .top .right .social-media a {
    font-size: 24px;
  }

  .nightout .post-list .post-cover .post-detail {
    font-size: 14px;
    font-weight: 400;
  }

  .nightout .post-list .post-cover .post-detail .title {
    font-size: 16px;
  }

  .gamemaster .gamecontent > div .expand ul {
    font-size: 14px;
  }

  .gamemaster .gamecontent > div span {
    font-size: 16px;
  }

  .action_result_page .cover > b {
    font-size: 14px;
  }

  .action_result_page .redeem_code table tr td {
    font-size: 14px;
  }

  .action_result_page .redeem_code .input-form .input-field {
    font-size: 14px;
  }

  .action_result_page .title {
    font-size: 20px;
  }

  .action_result_page .redeem_code .howtouse-code {
    padding-top: 40px;
  }

  .action_result_page .redeem_code .input-form {
    padding-bottom: 40px;
  }

  .cart-wrapper .shoppingCart .cartHeader h4,
  .cart-wrapper .orderSummary .title h4 {
    font-size: 18px;
  }

  .header_new .rowcover .actionbar .cart .in-cart {
    width: 14px;
    height: 14px;
    font-size: 10px;
    right: -5px;
    top: -5px;
  }

  .product-info .product-detail .row .content .fullpdf a {
    font-size: 16px;
    padding: 10px 10px;
  }

  .newshop .newProductlist .productBox .soldout {
    font-size: 20px;
  }

  .newshop .newProductlist .productBox .productstatus > div {
    font-size: 10px;
    padding: 5px 20px;
    border-radius: 20px;
  }

  .newshop .newProductlist .productBox .productDesc {
    gap: 10px;
    padding: 20px 0px 10px;
  }

  .retails-shoplist {
    gap: 30px;
  }

  .contactus-cover {
    padding-bottom: 50px;
  }

  .contactus-cover .left .location {
    gap: 30px;
  }

  .newhome-ourpartners > .rowcover .featuredin-logo div {
    width: 120px;
    height: 120px;
  }

  .newhome-latestproducts .rowcover,
  .newhome-ingredients .rowcover,
  .newhome-ourpartners > .rowcover,
  .newhome-officialpartner .rowcover {
    top: initial;
    padding: 40px 0;
  }

  .footer_new .rowcover {
    padding: 40px 0px;
  }

  .footer_new .rowcover .lowerpart .company ul li {
    gap: 10px;
  }

  .newfooterbottom .rowcover {
    font-size: 12px;
  }

  .newhome-ourpartners > .rowcover .featuredin-logo {
    gap: 10px;
  }

  .footer_new .rowcover .lowerpart .company ul li {
    margin-bottom: 15px;
  }

  .cart-wrapper .shoppingCart .cartHeader,
  .cart-wrapper .orderSummary .title {
    padding-bottom: 20px;
  }

  .cart-wrapper .shoppingCart .cartTable,
  .cart-wrapper .orderSummary .orderTable {
    padding-top: 20px;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    span {
    font-size: 16px;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    input {
    width: 35px;
    font-size: 14px;
  }

  .header_new .rowcover {
    padding: 20px 0;
  }

  .cartAddress--detail .name {
    font-size: 14px;
  }

  .cart-wrapper .shoppingCart .cartAddress .empty,
  .cartAddress--detail .mobile,
  .cartAddress--detail .address,
  .cart-wrapper .orderSummary .orderTable .orderAgreement label .text,
  .cart-wrapper
    .orderSummary
    .orderTable
    .orderTotal
    .grandTotal
    .paymentbutton
    span,
  .cart-wrapper .orderSummary .orderTable .orderTotal a.continueshopping {
    font-size: 12px;
  }

  .fullscreenPopup .popupcontent .title {
    font-size: 16px;
  }

  .fullscreenPopup .popupcontent .form .row > div,
  .fullscreenPopup .popupcontent .form .row input,
  .fullscreenPopup .popupcontent .form .row select {
    font-size: 12px;
  }

  .dashboard-content .dashboard-warning {
    font-size: 12px;
  }

  .eventslist__eventphoto .title {
    font-size: 26px;
  }

  .eventslist__details--info .date {
    font-size: 14px;
  }

  .eventslist__details--info .shortdesc {
    font-size: 16px;
  }

  .eventslist__details--info .title {
    font-size: 20px;
  }

  .eventslist__details--info .content h3 {
    font-size: 16px;
  }

  .eventslist--box .info .title {
    font-size: 16px;
  }

  .eventslist--box .info .add div,
  .eventslist--box .info .date div {
    font-size: 14px;
  }

  .eventslist--box {
    width: 49%;
  }

  .aboutus__ourquest .text p,
  .aboutus__ourjourney .text p,
  .aboutus__ourcreations .text p,
  .aboutus__principles--list .box p {
    font-size: 12px !important;
  }

  .aboutus__ourvision .desc,
  .aboutus__ourtribe .desc {
    font-size: 12px;
  }

  .aboutus--title {
    font-size: 32px;
  }

  .aboutus--subtitle,
  .aboutus__ourquest .text span,
  .aboutus__ourjourney .text span,
  .aboutus__ourcreations .text span {
    font-size: 14px;
  }

  .dashboard-content .item .product .detail .cost {
    width: 100px;
  }

  .dashboard-content .item .product .detail .name {
    width: calc(100% - 320px);
  }

  .dashboard-content .item .head,
  .dashboard-content .item .step .stepbox .text {
    font-size: 12px;
  }

  .dashboard-content .item .shipment .title,
  .dashboard-content .item .product .fee .text .total {
    font-size: 16px;
  }

  .dashboard-content .item .shipment .address .text > div,
  .dashboard-content .item .shipment .address .text > span,
  .dashboard-content .item .shipment .cost .list .row,
  .dashboard-content .item .product .date > div,
  .dashboard-content .item .product .detail .name .namecover > div,
  .dashboard-content .item .product .detail .name .namecover > span,
  .dashboard-content .item .product .detail .amount,
  .dashboard-content .item .product .detail .cost {
    font-size: 12px;
  }

  .dashboard-content .orders .tab a,
  .dashboard-content .orders .list .box .date > div,
  .dashboard-content .orders .list .box .date > span,
  .dashboard-content .orders .list .box .detail .name .namecover > div,
  .dashboard-content .orders .list .box .detail .name .namecover > span,
  .dashboard-content .orders .list .box .detail .amount,
  .dashboard-content .orders .list .box .detail .cost,
  .dashboard-content .orders .list .box .fee .text .ship {
    font-size: 12px;
  }

  .dashboard-content .orders .list .box .detail .cost {
    width: 100px;
  }

  .dashboard-content .item .product .fee .action .defaultbutton {
    width: 100%;
    max-width: 120px;
  }

  .dashboard-content .item .product .fee .action form {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .dashboard-content .orders .list .box .detail .name {
    width: calc(100% - 320px);
  }

  .dashboard-content .orders .list .box .fee .action .defaultbutton {
    width: 100%;
    max-width: 120px;
  }

  .dashboard-content .orders .list .box .fee .text .total {
    font-size: 14px;
  }

  .dashboard-content .account .form .row input,
  .dashboard-content .account .form .row > div,
  .dashboard-content .voucher .search form .input-field,
  .dashboard-content .voucher .search form .submit,
  .dashboard-content .account .form .row select {
    font-size: 12px;
  }

  .dashboard-content .voucher .list .box .details,
  .fullscreenPopup .popupcontent .voucher .list .box .details {
    padding: 20px;
  }
  .dashboard-content .voucher .list .box .details .main {
    font-size: 16px;
  }

  .dashboard-content .voucher .list .box .details .note,
  .dashboard-content .voucher .list .box .details .category {
    font-size: 12px;
  }

  .dashboard-content .voucher .list .box .code {
    width: 100px;
    font-size: 14px;
  }

  .dashboard-content .voucher .list .box .action {
    width: 100px;
  }

  .dashboard-content .voucher .list .box .action .defaultbutton,
  .fullscreenPopup .popupcontent .voucher .list .box .action .defaultbutton {
    width: 100%;
  }

  .dashboard-content .voucher .list .box .details {
    width: calc(100% - 200px);
  }

  .dashboard {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dashboard-content {
    padding-left: 0;
  }

  .sidemenu {
    max-width: 300px;
  }

  .sidemenu-mobile {
    display: block;
    font-size: 14px;
  }

  .dashboard .sidemenu .sidemenu-cover {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 5;
    background: #ffffff;
    border: 1px solid #d7d7d7;
    display: none;
  }

  .dashboard-content .voucher .search {
    width: 100%;
    max-width: 400px;
  }

  .dashboard .sidemenu .sidemenu-cover a {
    font-size: 12px;
    padding: 0px 20px;
    height: 40px;
  }

  .dashboard .sidemenu .sidemenu-cover a i {
    font-size: 18px;
  }

  .dashboard-content .account .profile,
  .dashboard-content .account .shipping > .list .adbox > .contact,
  .dashboard-content .account .shipping > .list .adbox > .address,
  .dashboard-content .account .shipping > .list .adbox > a,
  .dashboard-content .account .shipping > .list .adbox > .default {
    font-size: 12px;
  }

  .dashboard-content .account .shipping > .list .adbox > .action a,
  .cartAddress--detail .cover .action .modify {
    font-size: 18px;
  }

  .dashboard-content .account .shipping > .list .adbox {
    padding: 15px;
  }

  .dashboard-content .account .shipping > .list .adbox > .address {
    margin: 15px 0px;
  }

  .dashboard-content .title {
    font-size: 18px;
  }

  .dashboard-content .title > a {
    font-size: 12px;
  }

  .retails-wrapper .search-filter .category .selectoption .options-cover {
    padding: 0;
  }

  .retails-wrapper .search-filter .category .selectoption .options-cover a,
  .retails-wrapper .search-filter .category .selected {
    padding: 10px;
  }

  .retails-shoplist .shop {
    flex-wrap: wrap;
    padding: 10px 10px;
  }

  .retails-shoplist .shop .content,
  .retails-shoplist .shop .image {
    width: 100%;
  }

  .retails-shoplist .shop .content {
    padding: 20px 0px;
  }

  .pageButton .moments-year a,
  .retailfilter .option,
  .page-topintro .rowcover .pageButton .tab-option a {
    padding: 10px 20px;
    font-size: 12px;
  }

  .retails-wrapper .search-filter .category > span {
    font-size: 14px;
  }

  .retails-shoplist .shop .content > div .text,
  .retails-shoplist .shop .content .workinghour .viewall {
    font-size: 14px;
  }

  .retails-shoplist .shop .content > div span.material-symbols-rounded {
    font-size: 20px;
  }

  .retails-shoplist .shop .content .location .waze {
    width: 40px;
  }

  .retails-shoplist .shop .content .name {
    font-size: 20px;
  }

  .popup-module .popup-content .content .title {
    font-size: 16px;
  }

  .popup-module .popup-content .otp-message .text {
    font-size: 14px;
  }

  .popup-module .popup-content .otp-message .otp-input .input-field {
    padding: 5px 10px;
    font-size: 14px;
  }

  .popup-module .popup-content .otp-message .otp-input {
    max-width: 50%;
  }

  .popup-module .popup-content .otp-message .otp-input .resendotp {
    font-size: 14px;
    width: auto;
  }

  .popup-module .popup-content .otp-message .otp-input .msgsend {
    font-size: 12px;
  }

  .newshop .product-category .box .icon img {
    width: 75%;
  }

  .newshop .product-category .box .cat-name {
    font-size: 12px;
  }

  .header_new .rowcover .logo a {
    font-size: 3.5rem;
  }

  .newhome-ourpartners > .rowcover > .title {
    font-size: 3rem;
  }

  .dropdown-box .list .faq-category {
    font-size: 3rem;
  }

  .rowcover,
  .product-extra-desc .cover,
  .faq > .faqcover,
  .product-info .wrapper,
  .cart-wrapper {
    max-width: 93svw !important;
  }

  .header_new .rowcover .navbar a,
  .header_new .rowcover .actionbar .language .current {
    font-size: 13px;
  }

  .header_new .rowcover .navbar .links {
    gap: 15px;
  }

  .header_new .rowcover .logo {
    padding-right: 20px;
  }

  .enthusiasts-reviewBox .comment {
    font-size: 1.4rem;
  }

  .footer_new .rowcover .upperpart {
    flex-wrap: wrap;
    row-gap: 30px;
    padding-bottom: 40px;
  }

  .footer_new .rowcover .lowerpart {
    padding-top: 40px;
  }

  .footer_new .rowcover .upperpart .left {
    font-size: 14px;
    line-height: 2.5ch;
    width: 100%;
    margin-bottom: 10px;
  }

  .footer_new .rowcover .upperpart .right {
    width: 100%;
    max-width: 300px;
  }

  .footer_new .rowcover .upperpart .right .newsletter .text {
    font-size: 16px;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input {
    height: 5rem;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    width: 100%;
    gap: 2%;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input > i {
    font-size: 31px;
    width: auto;
    top: initial;
    left: initial;
    height: auto;
    position: relative;
    width: 10%;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input input {
    height: auto;
    width: 50%;
    font-size: 1.5rem;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input > a {
    width: 40%;
    position: relative;
    top: initial;
    right: initial;
    height: auto;
    padding: 1rem;
    font-size: 14px;
  }

  .footer_new .rowcover .lowerpart .company > div,
  .footer_new .rowcover .lowerpart .directory .directorycover .box > div {
    font-size: 16px;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover .box span a {
    font-size: 14px;
  }

  .footer_new .rowcover .lowerpart .company {
    width: 30%;
  }

  .footer_new .rowcover .lowerpart .directory {
    width: 70%;
    padding-left: 20px;
  }

  .newhome-topbanner .rowcover {
    padding: 20rem 0;
  }

  .newhome-topbanner .rowcover .videocover {
    width: 40%;
  }

  .newhome-topbanner .rowcover .videocover.show {
    width: 60%;
  }

  .newhome-topbanner .rowcover .videocover .playbutton {
    width: 9rem;
    height: 9rem;
  }

  .newhome-topbanner .rowcover .videocover .playbutton span {
    font-size: 9rem;
  }

  .newhome-latestproducts .rowcover .right .top .text p,
  .newhome-latestproducts .rowcover .right .btm .text p {
    font-size: 2rem !important;
  }

  .newhome-latestproducts .rowcover .right .top .text p span,
  .newhome-latestproducts .rowcover .right .btm .text p span {
    font-size: 3rem;
  }

  .newhome-latestproducts .rowcover .right .top .text,
  .newhome-latestproducts .rowcover .right .btm .text {
    width: 70%;
  }

  .newhome-ingredients .rowcover .list {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .newhome-ingredients .rowcover .list .item {
    width: 32%;
    height: 20rem;
  }

  .newhome-ingredients .rowcover .list .item p {
    font-size: 2.5rem !important;
  }

  .newhome-ingredients .rowcover .list .text {
    font-size: 2rem;
    bottom: -150%;
  }

  .newhome-ingredients .rowcover .list .icon {
    width: 10rem;
  }

  .newhome-itembanner .rowcover .text span,
  .newhome-lastbanner .rowcover .text span {
    font-size: 1.8rem;
  }

  .newhome-itembanner .rowcover .text strong,
  .newhome-lastbanner .rowcover .text strong {
    font-size: 3rem;
  }

  .newhome-itembanner .rowcover,
  .newhome-lastbanner .rowcover {
    padding: 6rem 0;
  }

  .newhome-lastbanner .rowcover .image {
    bottom: 0;
    top: initial;
  }

  .newhome-itembanner .rowcover .text a,
  .newhome-lastbanner .rowcover .text a,
  .newhome-partyenthusiasts .rowcover .title a,
  .newhome-officialpartner .rowcover .clicktoshow {
    padding: 1.6rem 2.5rem;
    font-size: 1.6rem;
    border-radius: 10rem;
  }

  .newhome-officialpartner .rowcover .clicktoshow {
    width: 25rem;
  }

  .enthusiasts-reviewBox {
    width: 40rem;
  }

  .page-topintro .rowcover .pageDesc .title {
    font-size: 3.5rem;
  }

  .pagebreadcumb a {
    font-size: 1.5rem;
  }

  .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
  }

  .newshop .newProductlist .productBox .productDesc .name {
    font-size: 14px;
    height: 35px;
    padding: 0px 10px;
  }

  .newshop .newProductlist .productBox .productDesc .price {
    font-size: 14px;
  }

  .productdetailTop .productTopcover .productAddtocart .productName {
    font-size: 2.5rem !important;
  }

  .productdetailTop .productTopcover .productAddtocart .productShortdesc {
    font-size: 1.3rem;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType b {
    font-size: 1.4rem;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .plan
    .option
    label
    .text
    div {
    font-size: 1.4rem;
  }

  .productdetailTop .productTopcover .productAddtocart .productPrice p {
    font-size: 1.9rem !important;
  }

  .productdetailTop .productTopcover .productAddtocart a.addtocart {
    font-size: 1.3rem;
  }

  .product-extra-desc .cover p > b,
  .product-extra-desc .cover .title {
    font-size: 18px;
  }

  .product-extra-desc .cover ul li,
  .product-extra-desc .cover ol li {
    font-size: 14px;
  }

  .faq > .faqcover .list .faq-category {
    font-size: 3rem;
  }

  .faq > .faqcover .list .box > .question {
    font-size: 16px;
    padding: 20px 40px 20px 20px;
  }

  .faq > .faqcover .list .box.active > .answer div {
    font-size: 14px;
    padding: 0 40px 20px 20px;
  }

  .product-info .product-effect .cover .icon {
    width: 5rem;
  }

  .product-info .product-effect .cover .desc b {
    font-size: 1.6rem;
  }

  .product-info .product-detail .row .category {
    font-size: 16px;
    padding: 20px;
  }

  .product-info .product-detail .row .content table.nutritionTable,
  .product-info .product-detail .row .content {
    font-size: 14px;
    padding: 20px;
  }

  .product-info .product-detail .row .content {
    padding-top: 0;
  }

  .product-info .product-detail .row .category .icon {
    width: 10px;
    height: 10px;
  }

  .product-info .product-detail .row .category .icon > div {
    width: 10px;
  }

  .product-info .product-detail .row .category .icon > span {
    height: 10px;
  }

  .contactus-cover .left .title > div,
  .contactus-cover .left .location .box .subject b {
    font-size: 16px;
  }

  .contactus-cover .left .location .box .text {
    font-size: 14px;
  }

  .contactus-cover .right .enquiry .title {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .contactus-cover .right .enquiry .form .inputbox div,
  .contactus-cover .right .enquiry .form .inputbox input,
  .contactus-cover .right .enquiry .form .inputbox textarea {
    font-size: 14px;
  }

  .defaultbutton {
    font-size: 1.5rem;
    padding: 10px 20px;
  }

  .loginregister_wrapper
    .content
    .inputform-cover
    .form
    .action_others
    a.google-login-btn {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 10px 10px;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .title,
  .videos_wrapper .featured_videos .details .title {
    font-size: 1.5rem;
  }

  .videos_wrapper .featured_videos .details a {
    font-size: 1.3rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .tag span,
  .videos_wrapper .featured_videos .details .tag > span {
    font-size: 1.1rem;
  }

  .videos_wrapper .video-row .list .video-category-title {
    font-size: 2.2rem;
  }

  .cart-wrapper .orderSummary .orderTable table tr td,
  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode b,
  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal > div,
  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode span {
    font-size: 12px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal span {
    font-size: 16px;
  }

  .cart-wrapper .shoppingCart .cartTable .chead .col,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .details,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-price,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-total,
  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    input:read-only {
    font-size: 14px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode a.apply,
  .cart-wrapper .shoppingCart .cartHeader span {
    font-size: 11px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode input.promo {
    padding: 5px;
    font-size: 14px;
  }

  .popup-module .popup-content {
    max-width: 75%;
    padding: 20px 20px;
  }

  .popup-module .popup-content .content {
    font-size: 14px;
  }

  .popup-module .popup-content .redirect_link {
    padding-top: 10px;
  }

  .fullscreenPopup .popupcontent {
    max-width: 75%;
  }

  .fullscreenPopup .popupcontent .voucher .list .box .code {
    width: 100px;
    font-size: 14px;
  }

  .fullscreenPopup .popupcontent .voucher .list .box .action {
    width: 100px;
  }

  .fullscreenPopup .popupcontent .voucher .list .box .details {
    width: calc(100% - 200px);
    padding: 20px 20px;
  }

  .fullscreenPopup .popupcontent .voucher .list .box .details .main {
    font-size: 16px;
  }

  .fullscreenPopup .popupcontent .voucher .list .box .details .note,
  .fullscreenPopup .popupcontent .voucher .list .box .details .category {
    font-size: 12px;
  }

  .fullscreenPopup .popupcontent .voucher .list .empty {
    font-size: 14px;
  }

  .loginregister_wrapper .content .inputform-cover .form .field > div,
  .loginregister_wrapper .content .inputform-cover .form .action_link,
  .loginregister_wrapper .content .inputform-cover .form .redirect {
    font-size: 14px;
  }

  .loginregister_wrapper .content .inputform-cover .form {
    max-width: 90%;
  }

  .loginregister_wrapper .content .inputform-cover .form .field .reminder {
    font-size: 10px;
  }

  .loginregister_wrapper .content .inputform-cover .form .agreement {
    padding-bottom: 15px;
  }

  .loginregister_wrapper .content .inputform-cover .form .agreement label {
    font-size: 14px;
  }

  .loginregister_wrapper
    .content
    .inputform-cover
    .form
    .field
    .input-symbol
    .toggle-password {
    font-size: 16px;
  }

  .policy-content b {
    font-size: 2rem;
  }

  .dropdown-box .list .faq-category {
    font-size: 19px;
  }

  .dropdown-box .list .box .question {
    font-size: 16px;
    padding: 20px 35px 20px 20px;
  }

  .dropdown-box .list .box .answer {
    font-size: 14px;
    padding: 0px 35px 20px 20px;
  }

  .dropdown-box .list .box.active .answer {
    padding: 0px 35px 20px 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .dropdown-box .list .box .answer b {
    font-size: 16px;
  }

  .dropdown-box .list .box .answer ul,
  .dropdown-box .list .box .answer ol {
    font-size: 1.6rem;
  }

  .dropdown-box .list .box .answer p {
    padding-bottom: 15px;
  }

  .dropdown-box .list .box .icon {
    top: 24px;
    right: 15px;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 5rem !important;
  }

  h5 {
    font-size: 14px;
  }

  .header_new .rowcover .navbar a.mobileonly {
    display: block;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover {
    row-gap: 20px;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover .box span a {
    font-size: 12px;
  }

  .eventslist__ticket--content .fullbanner {
    max-width: 400px;
  }

  .eventslist__ticket--total {
    max-width: 100%;
  }

  .eventslist__ticket--option label {
    width: 100%;
  }

  .customer-service .left .mobile-cover .link {
    font-size: 14px;
  }

  .customer-service {
    min-height: 70vh;
    flex-direction: column;
  }

  .customer-service .left {
    width: 100%;
    max-width: 100%;

    margin-bottom: 30px;
    border-radius: 8px;
  }

  .customer-service .left .mobile-cover .link {
    border-bottom: 2px solid #d7d7d7;
    background: #fafafa;
    margin-bottom: 5px;
  }

  .customer-service {
    flex-wrap: wrap;
  }

  .customer-service .right {
    width: 100%;
    padding-left: 0;
    flex: auto;
  }

  .ambassadors__profile .top {
    flex-direction: column;
  }

  .ambassadors__list .box .link .name {
    font-size: 16px;
  }

  .ambassadors__list .box .link .professional,
  .ambassadors__list .box .link a {
    font-size: 12px;
  }

  .ambassadors__list .box {
    width: 32%;
  }

  .nightout .post-list .post-cover .post-detail {
    font-size: 12px;
    font-weight: 400;
  }

  .nightout .post-list .post-cover .post-detail .title {
    font-size: 14px;
    line-height: 1.3;
  }

  .gamemaster .gamecontent > div {
    width: 100%;
  }

  .gamemaster .subtitle p {
    font-size: 12px;
  }

  .gamemaster .subtitle > b {
    font-size: 14px;
  }

  .gamemaster .card-type .card {
    width: 32%;
  }

  .gamemaster .card-type .card .card-back,
  .gamemaster .card-type .card .card-back b {
    font-size: 12px;
  }

  .loginregister_wrapper .content .inputform-cover .form .action_button {
    padding-bottom: 20px;
    row-gap: 20px;
  }

  .contactus-cover .left .location .box .subject {
    padding-bottom: 15px;
  }

  .header_new .rowcover .logo a {
    font-size: 30px;
  }

  .contactus-cover .left .location .box {
    flex: 1;
    padding-right: 0;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal span {
    font-size: 18px;
  }

  .cart-wrapper
    .orderSummary
    .orderTable
    .orderTotal
    .grandTotal
    .paymentbutton
    span {
    font-size: 16px;
  }

  .eventslist__details--poster {
    width: 100%;
    max-width: 500px;
  }

  .eventslist__details {
    flex-direction: column;
  }

  .aboutus__ourtribe--imageslider .tribeSwiper .swiper-slide {
    width: 23%;
  }

  .aboutus__principles--list .box {
    width: 50%;
  }

  .aboutus__principles--list .box .icon {
    max-width: 120px;
    padding: 25px;
    margin: 0 auto 20px;
  }

  .aboutus__principles--list .box b {
    font-size: 18px;
  }

  .moments-gallery .moments-wrapper .gallery .text {
    font-size: 12px;
    padding: 10px 10px;
  }

  .moments-gallery .moments-wrapper .reviews-list .gallery {
    flex: 0 0 25%;
  }

  .moments-gallery .moments-wrapper .reviews-list .gallery .text {
    font-size: 10px;
  }

  .popup-module .popup-content .otp-message .otp-input {
    max-width: 100%;
  }

  .videos_wrapper .featured_videos .details a {
    padding: 5px 10px;
    font-size: 12px;
  }

  .videos_wrapper .featured_videos .details .title {
    font-size: 16px;
  }

  .newshop .product-category .box {
    padding: 20px;
  }

  .newshop .product-category .box .icon {
    width: 50px;
    height: 50px;
    padding: 15px;
  }

  .newshop .product-category .box .icon img {
    width: 100%;
  }

  .page-topintro .rowcover .pageDesc .title {
    font-size: 30px !important;
  }

  .dropdown-box .list .box .answer ul,
  .dropdown-box .list .box .answer ol,
  .dropdown-box .list .box.active .answer {
    font-size: 14px;
  }

  .pdf-popup .content {
    max-width: 100%;
  }

  .header_new .rowcover {
    justify-content: space-between;
    padding: 10px 0;
  }

  .header_new .rowcover .navbar {
    position: fixed;
    top: 0;
    right: -310px;
    width: 300px;
    height: 100vh;
    z-index: 30;
    background: #1e1e1e;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
    box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.31);
    -webkit-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: -2px 0px 5px 0px rgba(0, 0, 0, 0.31);
    transition: all ease 0.3s;
    padding: 0px 30px 50px;
    overflow-y: auto;
  }

  .header_new .rowcover .navbar .links {
    flex-direction: column;
    padding-top: 100px;
    gap: 2rem;
    width: 100%;
  }

  .header_new .rowcover .navbar.toggle {
    right: 0;
    transition: all ease 0.3s;
  }

  .header_new .rowcover .navbar a {
    text-align: left;
    display: block;
    width: 100%;
    padding: 10px 0px;
    font-size: 16px;
  }

  .header_new .rowcover .actionbar {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .header_new .rowcover .mobile-click {
    display: block;
  }

  .header_new .rowcover .actionbar a {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
  }

  .header_new .rowcover .actionbar a p {
    display: block;
    font-size: 16px;
  }

  .header_new .rowcover .actionbar .cart span,
  .header_new .rowcover .actionbar .login span {
    font-size: 26px !important;
  }

  .header_new .rowcover .actionbar .cart .in-cart {
    position: relative;
    right: initial;
    top: initial;
  }

  .header_new .rowcover .actionbar .language .dropdown {
    position: relative;
    left: initial;
    top: initial;
    z-index: 1;
    opacity: 1;
    width: 100%;
    background: none;
    color: #ffffff;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .header_new .rowcover .actionbar .language .dropdown .item {
    color: #000000;
    text-align: center;
    background: #ffffff;
    padding: 10px 10px;
    border-radius: 20px;
    width: 30%;
    gap: 0;
    justify-content: center;
  }

  .header_new .rowcover .actionbar .language .dropdown .item span {
    display: none;
  }

  .header_new .rowcover .actionbar .language .current {
    display: none;
  }

  .header_new .rowcover .actionbar .login {
    order: 1;
    background: #fcd404;
    padding: 10px 20px;
    border-radius: 4px;
    color: #234354;
  }
  .header_new .rowcover .actionbar .profile {
    order: 2;
    background: #fcd404;
    padding: 10px 20px;
    border-radius: 4px;
    color: #234354;
  }
  .header_new .rowcover .actionbar .logout {
    order: 3;
    background: #d7d7d7;
    padding: 10px 20px;
    border-radius: 4px;
    color: #234354;
  }
  .header_new .rowcover .actionbar .cart {
    order: 4;
    background: #234354;
    padding: 10px 20px;
    border-radius: 4px;
    color: #ffffff;
  }
  .header_new .rowcover .actionbar .buynow {
    order: 5;
    padding: 15px 20px;
    border-radius: 4px;
  }

  .header_new .rowcover .actionbar .language {
    width: 100%;
    order: 6;
    padding-top: 30px;
  }

  .header_new .rowcover .mobile-click span {
    font-size: 40px;
  }

  .header_new .rowcover .mobile-click .mobile_cart {
    right: -5px;
    top: -3px;
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .header_new .rowcover .actionbar .cart .in-cart {
    width: 20px;
    height: 20px;
    top: 0;
    left: 0;
    font-size: 14px;
  }

  .newhome-topbanner .rowcover .text h1 {
    font-size: 6rem;
  }

  .newhome-topbanner .rowcover .text p {
    font-size: 3.5rem !important;
  }

  .newhome-topbanner .rowcover {
    flex-wrap: wrap;
    padding: 20rem 0;
    row-gap: 10rem;
  }

  .newhome-topbanner .rowcover .videocover {
    width: 50%;
    position: relative;
    bottom: 0;
  }

  .newhome-topbanner .rowcover .bgimage {
    bottom: 2rem;
    width: 70%;
  }

  .newhome-topbanner .rowcover .videocover.show {
    width: 100%;
  }

  .newhome-latestproducts .rowcover {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .newhome-latestproducts .rowcover .right .top,
  .newhome-latestproducts .rowcover .right .btm {
    height: 100%;
    padding: 5rem;
  }

  .newhome-latestproducts .rowcover .left,
  .newhome-latestproducts .rowcover .right {
    width: 100%;
  }

  .newhome-latestproducts .rowcover .right .top .text p,
  .newhome-latestproducts .rowcover .right .btm .text p {
    font-size: 3rem !important;
  }

  .newhome-latestproducts .rowcover .right .top .text p span,
  .newhome-latestproducts .rowcover .right .btm .text p span {
    font-size: 4rem !important;
  }

  .newhome-ourpartners > .rowcover .featuredin-logo div {
    width: 32%;
    height: auto;
  }

  .newhome-ourpartners > .rowcover > .title {
    font-size: 5rem;
  }

  .newhome-itembanner .rowcover,
  .newhome-lastbanner .rowcover {
    padding: 10rem 0;
  }

  .newhome-itembanner .rowcover .image {
    top: 0;
  }

  .newhome-lastbanner .rowcover .image {
    top: initial;
    bottom: 0rem;
  }

  .newhome-itembanner .rowcover .text span,
  .newhome-lastbanner .rowcover .text span {
    font-size: 3rem;
  }

  .newhome-itembanner .rowcover .text strong,
  .newhome-lastbanner .rowcover .text strong {
    font-size: 3.5rem;
  }

  .newhome-lastbanner .rowcover .certicon {
    width: 50%;
    top: -8rem;
  }

  .newhome-lastbanner .rowcover .certicon img {
    width: 33%;
  }

  .newhome-itembanner .rowcover .text a,
  .newhome-lastbanner .rowcover .text a {
    padding: 2rem 3rem;
    font-size: 2rem;
    border-radius: 10rem;
    line-height: 1;
  }

  .newhome-partyenthusiasts .rowcover .title a {
    padding: 2rem 3rem;
    font-size: 2rem;
    border-radius: 10rem;
  }

  .enthusiasts-reviewBox {
    width: 45rem;
  }

  .enthusiasts-reviewBox .comment {
    font-size: 12px;
  }

  .enthusiasts-reviewBox {
    width: auto;
  }

  .enthusiastsSwiper .swiper-slide {
    width: inherit !important;
  }

  .enthusiasts-reviewBox .image {
    width: 30%;
  }

  .enthusiasts-reviewBox .comment {
    width: 70%;
  }

  .newhome-officialpartner .rowcover .partner-logo > div {
    width: 30%;
  }

  .newhome-officialpartner .rowcover .clicktoshow {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 40px;
    width: 100%;
    max-width: 250px;
  }

  .footer_new .rowcover .lowerpart {
    flex-wrap: wrap;

    padding-top: 30px;
    row-gap: 30px;
  }

  .footer_new .rowcover .lowerpart .company,
  .footer_new .rowcover .lowerpart .directory {
    width: 100%;
    padding-left: 0;
  }

  .footer_new .rowcover .lowerpart .company .socials-link a {
    font-size: 20px;
    max-width: 25px;
    max-height: 25px;
  }

  .footer_new .rowcover .lowerpart .company .socials-link {
    gap: 20px;
    padding-top: 1.5rem;
  }

  .footer_new .rowcover .lowerpart .company ul li {
    gap: 15px;
    margin-bottom: 2rem;
  }

  .footer_new .rowcover .upperpart .right {
    max-width: 100%;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input {
    height: 40px;
    padding: 0 1.5rem;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input input {
    font-size: 2.5rem;
    width: 60%;
  }

  .footer_new .rowcover .upperpart .right .newsletter .input > a {
    padding: 10px 10px;
    font-size: 12px;
    width: 30%;
  }

  .footer_new .rowcover {
    padding: 8rem 0;
  }

  .footer_new .rowcover .upperpart {
    gap: 4rem;
    padding-bottom: 30px;
  }

  .newfooterbottom .rowcover {
    font-size: 14px;
    justify-content: center;
    row-gap: 10px;
    text-align: center;
  }

  .newhome-topbanner .rowcover .videocover .playbutton {
    width: 10rem;
    height: 10rem;
  }

  .newhome-topbanner .rowcover .videocover .playbutton span {
    font-size: 10rem;
  }

  .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
  }

  .newshop .newProductlist .productBox {
    width: 49%;
  }

  .pagebreadcumb a {
    font-size: 2rem;
  }

  .productdetailTop .productTopcover .productImage {
    width: 57%;
  }

  .productdetailTop .productTopcover .productAddtocart {
    width: 43%;
  }

  .contactus-cover {
    flex-wrap: wrap;
    row-gap: 50px;
  }
  .contactus-cover .right,
  .contactus-cover .left {
    width: 100%;
  }

  .contactus-cover .left {
    padding-right: 0;
  }

  h3 {
    font-size: 3rem;
  }

  .contactus-cover .left .title {
    padding-bottom: 3rem;
  }

  .contactus-cover .left .location .box .social {
    gap: 10px;
  }

  .contactus-cover .left .location .box .social a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .contactus-cover .right .enquiry .form form {
    row-gap: 30px;
  }

  .defaultbutton {
    font-size: 14px;
    padding: 15px 20px;
  }

  .loginregister_wrapper .content .inputform-cover .form .action_others a#otp {
    padding: 10px 20px;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .title {
    font-size: 2rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .tag span,
  .videos_wrapper .embed-video .tag span,
  .videos_wrapper .featured_videos .details .tag > span {
    font-size: 1.5rem;
  }

  .cart-wrapper {
    flex-wrap: wrap;
    padding-bottom: 30px;
  }

  .cart-wrapper .orderSummary {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
  }

  .cart-wrapper .orderSummary .orderTable {
    height: auto;
    gap: 50px;
    margin-top: 20px;
  }

  .cart-wrapper .shoppingCart,
  .cart-wrapper .orderSummary {
    width: 100%;
  }

  h4 {
    font-size: 20px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode a.apply,
  .cart-wrapper .shoppingCart .cartHeader span {
    font-size: 14px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode a.apply {
    padding: 10px 20px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal a.checkout {
    padding: 15px 10px;
    font-size: 16px;
  }

  .cart-wrapper .orderSummary .orderTable table tr td,
  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode b,
  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal > div,
  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode span {
    font-size: 14px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode span {
    width: 100%;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .image {
    width: 80px;
  }

  .cart-wrapper .shoppingCart .cartFooter a.continue,
  .cart-wrapper .shoppingCart .cartFooter a.continue span {
    font-size: 14px;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    span {
    font-size: 20px;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover {
    gap: 10px;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    input {
    font-size: 14px;
    padding: 3px 5px;
    width: 35px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal {
    gap: 15px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .promocode input.promo {
    padding: 10px 10px;
  }

  .fullscreenPopup .popupcontent .title {
    font-size: 16px;
  }

  .fullscreenPopup .closethis span {
    font-size: 25px;
  }

  .productdetailTop .productTopcover {
    padding-top: 30px;
  }

  .loginregister_wrapper .content .inputform-cover .form {
    max-width: 100%;
  }

  .loginregister_wrapper .content .inputform-cover .form .action_others {
    gap: 20px;
  }

  .loginregister_wrapper .content .inputform-cover .form .divline {
    margin: 10px 0px 20px;
  }

  .loginregister_wrapper .content .inputform-cover .form .redirect {
    padding-top: 20px;
  }

  .loginregister_wrapper .content .inputform-cover .form .otp_option > div {
    font-size: 12px;
  }

  .loginregister_wrapper .content .inputform-cover .form .field .input-field {
    padding: 10px 10px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 578px) {
  p {
    font-size: 12px;
  }

  .ambassadors__list .box {
    width: 49%;
  }

  .nightout .post-list .post-cover {
    width: 100%;
  }

  .gamemaster .card-type .card {
    width: 49%;
  }

  .eventslist--box {
    width: 100%;
  }

  .aboutus {
    flex-wrap: wrap;
  }

  .aboutus > div {
    width: 100%;
    margin-bottom: 40px;
  }

  .aboutus__ourquest .text p,
  .aboutus__ourjourney .text p,
  .aboutus__ourcreations .text p,
  .aboutus__ourvision .desc,
  .aboutus__ourtribe .desc {
    max-width: 100%;
  }

  .aboutus__ourtribe {
    margin: 30px 0px;
  }

  .aboutus__ourvision .photo {
    height: 250px;
    width: 100%;
  }

  .aboutus__ourtribe--imageslider .tribeSwiper .swiper-slide {
    width: 43%;
  }

  .aboutus__ourvision {
    margin-top: 30px;
  }

  .aboutus__ourquest .text,
  .aboutus__ourjourney .text {
    order: 1;
    text-align: center;
  }

  .aboutus__ourquest .bigimage,
  .aboutus__ourjourney .bigimage {
    order: 2;
  }

  .aboutus__ourquest .smallimage,
  .aboutus__ourjourney .smallimage {
    order: 3;
  }

  .dashboard-content .item .shipment {
    flex-direction: column;
  }

  .dashboard-content .item .head {
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 20px;
  }

  .dashboard-content .item .shipment .cost {
    border-left: none;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
  }

  .dashboard-content .item .shipment .address,
  .dashboard-content .item .shipment .cost {
    width: 100%;
  }

  .dashboard-content .orders .list .box .detail,
  .dashboard-content .item .product .detail {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .dashboard-content .orders .list .box .detail .name,
  .dashboard-content .item .product .detail .name {
    width: calc(100% - 120px);
  }

  .dashboard-content .orders .list .box .detail .amount,
  .dashboard-content .orders .list .box .detail .cost,
  .dashboard-content .item .product .detail .amount,
  .dashboard-content .item .product .detail .cost {
    width: 50%;
  }

  .dashboard-content .account .line {
    margin: 40px 0px;
  }

  .mediapublishers .list {
    gap: 10px;
  }

  .mediapublishers .list a {
    flex: 1 0 calc(25% - 10px);
    border-radius: 4px;
    max-width: calc(25% - 10px);
  }

  .retailfilter {
    flex-wrap: wrap;
  }

  .retails-wrapper .search-filter {
    flex-wrap: wrap;
    row-gap: 20px;
    margin-bottom: 30px;
  }

  .retails-wrapper .search-filter .category {
    width: 100%;
  }

  .retails-wrapper .search-filter .category:first-child {
    z-index: 20;
  }

  .retails-shoplist .shop .content .workinghour .text {
    width: 100%;
  }

  .retails-shoplist .shop .content > div {
    gap: 10px;
  }

  .moments-gallery .moments-wrapper .reviews-list .gallery {
    flex: 0 0 33.3%;
  }

  .videos_wrapper .featured_videos {
    flex-wrap: wrap;
  }

  .videos_wrapper .featured_videos .thumbnail,
  .videos_wrapper .featured_videos .details {
    width: 100%;
  }

  .videos_wrapper .featured_videos .details {
    padding: 15px;
    gap: 10px;
  }

  .videos_wrapper .featured_videos .details .tag > span {
    padding: 5px 10px;
    font-size: 12px;
  }

  .videos_wrapper .featured_videos .details .title {
    padding-bottom: 20px;
  }

  .newshop .product-category {
    padding-bottom: 30px;
    gap: 10px;
  }

  .productdetailTop .productTopcover {
    flex-wrap: wrap;
  }

  .productdetailTop .productTopcover .productAddtocart {
    width: 100%;
    padding: 3rem;
  }

  .productdetailTop .productTopcover .productAddtocart .productName {
    font-size: 3.5rem !important;
    padding-bottom: 10px;
  }

  .productdetailTop .productTopcover .productAddtocart .productShortdesc {
    font-size: 2.3rem;
    padding-bottom: 3rem;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType {
    padding: 3rem 0;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType b {
    font-size: 2.5rem;
    padding-bottom: 1rem;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType .plan,
  .productdetailTop .productTopcover .productAddtocart .purchaseType .amount {
    padding-bottom: 4rem;
  }

  .productdetailTop .productTopcover .productAddtocart .productPrice p {
    font-size: 4rem !important;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .amount
    .amountcover
    span {
    width: 7rem;
    height: 7rem;
    font-size: 4rem;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .amount
    .amountcover
    input {
    font-size: 4rem;
    width: 7rem;
  }

  .productdetailTop .productTopcover .productAddtocart a.addtocart {
    padding: 8px 20px;
    font-size: 16px;
    border-radius: 20px;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .productPrice
    > div
    a.likebutton {
    font-size: 5rem;
  }

  .productdetailTop .productTopcover .productAddtocart .productPrice > div {
    gap: 10px;
  }

  .productdetailTop .productTopcover .productImage {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .productdetailBtm .rowcover .productBenefit {
    gap: 2%;
    row-gap: 30px;
    padding: 30px 0;
  }

  .productdetailBtm .rowcover .productBenefit .item {
    width: 49%;
  }

  .productdetailTop .productTopcover .productImage,
  .productShowcase {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }

  .productdetailTop .productTopcover .productImage {
    padding-bottom: 50px;
  }

  .thumbsliderCover {
    width: 100%;
    right: initial;
    left: 0;
    top: initial;
    bottom: 0;
    height: auto;
    position: relative !important;
  }

  .productThumbs {
    height: auto !important;
    width: 100%;
  }

  .thumbsliderCover .productThumbs-arrow {
    left: initial;
    transform: translateX(0);
    width: 49%;
    border-radius: 8px;
    height: 7rem;
  }

  .thumbsliderCover .productThumbs-arrow.thumbs-prev {
    left: 0;
    bottom: -9rem;
    top: initial;
  }

  .thumbsliderCover .productThumbs-arrow.thumbs-next {
    right: 0;
    bottom: -9rem;
  }

  .thumbsliderCover .productThumbs-arrow.thumbs-prev span,
  .thumbsliderCover .productThumbs-arrow.thumbs-next span {
    transform: rotate(270deg);
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .plan
    .option
    label
    .text {
    padding: 2rem;
    border-radius: 4px;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .plan
    .option
    label
    .text
    div {
    font-size: 2.5rem;
  }

  .product-extra-desc,
  .faq,
  .product-info {
    padding: 5rem 0.625rem;
  }

  .product-info .wrapper {
    flex-wrap: wrap;
    border-radius: 8px;
    overflow: hidden;
  }

  .product-info .product-effect,
  .product-info .product-detail {
    width: 100%;
  }

  .product-info .product-effect {
    padding: 8rem 4rem;
    gap: 20px;
  }

  .product-info .product-effect .cover .icon {
    width: 20%;
  }

  .product-info .product-effect .cover .desc {
    width: 80%;
  }

  .product-info .product-effect .cover .desc b {
    font-size: 16px;
  }

  .product-info .product-effect .cover .desc p {
    font-size: 2.8rem !important;
  }

  .faq > .faqcover .list .faq-category {
    font-size: 4rem;
  }

  .contactus-cover .left .title > div,
  .contactus-cover .left .location .box .subject b {
    font-size: 14px;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .title {
    font-size: 2.5rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .tag span,
  .videos_wrapper .embed-video .tag span {
    font-size: 2rem;
    padding: 1.3rem 2rem;
  }

  .pagebreadcumb a {
    font-size: 2.5rem;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row {
    flex-wrap: wrap;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-product {
    width: 70%;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-quantity {
    width: 30%;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover
    input:read-only {
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-price,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-total {
    width: 50%;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row {
    gap: 0;
    row-gap: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-price .mobiletext,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-total .mobiletext {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-price,
  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-total {
    font-size: 14px;
  }

  .cart-wrapper .shoppingCart .cartTable .chead .col {
    display: none;
  }

  .cart-wrapper .shoppingCart .cartTable .chead .col.col-product,
  .cart-wrapper .shoppingCart .cartTable .chead .col.col-quantity {
    display: block;
    width: 50%;
  }

  .cart-wrapper .shoppingCart .cartTable .chead .col-quantity {
    text-align: right;
  }

  .cart-wrapper
    .shoppingCart
    .cartTable
    .cbody
    .row
    .col-quantity
    .amountcover {
    justify-content: flex-end;
  }

  .cart-wrapper .shoppingCart .cartTable .chead {
    padding-bottom: 0;
  }

  .cart-wrapper .shoppingCart .cartHeader,
  .cart-wrapper .orderSummary .title {
    padding-bottom: 20px;
  }

  .cart-wrapper .shoppingCart .cartTable,
  .cart-wrapper .orderSummary .orderTable {
    padding-top: 20px;
  }

  .defaultbutton {
    font-size: 14px;
  }

  .loginregister_wrapper
    .content
    .inputform-cover
    .form
    .action_others
    a.google-login-btn {
    font-size: 14px;
  }

  .cart-wrapper .orderSummary .orderTable .orderTotal .grandTotal span {
    font-size: 20px;
  }

  .fullscreenPopup .popupcontent {
    max-width: 100%;
  }

  .fullscreenPopup .popupcontent .voucher .list .box {
    margin-bottom: 20px;
  }

  .productThumbs .swiper-slide {
    height: auto;
  }

  .productThumbs .swiper-slide .image,
  .productThumbs .swiper-slide .vid {
    aspect-ratio: 1 / 1;
  }

  .loginregister_wrapper {
    flex-wrap: wrap;
  }

  .loginregister_wrapper .content,
  .loginregister_wrapper .background {
    width: 100%;
  }
  .loginregister_wrapper .background {
    order: 2;
  }
  .loginregister_wrapper .content {
    order: 1;
  }

  .loginregister_wrapper .background {
    height: 40vh;
  }

  .loginregister_wrapper .content {
    max-width: 87.5rem;
    padding: 10rem 0;
    margin: 0 auto;
    min-height: 50vh;
    display: flex;
    align-items: center;
  }

  .loginregister_wrapper .content .inputform-cover .form .otp_option > div {
    padding: 10px 10px;
  }

  .loginregister_wrapper .content .inputform-cover .form .otp_option,
  .loginregister_wrapper .content .inputform-cover .form .field {
    padding-bottom: 20px;
  }

  .loginregister_wrapper .content .inputform-cover .title {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  p {
    font-size: 12px;
  }

  h1 {
    font-size: 30px;
  }

  h4 {
    font-size: 16px;
  }

  .eventslist__ticket--total .right .input-cover {
    width: 100%;
  }

  .customer-service .right .affiliate-form .input-cover {
    width: 100%;
  }

  .faq > .faqcover .list .box > .question,
  .product-info .product-detail .row .category {
    font-size: 14px;
  }

  .faq > .faqcover .list .box.active > .answer div,
  .product-info .product-detail .row .content {
    font-size: 12px;
  }

  .cart-wrapper .shoppingCart {
    margin-bottom: 50px;
  }

  .cart-wrapper .shoppingCart .cartTable .cbody .row .col-product .details {
    padding-right: 10px;
  }
  .fullscreenPopup .popupcontent .form .row {
    width: 100%;
  }

  .pagebreadcumb {
    flex-wrap: wrap;
    line-height: 1.3;
    row-gap: 10px;
  }

  .aboutus__ourcreations .text {
    padding: 60px 0px;
  }

  .dashboard-content .item .step .stepbox .text {
    font-size: 10px;
  }

  .dashboard-content .orders .list .box .fee .text {
    flex-wrap: wrap;
  }

  .dashboard-content .orders .list .box .date {
    flex-wrap: wrap;
    height: auto;
    padding: 20px 20px;
    gap: 10px;
  }

  .dashboard-content .orders .tab {
    flex-wrap: wrap;
    height: auto;
    background: none;
  }

  .dashboard-content .orders .tab a {
    width: 50%;
    border: 1px solid #ffffff;
    background: rgba(0, 0, 0, 0.04);
  }

  .dashboard-content .voucher .list .box,
  .fullscreenPopup .popupcontent .voucher .list .box {
    flex-wrap: wrap;
  }

  .dashboard-content .voucher .list .box .action,
  .fullscreenPopup .popupcontent .voucher .list .box .action {
    width: 100%;
    padding-right: 0;
  }

  .dashboard-content .voucher .list .box .details,
  .fullscreenPopup .popupcontent .voucher .list .box .details {
    width: calc(100% - 100px);
  }

  .dashboard-content .voucher .list .box .action .defaultbutton,
  .fullscreenPopup .popupcontent .voucher .list .box .action .defaultbutton {
    border-radius: 0px;
  }

  .dashboard .sidemenu {
    max-width: 100%;
  }

  .dashboard-content .account .profile {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dashboard-content .account .form .row {
    width: 100%;
  }

  .dashboard-content .account .form {
    gap: 20px;
  }

  .dashboard-content .title {
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .mediapublishers .list a {
    flex: 1 0 calc(33.3% - 10px);
    border-radius: 4px;
    max-width: calc(33.3% - 10px);
  }

  .page-topintro .rowcover {
    padding: 30px 0px;
  }

  .moments-gallery .moments-wrapper .moments-blur-wrapper {
    gap: 0;
  }

  .moments-gallery .moments-wrapper .moments-list {
    width: 33.3%;
    gap: 0;
  }

  .moments-gallery .moments-wrapper .gallery .text {
    font-size: 10px;
    padding: 5px 5px;
  }

  .moments-gallery .moments-wrapper .reviews-list .gallery {
    flex: 0 0 50%;
  }

  .productdetailTop .product-bg-layer {
    display: none;
  }

  .dropdown-box .list .box .answer p > b {
    font-size: 12px;
  }

  .dropdown-box .list .box .question {
    font-size: 14px;
  }

  .dropdown-box .list .box.active .answer {
    font-size: 12px;
  }

  .content-row .rowcover {
    padding: 40px 0;
  }

  .footer_new .rowcover .upperpart .left {
    font-size: 12px;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover .box {
    width: 49%;
  }

  .footer_new .rowcover .lowerpart .company > div,
  .footer_new .rowcover .lowerpart .directory .directorycover .box > div,
  .footer_new .rowcover .upperpart .right .newsletter .text {
    font-size: 4rem;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover .box span {
    gap: 10px;
  }

  .footer_new .rowcover .lowerpart .directory .directorycover .box span a {
    font-size: 12px;
  }

  .footer_new .rowcover .lowerpart .company ul li {
    margin-bottom: 20px;
    align-items: anchor-center;
  }

  .newhome-ingredients .rowcover .list .item {
    width: 49%;
    height: 30rem;
  }

  .newhome-ingredients .rowcover .list .text {
    font-size: 3rem;
  }

  .newhome-ingredients .rowcover .list .item p {
    font-size: 3.5rem !important;
  }

  .newhome-ingredients .rowcover .list .icon {
    width: 15rem;
  }

  .newhome-itembanner .rowcover .text p,
  .newhome-lastbanner .rowcover .text p {
    font-size: 12px;
    padding: 5rem 0;
  }

  .newhome-itembanner .rowcover .text a,
  .newhome-lastbanner .rowcover .text a {
    padding: 3rem 4rem;
    font-size: 2.7rem;
  }

  .newhome-itembanner .rowcover .text strong,
  .newhome-lastbanner .rowcover .text strong {
    font-size: 5rem;
  }

  .header_new .rowcover .mobile-click span {
    font-size: 10rem;
  }

  .newhome-ingredients .rowcover,
  .newhome-partyenthusiasts .rowcover,
  .newhome-ourpartners > .rowcover,
  .newhome-officialpartner .rowcover {
    padding: 10rem 0;
  }

  .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 3rem;
    height: 3rem;
  }

  .pagebreadcumb a {
    font-size: 15px;
    height: 24px;
    display: flex;
    align-items: center;
  }

  .pagebreadcumb p {
    height: 24px;
  }

  .productdetailTop .productTopcover .productAddtocart .productName {
    font-size: 4.3rem !important;
  }

  .productdetailTop .productTopcover .productAddtocart .productShortdesc {
    font-size: 3rem;
    padding-bottom: 20px;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType b {
    font-size: 14px;
    line-height: 1.5;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .plan
    .option
    label
    .text
    div {
    font-size: 3rem;
  }

  .productdetailTop
    .productTopcover
    .productAddtocart
    .purchaseType
    .plan
    .option
    label
    .text {
    padding: 3rem;
  }

  .productdetailTop .productTopcover .productAddtocart .productPrice p {
    font-size: 6rem !important;
  }

  .product-extra-desc .cover p > b,
  .product-extra-desc .cover .title {
    font-size: 16px;
  }
  .product-extra-desc .cover ul li,
  .product-extra-desc .cover ol li {
    font-size: 12px;
  }

  .productdetailTop .productTopcover .productAddtocart .productName {
    padding-bottom: 10px;
  }

  .productdetailTop .productTopcover .productAddtocart .purchaseType {
    padding: 15px 0px;
  }

  .page-topintro .rowcover .pageDesc .title {
    font-size: 5rem;
    padding-bottom: 10px;
  }

  h3 {
    font-size: 4rem;
  }

  .contactus-cover .left .location .box .social {
    gap: 10px;
  }

  .contactus-cover .left .location .box .subject {
    padding-bottom: 5px;
  }

  .contactus-cover .left .location {
    row-gap: 20px;
  }

  .defaultbutton {
    font-size: 14px;
    padding: 10px 15px;
  }

  .videos_wrapper
    .video-row
    .list
    .video-swiper
    .swiper-slide:hover
    .video-click {
    transform: scale(1);
    border: none;
    box-shadow: none;
  }

  .videos_wrapper .video-row .list .video-swiper .swiper-slide .video-click {
    padding: 0;
  }

  .videos_wrapper .video-row .list .video-category-title {
    font-size: 4rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .title {
    font-size: 3rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .tag span,
  .videos_wrapper .embed-video .tag span {
    font-size: 2.5rem;
    padding: 1.3rem 2rem;
  }

  .videos_wrapper .video-row .list .video-swiper .video-click .tag {
    padding: 2rem 0;
  }

  .videos_wrapper .video-row .list {
    padding-bottom: 10rem;
  }

  .popup-module .popup-content {
    max-width: 100%;
  }

  .policy-content b {
    font-size: 14px;
  }

  .policy-content p {
    padding-bottom: 20px;
  }

  .dropdown-box .list .box .answer ul,
  .dropdown-box .list .box .answer ol {
    font-size: 12px;
  }

  .cart-wrapper
    .orderSummary
    .orderTable
    .orderTotal
    .grandTotal
    .paymentbutton
    span {
    font-size: 14px;
  }

  .gamemaster .gamecontent > div .expand ul {
    font-size: 12px;
  }
}

@media only screen and (max-width: 414px) {
  .dashboard-content .orders .list .box .detail .name {
    width: 100%;
  }

  .dashboard-content .orders .list .box .fee .action > a,
  .dashboard-content .orders .list .box .fee .action > form {
    width: calc(49% - 10px);
  }

  .dashboard-content .orders .list .box .fee .action .defaultbutton {
    max-width: 100%;
  }

  .dashboard-content .item .product .detail .name {
    width: 100%;
  }

  .aboutus__principles--list .box {
    width: 100%;
  }

  .newshop .newProductlist .productBox .productDesc .name {
    font-size: 12px;
    height: 30px;
  }

  .gamemaster .card-type .card .card-back,
  .gamemaster .card-type .card .card-back b {
    font-size: 11px;
  }

  .ambassadors__list .box .link a {
    padding: 8px 10px;
  }
}
