.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-4 {
  gap: 4rem !important;
}

.gap-5 {
  gap: 5rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.gap-7 {
  gap: 7rem !important;
}

.gap-8 {
  gap: 8rem !important;
}

.gap-9 {
  gap: 9rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.column-gap-1 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.column-gap-2 {
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.column-gap-3 {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.column-gap-4 {
  -moz-column-gap: 4rem !important;
       column-gap: 4rem !important;
}

.column-gap-5 {
  -moz-column-gap: 5rem !important;
       column-gap: 5rem !important;
}

.column-gap-6 {
  -moz-column-gap: 6rem !important;
       column-gap: 6rem !important;
}

.column-gap-7 {
  -moz-column-gap: 7rem !important;
       column-gap: 7rem !important;
}

.column-gap-8 {
  -moz-column-gap: 8rem !important;
       column-gap: 8rem !important;
}

.column-gap-9 {
  -moz-column-gap: 9rem !important;
       column-gap: 9rem !important;
}

.column-gap-10 {
  -moz-column-gap: 10rem !important;
       column-gap: 10rem !important;
}

.row-gap-1 {
  row-gap: 1rem !important;
}

.row-gap-2 {
  row-gap: 2rem !important;
}

.row-gap-3 {
  row-gap: 3rem !important;
}

.row-gap-4 {
  row-gap: 4rem !important;
}

.row-gap-5 {
  row-gap: 5rem !important;
}

.row-gap-6 {
  row-gap: 6rem !important;
}

.row-gap-7 {
  row-gap: 7rem !important;
}

.row-gap-8 {
  row-gap: 8rem !important;
}

.row-gap-9 {
  row-gap: 9rem !important;
}

.row-gap-10 {
  row-gap: 10rem !important;
}

.blank-1 {
  display: block;
  height: 1rem;
}

.blank-2 {
  display: block;
  height: 2rem;
}

.blank-3 {
  display: block;
  height: 3rem;
}

.blank-4 {
  display: block;
  height: 4rem;
}

.blank-5 {
  display: block;
  height: 5rem;
}

.blank-6 {
  display: block;
  height: 6rem;
}

.blank-7 {
  display: block;
  height: 7rem;
}

.blank-8 {
  display: block;
  height: 8rem;
}

.blank-9 {
  display: block;
  height: 9rem;
}

.blank-10 {
  display: block;
  height: 10rem;
}

.absolute-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

html, body {
  font-family: Montserrat, sans-serif !important;
}

a {
  cursor: pointer;
}

img, video {
  -o-object-fit: cover;
     object-fit: cover;
}

.main {
  min-height: 500px;
  transition: all 0.3s;
}
.main-open {
  transform: translateX(50%);
}

.noodle-container {
  position: relative;
  min-height: 2rem;
}
.noodle-mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.message .links {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #333;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px !important;
  }
}
@media (max-width: 768px) {
  body, .main {
    overflow-x: hidden !important;
  }
  .side-right {
    display: none !important;
  }
}
.header {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.header .logo {
  height: 64px;
  width: auto;
  display: inline-block;
}
.header .logo-wrapper {
  flex: 1;
}
.header .menus .menu-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header .menus .menu-item {
  display: inline-block;
  color: #ffffff;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
}
.header .menus .menu-item a {
  color: #ffffff;
  height: 40px;
  line-height: 40px;
}
.header .menus .menu-item a:hover {
  color: var(--info);
  text-decoration: none;
}
.header .menus .menu-item a.menu-has-children {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.header .menus .menu-item a.menu-has-children:after {
  font-family: bootstrap-icons;
  content: "\f282";
  display: block;
}
.header .menus .menu-item .submenu {
  padding: 30px 0 0;
  list-style: none;
  display: none;
  flex-direction: column;
  background-color: #282828;
  color: #ffffff;
  position: absolute;
  left: 0;
  top: 100%;
  width: 260px;
}
.header .menus .menu-item .submenu a {
  display: block;
  line-height: 1.2;
  padding: 5px 15px;
}
.header .menus .menu-item:hover .submenu {
  display: flex;
}
.header .menu-right {
  margin-left: 20px;
}
.header .menu-user {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.header .menu-user .dropdown:hover .dropdown-menu {
  display: block;
}
.header .menu-user .avatar {
  width: 30px;
  height: 30px;
  border-radius: 10rem;
}
.header .menu-user .bi {
  font-size: 22px;
}
.header .menu-user .bi-cart {
  position: relative;
}
.header .menu-user .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  width: 20px;
  height: 20px;
  text-align: center;
  padding: 0;
  line-height: 20px;
  border-radius: 10rem;
}
.header-wrapper {
  min-height: 94px;
}
.header-mobile {
  display: none;
  padding: 10px;
  background-color: #222;
}
.header-mobile .header-left {
  flex: 1;
}
.header-mobile .header-left .logo {
  height: 40px;
  display: inline-block;
}
.header-mobile .header-title {
  flex: 1;
  text-align: center;
}
.header-mobile .header-right {
  flex: 1;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-mobile .header-right .bi {
  font-size: 40px;
  line-height: 1 !important;
}

.mobile-nav-wrapper {
  position: absolute;
  background-color: #222;
  color: #ffffff;
  width: 50vw;
  top: 60px;
  bottom: 0;
  left: 0;
  display: none;
  padding-top: 2rem;
}
.mobile-nav-open {
  display: block;
}
.mobile-nav-navs {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-navs ul.submenu {
  list-style: none;
  padding: 0 0 0 1rem;
  display: none;
}
.mobile-nav-navs ul.submenu a {
  font-size: 0.85rem;
}
.mobile-nav-navs li {
  list-style: none;
}
.mobile-nav-navs li a {
  display: block;
  padding: 12px 15px;
  line-height: 1.2;
  color: #fefefe;
}
.mobile-nav-navs li a:hover {
  text-decoration: none;
}
.mobile-nav-navs li a:hover ul.submenu {
  display: block;
}

@media (max-width: 768px) {
  .header-wrapper {
    display: none;
  }
  .header-mobile {
    display: flex;
  }
}
.swiper-container {
  position: relative;
}

.swiper {
  position: relative;
}

.swiper-button-next, .swiper-button-prev {
  color: #333;
  background-color: #CCCCCC;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  opacity: 0.7;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 24px !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #FF8364;
  color: #FF8364;
}

.swiper-pagination {
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.swiper-pagination-bullet {
  background-color: #ffffff;
  border-radius: 10rem !important;
  opacity: 0.9;
  width: 16px;
  height: 16px;
}
.swiper-pagination-bullet-active {
  background-color: #FF8364;
}

.banner-swiper {
  overflow: hidden;
}
.banner-swiper .slide-image {
  position: relative;
}
.banner-swiper .slide-image:before {
  content: " ";
  display: block;
  padding-bottom: 31%;
}
.banner-swiper .slide-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .banner-swiper .slide-image:before {
    padding-bottom: 50%;
  }
  .banner-swiper .swiper-button-prev, .banner-swiper .swiper-button-next {
    display: none;
  }
}
.home .home-btn {
  color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: 0 5px 0 #ff3323;
  background-color: #ff675b;
  border-radius: 10rem;
  text-align: center;
  margin-bottom: 2rem;
  display: inline-block;
  transition: all 0.3s;
}
.home .home-btn:hover {
  text-decoration: none;
  box-shadow: 0 2px 0 #ff3323;
  transform: translateY(3px);
}
.home .home-video-bg {
  position: relative;
}
.home .home-video-bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.home .home-video-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 9;
}
.home .home-video-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home .home-video-content .logo-large {
  width: 80%;
  display: block;
  margin-bottom: 2rem;
}
.home .home-video-content .home-btn {
  width: 100%;
}
.home .home-video-content .btn-points-mall {
  box-shadow: 0 5px 0 #53812d;
  background-color: #6dab3c;
  border-radius: 10rem;
  text-align: center;
  margin-bottom: 2rem;
  display: block;
}
.home .home-video-content .btn-points-mall:hover {
  box-shadow: 0 2px 0 #53812d;
}
.home .home-map {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: center;
}
.home .home-map .map-container {
  position: relative;
  width: 100%;
}
.home .home-map .map-container:before {
  content: " ";
  display: block;
  padding-bottom: 40%;
}
.home .home-map .action-buttons {
  display: flex;
  justify-content: center;
}
.home .home-map .action-buttons .bi-hand-index::before {
  transform: rotate(90deg) !important;
}
.home .home-map .action-buttons .home-btn {
  width: 100%;
}
.home .header-wrapper {
  position: relative;
  min-height: auto;
}
.home .header-wrapper .header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
}

.page-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page-shop {
  background-image: url("/images/noodlebox/shop-bg.png");
}
.page-shop .header-wrapper {
  height: auto !important;
  min-height: auto;
}

.about .about-banner {
  position: relative;
}
.about .about-banner:before {
  padding-bottom: 40%;
  display: block;
  content: " ";
}
.about .about-banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about-banner h1 {
  font-weight: bolder;
  font-size: 3.2rem;
  text-align: center;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0 auto;
  color: #ffffff;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 15px;
}

.our-teams {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}
.our-teams .our-team {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  text-align: center;
}
.our-teams .our-team__image {
  width: 100px;
  height: 100px;
  border-radius: 10rem;
}

.page-61 .page-banner {
  position: relative;
}
.page-61 .page-banner:before {
  padding-bottom: 24%;
  display: block;
  content: " ";
}
.page-61 .page-banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-61 .page-content {
  color: var(--safety-orange);
}
.page-61 .page-content strong {
  color: #FEFF04 !important;
}

.photo-walls {
  -moz-column-count: 6;
       column-count: 6;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.photo-walls .photo-item {
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 10px;
}
.photo-walls .photo-item img {
  width: 100%;
}

.shop-pc {
  display: block;
}
.shop-mobile {
  display: none;
  position: relative;
}
.shop-mobile .shop-main {
  flex: 1;
  padding: 10px 0;
  overflow-x: hidden;
  min-height: 90vh;
}

@media (max-width: 767px) {
  .page-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .shop-pc {
    display: none;
  }
  .shop-mobile {
    display: flex;
  }
  .our-teams {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-category-circles {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 3px;
       column-gap: 3px;
  align-items: flex-start;
  justify-content: center;
}
.product-category-circles .category-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 5px;
}
.product-category-circles .category-item__icon {
  color: #333333;
  background-color: #444444;
  border-style: outset;
  border-width: 6px;
  border-color: #3cc497;
  border-radius: 100rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product-category-circles .category-item__icon:before {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.product-category-circles .category-item__icon img {
  width: 65%;
  height: 65%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-category-circles .category-item__title {
  font-size: 14px;
  color: #00F9FF;
  text-align: center;
  display: none;
}
.product-category-tabs {
  display: flex;
  flex-wrap: nowrap;
  -moz-column-gap: 2px;
       column-gap: 2px;
  list-style: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  overflow-y: hidden;
}
.product-category-tabs::-webkit-scrollbar {
  display: none;
}
.product-category-tabs .category-tab {
  line-height: 1.5;
  display: inline-block;
  border-color: #69d294;
  background-color: #75d69c;
  color: #fff;
  padding: 14px;
  border-radius: 5px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
}
.product-category-tabs .category-tab.active {
  border-color: #f0f0f0;
  background-color: #f8f8f8;
  color: #666;
}
.product-category-tabs-container {
  display: flex;
  justify-content: center;
}
.product-category-tabs-container.fixed {
  position: fixed;
  z-index: 100;
  top: 90px;
  left: 0;
  right: 0;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 1rem;
  background-color: #444444;
}
.product-category-tab-content {
  display: block;
  margin-top: 2rem;
  overflow-x: hidden;
}
.product-category-tab-panel {
  display: none;
}
.product-category-tab-panel:first-child {
  display: block;
}
.product-category-tabs-mobile {
  background-color: #444444;
  position: relative;
}
.product-category-tabs-mobile:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}
.product-category-tabs-mobile.fixed {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  padding-left: 15px;
  padding-right: 15px;
}
.product-category-tabs-mobile .cat-tabs {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: relative;
  overflow-x: auto;
  z-index: 5;
  bottom: 0;
}
.product-category-tabs-mobile .cat-tabs::-webkit-scrollbar {
  display: none;
}
.product-category-tabs-mobile .cat-tab-item {
  padding: 15px 0;
  display: block;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  color: var(--cyan);
  font-weight: bold;
  font-size: 1.15rem;
}
.product-category-tabs-mobile .cat-tab-item:after {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px solid transparent;
  z-index: 10;
}
.product-category-tabs-mobile .cat-tab-item.active {
  color: var(--safety-orange);
  font-weight: bold;
}
.product-category-tabs-mobile .cat-tab-item.active:after {
  border-bottom-color: var(--safety-orange);
}

.category-products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 15px;
}
.category-products .product-item {
  position: relative;
  background-color: #444444;
  color: #ffffff;
  box-shadow: 0 5px 10px rgba(100, 100, 100, 0.3);
}
.category-products .product-item__image {
  position: relative;
}
.category-products .product-item__image:before {
  content: " ";
  padding-bottom: 100%;
  display: block;
}
.category-products .product-item__ctx {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}
.category-products .product-item__title {
  line-height: 1.2rem;
  height: 2.4rem;
  overflow: hidden;
}
.category-products .product-item__price {
  font-size: 14px;
}

.single-product .header-wrapper {
  background-color: #282828;
}
.single-product .product-thumbnails {
  margin-top: 1rem;
}
.single-product .product-thumbnails .swiper-slide {
  position: relative;
  opacity: 0.6;
  cursor: pointer;
  border: 1px solid #282828;
}
.single-product .product-thumbnails .swiper-slide:before {
  content: " ";
  padding-bottom: 100%;
  display: block;
}
.single-product .product-thumbnails .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product .product-thumbnails .swiper-slide-thumb-active {
  opacity: 1 !important;
  border-color: #f00;
}
.single-product .product-slide-image {
  position: relative;
}
.single-product .product-slide-image:before {
  content: " ";
  padding-bottom: 100%;
  display: block;
}
.single-product .product-slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-metabox {
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-metabox .product-sticky {
  top: 0;
  position: sticky;
  display: flex;
  background-color: #444444;
}
.product-metabox .product-sticky .product-thumbnail {
  width: 100px;
  margin-right: 15px;
  display: none;
}
.product-metabox .product-sticky .product-thumbnail img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-metabox .product-sticky .product-info {
  flex: 1;
}
.product-metabox .product-potins {
  background-color: #55B3A5;
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  border-radius: 3px;
}
.product-metabox .product-price {
  font-size: 2rem;
  margin-top: 1rem;
  font-weight: 600;
}
.product-metabox .product-description {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.2;
}
.product-metabox .product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 1rem;
}
.product-metabox .product-badges img {
  width: 50px;
  height: 50px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-metabox .product-variations {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 1rem;
}
.product-metabox .product-variation__name {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.product-metabox .product-variation__options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-metabox .product-variation__option {
  border: 1px solid var(--bull-cyan);
  padding: 10px;
  line-height: 1;
  border-radius: 5px;
  color: var(--bull-cyan);
  cursor: pointer;
  font-size: 0.8rem;
}
.product-metabox .product-variation__option-active {
  background-color: var(--bull-cyan);
  color: #fff !important;
}
.product-metabox .product-add-order {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 2rem;
}
.product-metabox .product-add-favorite {
  margin-top: 1rem;
}

.number-control {
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}
.number-control__btn {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  background-color: #f0f0f0;
  line-height: 38px;
  height: 38px;
  color: #333;
  width: 38px;
  cursor: pointer;
}
.number-control__input {
  flex: 3;
  width: 40px;
}
.number-control__input__input {
  width: 100%;
  text-align: center;
  height: 38px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #ffffff;
  border-radius: 0 !important;
}
.number-control__input__input:focus {
  outline: none;
  box-shadow: none;
}

.dialog-metas-container {
  padding: 15px;
  position: relative;
  overflow: hidden;
  height: 450px;
}
.dialog-metas-container .product-images-wrapper {
  position: relative;
}
.dialog-metas-container .product-images-wrapper:before {
  padding-bottom: 100%;
  content: " ";
  display: block;
}
.dialog-metas-container .product-images-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dialog-metas-container .product-thumbs {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  min-height: 60px;
}
.dialog-metas-container .product-thumb {
  display: block;
  border: 1px solid #333333;
  cursor: pointer;
}
.dialog-metas-container .product-thumb img {
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.dialog-metas-container .product-col-metas {
  height: 420px;
  overflow: hidden;
}
.dialog-metas-container .product-metabox {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.dialog-metas-container .product-metabox::-webkit-scrollbar {
  display: none;
}
.dialog-metas-container .product-metabox .product-sticky {
  background-color: #0F0F0F;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  margin-top: 1rem;
}
.product-list .product-item {
  display: block;
}
.product-list .product-item__image {
  position: relative;
}
.product-list .product-item__image:before {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.product-list .product-item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list .product-item__title {
  line-height: 1.2rem;
  height: 2.4rem;
  overflow: hidden;
  margin-top: 10px;
}
.product-list .product-item__title a {
  color: #fff;
}
.product-list .product-item__title a:hover {
  color: var(--bull-cyan);
  text-decoration: none;
}
.product-list .product-item__price {
  font-size: 1.2rem;
  color: var(--bull-cyan);
  margin-top: 10px;
}
.product-list .product-item__add-order {
  text-align: center;
  margin-top: 1rem;
}

.product-related-products {
  grid-template-columns: repeat(6, 1fr);
}

.product-right-categories {
  padding: 0;
  margin-top: 1rem;
  list-style: none;
}
.product-right-categories li {
  display: block;
  line-height: 2rem;
  height: 2rem;
  font-size: 1.1rem;
  overflow: hidden;
}
.product-right-categories li a {
  color: var(--bull-cyan);
}
.product-right-categories li a:hover {
  color: var(--white);
}

.points-mall-tags {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.points-mall-tags .tag-item {
  display: block;
}
.points-mall-tags .tag-item a {
  display: block;
  padding: 18px 25px;
  border-radius: 5px;
  line-height: 1;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  background-size: 200% 100%;
}
.points-mall-tags .tag-item a:hover {
  text-decoration: none;
  background-position-x: 100%;
}
.points-mall-tags .tag-item a.tag-link-0 {
  background-image: linear-gradient(to right, #146d00 0%, #b5ce10 50%, #146d00 100%);
}
.points-mall-tags .tag-item a.tag-link-1 {
  background-image: linear-gradient(to right, #9b8723 0%, #afcd3b 50%, #9b8723 100%);
}
.points-mall-tags .tag-item a.tag-link-2 {
  background-image: linear-gradient(to right, #357ce8 0%, #0fbdc6 50%, #357ce8 100%);
}
.points-mall-tags .tag-item a.tag-link-3 {
  background-image: linear-gradient(to right, #e83565 0%, #f70e0e 50%, #e83565 100%);
}
.points-mall-tags .tag-item a.tag-link-4 {
  background-image: linear-gradient(to right, #8d22a5 0%, #e21292 50%, #8d22a5 100%);
}
.points-mall-tags .tag-item a.tag-link-5 {
  background-image: linear-gradient(to right, #dd3333 0%, #bf780f 50%, #dd3333 100%);
}
.points-mall-tags .tag-item a.tag-link-6 {
  background-image: linear-gradient(to right, #c18b2c 0%, #a3ba0e 50%, #c18b2c 100%);
}
.points-mall-tags .tag-item a.tag-link-7 {
  background-image: linear-gradient(to right, #2b155b 0%, #8600c4 50%, #2b155b 100%);
}
.points-mall-tags .tag-item a.tag-link-8 {
  background-image: linear-gradient(to right, #29b262 0%, #10ceb8 50%, #29b262 100%);
}

.points-mall-tabs {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.points-mall-tabs .tab-item {
  display: block;
}
.points-mall-tabs .tab-item a {
  display: block;
  padding: 18px 25px;
}

.product-vertical-list {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.product-vertical-list .product-item {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.product-vertical-list .product-item__image {
  flex: 1;
  position: relative;
}
.product-vertical-list .product-item__image__image {
  position: relative;
  overflow: hidden;
}
.product-vertical-list .product-item__image__image:before {
  content: " ";
  display: block;
  padding-bottom: 100%;
}
.product-vertical-list .product-item__image__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-vertical-list .product-item__ctx {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-vertical-list .product-item__title {
  line-height: 1.2;
  font-size: 1.1rem;
  font-weight: 500;
}
.product-vertical-list .product-item__price {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  -moz-column-gap: 2px;
       column-gap: 2px;
  font-style: italic;
}
.product-vertical-list .product-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-vertical-list .product-item__badges .badge-item {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #913ED7;
  color: #fff;
  padding: 8px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 1rem;
  z-index: 5;
}
.product-icon__hot {
  background-color: #ff0000;
}

.product-spicy {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
}
.product-spicy__slightly {
  background-image: url("/images/noodlebox/spicy-slightly.png");
}
.product-spicy__medium {
  background-image: url("/images/noodlebox/spicy-medium.png");
}
.product-spicy__super {
  background-image: url("/images/noodlebox/spicy-super.png");
}

@media (max-width: 767px) {
  .single-product .product-related-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-category-circles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 10px;
  }
  .product-category-circles .category-item__title {
    display: block;
    font-size: 12px;
  }
  .product-category-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -moz-column-gap: 5px;
         column-gap: 5px;
    justify-content: flex-start;
    margin-top: 1rem;
  }
  .product-category-tabs::-webkit-scrollbar {
    display: none;
  }
  .product-category-tabs .category-tab {
    white-space: nowrap;
  }
  .product-category-tabs.fixed {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 10px;
    z-index: 100;
    margin-top: 0;
  }
  .dialog-metas-container {
    height: 60vh;
  }
  .dialog-metas-container .product-image-col {
    display: none;
  }
  .dialog-metas-container .product-col-metas {
    flex: 1;
  }
  .dialog-metas-container .product-metabox {
    height: calc(60vh - 30px);
    overflow-x: hidden;
    overflow-y: auto;
    position: sticky;
  }
  .dialog-metas-container .product-metabox::-webkit-scrollbar {
    display: none;
  }
  .dialog-metas-container .product-metabox .product-sticky {
    background-color: #0F0F0F;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .dialog-metas-container .product-metabox .product-sticky .product-thumbnail {
    display: block;
  }
  .dialog-metas-container .product-metabox .product-name {
    font-size: 1.1rem;
    height: 1.1rem;
    overflow: hidden;
  }
  .dialog-metas-container .product-metabox .product-price {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .points-mall-tags {
    display: none;
  }
}
.error-content {
  text-align: center;
  padding-top: 100px;
  min-height: 530px;
}
.error-content .image {
  text-align: center;
  display: block;
}
.error-content .image img {
  width: 200px;
  display: inline-block;
}
.error-content .error-icon {
  text-align: center;
}
.error-content .error-icon img {
  width: 80px;
  display: inline-block;
  margin-bottom: 10px;
}
.error-content h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.error-content .links {
  text-align: center;
  font-size: 14px;
}
.error-content a {
  margin: 0 5px;
  text-decoration: none;
}
.error-content a:hover {
  text-decoration: underline;
}

.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #ffffff;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .our-providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer .our-providers img {
  height: 38px;
  display: inline-block;
}
.footer .social-icons {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer .social-icons .social-icon {
  background-color: #37b291 !important;
  border-radius: 3px;
  color: #ffffff !important;
  border: 0 #ffffff solid !important;
  font-size: 18px;
  padding: 9px;
  line-height: 1 !important;
}
.footer .copyright {
  text-align: center;
  color: #f5f5f5;
}

.window-cookie {
  position: fixed;
  background-color: #000;
  color: #ffffff;
  padding: 2rem;
  left: 1rem;
  bottom: 1rem;
  width: 500px;
  border-radius: 0.6rem;
  z-index: 100;
}

.float-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.float-window .float-window-content {
  display: block;
  min-width: 500px;
  max-width: 500px;
  position: relative;
}
.float-window .float-window-image {
  display: block;
  width: 100%;
  height: 100%;
}
.float-window .float-window-close {
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  font-size: 40px;
  height: 40px;
  line-height: 40px;
  color: #333;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    row-gap: 10px;
  }
  .window-cookie {
    border-radius: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    z-index: 1000;
  }
  .float-window .float-window-content {
    min-width: 90% !important;
    max-width: 90% !important;
  }
}
.noodle-dialog {
  display: flex;
  flex-direction: column;
  min-width: 60%;
  max-width: 60%;
  max-height: 80%;
  background-color: #0F0F0F;
  color: var(--white);
  transform: scale(0);
  transition: all 0.3s;
  z-index: 100;
}
.noodle-dialog.show {
  transform: scale(1);
  transition: all 0.3s;
}
.noodle-dialog-wrapper {
  position: fixed;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.noodle-dialog__header {
  display: flex;
  padding: 10px;
}
.noodle-dialog__header .close {
  padding: 0 5px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.noodle-dialog__body {
  flex: 1;
}
.noodle-dialog__footer {
  display: flex;
  padding: 10px;
}
.noodle-dialog__content {
  display: block;
  padding: 1rem;
}

@keyframes noodle-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.noodle-loading-wrapper {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.noodle-loading-spinner {
  font-size: 50px;
  font-weight: bold;
  color: #f5f5f5;
  transform-origin: center;
  animation: noodle-rotate 1s linear infinite;
}

.noscroll {
  overflow: hidden !important;
  height: 100% !important;
}

@media (max-width: 768px) {
  .noodle-dialog {
    min-width: 100%;
    max-width: 100%;
    transform: scale(1) translateY(100%);
  }
  .noodle-dialog.show {
    transform: scale(1) translateY(0);
  }
  .noodle-dialog-wrapper {
    align-items: flex-end;
  }
}
.cart-items {
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.cart-item {
  display: flex;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.cart-item__remove {
  padding: 0 10px;
}
.cart-item__remove .bi {
  cursor: pointer;
}
.cart-item__image {
  width: 60px;
}
.cart-item__image img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-item__main {
  flex: 1;
  display: flex;
  gap: 10px;
  align-items: center;
}
.cart-item__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 5px;
  cursor: pointer;
}
.cart-item__title:hover {
  color: #FF9902;
}
.cart-item__title:hover * {
  color: #FF9902 !important;
}
.cart-item__title .options {
  font-weight: 600;
}
.cart-item__title .metas {
  font-size: 12px;
  color: #CCCCCC;
}
.cart-item__title a:hover {
  color: var(--bull-cyan);
}
.cart-item__price {
  width: 60px;
  text-align: center;
}
.cart-item__qty {
  width: 118px;
  text-align: center;
}
.cart-item__total {
  width: 80px;
  text-align: right;
  font-weight: 600;
}

.cart-totals {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.cart-total {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-around;
}
.cart-total__label {
  flex: 1;
  font-weight: 600;
}
.cart-total__value {
  color: var(--bull-cyan);
}
.cart-total__total {
  font-size: 1.2rem;
}

.cart-actions {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1rem;
}
.cart-actions .cart-action {
  flex: 1;
}
.cart-actions .btn {
  width: 100%;
}

.dialog-cart-wrapper {
  padding: 1rem;
}

@media (max-width: 768px) {
  .cart-item {
    align-items: flex-start;
    position: relative;
  }
  .cart-item__remove {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 20px;
  }
  .cart-item__image {
    width: 80px;
  }
  .cart-item__image img {
    width: 80px;
    height: 80px;
  }
  .cart-item__main {
    flex-wrap: wrap;
  }
  .cart-item__title {
    width: 100% !important;
    min-width: 100% !important;
  }
  .cart-item__price {
    flex: 1;
    width: auto;
    text-align: left;
  }
  .cart-item__total {
    display: none;
  }
}
.checkout .checkout-section {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-around;
  margin-bottom: 0.5rem;
}
.checkout .checkout-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: -20px;
  margin-right: -20px;
}
.checkout .checkout-col {
  padding: 20px;
  box-sizing: border-box;
}
.checkout .checkout-order {
  border: 1px solid #3A3A3A;
  overflow-x: hidden;
}
.checkout .form-group__label {
  color: var(--safety-orange);
  display: flex;
  margin-bottom: 0.45rem;
}
.checkout .form-group__label i {
  color: #ff0000;
  padding-inline-start: 3px;
  padding-block-start: 1px;
  font-style: normal;
}
.checkout .form-group .invalid-feedback {
  display: block;
}
.checkout .order-items {
  display: flex;
  flex-direction: column;
}
.checkout .order-items .order-item {
  padding: 9px 0;
  display: flex;
  justify-content: space-around;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.checkout .order-items .order-item__product {
  flex: 1;
  color: var(--safety-orange);
}
.checkout .order-items .order-item__product .title {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}
.checkout .order-items .order-item__product .additional {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--bull-cyan);
}
.checkout .order-items .order-item__subtotal {
  text-align: right;
  color: var(--bull-cyan);
}
.checkout .order-items .order-item__header {
  font-size: 1.2rem;
  font-weight: bolder;
  color: var(--safety-orange);
}
.checkout .order-totals {
  border-top: 1px solid #CCCCCC;
  padding: 5px 0;
}
.checkout .order-totals .order-total {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  padding: 5px 0;
}
.checkout .order-totals .order-total__label {
  font-weight: 600;
  flex: 1;
}
.checkout .order-totals .order-total__total {
  text-align: right;
  color: var(--bull-cyan);
}
.checkout .pay-methods {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.checkout .pay-methods .pay-method {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.checkout .pay-methods .pay-method__details {
  flex: 1;
  color: var(--safety-orange);
}
.checkout .label-radio {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  line-height: 1.2;
  margin-bottom: 0;
}
.checkout .label-radio .radio-box {
  position: relative;
  width: 20px;
  height: 20px;
}
.checkout .label-radio .radio-box:before {
  content: " ";
  display: inline-block;
  border-radius: 10rem;
  border: 2px solid #767676;
  background-color: var(--white);
  background-clip: content-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.checkout .label-radio .radio {
  opacity: 0;
  display: none;
}
.checkout .label-radio .radio:checked + .radio-box:before {
  background-color: var(--bull-cyan) !important;
}
.checkout .invalid-feedback.show {
  display: block;
}

@media (max-width: 768px) {
  .checkout .checkout-body {
    grid-template-columns: 1fr;
  }
}
.auth-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.auth-form {
  display: flex;
  flex-direction: column;
}
.auth-form-header {
  margin-bottom: 2rem;
}
.auth-form-links {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.auth-form-links a {
  color: #10A37F;
}
.auth-or {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.auth-or:before, .auth-or:after {
  content: " ";
  display: block;
  border-bottom: 1px solid #c2c8d0;
  height: 1px;
  flex: 1;
}
.auth-or span {
  padding: 0 1rem;
}
.auth-socials {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.auth-socials i {
  font-size: 40px;
}
.auth-socials a {
  color: #ffffff;
}
.auth-socials a:hover {
  color: var(--safety-orange);
}

.dialog-login-container {
  margin: 0 auto;
  padding: 30px;
}

.auth-dialog {
  max-width: 400px;
  min-width: 400px;
}

.sign-form .invalid-feedback.show {
  display: block;
}

@media (max-width: 768px) {
  .auth-dialog {
    max-width: 100%;
    min-width: auto;
  }
}
.order-product-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #f2f3f5;
}
.order-product-table:hover {
  border-color: #ccc;
}
.order-product-table thead th {
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  border-bottom: 1px solid #f2f3f5;
}
.order-product-table tbody td {
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 400;
  vertical-align: top;
}
.order-product-table .order-items {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.order-product-table .order-item {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.order-product-table .order-item__thumb {
  width: 60px;
  height: 60px;
}
.order-product-table .order-item__content {
  flex: 1;
}
.order-product-table .order-item__title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
}
.order-product-table .order-item__metas {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.order-product-table .order-item__metas dl {
  display: flex;
  margin: 0;
  padding: 0;
  -moz-column-gap: 5px;
       column-gap: 5px;
  color: #efefef;
  line-height: 1 !important;
}
.order-product-table .order-item__metas dl dt {
  min-width: 200px;
  margin: 0;
}
.order-product-table .order-item__metas dl dd {
  margin: 0;
}
.order-product-table .order-total {
  font-weight: 700;
  font-size: 14px;
}
.order-product-table .order-shipping-total {
  font-size: 12px;
}

.order-shipping {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #f2f3f5;
  row-gap: 6px;
}

.order-detail .order-products {
  display: block;
  margin-top: 1rem;
}
.order-detail .order-product {
  display: flex;
  padding: 10px 0;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.order-detail .order-product-header {
  border-bottom: 1px solid #f5f5f5;
}
.order-detail .order-product__thumb {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-detail .order-product__title {
  flex: 1;
}
.order-detail .order-product__title .title {
  font-weight: 500;
  margin-bottom: 10px;
}
.order-detail .order-product__title .metas {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  color: var(--safety-orange);
}
.order-detail .order-product__title .metas dl {
  margin: 0;
  padding: 0;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 12px;
  line-height: 1;
}
.order-detail .order-product__title .metas dl dt {
  margin: 0;
}
.order-detail .order-product__title .metas dl dd {
  margin: 0;
}
.order-detail .order-product__price {
  width: 60px;
  text-align: right;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.order-detail .order-totals {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin-top: 10px;
  border-top: 1px solid #f5f5f5;
  padding-top: 1rem;
}
.order-detail .order-total {
  display: flex;
  justify-content: space-between;
}
.order-detail .order-total__label {
  color: var(--safety-orange);
  font-weight: bold;
}
.order-detail .order-total__value {
  color: var(--cyan);
}

.tabbar {
  z-index: 999;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 50px;
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #DD3333;
  position: fixed;
  bottom: 0;
  left: 0;
}
.tabbar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  position: relative;
}
.tabbar-item:hover {
  text-decoration: none;
}
.tabbar-item__icon {
  font-size: 24px;
  position: relative;
}
.tabbar-item .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  width: 20px;
  height: 20px;
  text-align: center;
  padding: 0;
  line-height: 20px;
  border-radius: 10rem;
}
.tabbar-item.active {
  color: var(--safety-orange) !important;
}
.tabbar-wrapper {
  box-sizing: content-box;
  padding-bottom: env(safe-area-inset-bottom);
  height: 50px;
  position: relative;
  display: none;
}

@media (max-width: 768px) {
  .tabbar-wrapper {
    display: block;
  }
}
.my-account .my-account-wrapper {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.my-account .my-account-sidebar {
  width: 280px;
}
.my-account .my-account-main {
  flex: 1;
}
.my-account .my-account-navs {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.my-account .my-account-navs .nav-item {
  background-color: #282828;
  border-radius: 10px;
}
.my-account .my-account-navs .nav-item a {
  display: block;
  padding: 12px 15px;
  color: #fff;
}
.my-account .my-account-navs .nav-item a:hover {
  text-decoration: none;
}
.my-account .my-account-navs .nav-item svg {
  font-size: 30px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  fill: #ffffff;
}
.my-account .my-account-navs .nav-item.active {
  background-color: #47B394;
}
.my-account .my-header {
  display: flex;
  padding: 1rem;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.my-account .my-header .my-avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 10rem;
}
.my-account .my-header .my-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.my-account .my-header .my-name {
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 1;
}
.my-account .my-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem 0;
}
.my-account .my-assets .assets-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.my-account .my-assets .assets-item i {
  font-style: normal;
  font-weight: bold;
}
.my-account .my-menu-block {
  background-color: #282828;
  border-radius: 10px;
  margin-top: 1rem;
}
.my-account .my-menu-block__header {
  padding: 12px 10px;
  font-weight: 600;
}
.my-account .my-order-menus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.my-account .my-order-menus .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0;
  row-gap: 3px;
}
.my-account .my-order-menus .menu-item__icon {
  font-size: 30px;
  width: 30px;
  height: 30px;
  color: #ffffff;
  fill: #ffffff;
}
.my-account .my-order-menus .menu-item__title {
  text-align: center;
  font-size: 12px;
}
.my-account .you-maylikes {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.my-account .you-maylikes:before, .my-account .you-maylikes:after {
  content: " ";
  display: block;
  border-bottom: 1px solid #c2c8d0;
  height: 1px;
  flex: 1;
}
.my-account .you-maylikes span {
  padding: 0 1rem;
  font-size: 1.6rem;
}

.my-orders {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.my-orders .order-item {
  display: block;
  background-color: #282828;
  border-radius: 10px;
}
.my-orders .order-item__header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #444444;
}
.my-orders .order-item__number {
  font-weight: 600;
}
.my-orders .order-item__status {
  color: var(--cyan);
}
.my-orders .order-item__items {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 10px;
}
.my-orders .order-item__item {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.my-orders .order-item__thumbnail {
  width: 3.75rem;
  height: 3.75rem;
  display: block;
}
.my-orders .order-item__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}
.my-orders .order-item__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.my-orders .order-item__title__title {
  font-weight: 600;
}
.my-orders .order-item__variants {
  display: block;
  line-height: 1.1;
}
.my-orders .order-item__qty {
  width: 40px;
  text-align: center;
}
.my-orders .order-item__price {
  width: 80px;
  text-align: right;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.my-orders .order-item__price strong {
  font-size: 16px;
}
.my-orders .order-item__price span {
  color: #CCCCCC;
}
.my-orders .order-item__metas {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.my-orders .order-item__metas dl {
  margin: 0;
  display: flex;
  line-height: 1;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 12px;
}
.my-orders .order-item__metas dt {
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}
.my-orders .order-item__metas dd {
  margin: 0;
}
.my-orders .order-item__totals {
  text-align: right;
  padding: 10px;
  font-size: 12px;
}
.my-orders .order-item__footer {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #444444;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.my-order-tabs {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 1px solid #666666;
  margin-bottom: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  z-index: 0;
}
.my-order-tabs::-webkit-scrollbar {
  height: 0 !important;
  display: none !important;
}
.my-order-tabs .tab-item {
  padding: 10px 1.05rem;
  margin-bottom: -1px;
  text-align: center;
  display: block;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.my-order-tabs .tab-item__active {
  border-bottom-color: var(--red);
  font-weight: bold;
  z-index: 100;
}

.my-address-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.my-address-list .my-address-item {
  background-color: #282828;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.my-account-block {
  background-color: #282828;
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1rem;
}
.my-account-block .referral-link {
  max-width: 50rem;
}

@media (max-width: 768px) {
  .my-account .my-account-wrapper {
    flex-direction: column;
    row-gap: 10px;
  }
  .my-account .my-account-sidebar {
    width: auto;
  }
  .my-account .my-account-navs {
    flex-direction: row;
    overflow-x: auto;
    background-color: #282828;
    border-radius: 10px;
  }
  .my-account .my-account-navs .nav-item {
    flex: 1;
    background: none;
  }
  .my-account .my-account-navs .nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3px;
  }
}
.list-table {
  width: 100%;
  border-collapse: collapse;
}
.list-table td, .list-table th {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.list-table td:first-child, .list-table th:first-child {
  padding-left: 0;
}
.list-table tr:hover td {
  background-color: rgba(40, 40, 40, 0.2);
}

.pagination-container {
  display: block;
  margin-top: 1rem;
}
.pagination-container .page-link {
  color: #666;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes move {
  0% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, -5px);
  }
}
@keyframes move2 {
  0% {
    transform: translate(0px, 30px);
    opacity: 0;
  }
  70% {
    transform: translate(0px, -20px);
    opacity: 1;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes shake {
  0% {
    transform: scale3d(1, 1, 1);
  }
  6% {
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -8deg);
  }
  12%, 24%, 36%, 48% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -8deg);
  }
  18%, 30%, 42% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 8deg);
  }
  54% {
    transform: scale3d(1, 1, 1);
  }
  60% {
    transform: scale3d(1, 1, 1);
  }
  80% {
    transform: scale3d(1, 1, 1) translate3d(0px, 150px, 0);
  }
  90% {
    transform: scale3d(1, 1, 1) translate3d(0px, 100px, 0);
  }
  100% {
    transform: scale3d(1, 1, 1) translate3d(0px, 0, 0);
  }
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes add-points {
  0% {
    transform: scale(1) translate(0, 100px);
    opacity: 0;
  }
  15% {
    transform: scale(5) translate(0, -20px);
    opacity: 1;
  }
  85% {
    transform: scale(5) translate(0, -20px);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lottery-overlayer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lottery-bg {
  background-color: rgba(0, 0, 0, 0.9);
}
.lottery-container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  padding: 2rem;
  max-width: 750px;
}
.lottery-game-box {
  flex: 1;
  display: block;
}
.lottery-show {
  transform: none !important;
}
.lottery-float {
  position: fixed;
  z-index: 997;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}
.lottery-float__item {
  position: relative;
}
.lottery-float__item img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.lottery-float__item .badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  text-align: center;
  line-height: 20px;
  border-radius: 10rem;
  padding: 3px 8px;
}
.lottery-close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #fefefe;
  padding: 10px;
  font-size: 1.4rem;
  text-transform: uppercase;
  border-radius: 10px 0 0 10px;
  color: teal;
  cursor: pointer;
}
.lottery-header {
  display: block;
  text-align: center;
}
.lottery-header .h1 {
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
}
.lottery-header p {
  padding: 0 !important;
  margin: 0 !important;
}
.lottery-win-points {
  position: fixed;
  font-weight: 900;
  color: #FDD729;
  font-size: 20px;
  animation: add-points 3s linear forwards;
  z-index: 99999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
}
.lottery-prize-dialog {
  max-width: 320px !important;
  min-width: 320px !important;
  padding: 1rem;
  border: 1px #E59C00 solid;
  border-radius: 1rem;
  color: #ff6000;
  background-color: #000000;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.lottery-prize-dialog.show {
  opacity: 1;
  transform: scale(1);
}
.lottery-prize-dialog .prize-image {
  display: block;
  text-align: center;
  overflow: hidden;
}
.lottery-prize-dialog .prize-image img {
  width: 100%;
  display: block;
}
.lottery-prize-dialog .prize-name {
  color: #ff6000;
  text-align: center;
  line-height: 1;
  margin: 10px 0 0;
}
.lottery-cart {
  display: block;
  padding: 1rem;
}
.lottery-cart-items {
  display: flex;
  flex-direction: column;
}
.lottery-cart-item {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--safety-orange);
  padding: 10px 0;
}
.lottery-cart-item__image img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.lottery-cart-item__name {
  flex: 1;
  font-weight: 500;
}
.lottery-cart-item__qty {
  width: 60px;
}
.lottery-cart-actions {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .lottery-float {
    display: none;
  }
}
.lottery-game {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin: 1rem -7px;
}
.lottery-game .gift-item {
  position: relative;
  margin: 7px;
  border: 1px solid #545454;
  border-radius: 5px;
  overflow: hidden;
  color: #ffffff;
  background-color: #282828;
}
.lottery-game .gift-active {
  border-color: yellow !important;
}
.lottery-game .gift-back {
  display: block;
}
.lottery-game .gift-image {
  position: relative;
  padding-top: 100%;
  display: block;
}
.lottery-game .gift-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lottery-game .gift-meta {
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  color: #ffffff;
}
.lottery-game .gift-meta h3 {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 5px !important;
  line-height: 16px;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lottery-game .gift-meta p {
  font-size: 12px;
  line-height: 1;
  margin: 0 !important;
  padding: 5px 0;
}

@media (max-width: 980px) {
  .lottery-game {
    grid-template-columns: repeat(4, 1fr);
  }
  .lottery-game .gift-item h3 {
    font-size: 12px !important;
    line-height: 14px;
    height: 28px;
  }
}
.lottery-wheelsurf {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 auto;
  padding-top: 100%;
}
.lottery-wheelsurf canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.lottery-wheelsurf img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -76px;
  margin-top: -82px;
  cursor: pointer;
}

.lottery-chest {
  display: block;
  margin: 0 auto;
  padding: 2rem 0;
}
.lottery-chest:after {
  content: " ";
  display: block;
  clear: both;
}
.lottery-chest .chest-rotate {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
}
.lottery-chest .chest-rotate:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/images/lottery/chest/light.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  animation: rotate 10s infinite linear;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lottery-chest .chest-box {
  display: block;
  width: 320px;
  height: 135px;
  position: relative;
  z-index: 10;
}
.lottery-chest .chest-box .chest {
  width: 100%;
  height: 100%;
  background-image: url("/images/lottery/chest/chest-close.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}
.lottery-chest .chest-box .shake {
  animation: shake 1.2s linear forwards;
}
.lottery-chest .chest-box .chest-open {
  background-image: url("/images/lottery/chest/chest-open.png");
}
.lottery-chest .chest-error {
  text-align: center;
  color: var(--safety-orange);
  position: absolute;
  left: 0;
  top: 5%;
  right: 0;
}
.lottery-chest .chest-try-again {
  text-align: center;
  position: relative;
  z-index: 10;
}
