.products-section {
  display: flex;
  flex-direction: column;
}
.products-section h2 {
  margin: 0;
}
.products-section h2 img {
  width: 100%;
  height: auto;
}
.products-section .category {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.products-section .category.ltr .products-category-heading {
  margin: 0 5px 0 0;
}
.products-section .category.ltr .products-category-item-wrapper {
  margin: 0px 5px 0px 0;
}
.products-section
  .category.ltr
  .products-category-item-wrapper
  .products-category-image-wrapper {
  margin: 5px 5px 5px 0;
}
.products-section
  .category.ltr
  .products-category-item-wrapper
  .product-items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.products-section .category.rtl .products-category-item-wrapper {
  margin: 0px 0px 0px 5px;
}
.products-section
  .category.rtl
  .products-category-item-wrapper
  .product-items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.products-section
  .category.rtl
  .products-category-item-wrapper
  .products-category-image-wrapper {
  margin: 5px 0px 5px 5px;
}
.products-section .category .products-category-heading {
  font-size: 44px;
  color: #262b31;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
  padding: 7px 0 7px 120px;
  margin: 0 5px 0 0;
}
html[lang="zh-CN"] .products-section .category .products-category-heading {
  letter-spacing: unset;
  line-height:unset;
  padding:7px 0 7px 120px;
  font-size:36px;
  word-break: keep-all; /* important! */
  text-align: left;
}
.products-section .category .products-category-item-wrapper {
  display: flex;
  box-sizing: border-box;
  margin: 0 5px;
  flex-shrink: 0;
}
.products-section .category .products-category-item-wrapper.bottom {
  margin: 0 5px;
}
.products-section
  .category
  .products-category-item-wrapper
  .products-category-image-wrapper {
  box-sizing: border-box;
  margin: 0 5px;
  max-width: 50%;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .products-category-image-wrapper
  img {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #f5f5f5;
  position: relative;
  box-sizing: border-box;
  flex-basis: calc(50% - 10px);
  margin: 5px;
  max-height: calc(50% - 10px);
  min-height: calc(50% - 10px);
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .prod-spacer {
  opacity: 0;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(35, 35, 35, 0.17);
  z-index: 999;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper
  .product-close-icon {
  display: flex;
  width: 32px;
  height: 32px;
  align-self: flex-end;
  justify-content: flex-start;
  cursor: pointer;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper
  .product-close-icon
  svg {
  transform: rotate(45deg);
  width: 32px;
  height: 32px;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper
  .product-item-full-screen {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 90%;
  max-width: 800px;
  max-height: 800px;
  padding: 32px;
  background-color: white;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper
  .product-item-full-screen
  img {
  margin: 0 auto;
  max-height: 100%;
  height: auto;
  flex-shrink: 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-full-screen-wrapper.active {
  display: flex;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix {
  width: 100%;
  max-height: 0px;
  transition: max-height 500ms ease-in-out;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix
  .product-item-heading {
  display: flex;
  flex-direction: column;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  max-height: 0;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  transition: max-height 500ms ease-in-out, padding 500ms ease-in-out,
    border 500ms ease-in-out;
  border-bottom: none;
  overflow: hidden;
  background: #f5f5f5;
  z-index: 99;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix
  .product-item-heading
  .product-plus-icon {
  display: flex;
  width: 32px;
  align-self: flex-end;
  justify-content: flex-start;
  cursor: pointer;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix
  .product-item-heading
  .product-plus-icon
  svg {
  width: 32px;
  height: 32px;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix
  .product-item-heading
  .product-name {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #252b32;
}
html[lang="zh-CN"] .products-section
.category
.products-category-item-wrapper
.product-items-wrapper
.product-item
.product-heading-pos-fix
.product-item-heading
.product-name {
  letter-spacing: unset;
  line-height:unset;
  text-align: left;
}

.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-heading-pos-fix
  .product-item-heading
  .product-description {
  font-size: 20px;
  color: #252b32;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
  height: 100%;
  width: 100%;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-img-wrapper {
  cursor: pointer;
  max-width: 100%;
  height: auto;
  position: relative;
  transition: opacity 125ms;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-img-wrapper
  .hover {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 125ms;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-img-wrapper.gift:hover
  img {
  opacity: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-img-wrapper.gift:hover
  .hover {
  opacity: 1;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-img-wrapper
  img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 88px;
  box-sizing: border-box;
  padding: 0 24px;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavors-heading {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavor-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 14px 0 0 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavor-items-wrapper
  .product-flavor-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 6px;
  max-width: 67px;
  max-height: 74px;
  width: 100%;
  text-decoration: none;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavor-items-wrapper
  .product-flavor-item
  .product-flavor-item-img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavor-items-wrapper
  .product-flavor-item
  .product-flavor-item-img
  img {
  max-width: 100%;
  height: auto;
  margin: 0 0 0 3px;
  flex-shrink: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item
  .product-item-pos-fix
  .product-flavors-wrapper
  .product-flavor-items-wrapper
  .product-flavor-item
  .product-flavor-name {
  color: white;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  margin: 12px 4px 0 4px;
  line-height: 11px;
  text-transform: uppercase;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.thirds {
  flex-basis: calc(50% - 10px);
  max-height: calc(33.3% - 10px);
  min-height: calc(33.3% - 10px);
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.wide {
  flex-basis: calc(100% - 10px);
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.large {
  flex-basis: calc(100% - 10px);
  max-height: calc(66.6% - 10px);
  min-height: calc(66.6% - 10px);
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-heading-pos-fix {
  max-height: 130px;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-heading-pos-fix
  .product-item-heading {
  max-height: 130px;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-item-pos-fix {
  padding: 130px 0 0 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-item-pos-fix
  .product-img-wrapper {
  max-width: 57%;
  cursor: default;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-item-pos-fix
  .product-img-wrapper.gift:hover
  img {
  opacity: 1;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-item-pos-fix
  .product-img-wrapper.gift:hover
  .hover {
  opacity: 0;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-flavors-wrapper.visible {
  display: flex;
}
.products-section
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.active
  .product-item-pos-fix {
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}
.hero-wrapper {
  display: flex;
  height: 1080px;
  width: 100%;
  background: #c49a73;
  position: relative;
}
.hero-wrapper .text-prod-img-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.hero-wrapper .text-prod-img-wrapper #hero-hand {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 799px;
}
.hero-wrapper .text-prod-img-wrapper #hero-hand img {
  max-width: 100%;
  height: auto;
}
.hero-wrapper .text-prod-img-wrapper #hero-hand-mobile {
  display: none;
  position: absolute;
  top: 50%;
  left: 0px;
  margin: 0 300px 0 0;
  transform: translateY(-50%);
}
.hero-wrapper .text-prod-img-wrapper #hero-hand-mobile img {
  width: 100%;
  height: auto;
}
.hero-wrapper .text-prod-img-wrapper .hero-tagline {
  color: white;
  font-size: 205px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 144px;
  max-width: 780px;
  margin: 0 0 0 108px;
}

html[lang="zh-CN"] .hero-wrapper .text-prod-img-wrapper .hero-tagline {
  letter-spacing: unset;
  line-height:unset;
  white-space: nowrap;
  text-align: left;
}


.hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
  position: relative;
  width: 564px;
  height: 716px;
  margin: 32px 0 0 96px;
}
.hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper .hero-prod-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 125ms ease-in-out;
}
.hero-wrapper
  .text-prod-img-wrapper
  .hero-products-img-wrapper
  .hero-prod-img.hide-candy {
  opacity: 0;
}
.hero-wrapper .products-hero-product-bar {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 116px;
  width: 100%;
  z-index: 5;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hero-wrapper .products-hero-product-bar::-webkit-scrollbar {
  display: none;
}
.hero-wrapper .products-hero-product-bar .product-bar-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  height: 116px;
  text-decoration: none;
  border: none;
  padding: 0;
}
.hero-wrapper
  .products-hero-product-bar
  .product-bar-button
  .product-bar-bean-img {
  max-width: 75px;
  height: auto;
  margin: auto;
  z-index: 6;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-1 {
  background: #e7899e;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-2 {
  background: #c6528e;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-3 {
  background: #b33c79;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-4 {
  background: #f576ac;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-5 {
  background: #f58514;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-6 {
  background: #d02126;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-7 {
  background: #a5161f;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-8 {
  background: #81080c;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-9 {
  background: #90051d;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-10 {
  background: #cc1c2c;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-11 {
  background: #a435bd;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-12 {
  background: #a86cc0;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-13 {
  background: #a6a0cd;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-14 {
  background: #58aadb;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-15 {
  background: #3d5693;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-16 {
  background: #7cbe43;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-17 {
  background: #4e9342;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-18 {
  background: #f5d46b;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-19 {
  background: #a87c1c;
}
.hero-wrapper .products-hero-product-bar .product-bar-button.bar-item-20 {
  background: #5f5d68;
}
.hero-wrapper .left-arrow {
  position: absolute;
  width: 60px;
  height: 116px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  border: none;
  padding: 0;
  z-index: 999;
}
.hero-wrapper .left-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border 125ms ease-in-out;
}
.hero-wrapper .left-arrow:hover::after {
  border-left: 4px solid white;
  border-bottom: 4px solid white;
}
.hero-wrapper .right-arrow {
  position: absolute;
  width: 60px;
  height: 116px;
  bottom: 0;
  right: 0;
  background-color: transparent;
  border: none;
  z-index: 999;
}
.hero-wrapper .right-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 24px;
  height: 24px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border 125ms ease-in-out;
}
.hero-wrapper .right-arrow:hover::after {
  border-top: 4px solid white;
  border-right: 4px solid white;
}
.products-intro-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 788px;
  background: url("../../assets/products/intro/nice_products_Intro_bkgd_min_jpg_edit.jpg")
    no-repeat;
  background-size: cover;
  background-position: center center;
}
.products-intro-wrapper .products-intro-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 346px;
  margin: 0 0 0 120px;
}
html[lang="zh-CN"] .products-intro-wrapper .products-intro-text-wrapper {
  max-width: 95%;
}


.products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 56px;
  color: #232323;
  text-transform: uppercase;
}

html[lang="zh-CN"] .products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
  letter-spacing: unset;
  line-height:unset;
  /* white-space: nowrap; */
  text-align: left;
}


.products-intro-wrapper .products-intro-text-wrapper .products-intro-text {
  font-size: 30px;
  line-height: 30px;
  color: #232323;
  margin: 20px 0 0 0;
  letter-spacing: -1px;
}

html[lang="zh-CN"] .products-intro-wrapper .products-intro-text-wrapper .products-intro-text {
  letter-spacing: unset;
  line-height:unset;
  white-space: nowrap;
  text-align: left;
}


.products-mixes-wrapper .ltr .products-category-heading {
  margin: 0 5px 0 0;
}
.products-mixes-wrapper .ltr .products-category-item-wrapper {
  margin: 0px 5px 0px 0;
}
.products-mixes-wrapper
  .ltr
  .products-category-item-wrapper
  .products-category-image-wrapper {
  margin: 5px 5px 5px 0;
}
.products-mixes-wrapper
  .ltr
  .products-category-item-wrapper
  .product-items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.products-mixes-wrapper .rtl .products-category-item-wrapper {
  margin: 0px 0px 0px 5px;
}
.products-mixes-wrapper
  .rtl
  .products-category-item-wrapper
  .product-items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.products-mixes-wrapper
  .rtl
  .products-category-item-wrapper
  .products-category-image-wrapper {
  margin: 5px 0px 5px 5px;
}
.products-mixes-wrapper
  .products-mixes-ice-cream-wrapper
  .products-category-item-wrapper
  .product-items-wrapper {
  width: 25%;
}
.products-mixes-wrapper
  .products-mixes-ice-cream-wrapper
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item {
  flex-basis: 100%;
}
.products-mixes-wrapper
  .products-mixes-ice-cream-wrapper
  .products-category-item-wrapper
  .products-category-image-wrapper {
  width: 75%;
  max-width: 75%;
}
.products-mixes-wrapper
  .products-mixes-more-wrapper
  .products-category-item-wrapper
  .product-items-wrapper {
  width: 100%;
}
.products-mixes-wrapper
  .products-mixes-more-wrapper
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item {
  flex-basis: calc(25% - 10px);
  max-height: 513px;
  min-height: calc(25% - 10px);
}
.products-mixes-wrapper
  .products-mixes-more-wrapper
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item.wide {
  flex-basis: calc(50% - 10px);
}
.products-gifts-wrapper
  .products-category-item-wrapper
  .product-items-wrapper.bottom-product-items {
  width: 100%;
}
.products-gifts-wrapper
  .products-category-item-wrapper
  .product-items-wrapper.bottom-product-items
  .product-item {
  flex-basis: calc(25% - 10px);
  max-height: calc(100% - 10px);
  min-height: calc(100% - 10px);
}
.products-fun-wrapper
  .category
  .products-category-item-wrapper
  .product-items-wrapper
  .product-item {
  max-height: calc(33.3% - 10px);
  min-height: calc(33.3% - 10px);
}
.products-fun-wrapper
  .category
  .products-category-item-wrapper
  .product-items-wrapper.bottom-product-items {
  width: 100%;
}
.products-fun-wrapper
  .category
  .products-category-item-wrapper
  .product-items-wrapper.bottom-product-items
  .product-item {
  flex-basis: calc(25% - 10px);
  max-height: calc(100% - 10px);
  min-height: calc(100% - 10px);
}
.brand-footer-wrapper {
  margin: 23.5px 0;
  overflow: hidden;
}
.brand-footer-wrapper .bf-first-row,
.brand-footer-wrapper .bf-last-row {
  display: flex;
  margin: 0 -2.5px;
}
.bf-links-container {
  background-image: radial-gradient(
    ellipse at center,
    rgba(248, 80, 50, 0) 0%,
    rgba(0, 0, 0, 0.04) 60%,
    rgba(0, 0, 0, 0.08) 75%,
    rgba(0, 0, 0, 0.1) 100%
  );
  margin: 2.5px;
  height: 200px;
  width: 100%;
  transition: 125ms ease-in-out;
}
.bf-links-container-double {
  display: flex;
  width: 100%;
  transition: 125ms ease-in-out;
  margin-right: 2.5px;
}
.bf-links-container.ff {
  margin-right: 0px;
}
.bf-links-container.hp {
  position: relative;
}
.bf-links-container.hp .bf-link.lazy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      ellipse at center,
      rgba(248, 80, 50, 0) 0%,
      rgba(0, 0, 0, 0.04) 60%,
      rgba(0, 0, 0, 0.08) 75%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("../../assets/common/brand-footer/nice_bf_hp_bkgd.jpg");
  opacity: 0;
  transition: opacity 125ms ease-in-out;
}
.bf-links-container.hp .bf-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      ellipse at center,
      rgba(248, 80, 50, 0) 0%,
      rgba(0, 0, 0, 0.04) 60%,
      rgba(0, 0, 0, 0.08) 75%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("../../assets/common/brand-footer/nice_bf_hp_bkgd.jpg");
  opacity: 0;
  transition: opacity 125ms ease-in-out;
}
.bf-links-container.bb .bf-link img {
  box-sizing: border-box;
  display: block;
  max-height: calc(100% - 32px);
  max-width: calc(100% - 32px);
}
.bf-links-container.ff .bf-link img {
  box-sizing: border-box;
  display: block;
  max-height: calc(100% - 32px);
  max-width: calc(100% - 32px);
}
.bf-links-container.hp .bf-link img {
  max-width: 260px;
  height: auto;
}
.bf-links-container.hp .bf-link img.bf-active-link-img {
  max-width: 300px;
  height: auto;
}
.bf-links-container.dc .bf-link img {
  max-width: 96px;
  height: auto;
}
.bf-links-container.hk .bf-link img {
  max-width: 157px;
  height: auto;
}
.bf-links-container.sun .bf-link img {
  max-width: 120px;
  height: auto;
}
.bf-links-container.sun .bf-link img.bf-active-link-img {
  max-width: 126px;
  height: auto;
}
.bf-links-container .bf-link {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  position: relative;
  color: white;
  height: 100%;
  width: 100%;
  padding: 16px;
}
.bf-links-container .bf-active-link-img {
  opacity: 0;
}
.bf-links-container .bf-inactive-link-img {
  opacity: 1;
}
.bf-links-container .bf-active-link-img,
.bf-links-container .bf-inactive-link-img {
  position: absolute;
  transition: 125ms ease-in-out;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
}
.bf-links-container:hover .bf-active-link-img {
  opacity: 1;
}
.bf-links-container:hover .bf-inactive-link-img {
  opacity: 0;
}
.bf-links-container.bb:hover {
  background-color: #6c408b;
}
.bf-links-container.ff:hover {
  background-color: #b9070a;
}
.bf-links-container.hp:hover {
  background-color: rgba(0, 118, 190, 0);
}
.bf-links-container.hp:hover .bf-link:before {
  opacity: 1;
}
.bf-links-container.dc:hover {
  background-color: #0076be;
}
.bf-links-container.hk:hover {
  background-color: #ed1c24;
}
.bf-links-container.sun:hover {
  background-color: #253c85;
}
.bf-links-container.bb.non-traditional:hover {
  background-color: #6c408b !important;
}
.bf-links-container.ff.non-traditional:hover {
  background-color: #b9070a !important;
}
.bf-links-container.dc.non-traditional:hover {
  background-color: #0076be !important;
}
.bf-links-container.hk.non-traditional:hover {
  background-color: #ed1c24 !important;
}
.bf-links-container.sun.non-traditional:hover {
  background-color: #253c85 !important;
}
@media screen and (max-width: 1800px) {
  .products-section .category .products-category-heading {
    padding: 7px 0 7px 64px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon {
    width: 22px;
    height: 22px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon
    svg {
    width: 22px;
    height: 22px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-name {
    font-size: 22px;
    line-height: 24px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-description {
    font-size: 18px;
    line-height: 20px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading {
    max-height: 110px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix {
    padding: 110px 0 0 0;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix
    .product-img-wrapper {
    max-width: 65%;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix
    .product-flavors-wrapper
    .product-flavor-items-wrapper
    .product-flavor-item {
    flex-basis: calc(25% - 10px);
    max-width: 77px;
  }
}
@media screen and (max-width: 1752px) {
  .hero-wrapper {
    height: 960px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    font-size: 164px;
    line-height: 120px;
    max-width: 670px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    width: 464px;
    height: 589px;
    margin: 46px 0 0 96px;
  }
  .hero-wrapper
    .text-prod-img-wrapper
    .hero-products-img-wrapper
    .hero-prod-img {
    width: 100%;
    height: auto;
  }
  .hero-wrapper
    .text-prod-img-wrapper
    .hero-products-img-wrapper
    .hero-prod-img
    img {
    max-width: 100%;
    height: auto;
  }
  .products-section .category .products-category-heading {
    font-size: 35px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-name {
    margin: -23px 0 0 0;
    width: calc(100% - 24px);
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading {
    max-height: 95px;
    padding: 16px;
  }
}
@media screen and (max-width: 1500px) {
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    max-width: 620px;
  }
}
@media screen and (max-width: 1440px) {
  .hero-wrapper {
    height: 900px;
  }
  .hero-wrapper .text-prod-img-wrapper #hero-hand {
    width: 729px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    max-width: 520px;
    font-size: 134px;
    line-height: 96px;
    letter-spacing: -4px;
  }

  html[lang="zh-CN"] .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    letter-spacing: unset;
    line-height:unset;
    /* white-space: nowrap; */
    text-align: left;
  }
  


  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    width: 424px;
    height: 538px;
    margin: 4px 0 0 96px;
  }
  .products-intro-wrapper {
    height: 570px;
  }
  .products-section .category .products-category-heading {
    font-size: 31px;
  }
}
@media screen and (max-width: 1248px) {
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    max-width: 424px;
    font-size: 114px;
    line-height: 83px;
    letter-spacing: -4px;
    margin: 0 0 0 64px;
  }

  html[lang="zh-CN"] .hero-wrapper .text-prod-img-wrapper .hero-tagline {

    letter-spacing: unset;
    line-height:unset;
    /* white-space: nowrap; */
    text-align: left;
  }
  


  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    width: 424px;
    height: 538px;
    margin: 22px 0 0 148px;
  }
  .products-intro-wrapper .products-intro-text-wrapper {
    margin: 0 0 0 64px;
  }
  .products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
    font-size: 64px;
    line-height: 49px;
  }
  .products-intro-wrapper .products-intro-text-wrapper .products-intro-text {
    font-size: 25px;
    line-height: 26px;
  }
  .products-section .category .products-category-heading {
    line-height: 29px;
    padding: 7px 32px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon {
    width: 22px;
    height: 22px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon
    svg {
    width: 22px;
    height: 22px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-name {
    margin: -25px 0 0 0;
    width: calc(70%);
    font-size: 20px;
    line-height: 19px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-description {
    font-size: 16px;
    line-height: 17px;
    margin: 4px 0 0 0;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-item-pos-fix
    .product-flavors-wrapper {
    padding: 0 14px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-item-pos-fix
    .product-flavors-wrapper
    .product-flavor-items-wrapper {
    margin: 8px 0 0 0;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading {
    padding: 14px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix {
    padding: 140px 0 0 0;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix
    .product-img-wrapper {
    max-width: 65%;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix
    .product-flavors-wrapper
    .product-flavor-items-wrapper
    .product-flavor-item {
    flex-basis: calc(50% - 10px);
    max-width: 84px;
  }
}
@media screen and (max-width: 1160px) {
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    margin: 22px 0 0 76px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-wrapper {
    height: 1024px;
  }
  .hero-wrapper .text-prod-img-wrapper {
    flex-direction: column;
  }
  .hero-wrapper .text-prod-img-wrapper #hero-hand {
    display: none;
  }
  .hero-wrapper .text-prod-img-wrapper #hero-hand-mobile {
    display: inline;
    top: calc(50% - 194px);
    max-width: 600px;
    margin: 0 270px 0 0;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    font-size: 90px;
    line-height: 63px;
    text-align: center;
    margin: 110px 0 0 0px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    margin: 198px 0 0 0;
    width: 380px;
    height: 482px;
  }
  .hero-wrapper .products-hero-product-bar {
    height: 100px;
  }
  .hero-wrapper .products-hero-product-bar .product-bar-button {
    height: 100px;
  }
  .products-intro-wrapper {
    background-image: url("../../assets/products/intro/nice_products_Intro_bkgd_mobile_min_edit.jpg");
    background-position: center bottom;
    height: 1064px;
    justify-content: center;
    align-items: flex-start;
  }
  .products-intro-wrapper .products-intro-text-wrapper {
    margin: 70px 0 0 0;
    max-width: 400px;
  }
  .products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
  

  html[lang="zh-CN"] .products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
    max-width:unset;
  }

  .products-intro-wrapper .products-intro-text-wrapper .products-intro-text {
    text-align: center;
  }
  .products-section .category .products-category-heading {
    font-size: 25px;
    line-height: 26px;
  }
  .products-section .category .products-category-item-wrapper {
    margin: 0;
    flex-direction: column;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .products-category-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 5px 0;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper {
    width: 100%;
  }
  .products-section
    .category
    .products-category-item-wrapper.bottom
    .bottom-product-items
    .product-item {
    flex-basis: calc(50% - 10px);
  }
  .products-section .category.ltr .products-category-item-wrapper {
    margin: 0;
  }
  .products-section .category.rtl .products-category-item-wrapper {
    margin: 0;
  }
  .products-section
    .category.rtl
    .products-category-item-wrapper
    .product-items-wrapper {
    order: 1;
  }
  .products-section.products-mixes-wrapper
    .products-mixes-ice-cream-wrapper
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item {
    flex-basis: calc(50% - 10px);
  }
  .products-section.products-mixes-wrapper
    .products-mixes-more-wrapper
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item {
    flex-basis: calc(50% - 10px);
  }
  .products-section.products-mixes-wrapper
    .products-mixes-more-wrapper
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.wide {
    flex-basis: calc(100% - 10px);
  }
}
@media screen and (max-width: 800px) {
  .hero-wrapper .text-prod-img-wrapper #hero-hand-mobile {
    top: calc(50% - 200px);
    margin: 0 140px 0 0;
    max-width: 500px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    margin: 182px 0 0 0;
  }
  .products-intro-wrapper {
    height: 940px;
  }
  .products-section .category .products-category-heading {
    font-size: 21px;
    line-height: 21px;
    letter-spacing: -1px;
  }

  html[lang="zh-CN"] .products-section .category .products-category-heading {
    letter-spacing: unset;
    line-height:unset;
    white-space: nowrap;
    text-align: left;
  }
  

  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon
    svg {
    transform: rotate(0deg);
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: 120px;
    background-color: white;
    z-index: 1000;
    padding: 20px 24px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading
    .product-plus-icon
    svg {
    transform: rotate(45deg);
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading
    .product-name {
    margin: -16px 0 0 0;
    font-size: 24px;
    line-height: 24px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-heading-pos-fix
    .product-item-heading
    .product-description {
    font-size: 20px;
    line-height: 21px;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 999;
    justify-content: flex-start;
  }
  .products-section
    .category
    .products-category-item-wrapper
    .product-items-wrapper
    .product-item.active
    .product-item-pos-fix
    .product-img-wrapper {
    max-width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .hero-wrapper {
    height: 824px;
  }
  .hero-wrapper .text-prod-img-wrapper #hero-hand-mobile {
    top: calc(50% - 160px);
    margin: 0 130px 0 0;
    max-width: 310px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-tagline {
    font-size: 64px;
    line-height: 45px;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    margin: 132px 0 0 0;
    width: 290px;
    height: 368px;
  }
  .products-intro-wrapper {
    height: 720px;
  }
  .products-intro-wrapper .products-intro-text-wrapper {
    margin: 56px 0 0 0;
  }
  .products-intro-wrapper .products-intro-text-wrapper .products-intro-heading {
    font-size: 49px;
    line-height: 37px;
  }
  .products-intro-wrapper .products-intro-text-wrapper .products-intro-text {
    font-size: 21px;
    line-height: 26px;
    padding: 0 32px;
  }
  .products-section h2 {
    margin: 0 0 6px 0;
  }
  .products-section .category .products-category-heading {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -1px;
    padding: 3px 24px;
  }
  html[lang="zh-CN"] .products-section .category .products-category-heading {
    letter-spacing: unset;
    line-height:unset;
    white-space: nowrap;
    text-align: left;
  }
  
}
@media screen and (max-width: 360px) {
  .hero-wrapper {
    height: 724px;
  }
  .hero-wrapper .text-prod-img-wrapper #hero-hand-mobile {
    top: calc(50% - 119px);
    margin: 0 90px 0 0;
  }
  .hero-wrapper .text-prod-img-wrapper .hero-products-img-wrapper {
    margin: 116px 0 0 0;
    width: 240px;
    height: 305px;
  }
  .products-section .category .products-category-heading {
    font-size: 14px;
    line-height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .brand-footer-wrapper {
    margin: 12px 0;
  }
  .brand-footer-wrapper .bf-first-row {
    flex-wrap: wrap;
  }
  .brand-footer-wrapper .bf-first-row .bf-links-container {
    width: 100%;
  }
  .bf-links-container {
    height: 124px;
  }
  .bf-links-container.bb .bf-link img {
    max-width: 201px;
  }
  .bf-links-container.hp .bf-link img {
    max-width: 180px;
  }
  .bf-links-container.hp .bf-link img.bf-active-link-img {
    max-width: 220px;
  }
  .bf-links-container.dc .bf-link img {
    max-width: 76px;
    height: auto;
  }
  .bf-links-container.hk .bf-link img {
    max-width: 117px;
    height: auto;
  }
  .bf-links-container.sun .bf-link img {
    max-width: 80px;
    height: auto;
  }
  .bf-links-container.sun .bf-link img.bf-active-link-img {
    max-width: 86px;
    height: auto;
  }
}
#page-content .products-section .category.ltr .products-category-item-wrapper .product-items-wrapper.bottom-product-items {
  flex-wrap:nowrap;
}
#page-content .products-fun-wrapper .category .products-category-item-wrapper .product-items-wrapper.bottom-product-items .product-item {
  flex-basis: calc(50%) !important;
  max-height: calc(50%) !important;
  min-height: calc(50%) !important;
}

#page-content .products-fun-wrapper .category .products-category-item-wrapper .product-items-wrapper.bottom-product-items .product-item .product-item-pos-fix {

} 

#page-content .products-fun-wrapper .category .products-category-item-wrapper .product-items-wrapper.bottom-product-items .product-item .product-item-pos-fix .product-img-wrapper {
  text-align: center;
}

#page-content .products-fun-wrapper .category .products-category-item-wrapper .product-items-wrapper.bottom-product-items .product-item .product-item-pos-fix .product-img-wrapper img {
  max-width: 75%;

}