@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
@keyframes topBarForMenuOpen {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    margin-top: 2px;
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes midBarForMenuOpen {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes botBarForMenuOpen {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@keyframes topBarForMenuClose {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes midBarForMenuClose {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes botBarForMenuClose {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10;
  width: 100%;
  max-height: 114px;
  border-top: 5px solid #66B821;
  padding: 16px 0px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 5px rgba(112, 105, 105, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
  transform: translateY(0);
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  header {
    border-top: 3px solid #66B821;
    padding: 9px 0px;
  }
  header.hide {
    transform: translateY(-100%);
    transition: all 0.5s ease;
  }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  position: relative;
}
header .container > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
header .logo {
  max-width: 152px;
}
header .logo .img-cover {
  display: block;
  width: 152px;
  padding-top: 49.3412937287%;
}
@media (max-width: 991px) {
  header .logo .img-cover {
    width: 80px;
  }
}
@media (max-width: 991px) {
  header .logo {
    max-width: 80px;
  }
}
header .search-mob-btn {
  margin-right: 0;
}
header .search-mob-btn .icon-search1 {
  font-size: 1.875rem;
  margin-right: 10px;
  display: none;
}
@media (max-width: 991px) {
  header .search-mob-btn .icon-search1 {
    display: block;
  }
}
header .search-mob-input {
  align-items: center;
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgb(234, 236, 231);
  opacity: 0;
  display: none;
  transition: all 0.5s ease;
}
header .search-mob-input.opened {
  opacity: 1;
  transition: all 0.5s ease;
}
header .search-mob-input.show {
  display: flex;
}
header .search-mob-input .header-input-wrap input {
  background-color: #fff;
}
header .search-mob-input .icon-delete {
  font-size: 1.875rem;
  margin-left: 10px;
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.mobile-menu .menu.open .bar.top {
  animation: topBarForMenuOpen 0.6s ease-in-out forwards;
}
.mobile-menu .menu.open .bar.mid {
  animation: midBarForMenuOpen 0.6s ease-in-out forwards;
}
.mobile-menu .menu.open .bar.bot {
  animation: botBarForMenuOpen 0.6s ease-in-out forwards;
}
.mobile-menu .menu.closed .bar.top {
  animation: topBarForMenuClose 0.6s ease-in-out forwards;
}
.mobile-menu .menu.closed .bar.mid {
  animation: midBarForMenuClose 0.6s ease-in-out forwards;
}
.mobile-menu .menu.closed .bar.bot {
  animation: botBarForMenuClose 0.6s ease-in-out forwards;
}
.mobile-menu .menu .line {
  width: 30px;
  height: 30px;
  position: relative;
  display: block;
}
.mobile-menu .bar {
  width: 24px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: block;
  margin: auto;
  background-color: #464646;
}
.mobile-menu .bar.top {
  margin-top: 6px;
}
.mobile-menu .bar.mid {
  transform-origin: left;
}
.mobile-menu .bar.bot {
  margin-bottom: 6px;
}

.header-filter {
  margin-left: 66px;
  width: 407px;
}
@media (max-width: 1199px) {
  .header-filter {
    margin-left: 33px;
    width: 347px;
  }
}

.header-input-wrap {
  position: relative;
  width: 100%;
}
.header-input-wrap input {
  background-color: rgba(234, 236, 231, 0.5);
  border: none;
  width: 100%;
  height: 44px;
}
.header-input-wrap button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border: none;
  font-size: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.header-hot {
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}
.header-hot .tag {
  background-color: #FC4D32;
  color: #FFFFFF;
  padding: 2px 5px;
  border-radius: 3px;
  cursor: default;
  font-weight: bold;
  flex: 1 0 auto;
  max-width: 41px;
  letter-spacing: 0px;
  text-align: center;
}
@-moz-document url-prefix() {
  .header-hot .tag {
    font-weight: normal;
  }
}
.header-hot .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}
.header-hot .item a {
  position: relative;
  padding: 0 10px;
}
@media (max-width: 1199px) {
  .header-hot .item a {
    font-size: 0.75rem;
    padding: 0 7px;
  }
}
.header-hot .item a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 15px;
  background-color: #464646;
}

.header-bn {
  margin-right: 60px;
  width: 250px;
}
.header-bn .img-cover {
  width: 100%;
  padding-top: 28.0002240018%;
}
@media (max-width: 1199px) {
  .header-bn {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .header-bn {
    display: none;
  }
}

.header-member {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding-bottom: 5px;
}
.header-member > div {
  position: relative;
}
.header-member > div:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .header-member > div:not(:last-child) {
    margin-right: 15px;
  }
}
.header-member a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .header-member a span {
    display: none;
  }
}
.header-member a i {
  font-size: 1.875rem;
  padding-bottom: 3px;
}
.header-member .cart-num {
  font-size: 0.75rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1;
  padding: 3px;
  border-radius: 5px;
  background-color: #DF3C3C;
  position: absolute;
  top: -5px;
  right: -10px;
  box-shadow: 0px 2px 2px rgba(81, 81, 81, 0.2);
  pointer-events: none;
}

.header-links {
  font-size: 0.6875rem;
  line-height: 1.5;
  font-weight: 400;
}
.header-links.hidden-lg {
  position: absolute;
  top: -12px;
  right: 36px;
}
.header-links > div {
  position: relative;
}
.header-links > div:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}
.header-links > div:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #464646;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

nav.menu-wrap {
  position: fixed;
  top: 60px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 0px;
  transition: all 0.5s ease;
  overflow: hidden;
  background-color: #FFFFFF;
}
nav.menu-wrap.open {
  height: calc(100vh - 60px);
  overflow-y: scroll;
}
nav.menu-wrap.open .header-menu-footer {
  bottom: 0px;
}
@media (min-width: 992px) {
  nav.menu-wrap {
    display: none;
  }
}
nav.menu-wrap .header-input-wrap {
  padding: 10px 15px;
  background-color: rgba(234, 236, 231, 0.5);
}
nav.menu-wrap .header-input-wrap input {
  height: 36px;
  background-color: #FFFFFF;
}
nav.menu-wrap .header-input-wrap button {
  right: 25px;
}
nav.menu-wrap > .accordion, nav.menu-wrap > .mobile-menu-target {
  padding: 0 15px 238px;
}
nav.menu-wrap a {
  color: #464646;
  line-height: 1.6;
}
nav.menu-wrap a i {
  font-size: 1.25rem;
}
nav.menu-wrap a i.icon-minus {
  display: none;
}
nav.menu-wrap a[aria-expanded=true] {
  color: #66B821;
}
nav.menu-wrap a[aria-expanded=true] ~ a {
  color: #66B821;
}
nav.menu-wrap a[aria-expanded=true] i.icon-plus {
  display: none;
}
nav.menu-wrap a[aria-expanded=true] i.icon-minus {
  display: block;
}
nav.menu-wrap a.list-target {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
nav.menu-wrap .header-menu-footer {
  position: fixed;
  left: 0px;
  bottom: -122px;
  width: 100%;
  background-color: #EAECE7;
  transition: all 0.5s ease;
}
nav.menu-wrap .header-menu-footer .link {
  padding: 9px 0;
  border-bottom: 1px solid #B4B4B4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-weight: 500;
}
nav.menu-wrap .header-menu-footer .header-links {
  padding: 16px 0 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
nav.menu-wrap .header-menu-footer .header-links > div:not(:last-child)::after {
  top: 56%;
}

.level-one-title {
  padding: 10px 0px;
  border-bottom: 1px solid #B4B4B4;
}
.level-one-title a {
  font-weight: bold;
}
@-moz-document url-prefix() {
  .level-one-title a {
    font-weight: normal;
  }
}
.level-two-title {
  padding: 10px 0px 10px 10px;
}
.level-three-title {
  padding: 10px 0px 10px 20px;
}
.level-four-title {
  padding: 10px 30px;
  opacity: 0.7;
}

.lv-title-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  position: relative;
}
.lv-title-share.active::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0px;
  z-index: -1;
  width: 100vw;
  height: 45px;
  background-color: #66B821;
  pointer-events: none;
}
.lv-title-share.active > a {
  color: #FFFFFF !important;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #464646;
  font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.9375rem;
  /* letter-spacing: 0.0666666667rem; */
}
body.opened {
  overflow: hidden;
}


@media (max-width:768px) {
  body.product-content-page {
    padding-bottom: 63px;
  }
}


h1 {
  font-size: 2.875rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  letter-spacing: 0.25rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

b, strong {
  font-weight: bold;
}

p {
  margin: 0px;
  padding: 0px;
}

ul, li {
  margin: 0px;
  padding-inline-start: 0px;
  list-style-type: none;
}

.fz-13 {
  font-size: 0.8125rem;
  letter-spacing: 0rem;
}

.c-lgray {
  color: #B4B4B4;
}

.op-05 {
  opacity: 0.5;
}

.warning {
  font-size: 0.75rem;
  color: #DF3C3C;
  padding-top: 3px;
}

a {
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}
a.hvr-default:hover {
  opacity: 0.7;
}
a.c-black {
  color: #464646 !important;
}
@media (min-width: 992px) {
  a.c-black:hover {
    opacity: 0.7;
  }
  a.c-black:hover::after {
    opacity: 1;
  }
}
a.c-white {
  color: #FFFFFF !important;
}
@media (min-width: 992px) {
  a.c-white:hover {
    opacity: 0.7;
  }
  a.c-white:hover::after {
    opacity: 1;
  }
}
a.c-lGreen {
  color: #66B821 !important;
}
@media (min-width: 992px) {
  a.c-lGreen:hover {
    opacity: 0.7;
  }
}

.pretty {
  margin-right: 0px;
}
.pretty .state label::before, .pretty .state label::after {
  border: 2px solid #464646;
  background-color: #FFFFFF;
  top: calc(0% - (100% - 1em - 2px) - 8%);
}

.pretty.p-svg .state .svg {
  top: calc(0% - (100% - 1em - 2px) - 8%);
}

.pretty.p-curve .state label:after, .pretty.p-curve .state label:before {
  border-radius: 0px;
}

.pretty input:checked ~ .state.p-success label:after, .pretty.p-toggle .state.p-success label:after {
  background-color: #FFFFFF !important;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  left: -1000px;
  top: 0px;
}

@media (max-width: 991px) {
  .hidden-lg {
    display: none !important;
  }
}

img {
  max-width: 100%;
}

.img-cover {
  position: relative;
  overflow: hidden;
}
.img-cover img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.btn-close {
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
}

.filter-btn {
  font-size: 0.9375rem;
  min-height: 36px;
  line-height: 1.6;
  border-radius: 3px;
  border: 1px solid #66B821;
  color: #66B821;
  background-color: #FFFFFF;
  padding: 0px 7px;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 575px) {
  .filter-btn {
    min-height: 32px;
  }
}
.filter-btn:hover {
  color: #FFFFFF;
  background-color: #66B821;
}
.filter-btn.active {
  color: #FFFFFF;
  background-color: #66B821;
}
.filter-btn:not(.square) i {
  font-size: 1.25rem;
}
.filter-btn.square {
  width: 36px;
}
@media (max-width: 575px) {
  .filter-btn.square {
    width: 32px;
  }
}
.filter-btn.square i {
  font-size: 1.5rem;
}
.filter-btn.square:first-child i {
  margin: 0 -2px -2px 0;
}
@media (max-width: 575px) {
  .filter-btn.square:first-child i {
    margin: 0 0 -2px 0;
  }
}
.filter-btn.square:last-child i {
  margin: 0 -1px -2px 0px;
}
@media (max-width: 575px) {
  .filter-btn.square:last-child i {
    margin: 0 0 -2px 0;
  }
}

input {
  padding-left: 15px;
  border-radius: 3px;
  letter-spacing: 1px;
}
input::placeholder {
  letter-spacing: 1px;
  color: #B4B4B4;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  appearance: none;
}
input:focus {
  outline: none;
}

button {
  padding: 0px;
  border: none;
  background-color: transparent;
  color: #464646;
}
button:focus {
  outline: none;
}

.body-container {
  padding-top: 117px;
}
@media (max-width: 991px) {
  .body-container {
    padding-top: 60px;
  }
}

.container {
  width: 100%;
  max-width: 1340px;
  padding: 0 30px;
  position: relative;
}
@media (max-width: 1199px) {
  .container {
    padding: 0 15px;
  }
}

.title-share {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .title-share {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .title-share {
    margin-bottom: 15px;
  }
}
.title-share .img-cover {
  width: 50px;
  padding-top: 50px;
  margin-right: 15px;
}
@media (max-width: 991px) {
  .title-share .img-cover {
    margin-right: 5px;
    width: 40px;
    padding-top: 40px;
  }
}
.title-share p {
  font-size: 0.875rem;
  line-height: 17px;
  font-family: "Fredoka One", cursive;
  font-display: swap;
  color: #66B821;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .title-share p {
    font-size: 0.75rem;
  }
}
.title-share .title {
  font-size: 1.625rem;
  line-height: 38px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  font-weight: 400;
}
@media (max-width: 991px) {
  .title-share .title {
    font-size: 1.25rem;
    line-height: 29px;
  }
}
.title-share .title span {
  font-weight: bold;
}
@-moz-document url-prefix() {
  .title-share .title span {
    font-weight: normal;
  }
}

.swiper-button-prev, .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(77, 77, 77, 0.6);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: none;
}
.swiper-button-prev i, .swiper-button-next i {
  font-size: 1.25rem;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-prev {
  left: -20px;
}
.swiper-button-prev i {
  margin-left: -1px;
}

.swiper-button-next {
  right: -20px;
}
.swiper-button-next i {
  margin-right: -4px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -16px;
  line-height: 1;
}

.swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: #464646;
  border-radius: 2px;
  opacity: 1;
  margin: 0 4px;
  transition: all 0.5s ease;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
}

.swiper-scrollbar-drag {
  background: #464646;
  opacity: 1;
}

.btn-circle, .btn-transform, .btn-rectangle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: relative;
  border-radius: 50px;
  transition: all 0.5s ease;
}
.btn-circle.cart, .btn-transform.cart, .btn-rectangle.cart {
  color: #FFFFFF;
}
.btn-circle.disabled, .btn-transform.disabled, .btn-rectangle.disabled {
  opacity: 1 !important;
  background-color: rgba(70, 70, 70, 0.5) !important;
}
.btn-circle.disabled .btn-text, .btn-transform.disabled .btn-text, .btn-rectangle.disabled .btn-text {
  color: #464646;
  opacity: 0.5 !important;
}
.btn-circle.checked, .btn-transform.checked, .btn-rectangle.checked {
  background-color: rgba(70, 70, 70, 0.5) !important;
}
.btn-circle.checked .icon-plus, .btn-transform.checked .icon-plus, .btn-rectangle.checked .icon-plus {
  display: none;
}
.btn-circle.checked .icon-check, .btn-transform.checked .icon-check, .btn-rectangle.checked .icon-check {
  display: block;
}
.btn-circle.checked .icon-check::before, .btn-transform.checked .icon-check::before, .btn-rectangle.checked .icon-check::before {
  color: rgba(70, 70, 70, 0.5);
  font-weight: bold;
}
@-moz-document url-prefix() {
  .btn-circle.checked .icon-check::before, .btn-transform.checked .icon-check::before, .btn-rectangle.checked .icon-check::before {
    font-weight: normal;
  }
}
.btn-circle i, .btn-transform i, .btn-rectangle i {
  transition: all 0.5s ease;
}
.btn-circle:hover, .btn-transform:hover, .btn-rectangle:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .btn-circle:not(.disabled):hover .hvr-effect, .btn-transform:not(.disabled):hover .hvr-effect, .btn-rectangle:not(.disabled):hover .hvr-effect {
    display: block;
  }
}
.btn-circle > div, .btn-transform > div, .btn-rectangle > div {
  line-height: 1.5;
  color: #FFFFFF;
  position: absolute;
  left: auto;
  right: auto;
}
.btn-circle .icon-check, .btn-transform .icon-check, .btn-rectangle .icon-check {
  display: none;
}
.btn-circle .hvr-effect, .btn-transform .hvr-effect, .btn-rectangle .hvr-effect {
  font-size: 0.75rem;
  white-space: nowrap;
  border-radius: 3px;
  bottom: -27px;
  padding: 1px 6px;
  background-color: #464646;
  display: none;
}
.btn-circle .btn-text, .btn-transform .btn-text, .btn-rectangle .btn-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 3px 0px;
  font-weight: 500;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .btn-circle .btn-text, .btn-transform .btn-text, .btn-rectangle .btn-text {
    display: none;
  }
}

.btn-rectangle {
  width: 100%;
  border-radius: 3px;
}
.btn-rectangle .btn-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  padding: 3px 0px;
  font-weight: 500;
  display: block;
}

.click-effect {
  display: none;
  font-size: 0.8125rem;
  top: -30px;
  padding: 1px 3px;
  background-color: #66B821;
  z-index: 1;
  border-radius: 3px;
  white-space: nowrap;
}
.click-effect::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #66B821 transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .btn-transform {
    border-radius: 3px;
    width: 100% !important;
    height: auto !important;
  }
  .btn-transform i, .btn-transform .hvr-effect {
    display: none !important;
  }
}

.card-default {
  border-radius: 2px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  flex-direction: column;
  transition: all 0.5s ease;
}
@media (max-width: 575px) {
  .card-default.type-small.transform-small {
    flex-direction: row;
  }
  .card-default.type-small.transform-small .img-cover {
    width: 100px;
    padding-top: 100px;
  }
  .card-default.type-small.transform-small .card-content {
    padding: 8px;
  }
  .card-default.type-small.transform-small .card-content > div:first-child {
    width: 75.814%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .card-default.type-small.transform-small .card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    margin-bottom: 7px;
  }
  .card-default.type-small.transform-small .card-price-wrap {
    align-items: center;
    flex-direction: row;
  }
  .card-default.type-small.transform-small .card-btn-wrap {
    bottom: 50%;
    right: 10px;
    transform: translateY(50%);
  }
}
.card-default.type-small .card-title {
  font-size: 0.9375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0px;
}
.card-default.type-small .card-content {
  padding: 0 6px 6px 6px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.card-default.type-small .card-price-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.card-default.type-small .card-price {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@-moz-document url-prefix() {
  .card-default.type-small .card-price {
    font-weight: normal;
  }
}
.card-default.type-small .card-o-price {
  font-size: 0.875rem;
  line-height: 20px;
}
.card-default.type-middle .card-content {
  padding: 0px 0px 8px 0px;
  border-bottom: 1px solid #B4B4B4;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: column;
}
.card-default.type-middle .card-title {
  font-size: 0.9375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0px;
  min-height: 48px;
}
.card-default.type-middle .card-price-wrap {
  margin-bottom: 3px;
}
.card-default.type-middle .card-price {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@-moz-document url-prefix() {
  .card-default.type-middle .card-price {
    font-weight: normal;
  }
}
.card-default.type-middle .card-o-price {
  font-size: 0.875rem;
  line-height: 20px;
}
.card-default.type-middle .card-tags {
  max-width: 100%;
  margin-bottom: 5px;
}
.card-default.type-large .card-title {
  font-size: 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .card-default.type-large .card-title {
    font-size: 0.9375rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    min-height: 45px;
    margin-bottom: 3px;
  }
}
.card-default.type-large .card-price {
  font-size: 1.625rem;
  line-height: 38px;
}
@media screen and (max-width: 767px) {
  .card-default.type-large .card-price {
    font-size: 1.25rem;
    line-height: 29px;
  }
}
.card-default.type-large .card-o-price {
  font-size: 0.875rem;
  line-height: 20px;
}
.card-default.type-large .card-tags {
  max-width: calc(100% - 50px - 15px);
}
@media (max-width: 767px) {
  .card-default.type-large .card-tags {
    max-width: 100%;
  }
}
.card-default.type-row {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  background-color: #FFFFFF;
  padding-bottom: 5px;
}
.card-default.type-row::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: #66B821;
}
@media (max-width: 767px) {
  .card-default.type-row::after {
    height: 3px;
  }
}
.card-default.type-row .img-cover {
  width: 130px;
  padding-top: 130px;
  margin-right: 14px;
}
@media (max-width: 767px) {
  .card-default.type-row .img-cover {
    width: 100px;
    padding-top: 100px;
    margin-right: 6px;
  }
}
.card-default.type-row .card-content {
  padding-top: 20px;
  max-width: 50%;
}
@media (min-width: 1440px) {
  .card-default.type-row .card-content {
    max-width: 59.64%;
  }
}
@media (max-width: 767px) {
  .card-default.type-row .card-content {
    padding-top: 13px;
  }
}
.card-default.type-row .card-title {
  font-size: 0.9375rem;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  min-height: 48px;
  margin-bottom: 4px;
}
.card-default.type-row .card-price-wrap {
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 767px) {
  .card-default.type-row .card-price-wrap {
    align-items: center;
    flex-direction: row;
  }
}
.card-default.type-row .card-price {
  font-size: 0.8125rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0.01rem;
}
.card-default.type-row .card-price small {
  font-size: 0.8125rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0.01rem;
  margin-left: 0.35rem;
}
.card-default.type-row .card-price .price {
  margin-top: -1px;
}
@-moz-document url-prefix() {
  .card-default.type-row .card-price {
    font-weight: normal;
  }
}
.card-default.type-row .card-price span {
  font-size: 1.135rem;
  letter-spacing: 0.07rem;
}
.card-default.type-row .card-o-price {
  font-size: 0.75rem;
}
.card-default .img-cover.tag {
  position: absolute;
  top: 0px;
  left: 5px;
  z-index: 1;
  width: 60px;
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .card-default .img-cover.tag {
    display: none;
  }
}
.card-default .notice {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 50%;
  background-color: rgba(70, 70, 70, 0.5);
}
@media screen and (max-width: 767px) {
  .card-default .notice {
    width: 80px;
    height: 80px;
  }
}
.card-default .mobile-tag {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  padding: 1px 3px;
  border-top-left-radius: 2px;
  border-bottom-right-radius: 3px;
  background-color: #FC4D32;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@-moz-document url-prefix() {
  .card-default .mobile-tag {
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  .card-default .mobile-tag {
    display: none;
  }
}
.card-default .mobile-tag span {
  font-family: "Fredoka One", cursive;
  font-display: swap;
  font-size: 0.875rem;
  letter-spacing: 0px;
}
.card-content {
  background-color: #FFFFFF;
  position: relative;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
}
.card-title {
  color: #464646;
}
.card-price-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.card-price {
  color: #da1414;
  font-weight: bold;
  padding-right: 8px;
}
@-moz-document url-prefix() {
  .card-price {
    font-weight: normal;
  }
}
.card-o-price {
  color: #B4B4B4;
  text-decoration: line-through;
}
.card-btn-wrap {
  position: absolute;
  right: 35px;
  bottom: 20px;
}
.card-btn-wrap.type-cart .store {
  display: none;
}
.card-btn-wrap.type-store .cart {
  display: none;
}
@media screen and (max-width: 767px) {
  .card-btn-wrap.mobile-full {
    right: 13px;
    bottom: 8px;
    width: calc(100% - 26px);
    height: auto;
    padding-top: 2px;
  }
}
.card-btn-wrap.type-rectangle {
  position: relative;
  right: 0px;
  bottom: 40px;
}
.card-btn-wrap.type-large .btn-transform {
  width: 50px;
  height: 50px;
}
.card-btn-wrap.type-small {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1;
}
.card-btn-wrap.type-small .btn-circle {
  width: 26px;
  height: 26px;
}
.card-btn-wrap.type-small .btn-circle .hvr-effect {
  bottom: -24px;
}
.card-btn-wrap.type-small .btn-circle i {
  font-size: 1.25rem;
}
.card-btn-wrap.type-row {
  bottom: 50%;
  right: 20px;
  transform: translateY(50%);
}
.card-btn-wrap.type-row .btn-circle {
  width: 26px;
  height: 26px;
}
.card-btn-wrap.type-row .btn-circle i {
  font-size: 1.25rem;
}
.card-btn-wrap .cart, .card-btn-wrap .store {
  font-size: 1.875rem;
}
.card-btn-wrap .cart {
  background-color: #FC9332;
  border: 1px solid #FFFFFF;
}
.card-btn-wrap .cart i::before {
  color: #FFFFFF;
}
.card-btn-wrap .cart.disabled {
  background-color: #464646;
  color: #FFFFFF;
  opacity: 0.5;
  cursor: default;
}
.card-btn-wrap .cart.disabled i {
  opacity: 0.5;
}
.card-btn-wrap .store {
  color: #FC9332;
  background-color: #FFFFFF;
  border: 1px solid #FC9332;
}
.card-tags {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .card-tags {
    max-width: none;
  }
}
.card-tags > span {
  color: #915F16;
  opacity: 1;
  font-size: 0.69rem;
  border: 1px solid #915F16;
  border-radius: 3px;
  line-height: 1;
  padding: 0.12rem 2.5px;
  margin-bottom: 5px;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .card-tags > span {
    margin-bottom: 3px;
  }
}
.card-tags > span:not(:last-child) {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .card-tags > span:not(:last-child) {
    margin-right: 3px;
  }
}
.card-switched {
  display: none;
}

.aside-screen-small {
  writing-mode: vertical-lr;
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
  background-color: #66B821;
  padding: 6px;
  transition: all 0.5s ease;
  box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
}
@media (min-width: 768px) {
  .aside-screen-small.active {
    right: -100%;
  }
}
.aside-screen-small a {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 2px;
}
@media (min-width: 1440px) {
  .aside-screen-small {
    display: none;
  }
}
.aside-wrap {
  position: absolute;
  right: 0px;
  top: 0px;
}
.aside-section {
  position: fixed;
  right: 10px;
  top: 50%;
  width: 92px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
  transition: all 0.5s ease;
}
.aside-section.active {
  right: 10px;
}
.aside-section .btn-close {
  top: -10px;
  right: -10px;
}
@media (min-width: 1440px) {
  .aside-section .btn-close {
    display: none;
  }
}
@media (max-width: 1439px) {
  .aside-section {
    right: -100%;
  }
}
@media screen and (max-width: 767px) {
  .aside-section {
    display: none;
  }
}
.aside-title {
  background-color: #66B821;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 5px 0px;
  text-align: center;
  cursor: default;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.aside-content {
  padding: 6px;
  background-color: #FFFFFF;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.aside-content a {
  display: block;
}
.aside-content a:not(:last-child) {
  margin-bottom: 6px;
}
.aside-content a:hover {
  opacity: 0.7;
}
.aside-content .img-cover {
  background-color: #EAECE7;
  padding-top: 100%;
}

.under-section {
  position: fixed;
  top: 50%;
  right: -100%;
  width: 99px;
  z-index: 12;
  overflow: hidden;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  transition: all 0.5s ease;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  background-color: #FFFFFF;
  transform: translateY(-50%);
}
@media (min-width: 1440px) {
  .under-section {
    display: none;
  }
}
.under-section.active {
  right: 0px;
}
.under-title {
  background-color: #66B821;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
  padding: 8px 10px;
  font-size: 0.8125rem;
  position: relative;
}
.under-title .btn-close {
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.under-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-direction: column;
  padding: 5px 10px 0 10px;
  background-color: #FFFFFF;
}
.under-content > a {
  display: block;
  width: 100%;
  margin: 0 5px;
}
.under-content .img-cover {
  background-color: rgba(234, 236, 231, 0.5);
  padding-top: 100%;
  margin-bottom: 6px;
}

.mask {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 11;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  display: none;
}
@media (min-width: 768px) {
  .mask {
    display: none;
  }
}

.gotop {
  position: absolute;
  bottom: 163px;
  right: calc(50% - 621px);
  z-index: 2;
  transform: translateX(50%);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 34px;
  height: 34px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
}
@media screen and (max-width: 1340px) {
  .gotop {
    transform: translateX(0);
    right: 30px;
  }
}
@media (max-width: 1199px) {
  .gotop {
    right: 15px;
    /* bottom: 174px; */
    top: 0px;
    transform: translateY(-50%);
  }
}

.product-list-main {
  width: calc(100% - 200px - 25px);
}
@media (max-width: 991px) {
  .product-list-main {
    width: 100%;
  }
}

.product-content-main {
  width: 100%;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .product-content-main {
    margin-bottom: 20px;
  }
}

.page-title-share {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px solid rgba(70, 70, 70, 0.5);
}
@media screen and (max-width: 767px) {
  .page-title-share {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0px;
    border-bottom: 0px;
  }
}
.page-title-share.between {
  justify-content: space-between;
}
.page-title-share.end {
  justify-content: flex-end;
}
.page-title-share .title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@-moz-document url-prefix() {
  .page-title-share .title {
    font-weight: normal;
  }
}
@media screen and (max-width: 767px) {
  .page-title-share .title {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb-wrap {
    width: 100%;
  }
}
.breadcrumb-wrap .breadcrumb {
  margin-bottom: 0px;
  background-color: transparent;
  padding: 0px;
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    background-color: rgba(234, 236, 231, 0.5);
    padding: 0 8px;
    position: relative;
  }
}
@media screen and (max-width: 414px) {
  .breadcrumb-wrap .breadcrumb {
    padding-left: 30px;
  }
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #464646;
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item {
    line-height: 1.3;
  }
}
@media screen and (max-width: 414px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child {
    position: absolute;
    left: 8px;
    top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 2px;
  }
}
.breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "\e90c";
  font-size: 1.25rem;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 2px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item:first-child a {
    margin-top: 2px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb .breadcrumb-item:not(:first-child) a {
    margin-top: -4px;
  }
}
.breadcrumb-wrap .breadcrumb a {
  color: #464646;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb-wrap .breadcrumb a {
    letter-spacing: 0;
  }
}
.breadcrumb-wrap .breadcrumb a:hover {
  opacity: 0.7;
}
.breadcrumb-wrap .breadcrumb a i {
  font-size: 1.25rem;
  margin-top: -2px;
}

.filter-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 12px;
}
.filter-share > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 575px) {
  .filter-share .desktop {
    display: none;
  }
}
.filter-share .mobile {
  width: 75.65%;
  margin-right: 15px;
}
@media (min-width: 576px) {
  .filter-share .mobile {
    display: none;
  }
}
.filter-share .filter-btn:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 575px) {
  .filter-share .filter-btn:not(:last-child) {
    margin-right: 5px;
  }
}

.selectric-wrapper {
  width: 100%;
}
.selectric-wrapper.selectric-open .selectric {
  border: 1px solid #66B821;
}
.selectric-wrapper.selectric-open .selectric .label {
  color: #464646 !important;
}
.selectric-wrapper.selectric-below .selectric .label {
  color: #464646 !important;
}

.selectric-items {
  border: 1px solid #66B821;
  border-radius: 3px;
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.1);
}
.selectric-items li {
  font-size: 0.9375rem;
  color: #464646;
  background-color: #FFFFFF;
  position: relative;
}
.selectric-items li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 1px;
  background-color: rgba(180, 180, 180, 0.5);
}
.selectric-items li:hover {
  background: #66B821;
  color: #FFFFFF;
}
.selectric-items li.highlighted {
  background: #66B821;
  color: #FFFFFF;
}

.selectric {
  border: 1px solid #B4B4B4;
  background-color: #FFFFFF;
  border-radius: 3px;
}
.selectric .label {
  font-size: 0.9375rem;
  color: #464646;
  height: 42px;
  line-height: 42px;
}
.selectric .button {
  width: 42px;
  height: 42px;
  background-color: #FFFFFF;
}
.selectric .button::after {
  border-top-color: #464646;
}

.selectric-disabled .selectric {
  background-color: rgba(180, 180, 180, 0.5);
}
.selectric-disabled .selectric .label {
  color: rgba(70, 70, 70, 0.5);
}
.selectric-disabled .selectric .button {
  background-color: transparent;
}

.product-container-share {
  padding: 0px;
  margin-bottom: 22px;
}
@media (max-width: 575px) {
  .product-container-share {
    margin-bottom: 12px;
  }
}
.product-container-share .row {
  margin-left: -8px;
  margin-right: -8px;
}
.product-container-share .card-default .img-cover {
  padding-top: 100%;
  background-color: #EAECE7;
}

.one-product-customize {
  width: 20%;
  padding: 8px;
  border-radius: 3px;
}
.one-product-customize:hover {
  box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
}
@media (max-width: 1199px) {
  .one-product-customize {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .one-product-customize {
    width: 33.333%;
  }
}
@media (max-width: 575px) {
  .one-product-customize {
    width: 50%;
  }
}
.one-product-customize.switched {
  width: 100%;
  position: relative;
}
.one-product-customize.switched .card-default {
  flex-direction: row;
  padding-bottom: 8px;
  border-bottom: 1px solid #B4B4B4;
  transition: none;
}
.one-product-customize.switched .card-default .img-cover {
  width: 140px;
  padding-top: 140px;
  max-height: 140px;
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-default .img-cover {
    width: 120px;
    padding-top: 120px;
    max-height: 120px;
  }
}
.one-product-customize.switched .card-default .card-content {
  padding: 0 15px 0 10px;
  border-bottom: 0px;
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-default .card-content {
    padding: 0 0 0 10px;
  }
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-default .card-content .card-title {
    min-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .one-product-customize.switched .card-default .card-content .card-tags {
    display: none;
  }
}
.one-product-customize.switched .card-default .card-switched {
  display: block;
  padding-left: 15px;
  border-left: 1px solid #B4B4B4;
  width: 33.333%;
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-default .card-switched {
    display: none;
  }
}
.one-product-customize.switched .card-default .card-switched p {
  min-height: 108px;
  color: #464646;
  font-size: 0.75rem;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  text-align: left;
  text-align: left;
  margin-bottom: 7px;
}
.one-product-customize.switched .card-default .card-tags {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-default .card-tags {
    padding-bottom: 32px;
  }
}
.one-product-customize.switched .card-default .card-tags > span:not(:last-child) {
  margin-right: 2px;
}
.one-product-customize.switched .card-btn-wrap {
  position: absolute;
  left: 157px;
  right: auto;
  bottom: 17px;
}
@media (min-width: 768px) {
  .one-product-customize.switched .card-btn-wrap {
    width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .one-product-customize.switched .card-btn-wrap {
    left: 137px;
    width: calc(100% - 120px - 10px - 16px);
  }
}

.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 40px;
}
.pages a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 5px;
  font-size: 0.9375rem;
  line-height: 1.6;
  width: 30px;
  height: 30px;
  color: #464646;
  transition: all 0.5s ease;
  border-radius: 50%;
}
.pages a:hover, .pages a.active {
  color: #FFFFFF;
  background-color: #66B821;
}
.pages a:hover i, .pages a.active i {
  opacity: 1;
}
.pages a i {
  font-size: 1.25rem;
  opacity: 0.5;
}

.swiper-component-wrap {
  background-color: #F0F0F0;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .swiper-component-wrap {
    padding-top: 15px;
  }
}
.swiper-component-wrap .title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@-moz-document url-prefix() {
  .swiper-component-wrap .title {
    font-weight: normal;
  }
}
.swiper-component-wrap > .container:hover .swiper-button-prev, .swiper-component-wrap > .container:hover .swiper-button-next {
  opacity: 1;
}
.swiper-component-wrap .swiper-component {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  /* .swiper-component-wrap .swiper-component {
    height: 256px;
  } */
  .swiper-component-wrap .swiper-component .component-pagi {
    bottom: 13px;
  }
}
@media (max-width: 767px) {
  .swiper-component-wrap .swiper-button-prev, .swiper-component-wrap .swiper-button-next {
    display: none;
  }
}
@media (max-width: 575px) {
    .swiper-component-wrap .swiper-component {
    height: 256px;
  }
  .swiper-component-wrap .swiper-component .swiper-slide {
    height: 103px;
  }
}

.swiper-component-wrap .swiper-button-prev {
  left: 10px;
}
.swiper-component-wrap .swiper-button-next {
  right: 10px;
}
.swiper-component-wrap .img-cover {
  background-color: #FFFFFF;
  padding-top: 100%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.swiper-component-wrap .card-default.type-small {
  border-radius: 3px;
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.1);
}
.swiper-component-wrap .card-default.type-small:hover {
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.4);
}
@media (max-width: 767px) {
  .swiper-component-wrap .card-default.type-small::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background-color: #66B821;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
  }
}
.swiper-component-wrap .card-default.type-small .card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
  min-height: 48px;
}
@media (max-width: 767px) {
  .swiper-component-wrap .card-default.type-small .card-title {
    margin-bottom: 0px;
  }
}
.swiper-component-wrap .card-default.type-small .card-content {
  padding: 3px 6px 10px 6px;
  position: relative;
}
@media (max-width: 767px) {
  .swiper-component-wrap .card-default.type-small .card-content {
    padding: 13px 6px 0px 6px;
  }
  .swiper-component-wrap .card-default.type-small .card-content > div:first-child {
    height: auto;
  }
}
.swiper-component-wrap .card-default.type-small .card-content::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 12px);
  height: 1px;
  background-color: #B4B4B4;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .swiper-component-wrap .card-default.type-small .card-content::before {
    content: none;
  }
}
.swiper-component-wrap .card-default.type-small .card-content::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background-color: #66B821;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media (max-width: 767px) {
  .swiper-component-wrap .card-default.type-small .card-content::after {
    content: none;
  }
}
.swiper-component-wrap .card-btn-wrap {
  bottom: 10px;
}

.tab-wrap {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tab-wrap {
    margin-bottom: 30px;
  }
}
.tab-wrap .nav-tabs {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
@media (max-width: 767px) {
  .tab-wrap .nav-tabs {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tab-wrap .nav-tabs .nav-item {
    width: 50%;
  }
}
.tab-wrap .nav-tabs .nav-link {
  border: none;
  color: #464646;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  min-width: 240px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .tab-wrap .nav-tabs .nav-link {
    min-width: 100%;
  }
}
.tab-wrap .nav-tabs .nav-link.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #66B821;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.tab-wrap .tab-content {
  max-width: 1062px;
  margin: 0 auto;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .tab-wrap .tab-content {
    padding-top: 20px;
  }
}

.editor.-small {
  max-width: 58.85%;
}
@media (max-width: 991px) {
  .editor.-small {
    max-width: 43.85%;
  }
}
@media (max-width: 767px) {
  .editor.-small {
    max-width: none;
    width: 100%;
  }
}
.editor > div:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .editor > div:not(:last-child) {
    margin-bottom: 20px;
  }
}
.editor article {
  line-height: 1.6;
}
.editor p.c-lgray:not(:last-child) {
  padding-bottom: 5px;
}
.editor .img-wrap p {
  text-align: center;
}
.editor .l-img-r-txt, .editor .r-img-l-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .editor .l-img-r-txt, .editor .r-img-l-txt {
    align-items: flex-start;
  }
}
.editor .l-img-r-txt .img-wrap, .editor .r-img-l-txt .img-wrap {
  width: 48.59%;
}
@media (max-width: 767px) {
  .editor .l-img-r-txt .img-wrap, .editor .r-img-l-txt .img-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
.editor .l-img-r-txt .img-cover, .editor .r-img-l-txt .img-cover {
  padding-top: 60.078101532%;
}
.editor .l-img-r-txt .txt-wrap, .editor .r-img-l-txt .txt-wrap {
  width: calc(51.41% - 30px);
}
@media (max-width: 767px) {
  .editor .l-img-r-txt .txt-wrap, .editor .r-img-l-txt .txt-wrap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .editor .l-img-r-txt {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .editor .r-img-l-txt {
    flex-direction: column-reverse;
  }
}
.editor .single-img {
  width: 100%;
}
.editor .single-img .img-cover {
  margin: 0 auto;
  width: 79.47%;
  padding-top: 47.8331527627%;
}
@media (max-width: 767px) {
  .editor .single-img .img-cover {
    width: 100%;
    padding-top: 60.1902010353%;
  }
}
.editor .first-title {
  color: #66B821;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 35px;
  margin-bottom: 15px;
}
@-moz-document url-prefix() {
  .editor .first-title {
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  .editor .first-title {
    font-size: 1.25rem;
    line-height: 29px;
    margin-bottom: 10px;
  }
}
.editor .second-title {
  color: #66B821;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@-moz-document url-prefix() {
  .editor .second-title {
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  .editor .second-title {
    margin-bottom: 5px;
  }
}
.editor .third-title {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 5px;
}
@-moz-document url-prefix() {
  .editor .third-title {
    font-weight: normal;
  }
}
.editor ul {
  margin-bottom: 10px;
  padding-inline-start: 20px;
  position: relative;
}
.editor ul li {
  padding-inline-start: 3px;
}
.editor ul li:not(:last-child) {
  margin-bottom: 5px;
}
.editor ul.disc li {
  position: relative;
}
.editor ul.disc li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -14px;
  width: 4px;
  height: 4px;
  background-color: #464646;
  border-radius: 50%;
}
.editor ul.num {
  padding-left: 28px;
}
.editor ul.num li {
  list-style-type: decimal;
  padding-inline-start: 0px;
}
.editor ul.num li::marker {
  padding-left: 10px;
}
.editor ul p.c-lgray {
  margin-top: -2px;
}
.editor ul p.c-lgray:not(:last-child) {
  padding-bottom: 3px;
}

.certification {
  width: calc(41.15% - 30px);
  background-color: #FFFFFF;
  border: 2px solid #66B821;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .certification {
    width: calc(56.15% - 30px);
  }
}
@media (max-width: 767px) {
  .certification {
    width: 100%;
  }
}
.certification .title-share {
  flex-direction: column;
  background-color: #66B821;
  margin-bottom: 0px;
}
.certification .title-share .img-cover {
  margin: -28px 0px 5px 0px;
}
@media (max-width: 767px) {
  .certification .title-share .img-cover {
    margin: -23px 0px 5px 0px;
  }
}
.certification .title-share p, .certification .title-share .title {
  color: #FFFFFF;
}
.certification .title-share .title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 12px;
}
.certification .cer-content-wrap {
  padding: 20px;
}
@media (max-width: 767px) {
  .certification .cer-content-wrap {
    padding: 10px;
  }
}
.certification .cer-content-wrap > div {
  padding: 15px 0px;
}
@media (max-width: 767px) {
  .certification .cer-content-wrap > div {
    padding: 10px 0px;
  }
}
.certification .cer-content-wrap > div:first-child {
  padding-top: 0px;
}
.certification .cer-content-wrap > div:not(:last-child) {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
.certification .cer-content-wrap span {
  font-weight: 500;
  color: rgba(70, 70, 70, 0.5);
}
.certification .cer-content-wrap p {
  line-height: 24px;
}
.certification .cer-content-wrap .d-flex p {
  text-align: right;
}
.certification .cer-content-wrap .d-block span {
  display: inline-block;
  margin-bottom: 12px;
}

.mobile-share {
  position: fixed;
  left: 0px;
  bottom: -100%;
  z-index: 101;
  width: 100%;
  transition: all 0.5s ease;
}
.mobile-share.active {
  bottom: 0%;
}
.mobile-share .title {
  background-color: #66B821;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  color: #FFFFFF;
  position: relative;
  padding: 5px 0px;
}
.mobile-share .title .btn-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #66B821;
}
.mobile-share .content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  background-color: #FFFFFF;
  padding-top: 4px;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
}
.mobile-share .content a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #464646;
  width: 33.33%;
  padding: 20px 0px;
}
.mobile-share .content a:not(:last-child) {
  border-right: 1px solid #B4B4B4;
}
.mobile-share .content a img {
  padding-bottom: 4px;
}

.notice-style {
  background-color: #FFFFFF;
  border: 2px solid #66B821;
  border-radius: 10px;
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.1);
  padding: 20px 8px 20px 20px;
  width: 300px;
  cursor: default;
}
@media (max-width: 767px) {
  .notice-style {
    padding: 20px;
  }
}
.notice-style-inner {
  padding-right: 12px;
  overflow-y: scroll;
  max-height: 306px;
}
@media (min-width: 768px) {
  .notice-style-inner::-webkit-scrollbar {
    width: 5px;
  }
  .notice-style-inner::-webkit-scrollbar-button {
    width: 5px;
    height: 0px;
  }
  .notice-style-inner::-webkit-scrollbar-track {
    background-color: rgba(70, 70, 70, 0);
    border: 0;
    border-radius: 2.5px;
  }
  .notice-style-inner::-webkit-scrollbar-thumb {
    background-color: rgba(70, 70, 70, 0.5);
    border: 0;
    border-radius: 2.5px;
  }
  .notice-style-inner::-webkit-scrollbar-thumb:hover {
    background-color: rgba(70, 70, 70, 0.75);
  }
}
@media (max-width: 767px) {
  .notice-style-inner {
    width: 100%;
    max-height: none;
    overflow-y: auto;
    padding-right: 0px;
  }
}
.notice-style-inner > div {
  padding: 15px 0px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
.notice-style .first-title {
  color: rgba(70, 70, 70, 0.5);
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  font-size: 90%;
}
.notice-style .first-title span {
  color: #464646;
  margin-right: 5px;
  font-size: 1rem;
}
.notice-style .second-title {
  color: #66B821;
  margin-bottom: 5px;
}

.modal .modal-dialog > div {
  position: relative;
}
.modal .close {
  position: absolute;
  right: 20px;
  top: 22px;
  color: #464646;
  opacity: 1;
  font-size: 1.375rem;
  font-weight: 500;
}

.index .announce-wrap {
  margin: 0 0 0 auto;
  max-width: 1266px;
  padding: 20px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 991px) {
  .index .announce-wrap {
    padding: 15px 0px 0px 0px;
    max-width: calc(100% - 10px);
  }
}
.index .announce-title {
  font-family: "Fredoka One", cursive;
  font-display: swap;
  font-size: 1.25rem;
  line-height: 24px;
  text-transform: uppercase;
  background-color: #66B821;
  position: relative;
  padding: 13px 15px;
  text-align: right;
  color: #FFFFFF;
  min-width: 185px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .index .announce-title {
    min-width: auto;
    width: 20px;
    padding: 0px;
  }
}
@media screen and (max-width: 767px) {
  .index .announce-title p {
    display: none;
  }
}
.index .announce-title .img-cover {
  width: 50px;
  padding-top: 50px;
  position: absolute;
  left: -16px;
  bottom: -8px;
}
@media (max-width: 1199px) {
  .index .announce-title .img-cover {
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .index .announce-title .img-cover {
    max-width: none;
    width: 40px;
    padding-top: 40px;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
  }
}
.index .announce-content {
  flex: 1;
  border: 1px solid #66B821;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 12.5px 15px;
}
@media screen and (max-width: 767px) {
  .index .announce-content {
    padding: 8px 8px 8px 18px;
  }
}
.index .announce-content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
}
.index .announce-close {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 1.25rem;
  height: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .index .announce-close {
    padding-left: 5px;
  }
}
.index .kv-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  padding: 30px 0 50px;
}
@media (max-width: 991px) {
  .index .kv-wrap {
    padding: 15px 0 30px;
    flex-direction: column;
  }
}
.index .kv {
  width: 70.3125%;
  position: relative;
}
@media (max-width: 991px) {
  .index .kv.desktop {
    display: none;
  }
}
.index .kv.desktop .img-cover {
  padding-top: 44.3333156%;
}
.index .kv.mobile {
  width: 100vw;
  margin-left: -15px;
  margin-right: -15px;
}
@media (min-width: 992px) {
  .index .kv.mobile {
    display: none;
  }
}
.index .kv.mobile .img-cover {
  padding-top: 70.4002252807vw;
}
.index .kv:hover .swiper-button-prev, .index .kv:hover .swiper-button-next {
  opacity: 1;
}
.index .kv-plan {
  width: 27.34375%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media (max-width: 991px) {
  .index .kv-plan {
    width: 100vw;
    padding-top: 35px;
    margin-left: -15px;
  }
}
.index .kv-plan .title-share {
  padding-bottom: 3%;
  margin-bottom: 0px;
}
@media (max-width: 1199px) {
  .index .kv-plan .title-share .img-cover {
    width: 40px;
    padding-top: 40px;
  }
  .index .kv-plan .title-share p {
    font-size: 0.75rem;
  }
  .index .kv-plan .title-share .title {
    font-size: 1.375rem;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .index .kv-plan .title-share {
    padding-bottom: 15px;
    margin: 0 auto;
  }
  .index .kv-plan .title-share .title {
    font-size: 1.25rem;
    line-height: 29px;
  }
}
.index .kv-plan .section-even {
  width: 100%;
}
@media (max-width: 991px) {
  .index .kv-plan .section-even {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: row;
    overflow-x: scroll;
  }
  .index .kv-plan .section-even > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: 0px 15px;
  }
}
.index .kv-plan .section-even a {
  display: block;
}
.index .kv-plan .section-even a:first-child {
  margin-bottom: 4.2857%;
}
@media (max-width: 991px) {
  .index .kv-plan .section-even a:first-child {
    margin-bottom: 0px;
    margin-right: 10px;
  }
}
.index .kv-plan .section-even .img-cover {
  padding-top: 45.1428545633%;
}
@media (max-width: 991px) {
  .index .kv-plan .section-even .img-cover {
    width: 66.7vw;
    padding-top: 30.1102839937vw;
  }
}
.index .kv-plan .section-single {
  width: 100%;
}
.index .kv-plan .section-single .img-cover {
  padding-top: 94.5715906942%;
}
.index .featrues-section {
  padding: 50px 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .index .featrues-section {
    padding: 20px 0 45px;
  }
}
.index .featrues-section::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 209px;
  background-color: #FFFACC;
}
@media screen and (max-width: 767px) {
  .index .featrues-section::before {
    height: 130px;
  }
}
.index .features-swiper-wrap {
  position: relative;
}
.index .features-swiper-wrap:hover .swiper-button-prev, .index .features-swiper-wrap:hover .swiper-button-next {
  opacity: 1;
}
@media (max-width: 1439px) {
  .index .features-swiper-wrap .swiper-button-prev, .index .features-swiper-wrap .swiper-button-next {
    display: none;
  }
}
@media (max-width: 767px) {
  .index .features-swiper-wrap {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.index .features-swiper-wrap .swiper-scrollbar {
  width: calc(100% - 30px);
  height: 4px;
  bottom: -15px;
  left: 15px;
}
@media (min-width: 1440px) {
  .index .features-swiper-wrap .swiper-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  .index .features-swiper-wrap .swiper-scrollbar {
    width: 100%;
    left: 0px;
  }
}
.index .features-swiper .one-item {
  padding: 20px 7px 14px 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 3px;
  border-bottom: 5px solid #66B821;
  box-shadow: 0px 2px 2px rgba(81, 81, 81, 0.2);
}
.index .features-swiper .one-item:hover p {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .index .features-swiper .one-item {
    padding: 7px 5px;
  }
}
.index .features-swiper .img-cover {
  width: 62px;
  padding-top: 62px;
  margin-bottom: 10px;
}
.index .features-swiper p {
  color: #464646;
  font-weight: 500;
  line-height: 1.6;
  max-width: 109px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  text-align: center;
  transition: all 0.5s ease;
}
.index .season-swiper-wrap {
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .index .season-swiper-wrap {
    padding-bottom: 45px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.index .season-swiper-wrap .swiper-scrollbar {
  width: calc(100% - 30px);
  height: 4px;
  bottom: -15px;
  left: 15px;
}
@media (min-width: 768px) {
  .index .season-swiper-wrap .swiper-scrollbar {
    width: 100%;
    bottom: -30px;
    height: 6px;
    left: 0px;
  }
}
.index .season-swiper .one-item {
  display: block;
}
.index .season-swiper .one-item:hover .btn-circle {
  opacity: 0.7;
}
.index .season-swiper .img-cover {
  padding-top: 60.0961538462%;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.index .season-swiper .content-wrap {
  padding: 20px 20px 30px 20px;
  color: #FFFFFF;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
@media screen and (max-width: 767px) {
  .index .season-swiper .content-wrap {
    padding: 15px;
  }
}
.index .season-swiper .content-wrap .title {
  font-size: 1.5rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  color: #FFFFFF;
  line-height: 35px;
  margin-bottom: 15px;
}
@-moz-document url-prefix() {
  .index .season-swiper .content-wrap .title {
    font-weight: normal;
  }
}
@media screen and (max-width: 767px) {
  .index .season-swiper .content-wrap .title {
    font-size: 1.25rem;
    line-height: 29px;
    margin-bottom: 5px;
  }
}
.index .season-swiper .content-wrap .content {
  line-height: 24px;
  margin-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-align: left;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .index .season-swiper .content-wrap .content {
    margin-bottom: 25px;
  }
}
.index .season-swiper .content-wrap .btn-circle {
  background-color: #FFFFFF;
  color: #464646;
  font-size: 1.875rem;
  width: 50px;
  height: 50px;
}
.index .season-swiper .content-wrap .btn-circle:hover i {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .index .season-swiper .content-wrap .btn-circle {
    width: 40px;
    height: 40px;
  }
}
.index .container-full-bg {
  background-color: #f0f0f0;
  padding: 30px 0 0 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .index .container-full-bg {
    padding: 20px 0 10px 0;
    margin-bottom: 30px;
  }
}
.index .container-full-bg .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.index .container-full-bg .img-cover {
  margin-bottom: 30px;
  width: 48.828125%;
  padding-top: 9.3750600004%;
  transition: all 0.5s ease;
}
.index .container-full-bg .img-cover:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .index .container-full-bg .img-cover {
    width: 100%;
    padding-top: 19.2001228808%;
    margin-bottom: 10px;
  }
}
.index .limit-sale-section {
  width: 90%;
  margin: 0px auto 60px;
}
@media (min-width: 1600px) {
  .index .limit-sale-section {
    max-width: 1440px;
  }
}
@media (max-width: 1439px) {
  .index .limit-sale-section {
    width: 100%;
    max-width: 1340px;
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .index .limit-sale-section {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section {
    padding: 0 5px;
    margin: 0px auto 30px;
  }
}
.index .limit-sale-section-wrap {
  border: 1px solid #66B821;
  border-radius: 10px;
  overflow: hidden;
}
.index .limit-sale-section-head {
  background-color: #66B821;
}
.index .limit-sale-section-product-list {
  padding: 40px 80px 10px 80px;
}
@media (max-width: 1199px) {
  .index .limit-sale-section-product-list {
    padding: 40px 40px 10px 40px;
  }
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list {
    padding: 10px 10px 5px 10px;
  }
}
.index .limit-sale-section-product-list .container {
  padding: 0px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list .container .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.index .limit-sale-section-product-list .container .row > div {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list .container .row > div {
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.index .limit-sale-section-product-list .container .row > div .img-cover.main {
  padding-top: 61.5763546798%;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list .container .row > div .img-cover.main {
    padding-top: 100%;
  }
}
.index .limit-sale-section-product-list .container .row > div .img-cover.main img {
  width: auto;
  object-fit: contain;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+1) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+6) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+8) .card-default {
  border: 1px solid #DBF2CD;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+1) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+6) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+8) .img-cover.main {
  background-color: #DBF2CD;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+2) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+4) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+9) .card-default {
  border: 1px solid #FFEFB7;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+2) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+4) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+9) .img-cover.main {
  background-color: #FFEFB7;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+3) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+5) .card-default, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+7) .card-default {
  border: 1px solid #E4F6FF;
}
.index .limit-sale-section-product-list .container .row > div:nth-child(9n+3) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+5) .img-cover.main, .index .limit-sale-section-product-list .container .row > div:nth-child(9n+7) .img-cover.main {
  background-color: #E4F6FF;
}
.index .limit-sale-section-product-list .card-default {
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.1);
}
.index .limit-sale-section-product-list .card-default:hover {
  box-shadow: 0px 15px 15px -10px rgba(141, 141, 141, 0.4);
}
.index .limit-sale-section-product-list .card-content {
  padding: 15px 20px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list .card-content {
    padding: 5px 8px 40px 8px;
  }
}
.index .limit-sale-section-product-list .card-price-wrap {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section-product-list .card-price-wrap {
    margin-bottom: 3px;
  }
}
.index .limit-sale-section .title-share {
  padding-top: 26px;
  margin-bottom: 15px;
}
.index .limit-sale-section .title-share p, .index .limit-sale-section .title-share .title {
  color: #FFFFFF;
  text-align: center;
}
.index .limit-sale-section > .img-cover {
  width: 50px;
  padding-top: 50px;
  margin: 0 auto -22px;
}
@media screen and (max-width: 767px) {
  .index .limit-sale-section > .img-cover {
    width: 40px;
    padding-top: 40px;
    margin: 0 auto -19px;
  }
}
.index .limit-sale-section .countdown-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding-bottom: 20px;
  color: #FFFFFF;
}
.index .limit-sale-section .countdown-wrap > div:first-child {
  margin-right: 20px;
}
.index .limit-sale-section .countdown-wrap > div:nth-child(2) {
  margin-right: 24px;
}
.index .limit-sale-section .countdown-wrap > div:nth-child(3) {
  margin-right: 24px;
}
.index .limit-sale-section .countdown-wrap .circle, .index .limit-sale-section .countdown-wrap .square {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 2rem;
  line-height: 39px;
  font-family: "Fredoka One", cursive;
  font-display: swap;
  margin-bottom: 3px;
  text-indent: 2px;
}
.index .limit-sale-section .countdown-wrap .circle ~ p, .index .limit-sale-section .countdown-wrap .square ~ p {
  text-align: center;
  font-family: "Fredoka One", cursive;
  font-display: swap;
  font-size: 1rem;
  line-height: 19px;
}
.index .limit-sale-section .countdown-wrap .circle {
  border-radius: 50%;
  background-color: #FC4D32;
  color: #FFFFFF;
}
.index .limit-sale-section .countdown-wrap .circle ~ p {
  color: #FC4D32;
}
.index .limit-sale-section .countdown-wrap .square {
  border-radius: 2px;
  background-color: #FFFFFF;
  color: #66B821;
}
.index .limit-sale-section .countdown-wrap .square ~ p {
  color: #FFFFFF;
}
.index .limit-sale-section .countdown-wrap .hours, .index .limit-sale-section .countdown-wrap .minutes {
  position: relative;
}
.index .limit-sale-section .countdown-wrap .hours::after, .index .limit-sale-section .countdown-wrap .minutes::after {
  content: ":";
  color: #FFFFFF;
  font-family: "Fredoka One", cursive;
  font-display: swap;
  font-size: 1rem;
  line-height: 19px;
  position: absolute;
  right: -15px;
  top: 47%;
  transform: translateY(-50%);
}
.index .sale-section {
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .index .sale-section {
    margin: 0 auto 15px;
  }
}
.index .sale-section.with-banner .banner-wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .index .sale-section.with-banner .banner-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .index .sale-section.with-banner .banner-wrap.desktop {
    display: none;
  }
}
.index .sale-section.with-banner .banner-wrap.desktop .img-cover {
  padding-top: 19.53125%;
}
@media (min-width: 992px) {
  .index .sale-section.with-banner .banner-wrap.mobile {
    display: none;
  }
}
.index .sale-section.with-banner .banner-wrap.mobile .img-cover {
  padding-top: 46.932932839%;
}
.index .sale-section.with-banner .banner-wrap .container {
  max-width: 1340px;
}
@media screen and (max-width: 1340px) {
  .index .sale-section.with-banner .banner-wrap .container {
    padding: 0px;
  }
}
.index .sale-section .container {
  max-width: 1354px;
}
@media screen and (max-width: 767px) {
  .index .sale-section .container {
    padding: 0px 10px;
  }
}
.index .sale-section .container .row {
  margin-left: -7px;
  margin-right: -7px;
}
@media screen and (max-width: 767px) {
  .index .sale-section .container .row {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.index .sale-section .container .row > div {
  padding-left: 7px;
  padding-right: 7px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .index .sale-section .container .row > div {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 15px;
  }
}
.index .sale-section .card-default {
  background-color: #FFFFFF;
  border-radius: 3px;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .index .sale-section .card-default {
    padding: 0px;
  }
}
@media (min-width: 768px) {
  .index .sale-section .card-default:hover {
    box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
  }
}
.index .sale-section .card-default .img-cover {
  padding-top: 100%;
  background-color: #EAECE7;
}
.index .sale-section .card-title {
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  min-height: auto;
}
.index .sale-section .card-price-wrap {
  margin-bottom: 5px;
}
.index .sale-section .card-content {
  padding: 10px 0 15px 0;
  border-bottom: 1px solid #B4B4B4;
}
@media screen and (max-width: 767px) {
  .index .sale-section .card-content {
    padding: 5px 0 40px 0;
  }
}
.index .sale-section .card-btn-wrap {
  right: 15px;
  bottom: 22px;
}
@media screen and (max-width: 767px) {
  .index .sale-section .card-btn-wrap {
    right: 5px;
    bottom: 8px;
  }
  .index .sale-section .card-btn-wrap.mobile-full {
    width: calc(100% - 10px);
  }
}

.sticky-top.menu-wrap {
  display: block;
  width: 200px;
  height: auto;
  position: sticky;
  top: 142px;
  z-index: 1;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .sticky-top.menu-wrap {
    display: none;
  }
}
.sticky-top .level-one-title {
  padding: 5px 6px 5px 8px;
}
.sticky-top .level-two-title {
  padding: 5px 6px 5px 12px;
}
.sticky-top .level-three-title {
  padding: 5px 6px 5px 18px;
}
.sticky-top .level-four-title {
  padding: 5px 6px 5px 24px;
}

.sticky-top-filter {
  display: block;
  width: 200px;
  height: auto;
  position: sticky;
  top: 142px;
  z-index: 1;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .sticky-top-filter {
    position: relative;
    top: 0px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: rgba(234, 236, 231, 0.5);
  }
}
.sticky-top-filter .filter-acc-mobile {
  padding: 10px 0px;
  margin: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.sticky-top-filter .filter-acc-mobile.opened {
  border-bottom: 1px solid rgba(70, 70, 70, 0.5);
}
.sticky-top-filter .filter-acc-mobile.opened i {
  transform: rotate(180deg);
}
.sticky-top-filter .filter-acc-mobile > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.sticky-top-filter .filter-acc-mobile span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  display: none;
  font-size: 0.75rem;
  min-width: 18px;
  margin-left: 10px;
  line-height: 1;
  color: #FFFFFF;
  background-color: #DF3C3C;
  border-radius: 5px;
  box-shadow: 0px 2px 2px rgba(81, 81, 81, 0.2);
  padding: 3px;
}
.sticky-top-filter .filter-acc-mobile i {
  font-size: 1.25rem;
}
@media (min-width: 992px) {
  .sticky-top-filter .filter-acc-mobile {
    display: none;
  }
}
.sticky-top-filter .one-filter {
  background-color: rgba(234, 236, 231, 0.5);
  border-radius: 5px;
  padding: 10px;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter {
    background-color: transparent;
    border-radius: 0px;
    padding: 10px 0px;
    margin: 0 10px;
  }
}
.sticky-top-filter .one-filter:not(:last-child) {
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter:not(:last-child) {
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(70, 70, 70, 0.5);
  }
}
.sticky-top-filter .one-filter .filter-title {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 5px;
}
.sticky-top-filter .one-filter .filter-input-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.sticky-top-filter .one-filter .filter-input-wrap input {
  width: 69px;
  height: 36px;
  border: 1px solid #B4B4B4;
  border-radius: 3px;
  padding-left: 10px;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-input-wrap input {
    width: calc((100% - 18px - 10px) / 2);
  }
}
.sticky-top-filter .one-filter .filter-input-wrap button {
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-input-wrap button {
    display: none;
  }
}
.sticky-top-filter .one-filter .filter-check-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border-bottom: 1px solid rgba(70, 70, 70, 0.5);
  max-height: 141px;
  overflow: hidden;
  transition: all 0.5s ease;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-check-wrap {
    max-height: none;
    border-bottom: none;
  }
}
.sticky-top-filter .one-filter .filter-check-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-check-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.sticky-top-filter .one-filter .filter-check-inner > div {
  overflow: hidden;
  width: 100%;
  min-height: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-check-inner > div {
    width: 50%;
  }
}
.sticky-top-filter .one-filter .filter-check-inner .pretty {
  width: 100%;
}
.sticky-top-filter .one-filter .filter-switch {
  margin-top: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: rgba(70, 70, 70, 0.5);
}
@media (max-width: 991px) {
  .sticky-top-filter .one-filter .filter-switch {
    display: none;
  }
}
.sticky-top-filter .one-filter .filter-switch.opened i {
  transform: rotate(180deg);
}
.sticky-top-filter .one-filter .filter-switch i {
  transition: all 0.5s ease;
}
.sticky-top-filter .filter-submit-wrap {
  padding: 10px 0 15px;
  margin: 0 10px;
}
@media (min-width: 992px) {
  .sticky-top-filter .filter-submit-wrap {
    display: none;
  }
}
.sticky-top-filter .btn-rectangle {
  background-color: #FC9332;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
  min-height: 30px;
}

@media (max-width: 991px) {
  .product-list-page.-search .body-container > .container {
    flex-direction: column;
    padding-top: 90px;
  }
}
@media (max-width: 991px) {
  .product-list-page.-search .page-title-share {
    position: absolute;
    top: 15px;
    width: calc(100% - 30px);
  }
}
.product-list-page .body-container > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding-top: 25px;
}
@media (max-width: 991px) {
  .product-list-page .body-container > .container {
    padding-top: 15px;
  }
}
.product-list-page .body-container .level-one {
  background-color: rgba(234, 236, 231, 0.5);
  margin-bottom: 5px;
  border-radius: 5px;
}
.product-list-page .body-container .lv-title-share.active::before {
  width: 100%;
  height: 34px;
  left: 0px;
  z-index: 0;
}
.product-list-page .body-container .lv-title-share.level-one-title.active::before {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.product-list-page .body-container .lv-title-share a {
  position: relative;
  z-index: 1;
}
.product-list-page .body-container .level-one-title {
  border-bottom: 0px;
}
.product-list-page .menu-wrap > .accordion {
  padding: 0px;
}
.product-list-page .menu-wrap a {
  color: #464646;
  line-height: 1.6;
}
.product-list-page .menu-wrap a i {
  font-size: 1.25rem;
}
.product-list-page .menu-wrap a i.icon-minus {
  display: none;
}
.product-list-page .menu-wrap a[aria-expanded=true] {
  color: #66B821;
}
.product-list-page .menu-wrap a[aria-expanded=true] ~ a {
  /* color: #66B821; */
  color: #464646;
}
.product-list-page .menu-wrap a[aria-expanded=true] i.icon-plus {
  display: none;
}
.product-list-page .menu-wrap a[aria-expanded=true] i.icon-minus {
  display: block;
}
.product-list-page .menu-wrap a.list-target {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.product-list-page .banner-product-section {
  border: 2px solid #F6E3E3;
  border-radius: 5px;
  margin-bottom: 30px;
}
.product-list-page .banner-product-section > .img-cover {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.product-list-page .banner-product-section > .img-cover.desktop {
  padding-top: 28.5714285714%;
}
@media (max-width: 991px) {
  .product-list-page .banner-product-section > .img-cover.desktop {
    display: none;
  }
}
.product-list-page .banner-product-section > .img-cover.mobile {
  padding-top: 46.8757324333%;
}
@media (min-width: 992px) {
  .product-list-page .banner-product-section > .img-cover.mobile {
    display: none;
  }
}
.product-list-page .banner-product-section .card-default {
  border-radius: 5px;
  border: 1px solid #DCF2CD;
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.1);
}
@media (max-width: 575px) {
  .product-list-page .banner-product-section .card-default {
    overflow: hidden;
  }
}
.product-list-page .banner-product-section .card-default:hover {
  box-shadow: 0px 20px 15px -10px rgba(141, 141, 141, 0.4);
}
.product-list-page .banner-product-section .card-default .img-cover {
  padding-top: 100%;
  background-color: #DCF2CD;
}
@media (max-width: 575px) {
  .product-list-page .banner-product-section .card-default .img-cover {
    padding-top: 100px;
  }
}
.product-list-page .banner-products {
  position: relative;
}
.product-list-page .banner-swiper-wrap {
  position: relative;
  padding-left: 85px;
}
@media (min-width: 576px) {
  .product-list-page .banner-swiper-wrap .swiper-pagination {
    display: none;
  }
}
.product-list-page .banner-swiper-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 15px;
}
@media (max-width: 991px) {
  .product-list-page .banner-swiper-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
  .product-list-page .banner-swiper-wrap .swiper-button-prev, .product-list-page .banner-swiper-wrap .swiper-button-next {
    display: none;
  }
}
.product-list-page .banner-swiper-wrap .swiper-button-prev {
  left: 65px;
}
@media (min-width: 992px) {
  .product-list-page .banner-swiper-wrap:hover .swiper-button-prev, .product-list-page .banner-swiper-wrap:hover .swiper-button-next {
    opacity: 1;
  }
}
.product-list-page .recommend-swiper {
  padding: 15px 0px;
}
@media (max-width: 575px) {
  .product-list-page .recommend-swiper {
    padding: 43px 0 34px;
  }
}
.product-list-page .banner-tag {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 70px;
  height: 70px;
  background-color: #F6E3E3;
  color: #464646;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
  border-bottom-right-radius: 5px;
  padding: 8px;
  text-align: center;
}
@-moz-document url-prefix() {
  .product-list-page .banner-tag {
    font-weight: normal;
  }
}
@media (max-width: 991px) {
  .product-list-page .banner-tag {
    font-size: 0.9375rem;
    line-height: 1.6;
    width: auto;
    height: 32px;
  }
}

.product-content-page .body-container {
  overflow-x: hidden;
}
.product-content-page .body-container > .container {
  display: block;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .product-content-page .body-container > .container {
    padding-top: 15px;
  }
}
.product-content-page .page-title-share {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product-content-page .page-title-share {
    margin-bottom: 0px;
  }
}
.product-content-page .product-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
@media (max-width: 767px) {
  .product-content-page .product-wrap {
    flex-direction: column;
  }
}
.product-content-page .product-img {
  width: 37.96875%;
}
@media (max-width: 767px) {
  .product-content-page .product-img {
    width: 100%;
    margin-bottom: 15px;
  }
}
.product-content-page .product-img .swiper-thumbs-wrap {
  position: relative;
}
@media (min-width: 1200px) {
  .product-content-page .product-img .swiper-thumbs-wrap:hover .swiper-button-prev, .product-content-page .product-img .swiper-thumbs-wrap:hover .swiper-button-next {
    opacity: 1;
  }
}
.product-content-page .product-img .img-cover {
  background-color: #EAECE7;
  padding-top: 100%;
}
.product-content-page .product-img .type-large {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-content-page .product-img .type-large {
    margin-bottom: 5px;
  }
}
.product-content-page .product-img .type-thumbs {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-content-page .product-img .type-thumbs {
    margin-bottom: 10px;
  }
}
.product-content-page .product-info {
  width: 62.03125%;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .product-content-page .product-info {
    width: 100%;
    padding-left: 0px;
  }
}
.product-content-page .product-info .product-tag {
  margin-bottom: 5px;
}
.product-content-page .product-info .product-tag span {
  background-color: rgba(145, 95, 22, 0.8);
  font-size: 0.7rem;
  border-radius: 3px;
  line-height: 1.5;
  padding: 0.05rem 2.8px;
  letter-spacing: 0.0003rem;
  font-weight: 300;
  font-family: sans-serif;
}
.product-content-page .product-info .product-tag span:not(:last-child) {
  margin-right: 5px;
}
.product-content-page .product-head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-content-page .product-head {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 5px;
  }
}
.product-content-page .product-head > div:first-child {
  width: 78.54%;
}
@media (max-width: 767px) {
  .product-content-page .product-head > div:first-child {
    width: calc(100% - 41px);
  }
}
.product-content-page .product-head > div:last-child {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-left: 30px;
  padding-left: 15px;
  border-left: 1px solid rgba(70, 70, 70, 0.5);
}
@media (max-width: 767px) {
  .product-content-page .product-head > div:last-child {
    margin-left: 5px;
    padding-left: 5px;
  }
}
.product-content-page .product-head a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  max-width: 30px;
  color: #464646;
}
.product-content-page .product-head a:not(:last-child) {
  margin-right: 15px;
}
.product-content-page .product-head a:hover {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .product-content-page .product-head a.desktop {
    display: none;
  }
}
.product-content-page .product-head a.mobile {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .product-content-page .product-head a.mobile {
    display: none;
  }
}
.product-content-page .product-name {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 10px;
}
@-moz-document url-prefix() {
  .product-content-page .product-name {
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  .product-content-page .product-name {
    font-size: 1.25rem;
    line-height: 29px;
    margin-bottom: 3px;
  }
}
.product-content-page .product-tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.product-content-page .product-tag span {
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-tag.large {
  margin-bottom: 0px;
}
.product-content-page .product-tag.large span {
  margin-bottom: 10px;
  padding: 5px 15px;
  background-color: #66B821;
  border-radius: 5px;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 767px) {
  .product-content-page .product-tag.large span {
    padding: 2px 5px;
  }
}
.product-content-page .product-tag.large span:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .product-content-page .product-tag.large span:not(:last-child) {
    margin-right: 5px;
  }
}
.product-content-page .product-tag.large span i {
  font-size: 1.5rem;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .product-content-page .product-tag.large span i {
    font-size: 1.125rem;
  }
}
.product-content-page .product-tag-mob {
  padding: 10px 0;
  border-top: 1px solid rgba(180, 180, 180, 0.5);
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  margin-bottom: 10px;
}
.product-content-page .product-text {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-content-page .product-text {
    margin-bottom: 10px;
  }
}
.product-content-page .product-text .product-text-wrap {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .product-content-page .product-text .product-text-wrap {
    max-height: 72px;
  }
}
.product-content-page .product-text .product-text-wrap.opened::after {
  content: none;
}
.product-content-page .product-text .product-text-wrap::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  width: 100%;
  height: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.product-content-page .product-text a {
  color: #3997bf;
  margin-bottom: 5px;
  font-size: 0.8125rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-text a i {
  color: #464646;
  font-size: 0.875rem;
}
.product-content-page .product-price-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  gap: 15px;
}
.product-content-page .product-price-wrap.mobile {
  padding-bottom: 0;
  margin-bottom: 5px;
  border-bottom: none;
}
.product-content-page .product-price-wrap.mobile .discount {
  margin-left: 0;
  margin-right: 10px;
}
.product-content-page .product-price-wrap.mobile .o-price {
  margin-left: 10px;
  margin-right: 0;
}
.product-content-page .product-price-wrap .o-price {
  color: #B4B4B4;
  font-size: 0.875rem;
  line-height: 20px;
  text-decoration: line-through;
  margin-right: 15px;
}
.product-content-page .product-price-wrap .price {
  color: #DF3C3C;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0.065rem;
}
.product-content-page .product-price-wrap .price span {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 38px;
  margin-top: -4px;
}
@-moz-document url-prefix() {
  .product-content-page .product-price-wrap .price span {
    font-weight: normal;
  }
}
.product-content-page .product-price-wrap .price span.mark {
  background-color: transparent;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: -1px;
}
.product-content-page .product-price-wrap .discount {
  font-size: 0.7rem;
  line-height: 1;
  border: 1px solid #DF3C3C;
  color: #DF3C3C;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0.24rem 0.25rem 0.24rem 0.25rem;
}
.product-content-page .product-price-wrap .discount p {
  letter-spacing: 0px;
  margin-top: -1px;
}
.product-content-page .product-select-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .product-content-page .product-select-wrap {
    margin-bottom: 10px;
    flex-direction: column;
  }
}
.product-content-page .product-select-wrap > div {
  width: 100%;
}
@media (min-width: 992px) {
  .product-content-page .product-select-wrap > div {
    width: auto;
  }
}
.product-content-page .product-select-wrap > div:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 767px) {
  .product-content-page .product-select-wrap > div:not(:last-child) {
    margin-bottom: 5px;
    margin-right: 0px;
  }
}
.product-content-page .product-select-wrap .title {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 7px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-select-wrap .title span {
  color: #B4B4B4;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.3;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: -2px;
}
.product-content-page .product-select-wrap .select {
  width: 100%;
}
@media (min-width: 992px) {
  .product-content-page .product-select-wrap .select {
    width: 240px;
  }
}
.product-content-page .product-select-wrap .select .selectric .label {
  color: rgba(70, 70, 70, 0.5);
}
.product-content-page .product-select-wrap .input {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .product-content-page .product-select-wrap .input {
    width: 240px;
  }
}
.product-content-page .product-select-wrap .input.disabled::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(180, 180, 180, 0.5);
}
.product-content-page .product-select-wrap .input input {
  width: 100%;
  height: 44px;
  border: 1px solid #B4B4B4;
  border-radius: 3px;
  text-align: center;
  padding: 0px;
}
.product-content-page .product-select-wrap .input button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@-moz-document url-prefix() {
  .product-content-page .product-select-wrap .input button {
    font-weight: normal;
  }
}
.product-content-page .product-select-wrap .input button.minus {
  left: 0px;
  border-right: 1px solid #B4B4B4;
}
.product-content-page .product-select-wrap .input button.plus {
  right: 0px;
  border-left: 1px solid #B4B4B4;
}
.product-content-page .product-button-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-content-page .product-button-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    padding: 8px 15px;
    background: #FFFFFF;
    margin-bottom: 0;
    box-shadow: 0px -3px 5px -5px rgba(81, 81, 81, 0.1);
  }
}
.product-content-page .product-button-wrap .share-btn {
  color: #464646;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.6875rem;
  line-height: 1.5;
}
.product-content-page .product-button-wrap .share-btn .icon-share {
  font-size: 1.875rem;
}
.product-content-page .product-button-wrap button {
  width: calc(50% - 7.5px);
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-weight: 500;
  line-height: 1.6;
  color: #FFFFFF;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .product-content-page .product-button-wrap button {
    width: calc(50% - 5px);
    margin-right: 10px;
  }
}
.product-content-page .product-button-wrap button.buy {
  background: linear-gradient(180deg, #FC9332 0%, #FC6632 100%);
}
.product-content-page .product-button-wrap button.add {
  position: relative;
  background: linear-gradient(180deg, #FCC332 0%, #FCA432 100%);
}
.product-content-page .product-button-wrap button.add .click-effect {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.product-content-page .product-button-wrap button.disabled {
  background-image: none;
  background-color: rgba(70, 70, 70, 0.5);
  color: rgba(70, 70, 70, 0.5);
  cursor: default;
}
.product-content-page .product-gift-wrap {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
.product-content-page .product-gift-wrap .tag-text p {
  font-size: 0.8125rem;
  letter-spacing: 0rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-content-page .product-gift-wrap .tag-text p {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 5px;
  }
  .product-content-page .product-gift-wrap .tag-text p:last-child {
    margin-bottom: 8px;
  }
}
.product-content-page .product-gift-wrap .tag-text span {
  font-size: 0.75rem;
  letter-spacing: 0rem;
  color: #915F16;
  border: 1px solid #915F16;
  border-radius: 3px;
  padding: 1px 3px;
  margin-right: 5px;
  line-height: 1.5;
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .product-content-page .product-gift-wrap .tag-text span {
    display: block;
  }
}
.product-content-page .product-gift-wrap .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 10px 15px 10px 10px;
  border: 1px solid #66B821;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .product-content-page .product-gift-wrap .item {
    padding: 6px 10px 6px 6px;
    margin-bottom: 10px;
  }
}
.product-content-page .product-gift-wrap .item > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-gift-wrap .item .img-cover {
  width: 80px;
  padding-top: 80px;
  background-color: #EAECE7;
  border-radius: 3px;
  margin-right: 11px;
}
.product-content-page .product-gift-wrap .item .img-cover img {
  object-fit: contain;
}
.product-content-page .product-gift-wrap .item-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .product-content-page .product-gift-wrap .item-text {
    align-items: flex-start;
    flex-direction: column;
    max-width: 70%;
  }
}
.product-content-page .product-gift-wrap .item-text span {
  font-weight: 500;
  margin-right: 5px;
}  
.product-content-page .product-gift-wrap .item-check span {
  font-size: 87%;
  letter-spacing: 0.012rem;
}
@media (max-width: 767px) {
  .product-content-page .product-gift-wrap .item-check span {
    display: none;
  }
}
.product-content-page .product-gift-wrap .item-check.not-yet span {
  color: #B4B4B4;
}
.product-content-page .product-gift-wrap .item-check.not-yet i {
  background-color: #B4B4B4;
}
.product-content-page .product-gift-wrap .item-check.not-yet i.icon-check {
  display: none;
}
.product-content-page .product-gift-wrap .item-check.not-yet i.icon-delete {
  display: flex;
}
.product-content-page .product-gift-wrap .item-check i {
  font-size: 1.25rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #66B821;
  color: #FFFFFF;
  margin-left: 5px;
}
.product-content-page .product-gift-wrap .item-check i.icon-delete {
  display: none;
}
.product-content-page .product-gift-wrap .item span {
  color: #66B821;
}
.product-content-page .product-store {
  color: #FC9332;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
}
.product-content-page .product-store p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-store i {
  margin-right: 15px;
  font-size: 1.875rem;
}
.product-content-page .product-notice {
  padding-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 767px) {
  .product-content-page .product-notice {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 5px;
  }
}
.product-content-page .product-notice span {
  font-weight: 500;
}
.product-content-page .product-notice > div {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.product-content-page .product-notice > div:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid rgba(70, 70, 70, 0.5);
  margin-right: 15px;
}
@media (max-width: 767px) {
  .product-content-page .product-notice > div:not(:last-child) {
    padding-right: 0px;
    border-right: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
  }
}
.product-content-page .product-notice a {
  color: #464646;
}
@media (max-width: 767px) {
  .product-content-page .product-notice a.notice-target {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-content-page .product-notice a:not(.notice-target) {
    display: none;
  }
}
.product-content-page .product-notice a > span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #FFFFFF;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #464646;
  font-size: 0.75rem;
  text-indent: 1px;
  margin-left: 7px;
}
.product-content-page .product-notice a .notice-style {
  display: none;
  position: absolute;
  top: 23px;
  left: 0px;
  z-index: 2;
}
.product-content-page .product-notice a .notice-style.opened {
  display: block;
}
.product-content-page .product-menu {
  position: fixed;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  padding: 30px 15px 0 15px;
  background-color: #FFFFFF;
  z-index: 999;
  transition: all 0.5s ease;
}
.product-content-page .product-menu.opened {
  right: 0;
  transition: all 0.5s ease;
}
.product-content-page .product-menu .pd {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  height: 120px;
  margin-bottom: 20px;
}
.product-content-page .product-menu .pd-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-right: 10px;
  background-color: #EAECE7;
}
.product-content-page .product-menu .pd-title {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.6;
}
.product-content-page .product-menu .pd-price {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 29px;
  color: #DF3C3C;
}
.product-content-page .product-menu .spec {
  border-bottom: 1px solid rgba(180, 180, 180, 0.5);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.product-content-page .product-menu .spec-title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 7px;
}
.product-content-page .product-menu .spec-btn {
  border: 1px solid #464646;
  border-radius: 2px;
  padding: 2px 10px;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: all 0.5s ease;
}
.product-content-page .product-menu .spec-btn:hover {
  background-color: #464646;
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.product-content-page .product-menu .spec-btn.active {
  background-color: #464646;
  color: #FFFFFF;
  transition: all 0.5s ease;
}
.product-content-page .product-menu .count-title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 7px;
}
.product-content-page .product-menu .count-title span {
  color: #B4B4B4;
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-left: 10px;
}
.product-content-page .product-menu .count .input {
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .product-content-page .product-menu .count .input {
    width: 240px;
  }
}
.product-content-page .product-menu .count .input.disabled::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(180, 180, 180, 0.5);
}
.product-content-page .product-menu .count input {
  width: 100%;
  height: 44px;
  border: 1px solid #B4B4B4;
  border-radius: 3px;
  text-align: center;
  padding: 0px;
}
.product-content-page .product-menu .count button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 100%;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@-moz-document url-prefix() {
  .product-content-page .product-menu .count button {
    font-weight: normal;
  }
}
.product-content-page .product-menu .count button.minus {
  left: 0px;
  border-right: 1px solid #B4B4B4;
}
.product-content-page .product-menu .count button.plus {
  right: 0px;
  border-left: 1px solid #B4B4B4;
}
.product-content-page .product-menu .btns {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  box-shadow: 0px -3px 5px -5px rgba(81, 81, 81, 0.1);
}
.product-content-page .product-menu .btns .cancel {
  border: 1px solid #464646;
  border-radius: 3px;
  width: calc(50% - 5px);
  height: 44px;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.product-content-page .product-menu .btns .check {
  position: relative;
  background: linear-gradient(180deg, #FC9332 0%, #FC6632 100%);
  border-radius: 3px;
  width: calc(50% - 5px);
  height: 44px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.product-content-page .product-menu .btns .check .click-effect {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.product-content-page .add-on-wrap {
  padding: 20px 40px;
  position: relative;
  margin: 0 -40px 30px;
}
@media (max-width: 767px) {
  .product-content-page .add-on-wrap {
    padding: 10px 10px 0px 10px;
    margin: 0px -10px 20px;
  }
}
.product-content-page .add-on-wrap .add-on-prev, .product-content-page .add-on-wrap .add-on-next {
  margin-top: 0px;
}
.product-content-page .add-on-wrap .add-on-prev {
  left: 20px;
}
.product-content-page .add-on-wrap .add-on-next {
  right: 20px;
}
@media (min-width: 768px) {
  .product-content-page .add-on-wrap:hover .add-on-prev, .product-content-page .add-on-wrap:hover .add-on-next {
    opacity: 1;
  }
}
.product-content-page .add-on-wrap::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-color: #FFFACC;
  border-radius: 10px;
}
.product-content-page .add-on-wrap .title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
@-moz-document url-prefix() {
  .product-content-page .add-on-wrap .title {
    font-weight: normal;
  }
}
.product-content-page .add-on-wrap .add-on-swiper .add-on-pagi {
  bottom: 10px;
}
@media (min-width: 768px) {
  .product-content-page .add-on-wrap .add-on-swiper .add-on-pagi {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-content-page .add-on-wrap .add-on-swiper {
    height: 240px;
    padding-bottom: 24px;
    border-bottom: 0px;
  }
  .product-content-page .add-on-wrap .add-on-swiper .swiper-slide {
    height: 103px;
  }
}
.product-content-page .spec-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}

.customize-page.-events .body-container {
  padding-top: 115px;
}
@media (max-width: 991px) {
  .customize-page.-events .body-container {
    padding-top: 60px;
  }
}
.customize-page .banner {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 20.8333333333%;
}
@media (min-width: 1440px) {
  .customize-page .banner {
    padding-top: 400px;
  }
}
@media screen and (min-width: 1920px) {
  .customize-page .banner {
    padding-top: 20.8333333333%;
  }
}
@media (max-width: 991px) {
  .customize-page .banner.desktop {
    display: none;
  }
}
.customize-page .banner.mobile {
  width: 100%;
  padding-top: 78.125%;
}
@media (min-width: 992px) {
  .customize-page .banner.mobile {
    display: none;
  }
}
.customize-page .banner-links {
  margin-top: -1px;
  padding: 0 30px 120px;
  background-color: #66B821;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 94%, 0 87%);
}
@media (max-width: 991px) {
  .customize-page .banner-links {
    padding: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 97.7%, 0 0%);
  }
}
.customize-page .banner-links .container {
  background-color: #FFFFFF;
  border-radius: 5px;
  padding: 30px 30px 15px 30px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .customize-page .banner-links .container {
    background-color: transparent;
    border-radius: 0px;
    padding: 15px 15px 30px 15px;
  }
}
@media (max-width: 991px) {
  .customize-page .banner-links .container.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .customize-page .banner-links .container.mobile {
    display: none;
  }
}
.customize-page .banner-links .container .row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.customize-page .banner-links .container .row > div {
  padding-left: 7.5px;
  padding-right: 7.5px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .customize-page .banner-links .container .row > div:last-child {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 414px) {
  .customize-page .banner-links .container .row > div:last-child {
    margin-bottom: 50px;
  }
}
.customize-page .banner-links .container .row a:hover {
  opacity: 0.7;
}
.customize-page .banner-links .img-cover {
  padding-top: 59.9520383693%;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .customize-page .banner-links .img-cover {
    padding-top: 46.9571750563%;
  }
}
.customize-page .component-share {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .customize-page .component-share {
    background-image: none !important;
  }
}
.customize-page .component-share.component-img-top {
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-top {
    padding-bottom: 30px;
  }
}
.customize-page .component-share.component-img-top .swiper-share-wrap {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-top .swiper-share-wrap {
    max-width: calc(100vw - 60px);
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-top .swiper-share-wrap {
    max-width: none;
    padding: 0 7px;
  }
}
.customize-page .component-share.component-img-top .swiper {
  height: 702px;
  padding: 12px 0px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-top .swiper {
    height: calc((14.37vw + 48px + 38px + 30px + 24px + 1px + 12px) * 2);
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-top .swiper {
    height: calc((16.529vw + 48px + 38px + 30px + 36px + 1px + 12px) * 2);
    padding: 7px 0px 11px 0px;
  }
}
@media (max-width: 767px) {
  .customize-page .component-share.component-img-top .swiper {
    height: auto;
  }
}
.customize-page .component-share.component-img-top .swiper-slide {
  height: 339px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-top .swiper-slide {
    height: calc(14.37vw + 48px + 38px + 30px + 24px + 1px);
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-top .swiper-slide {
    height: calc(16.529vw + 48px + 38px + 30px + 36px + 1px);
  }
}
@media (max-width: 767px) {
  .customize-page .component-share.component-img-top .swiper-slide {
    height: auto;
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-left, .customize-page .component-share.component-img-right {
    padding-bottom: 30px;
  }
}
.customize-page .component-share.component-img-left > div, .customize-page .component-share.component-img-right > div {
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left > div, .customize-page .component-share.component-img-right > div {
    max-width: 100%;
  }
}
.customize-page .component-share.component-img-left .swiper-share-wrap, .customize-page .component-share.component-img-right .swiper-share-wrap {
  max-width: 881px;
  margin: 20px 0px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left .swiper-share-wrap, .customize-page .component-share.component-img-right .swiper-share-wrap {
    max-width: 68%;
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-left .swiper-share-wrap, .customize-page .component-share.component-img-right .swiper-share-wrap {
    max-width: 100%;
    margin: 0px;
    padding: 0 7px;
  }
}
.customize-page .component-share.component-img-left .swiper, .customize-page .component-share.component-img-right .swiper {
  height: 702px;
  padding: 12px 0px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left .swiper, .customize-page .component-share.component-img-right .swiper {
    height: calc((14.37vw + 48px + 38px + 30px + 24px + 1px + 12px) * 2);
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-left .swiper, .customize-page .component-share.component-img-right .swiper {
    height: calc((21.8vw + 48px + 38px + 30px + 36px + 1px + 12px) * 2);
    padding: 7px 0px 11px 0px;
  }
}
@media (max-width: 767px) {
  .customize-page .component-share.component-img-left .swiper, .customize-page .component-share.component-img-right .swiper {
    height: auto;
  }
}
.customize-page .component-share.component-img-left .swiper-slide, .customize-page .component-share.component-img-right .swiper-slide {
  height: 339px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left .swiper-slide, .customize-page .component-share.component-img-right .swiper-slide {
    height: calc(14.37vw + 48px + 38px + 30px + 24px + 1px);
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-left .swiper-slide, .customize-page .component-share.component-img-right .swiper-slide {
    height: calc(21.8vw + 48px + 38px + 30px + 36px + 1px);
  }
}
@media (max-width: 767px) {
  .customize-page .component-share.component-img-left .swiper-slide, .customize-page .component-share.component-img-right .swiper-slide {
    height: auto;
  }
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left {
    background-position: center left -292px;
  }
}
@media (max-width: 1199px) {
  .customize-page .component-share.component-img-left {
    background-position: center left -350px;
  }
}
.customize-page .component-share.component-img-left > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
.customize-page .component-share.component-img-left > div > .img-cover.desktop {
  margin: 0px 60px 0px 0px;
}
@media (max-width: 1199px) {
  .customize-page .component-share.component-img-left > div > .img-cover.desktop {
    margin: 0px 40px 0px 0px;
    width: calc(32% - 40px);
    padding-top: calc(32% - 40px);
  }
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-left > div {
    padding: 0px 30px;
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-left > div {
    flex-direction: column;
    padding: 0px;
  }
}
.customize-page .component-share.component-img-left .swiper-share-wrap {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-right {
    background-position: center right -292px;
  }
}
@media (max-width: 1199px) {
  .customize-page .component-share.component-img-right {
    background-position: center right -350px;
  }
}
.customize-page .component-share.component-img-right > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
}
.customize-page .component-share.component-img-right > div > .img-cover.desktop {
  margin: 0px 0px 0px 60px;
}
@media (max-width: 1199px) {
  .customize-page .component-share.component-img-right > div > .img-cover.desktop {
    margin: 0px 0px 0px 40px;
    width: calc(32% - 40px);
    padding-top: calc(32% - 40px);
  }
}
@media screen and (max-width: 1366px) {
  .customize-page .component-share.component-img-right > div {
    padding: 0px 30px;
  }
}
@media (max-width: 991px) {
  .customize-page .component-share.component-img-right > div {
    flex-direction: column;
    padding: 0px;
  }
}
.customize-page .component-share.component-img-right .swiper-share-wrap {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.customize-page .component-share > .img-cover, .customize-page .component-share > div > .img-cover {
  width: 300px;
  padding-top: 300px;
  margin: 0 auto 4px;
}
@media (max-width: 991px) {
  .customize-page .component-share > .img-cover, .customize-page .component-share > div > .img-cover {
    width: 100%;
    padding-top: 46.9483568075%;
    margin: 0px;
  }
}
@media (max-width: 991px) {
  .customize-page .component-share > .img-cover.desktop, .customize-page .component-share > div > .img-cover.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .customize-page .component-share > .img-cover.mobile, .customize-page .component-share > div > .img-cover.mobile {
    display: none;
  }
}
.customize-page .component-share .swiper-share-wrap {
  max-width: 1320px;
  padding: 0px 16px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media (min-width: 992px) {
  .customize-page .component-share .swiper-share-wrap:hover .swiper-button-prev, .customize-page .component-share .swiper-share-wrap:hover .swiper-button-next {
    opacity: 1;
  }
}
.customize-page .component-share .share-pagi {
  bottom: 0px;
}
@media (min-width: 992px) {
  .customize-page .component-share .share-pagi {
    display: none;
  }
}
.customize-page .component-share .card-default {
  padding: 8px;
  border-radius: 3px;
}
.customize-page .component-share .card-default:hover {
  box-shadow: 0px 1px 5px rgba(81, 81, 81, 0.2), 0px 5px 15px -5px rgba(81, 81, 81, 0.1);
}
.customize-page .component-share .card-default .img-cover {
  padding-top: 100%;
  background-color: #EAECE7;
}
.customize-page .component-share .card-default .card-price-wrap {
  color: #DF3C3C;
  font-weight: bold;
}
@-moz-document url-prefix() {
  .customize-page .component-share .card-default .card-price-wrap {
    font-weight: normal;
  }
}
.customize-page .component-share .card-default .card-price-wrap .card-price {
  font-size: 1.5625rem;
  line-height: 35px;
}
.customize-page .component-share .card-btn-wrap {
  width: calc(100% - 16px);
  right: -8px;
  bottom: 48px;
}
.customize-page .component-share .card-btn-wrap button {
  height: 30px;
}
.customize-page .customize-body {
  background-color: #FF9534;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}
.customize-page .customize-body .slogan-img {
  padding: 22px 0px;
}
@media (max-width: 767px) {
  .customize-page .customize-body .slogan-img {
    padding: 60px 0 20px;
  }
}
.customize-page .customize-body .slogan-img .img-cover {
  width: 452px;
  padding-top: 355.0667714061px;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .customize-page .customize-body .slogan-img .img-cover {
    width: 86.4%;
    padding-top: 67.8711704635%;
  }
}
.customize-page .customize-body .customize-content-wrap .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-bottom: 0px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .nav {
    padding-bottom: 30px;
  }
}
.customize-page .customize-body .customize-content-wrap .nav-item {
  padding: 0 15px;
  position: relative;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .nav-item {
    padding: 0 7px;
  }
}
.customize-page .customize-body .customize-content-wrap .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background-color: #FFFFFF;
}
.customize-page .customize-body .customize-content-wrap .nav-link {
  color: #FFFFFF;
  font-size: 1.625rem;
  line-height: 1.4615384615;
  font-weight: bold;
  padding: 5px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 24px;
  border: none;
}
@-moz-document url-prefix() {
  .customize-page .customize-body .customize-content-wrap .nav-link {
    font-weight: normal;
  }
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .nav-link {
    font-size: 1.125rem;
    line-height: 1.5;
    padding: 5px 12px;
    border-radius: 19px;
  }
}
.customize-page .customize-body .customize-content-wrap .nav-link:hover {
  border-color: transparent;
  opacity: 0.7;
}
.customize-page .customize-body .customize-content-wrap .nav-link.active {
  background-color: #FC4D32;
}
.customize-page .customize-body .customize-content-wrap .component-share {
  padding: 0 30px 40px;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share {
    padding: 0 8px 40px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share.-product {
  padding: 37px 30px 40px;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share.-product {
    overflow: hidden;
    max-width: 100%;
    padding: 32px 8px 30px;
  }
}
@media (max-width: 991px) {
  .customize-page .customize-body .customize-content-wrap .component-share {
    padding-bottom: 30px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap {
  border-radius: 10px;
  padding: 0 17px;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap {
    max-width: calc(100vw - 60px);
  }
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap {
    max-width: 100%;
    padding: 0px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag-wrap {
  position: absolute;
  top: -37px;
  left: -20px;
  z-index: 1;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag-wrap {
    top: -28px;
    left: -5px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag-wrap::before {
  content: "";
  width: 20px;
  height: 45px;
  background-color: #AB3B29;
  position: absolute;
  top: 32px;
  left: 0px;
  z-index: 0;
  transform: skewY(40deg);
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag-wrap::before {
    width: 5px;
    height: 35px;
    top: 12px;
    left: 0px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag {
  color: #FFFFFF;
  font-size: 1.625rem;
  line-height: 1.4615384615;
  background-color: #FC4D32;
  transform: skewY(-3deg);
  padding: 12px 54px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag {
    font-size: 1.125rem;
    line-height: 1.5;
    padding: 7px 25px;
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-share-wrap .flag span {
  display: block;
  transform: skewY(3deg);
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper {
  height: 722px;
  padding: 32px 0 12px;
}
@media screen and (max-width: 1366px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper {
    height: calc((14.37vw + 48px + 38px + 30px + 35px + 1px + 12px) * 2);
  }
}
@media (max-width: 991px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper {
    height: calc((16.529vw + 48px + 38px + 30px + 56px + 1px + 12px) * 2);
    padding: 32px 0px 27px 0px;
  }
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper {
    height: calc((44.8vw + 48px + 38px + 30px + 1px + 58px) * 2);
    padding: 12px 7px 27px 7px;
  }
}
@media (max-width: 575px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper {
    height: calc((44.8vw + 48px + 38px + 30px + 1px + 46px) * 2);
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .swiper-slide {
  height: 339px;
}
@media screen and (max-width: 1366px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-slide {
    height: calc(14.37vw + 48px + 38px + 30px + 24px + 1px);
  }
}
@media (max-width: 991px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-slide {
    height: calc(16.529vw + 48px + 38px + 30px + 36px + 1px);
  }
}
@media (max-width: 767px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-slide {
    height: calc(44.8vw + 48px + 38px + 30px + 1px + 38px);
  }
}
@media (max-width: 575px) {
  .customize-page .customize-body .customize-content-wrap .component-share .swiper-slide {
    height: calc(44.8vw + 48px + 38px + 30px + 1px + 22px);
  }
}
.customize-page .customize-body .customize-content-wrap .component-share .share-pagi {
  bottom: 15px;
}
.customize-page .customize-body .editor-wrap {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 40px 129px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .customize-page .customize-body .editor-wrap {
    padding: 40px 80px;
  }
}
@media (max-width: 767px) {
  .customize-page .customize-body .editor-wrap {
    padding: 15px;
  }
}

footer {
  position: relative;
  z-index: 98;
}
footer .footer-lists {
  background-color: #3A872E;
  padding: 40px 0px;
}
@media screen and (max-width: 767px) {
  footer .footer-lists {
    padding: 15px 0px;
  }
}
footer .footer-lists .container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer .footer-lists .container {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  footer .footer-lists .container > div:nth-child(1) {
    margin-right: 50px;
  }
  footer .footer-lists .container > div:nth-child(2) {
    margin-right: 102px;
  }
  footer .footer-lists .container > div:nth-child(3) {
    margin-right: 64px;
  }
  footer .footer-lists .container > div:nth-child(4) {
    margin-right: 53px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .footer-lists .container > div {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-lists .container > div {
    width: calc(50% - 10px);
    margin-right: 0px;
  }
  footer .footer-lists .container > div:last-child {
    width: 100%;
  }
}
footer .footer-lists .container .footer-lists-title {
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 23px;
}
@-moz-document url-prefix() {
  footer .footer-lists .container .footer-lists-title {
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  footer .footer-lists .container .footer-lists-title i {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-lists .container .footer-lists-title {
    padding-bottom: 0px;
  }
  footer .footer-lists .container .footer-lists-title.opened i {
    transform: rotate(180deg);
  }
  footer .footer-lists .container .footer-lists-title a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    padding: 8px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  footer .footer-lists .container>div:nth-child(5) .footer-lists-title a  {
    width: calc(50% - 10px);
  }

  footer .footer-lists .container .footer-lists-title i {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-lists .container ul {
    max-height: 0px;
    transition: all 0.5s ease;
    overflow: hidden;
  }
  footer .footer-lists .container ul.opened {
    padding-top: 15px;
    max-height: 500px;
    background: #fff;
  }
  footer .footer-lists .container li a {
    color: #464646;
  }
}
footer .footer-lists .container ul li {
  padding: 0px 8px;
  padding-bottom: 15px;
  font-size: 1rem;
  line-height: 23px;
}

footer .footer-lists .container a {
  color: #FFFFFF;
}
footer .footer-lists .container a:hover {
  opacity: 0.7;
}
footer .qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 20px 30px;
}
@media (max-width: 991px) {
  footer .qrcode {
    display: none;
  }
}
footer .qrcode p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 23px;
  margin: 0 15px;
}
@-moz-document url-prefix() {
  footer .qrcode p {
    font-weight: normal;
  }
}
footer .qrcode div {
  margin: 0 15px;
}
footer .qrcode .img-cover {
  width: 100px;
  padding-top: 100px;
}
footer .copyright {
  padding: 10px 30px;
  background-color: #464646;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0px;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 10px 15px;
  }
}

.test-box {
  width: 100px;
  height: 100px;
}
@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #464646;
  }
}
.test-img {
  width: 480px;
  height: 200px;
  background: url("../images/img_test.jpg");
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}