:root {
  --theme-color: #1df0bb;
  --gray-color: #f0f0f0;
  --green-color: #055446;
  --green-light-color: #f1f9f8;
  --gray-lg-color: #f6f6f6;
  --mint-30-color: #d9efec;
  --green-30-color: #98ffdf;
  --green-70-color: #0aa288;
  --rose-30-color: #d95477;
  --extended-honey-30: #fff1d2;
  --container-spacing: 24px;
  --font-body-family: 'Gilroy', Futura, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-heading-family: 'Gilroy', Futura, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  --font-heading-style: normal;
  --font-heading-weight: 600;

  --font-body-scale: 1;
  --font-heading-scale: 1;

  --color-base-text: 0, 0, 0;
  --color-base-background-1: 255, 255, 255;
  --color-base-background-2: 243, 243, 243;
  --color-base-solid-button-labels: 255, 255, 255;
  --color-base-outline-button-labels: 0, 0, 0;
  --color-base-accent-1: 0, 0, 0;
  --color-base-accent-2: 29, 240, 187;
  --payment-terms-background-color: #ffffff;

  --gradient-base-background-1: #ffffff;
  --gradient-base-background-2: #f3f3f3;
  --gradient-base-accent-1: #000000;
  --gradient-base-accent-2: #1df0bb;
  --utility-gray-30: #e3e3e3;
}

/*forbidden copy*/
*:not(input, textarea) {
  -webkit-touch-callout: none;
  -webkit-user-select: none; /*webkit*/
  -khtml-user-select: none;
  -moz-user-select: none; /*firefox*/
  -ms-user-select: none; /*IE10*/
  user-select: none;
}
input,
textarea {
  outline: none;
}
body.static {
  position: fixed;
  left: 0;
  width: 100%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
body {
  font-family: 'Gilroy';
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4286;
  color: #575757;
  background: #fafafa;
  overflow-x: hidden;
  /* font-variant-numeric: tabular-nums; */
}
a {
  color: #575757;
}
a:hover {
  color: #575757;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
img {
  /* forbidden save img by long press */
  pointer-events: none;
}
p {
  margin-bottom: 0;
}
.loader {
  border: 10px solid #e6e3e3; /* Light grey */
  border-top: 10px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}
.main-root {
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}
.main-root-with-footer {
  height: calc(100vh - 68px - 1rem);
}
.container {
  padding-left: var(--container-spacing);
  padding-right: var(--container-spacing);
}
/* layout */
.row {
  margin-left: -4px;
  margin-right: -4px;
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto {
  padding-right: 4px;
  padding-left: 4px;
}
/* margin padding */
.pt-5 {
  padding-top: 48px;
}
.pt-6 {
  padding-top: 64px;
}
/* color */
.bg-wyze-gray {
  background-color: #fafafa;
}
.bg-wyze-light {
  background-color: #f0f4f7;
}
.bg-dark-gray {
  background-color: #1f1f1f;
}
.bg-gray {
  background-color: var(--gray-color);
}
.bg-dark-rose {
  background-color: #b50030;
}
.bg-purple {
  background-color: #f6f5ff;
}
.bg-purple-dark {
  background-color: #4e2fd2;
}
.bg-purple-light {
  background-color: #e6eeff;
}
.bg-purple-10 {
  background-color: #b8c4ff;
}
.bg-purple-light2 {
  background: rgba(184, 196, 255, 0.5);
}
.bg-purple-light3 {
  background-color: #e6eaff;
}
.bg-light-green {
  background-color: #d2fff2;
}
.bg-light-green2 {
  background-color: var(--green-light-color);
}
.bg-light-green3 {
  background-color: #ebfff9;
}
.bg-light-green4 {
  background: rgba(177, 231, 215, 0.75);
}
.bg-rose {
  background-color: #fad7e0;
}
.bg-light-rose {
  background-color: rgba(250, 215, 224, 0.75);
}
.bg-light-yellow {
  background-color: #fff8df;
}
.bg-yellow {
  background-color: #ffdf6b;
}
.bg-yellow-30 {
  background-color: var(--extended-honey-30) !important;
}
.bg-peach-10 {
  background-color: #fff6f0 !important;
}
.border-top-gray {
  border-top: 1px solid var(--utility-gray-30);
  padding-top: 1rem;
}
.rounded-2 {
  border-radius: 0.5rem;
}
/* font style */
.heading-01 {
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px; /* 115.385% */
  letter-spacing: -0.52px;
}
.heading-02 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 118.182% */
  letter-spacing: -0.264px;
}
.heading-04 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  font-family: Gilroy;
}
.subheading-01 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
}
.subheading-02 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}
.subheading-03 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
}
.subheading-03-r {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.Subtitle_01 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.label-01-md {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.label-01-sm {
  font-size: 14px;
  line-height: 1.143;
  font-weight: 600;
}
.label-02-md {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}
.label-02-sm {
  font-size: 14px;
  line-height: 1.143;
  font-weight: 500;
}
.label-03-sm {
  font-size: 14px;
  line-height: 1.143;
  font-weight: 400;
}
.label-03-sm-h {
  font-size: 14px;
  line-height: 1.43;
  font-weight: 400;
}
.overline-sm {
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.overline-md {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.body-med {
  font-size: 16px;
  line-height: 24px;
}
.body-sm {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.Caption {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.Description {
  font-family: 'TT-Norms-Pro';
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  text-align: center;
}
.Subtitle {
  font-family: 'TT-Norms-Pro';
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
.Body-Normal {
  font-family: 'TT-Norms-Pro';
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
}
.Interactive-Button {
  font-family: 'TT-Norms-Pro';
  font-size: 17px;
  line-height: 25px;
  font-weight: 700;
}
.text-decoration-underline {
  text-decoration: underline;
}
.text-break-all {
  overflow-wrap: break-word;
}
.tabular-number {
  font-variant-numeric: tabular-nums;
}
.text-12 {
  font-size: 12px;
}

.text-black {
  color: #000 !important;
}
.text-dark {
  color: #1f1f1f !important;
}
.text-body {
  color: #575757 !important;
}
.text-red {
  color: #b50030 !important;
}
.text-yellow {
  color: #e1b000 !important;
}
.text-gray-50 {
  color: #969696 !important;
}
.text-gray-60 {
  color: #757575 !important;
}
.text-gray-80 {
  color: #3b3b3b !important;
}
.text-grey600 {
  color: #6a737d !important;
}
.text-grey700 {
  color: #515963 !important;
}
.text-Grey-100 {
  color: #f7fafc !important;
}
.text-gray-c {
  color: #6c7580 !important;
}
.text-altGreen {
  color: #1c9e90 !important;
}
.text-green {
  color: var(--green-color) !important;
}
.text-green2 {
  color: #0aa288 !important;
}
.text-wyze-green {
  color: var(--theme-color) !important;
}
.text-green-30 {
  color: var(--green-30-color) !important;
}
.text-green-70 {
  color: var(--green-70-color) !important;
}
.text-blue {
  color: #525963 !important;
}
.text-purple {
  color: #4e2fd2 !important;
}
.text-purple-70 {
  color: #30187b !important;
}
.text-purple-30 {
  color: #827aff !important;
}
.text-purple-10 {
  color: #b8c4ff !important;
}
.text-light {
  color: #fafafa !important;
}
.text-orange {
  color: #ff8f5e !important;
}
.label-dark {
  color: #3b3b3b !important;
}
.label-gray {
  color: #757575 !important;
}
.label-blue {
  color: #393f47 !important;
}
.label-light {
  color: #e6ebf0 !important;
}
.heading-dark {
  color: #22262b !important;
}
.btn.active,
.btn:active,
.btn.focus,
.btn:focus {
  box-shadow: none;
}
.btn.disabled,
.btn:disabled {
  opacity: 1;
}
.btn-disabled {
  background-color: #cccccc !important;
  color: #757575 !important;
}
.btn-theme {
  background-color: var(--theme-color);
  padding: 0.5rem 1rem;
}
.btn-theme:disabled {
  background-color: #1ad8a8;
}
.btn-subscriber {
  background-color: #4e2fd2;
  padding: 0.5rem 1rem;
}
.btn-gray {
  background-color: var(--gray-color);
  border: 1px solid var(--gray-color);
}
.btn-sm-2 {
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 22px;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
.tag-radius {
  box-sizing: border-box;
  border-radius: 6.25rem;
  padding: 0.625rem 1rem;
  background: #f0f0f0;
  margin: 0 0.25rem 1rem 0.25rem;
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.multi-line-ellipsis-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.coupon-separator {
  width: 2px;
  background-image: url(../img/icons/line-dot-yellow.png);
  background-repeat: repeat-y;
  background-size: 2px 64px;
}
.skeleton-loading-hide {
  display: none !important;
}

.skeleton-loading {
  display: block !important;
}
/* flex */
.flex-1 {
  flex: 1;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.count-number {
  text-align: center;
}
.count-number-drop {
  padding: 6px 6px 6px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.count-number-drop .count-number {
  padding-right: 30px;
  background: url('../img/icons/arrow-down.svg') no-repeat right center;
}
.drop-btn-disabled span {
  opacity: 0.2;
}
.select .select-drop {
  padding-right: 20px;
  background: url('../img/icons/arrow-down.svg') no-repeat right center;
}
.icon-delivery_s-left {
  background: url('../img/icons/delivery_s.svg') no-repeat left center;
  padding-left: 16px;
}
.icon-delivery_m-left {
  background: url('../img/icons/delivery_m.svg') no-repeat left center;
  padding-left: 20px;
}
.icon-card_s-left {
  background: url('../img/icons/card_s.svg') no-repeat left center;
  padding-left: 20px;
}
.icon-card_m-left {
  background: url('../img/icons/card_m.svg') no-repeat left center;
  padding-left: 20px;
}
.bottom-popup-wrap {
  position: fixed;
  left: 0;
  bottom: 76px;
  width: 100%;
  max-height: calc(100vh - 104px);
  z-index: 1010;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
  overflow-y: auto;
  border-radius: 8px 8px 0 0;
  transition: all 0.25s;
  transform: translateY(30px);
}
.badge-sm {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #1df0bb;
  width: 11.99px;
  height: 12.02px;
  z-index: 5;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  padding: 0;
}
#terms .bottom-popup-wrap {
  bottom: 0;
}
.page-product .bottom-popup-wrap,
.rating-page .bottom-popup-wrap,
.category-page .bottom-popup-wrap {
  bottom: 0;
}
.order-page .bottom-popup-wrap .bottom-popup-footer,
.rating-page .bottom-popup-wrap .bottom-popup-footer,
.category-page .bottom-popup-wrap .bottom-popup-footer {
  padding: 17px 0 50px 0;
}

.bottom-popup-wrap ul.package-list li {
  list-style: none;
  padding: 20px 0;
  border-bottom: 1px solid #f0f4f7;
}
.bottom-popup-wrap .bottom-popup-scroll {
  max-height: calc(100vh - 244px);
  overflow-y: scroll;
}
.bottom-popup-title,
.bottom-popup-cont {
  padding: 0 var(--container-spacing);
}

.detail-popup-wrap {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 44px);
  z-index: 1040;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
  overflow-y: auto;
  border-radius: 8px 8px 0 0;
  transition: all 0.25s;
  transform: translateY(30px);
}

.img-popup-wrap {
  position: fixed;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  transition: all 0.25s;
  transform: translateY(30px);
  align-items: center;
}
.img-popup-wrap .swiper-autoheight .swiper-wrapper {
  align-items: center !important;
}
.img-popup-wrap .swiper-slide-img {
  height: calc(100vh - 6.25rem);
  padding: 0.25rem 0 1rem 0;
  width: 100vw;
}
.img-popup-wrap .img {
  flex: 1;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.img-popup-wrap .swiper-box {
  width: 100vw;
}
.img-popup-wrap .swiper-slide-img img {
  width: 100vw;
  object-fit: contain;
  background-color: #fff;
}
.img-popup-wrap .swiper-pagination {
  width: fit-content;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  bottom: 1.5rem;
  left: 50vw;
  margin-left: -20px;
}
.popup {
  position: fixed;
  cursor: pointer;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: -1;
}
/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 100%;
  margin: 0 var(--container-spacing);
  background-color: rgba(34, 38, 43, 0.7);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  z-index: 9999;
  padding: 12px 10px;
}
.popup .statetext {
  visibility: hidden;
  padding: 12px 24px;
  background-color: rgba(34, 38, 43, 0.4);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  z-index: 9999;
}
.popup .statetext .spinner-border {
  width: 16px;
  height: 16px;
  border-width: 2px;
  margin-right: 0.5rem;
}

/* Popup arrow */

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  /* -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s; */
}
.popup-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

.open-bottom-popup .bottom-popup-wrap,
.open-bottom-popup .popup-overlay,
.open-detail-popup .detail-popup-wrap,
.open-detail-popup .popup-overlay,
.open-img-popup .img-popup-wrap,
.open-img-popup .popup-overlay {
  visibility: visible !important;
}
.open-bottom-popup .bottom-popup-wrap,
.open-detail-popup .detail-popup-wrap,
.open-img-popup .img-popup-wrap {
  opacity: 1;
  transform: translateY(0);
}
.open-bottom-popup .popup-overlay,
.open-detail-popup .popup-overlay {
  opacity: 0.5;
  display: block;
}
.open-img-popup .popup-overlay {
  opacity: 1;
  display: block;
}
.bottom-popup-wrap .btn-close,
.img-popup-wrap .btn-close {
  position: absolute;
  top: 15px;
  right: var(--container-spacing);
  padding: 0;
}
.empty-circle-outer {
  display: inline-block;
  width: 7.5rem;
  height: 7.5rem;
  line-height: 7.5rem;
  background: #f0f4f7;
  box-shadow: 0px 0px 4px rgba(206, 214, 222, 0.4);
  text-align: center;
  border-radius: 50%;
}
.empty-circle-mid {
  display: inline-block;
  width: 6.5425rem;
  height: 6.5425rem;
  line-height: 6.5425rem;
  background: #f7fafc;
  box-shadow: 0px 0px 4px rgba(206, 214, 222, 0.35);
  border-radius: 50%;
}
.empty-circle-inner {
  display: inline-block;
  width: 5.4256rem;
  height: 5.4256rem;
  line-height: 5.4256rem;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(206, 214, 222, 0.35);
  border-radius: 50%;
}
.product-img-l {
  width: 88px;
  max-height: 110px;
}
.product-img-m {
  width: 64px;
  max-height: 80px;
}
.product-img-s {
  width: 48px;
  max-height: 60px;
}
.product-img-xs {
  width: 32px;
  max-height: 60px;
}

/* footer part(go to cart) */
.footer-container {
  padding: 12px 24px 24px 24px;
  box-shadow: 0px -0.5px 1px 0px #00000040;
}
.footer-container .btn-theme {
  padding: 5px 0;
}

/* nav */
.nav-wrapper {
  overflow-x: auto;
  padding-left: var(--container-spacing);
  padding-right: var(--container-spacing);
}
.nav-wrapper .nav {
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-wrapper .nav-item {
  padding-right: 1rem;
}
.nav-wrapper .nav-item-nopadding {
  padding-right: 0 !important;
}
.nav-wrapper .nav-link {
  padding: 0;
  font-size: 16px;
  line-height: 34px;
  color: #757575;
  border-bottom: 4px solid transparent;
  transition: all 0.25s;
  transform: scale(0.9);
  display: block;
}
.nav-wrapper .nav-link.active {
  border-bottom: 4px solid #000;
  color: #000000;
  transform: scale(1);
}

.nav-wrapper::-webkit-scrollbar {
  display: none;
}

.nav-wrapper::-ms-scrollbar {
  display: none;
}

.nav-wrapper-fixed {
  box-shadow:
    0px 2px 4px rgba(0, 0, 0, 0.06),
    0px 0px 1px rgba(0, 0, 0, 0.12);
}

.has-sticky-child .sticky-navbar {
  /* background-color: #fafafa; */
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
.sticky-spacing {
  display: block !important;
  width: 100%;
  height: var(--header-spacing);
}
.product-card {
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  height: 100%;
  flex-direction: column;
}
.product-card:hover {
  text-decoration: none;
}
.product-card .text-wrapper a {
  pointer-events: none;
}
.product-card .text-wrapper {
  padding: 13px;
}
.product-card .off-badge {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0px 4px;
  padding: 0 8px;
}
.product-card h6 {
  margin-bottom: 5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-card h2,
.product-card p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-card .thumb {
  padding: 16px 16px 0px 16px;
}
.product-card .thumb .badge {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  padding: 0px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.product-card .thumb img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.product-card .price-text {
  margin-bottom: 8px;
}
.product-card .badge-gray-lg {
  width: 100%;
}
.product-card .price-md {
  margin-top: auto;
  padding: 10px 14px;
  font-weight: 600;
  color: #1f1f1f;
}
.border-card {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

/* order page display flex. */
.order-img {
  width: 64px;
}
.orders-img {
  width: 72px;
}

/* membership page */
.hero-section-1 {
  background: linear-gradient(180deg, #1f1f1f 0%, #2a1873 100%);
  position: relative;
  overflow: hidden;
}
.hero-section-1-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
}
.hero-section-1-img {
  width: 100vw;
  object-fit: cover;
  min-height: 100px;
  max-height: 250px;
}
/* .hero-section-1::before {
  content: "";
  position: absolute;
  height: 89px;
  width: 100%;
  z-index: 5;
  left: 0;
  bottom: -38px;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 1%,
    rgba(0, 0, 0, 0) 18%,
    black 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 1%,
    rgba(0, 0, 0, 0) 18%,
    black 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 1%,
    rgba(0, 0, 0, 0) 18%,
    black 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#000000",GradientType=0 );
} */
/* special event */
.special-event-header div {
  width: 100%;
  height: 44.8vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.special-event-header div p {
  position: absolute;
  bottom: 3.2vw;
  left: 6.4vw;
  font-size: 5.33vw;
  font-weight: 600;
  line-height: 7.46vw;
}

.opacity-box {
  opacity: 0.5;
  background-color: #fff;
  position: absolute;
  z-index: 1001;
  height: 100%;
  width: 100%;
}

.card-c {
  background-color: #f0f0f0;
  overflow: hidden;
  border-radius: 4px;
}
.card-c .top-info {
  background-color: var(--green-color);
  padding: 24px;
  position: relative;
  z-index: 2;
}
.card-c .top-info .bg-logo {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-c .top-info .text-lg,
.card-c .top-info p {
  color: #fff;
}
.card-c .top-info .text-lg {
  font-size: 28px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 0;
}
.card-c .bottom-info {
  padding: 11px 16px;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  transition: all 0.35s;
  font-size: 14px;
  padding: 4px 15px;
}
.close-btn {
  background-color: transparent;
  border-color: transparent;
}
.bottom-popup-wrap .right-btn {
  position: relative;
  right: 0;
  top: 0;
  margin-bottom: 10px;
}
.mh-80vh {
  min-height: 80vh;
}
/* rating section */
.rating-page .sticky-navbar {
  padding-top: 16px;
  padding-bottom: 16px;
}
.rating-star-bg {
  background: url('../img/icons/rating-bg.svg');
  display: inline-block;
  width: 88px;
  height: 16px;
  font-size: 1rem;
}
.rating-star-select {
  background: url('../img/icons/rating-select.svg');
  display: inline-block;
  height: 16px;
}
.rating-page .reviews a {
  text-decoration: underline;
  word-break: break-all;
}
.review-img {
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.review-img img {
  width: 100%;
  height: 88px !important;
  object-fit: contain;
}
/* multi-line ellipse expand & collapse */
.ellipsis-text-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.multi-line-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
  position: relative;
  line-height: 1.5 !important;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
}
.multi-line-ellipsis[line-clamp='5'] {
  max-height: 7.5em; /*line height * multi-line */
}
.multi-line-ellipsis[line-clamp='7'] {
  max-height: 10.5em; /*line height * multi-line */
}
.ellipsis-text-wrap div::before {
  content: '';
  height: calc(100% - 21px);
  float: right;
}

.ellipsis-text-wrap .ellipsis-operation {
  position: relative;
  float: right;
  clear: both;
  color: var(--green-color);
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 0;
  margin-left: 20px;
  line-height: 21px;
}
.ellipsis-text-wrap .ellipsis-operation-collapse {
  color: var(--green-color);
  cursor: pointer;
  text-decoration: underline;
}
.ellipsis-text-wrap .ellipsis-operation-collapse::after {
  content: '';
}
.ellipsis-text-wrap .ellipsis-operation::after {
  content: 'Expand';
}

.ellipsis-text-wrap .exp:checked + div {
  max-height: none;
}
.ellipsis-text-wrap .exp:checked + div .ellipsis-operation {
  display: none;
}
.ellipsis-text-wrap .exp:checked + div .ellipsis-operation-collapse::after {
  content: 'Collapse';
  margin-left: 5px;
}
.ellipsis-text-wrap .ellipsis-operation::before {
  content: '...';
  position: absolute;
  left: -5px;
  color: #1f1f1f;
  transform: translateX(-100%);
}
/* search page */
.search-list {
  max-height: 112px;
  overflow: hidden;
}
/* image library page */
.imgLib-page .row {
  margin-left: -2px;
  margin-right: -2px;
}
.imgLib-page .col {
  padding: 2px;
  height: calc((100vw + 4px) / 3);
}
.imgLib-page .col img {
  background-color: #fff;
}
.category-page .product-list {
  margin-top: 94px;
  height: calc(100vh - 94px);
  overflow-y: scroll;
}
.category-page .fixed-top {
  z-index: 999 !important;
}
@media screen and (max-width: 350px) {
  :root {
    font-size: 12px;
    --container-spacing: 18px;
  }
  /* search page */
  .search-list {
    max-height: 94px !important;
  }
  .product-card .thumb {
    padding: 8px 8px 0px 8px;
  }
}
@media screen and (min-width: 600px) {
  :root {
    --container-spacing: 48px;
    font-size: 16px;
  }
  .container {
    max-width: 1024px;
  }
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}
