@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Nunito Sans Light'), local('NunitoSans-Light'),  url('../fonts/nunito-sans-v5-latin-ext_latin-300.woff2') format('woff2'),  url('../fonts/nunito-sans-v5-latin-ext_latin-300.woff') format('woff');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Nunito Sans Regular'), local('NunitoSans-Regular'),  url('../fonts/nunito-sans-v5-latin-ext_latin-regular.woff2') format('woff2'),  url('../fonts/nunito-sans-v5-latin-ext_latin-regular.woff') format('woff');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Nunito Sans SemiBold'), local('NunitoSans-SemiBold'),  url('../fonts/nunito-sans-v5-latin-ext_latin-600.woff2') format('woff2'),  url('../fonts/nunito-sans-v5-latin-ext_latin-600.woff') format('woff');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Nunito Sans Bold'), local('NunitoSans-Bold'),  url('../fonts/nunito-sans-v5-latin-ext_latin-700.woff2') format('woff2'),  url('../fonts/nunito-sans-v5-latin-ext_latin-700.woff') format('woff');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: local('Nunito Sans ExtraBold'), local('NunitoSans-ExtraBold'),  url('../fonts/nunito-sans-v5-latin-ext_latin-800.woff2') format('woff2'),  url('../fonts/nunito-sans-v5-latin-ext_latin-800.woff') format('woff');
}
html,
body {
  font-size: 16px;
  height: 100%;
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
html.veil-open,
body.veil-open {
  overflow: hidden !important;
  overflow-y: hidden !important;
  overscroll-behavior: none !important;
}
html.veil-open {
  height: 100vh !important;
  height: 100dvh !important;
  overflow-y: hidden !important;
  scrollbar-gutter: auto !important;
}
body.veil-open {
  height: 100vh !important;
  height: 100dvh !important;
  overflow: hidden !important;
  overflow-y: hidden !important;
  position: fixed !important;
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}
body.veil-open #mainContent {
  max-height: 100vh !important;
  max-height: 100dvh !important;
  overflow: hidden !important;
}
body {
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  color: var(--body-color);
  background-color: var(--body-bg-color);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
a,
a.dark,
a.white,
a.grey {
  cursor: pointer;
  color: var(--primary-color);
  text-decoration: none;
  transition: all .35s ease;
  outline: none;
}
a:hover,
a.hover,
a:focus {
  color: var(--primary-color-hover);
  transition: all .55s ease;
  outline: none;
  text-decoration: none
}
a.white {
  color: rgba(255,255,255,0.8);
}
a.white:hover,
a.white.hover,
a.white:focus {
  color: rgba(255,255,255,1);
}
a.dark {
  color: var(--dark-color);
}
a.dark:hover,
a.dark.hover,
a.dark:focus {
  color: var(--primary-color);
}
a.grey {
  color: var(--grey-color);
}
a.grey:hover,
a.grey.hover,
a.grey:focus {
  color: var(--primary-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 .5rem 0;
}
h1 {
  font-size: 2rem;
  line-height: 2rem;
  margin: 0 0 2rem 0;
}
h2 {
  font-size: 1.875rem;
  line-height: 2rem;
  font-weight: 300;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
h5 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
h6 {
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 600;
}
h1.basic,
h2.basic,
h3.basic,
h4.basic,
h5.basic,
h6.basic,
p.basic {
  margin: 0;
}
header {
  padding-top: 1rem;
  background-color: #ecebeb;
}
header .logo {
  display: inline-block;
  width: 4rem;
}
header#header.sticky {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding-top: 0;
  -webkit-animation: smoothScroll 1s forwards;
  animation: smoothScroll 1s forwards;
  background-color: #fff;
  box-shadow: 0 0.375rem 1.5rem 0 rgba(140, 152, 164, 0.125);
}
body:not(.admin) .navbar {
  background: var(--primary-color);
  box-shadow: 0 0 6px 0 var(--dark-color-shadow);
  height: 66px;
  display: flex;
  align-items: center;
}
body:not(.admin) .navbar .wojo-grid,
body:not(.admin) .navbar .row {
  width: 100%;
}
body:not(.admin) .navbar .row {
  justify-content: flex-start;
  align-items: center;
}
body:not(.admin) .navbar .row.horizontal.gutters {
  width: calc(100% + var(--gutter));
}
body:not(.admin) .navbar .row.desktop-nav {
  display: flex !important;
}
body:not(.admin) .navbar .row .button {
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background-color: transparent !important;
  height: 62px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 1.5rem !important;
  margin: 2px 0.25rem !important;
  font-weight: 600 !important;
}
.desktop-menu {
  display: block !important;
}
#mobileToggle {
  display: none !important;
}
.wojo.button.mobile-button {
  display: none;
}
.mobile-menu-row {
  display: none;
}
body:not(.admin) .navbar .row .button:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}
nav.wojo.menu.header-custom-menu > ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  box-sizing: border-box;
}
nav.wojo.menu.header-custom-menu > ul > li {
  margin: 0;
  padding: 0;
  min-width: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: relative;
}
nav.wojo.menu.header-custom-menu > ul > li > a {
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: inherit;
  font-weight: 500;
}
nav.wojo.menu.header-custom-menu > ul > li.has-dropdown > a {
  padding: 1rem 0 1rem 2rem;
}
nav.wojo.menu.header-custom-menu > ul > li > span {
  padding: 0 0.5rem;
  display: inline-flex;
  color: var(--light-color);
  cursor: pointer;
}
nav.wojo.menu.header-custom-menu > ul > li.active,
nav.wojo.menu.header-custom-menu > ul > li:hover,
nav.wojo.menu.header-custom-menu > ul > li:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
}
nav.wojo.menu.header-custom-menu > ul > li:hover > a,
nav.wojo.menu.header-custom-menu > ul > li:focus-within > a,
nav.wojo.menu.header-custom-menu > ul > li:hover > span,
nav.wojo.menu.header-custom-menu > ul > li:focus-within > span {
  color: #fff !important;
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub {
  width: 300px;
  left: 0;
  top: 100%;
  padding: 1rem;
  margin: 0;
  border-radius: 0.25rem;
  flex-direction: column;
  background: #fff;
  position: absolute;
  z-index: 1000;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  box-shadow: 0 50px 100px rgba(50, 50, 93, .1), 0 15px 35px rgba(50, 50, 93, .15), 0 5px 15px rgba(0, 0, 0, .1);
}
nav.wojo.menu.header-custom-menu > ul > li.has-dropdown:hover > ul,
nav.wojo.menu.header-custom-menu > ul > li.has-dropdown:focus-within > ul {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li {
  min-width: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a {
  display: block;
  position: relative;
  border: 0;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  border-radius: 0.25rem;
  color: var(--dark-color) !important;
  font-size: 0.875rem;
  font-weight: 500;
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a::before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 0.25rem;
  height: 0.25rem;
  background-color: var(--grey-color);
  left: 0.5rem;
  top: 50%;
  border-radius: 0.25rem;
  transform: translate(0, -50%);
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a:hover,
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a:focus {
  color: var(--primary-color) !important;
  background-color: var(--grey-color-300);
}
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a:hover::before,
nav.wojo.menu.header-custom-menu > ul > li > ul.normal-sub > li a:focus::before {
  background-color: var(--primary-color);
}
body:not(.admin) .navbar .row .button.cartButton {
  background-color: #2d3436 !important;
  color: #fff !important;
  margin-left: auto !important;
  height: 54px !important;
  width: 108px !important;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: center !important;
  border-radius: 0.5rem !important;
  position: relative !important;
}
body:not(.admin) .navbar .columns.relative {
  order: 999;
  margin-left: auto !important;
}
body:not(.admin) .navbar .moderator-column + .cart-column {
  margin-left: 0 !important;
  padding-left: 0.35rem;
}
nav.wojo.menu.header-custom-menu > ul > li:first-child > a,
nav.wojo.menu.header-custom-menu > ul > li:first-child.has-dropdown > a {
  padding-left: 2rem;
  padding-right: 2rem;
}
nav.wojo.menu.header-custom-menu > ul > li:first-child {
  margin-left: 0;
}
body:not(.admin) .navbar .row .button.cartButton:hover {
  background-color: #2d3436 !important;
  color: #fff !important;
}
body:not(.admin) .navbar .row .button.moderatorButton {
  background-color: #2d3436 !important;
  color: #fff !important;
  height: 54px !important;
  width: 54px !important;
  padding: 0 !important;
  margin: 0 !important;
  justify-content: center !important;
  border-radius: 0.5rem !important;
  position: relative !important;
}
body:not(.admin) .navbar .row .button.moderatorButton:hover {
  background-color: #2d3436 !important;
  color: #fff !important;
}
.cartButton .icon,
.moderatorButton .icon {
  transition: color .2s ease-in-out !important;
}
.cartButton:hover .icon,
.cartButton:focus .icon,
.moderatorButton:hover .icon,
.moderatorButton:focus .icon {
  color: #b9b8b8 !important;
}
.moderatorButton .icon {
  margin: 0 !important;
}
.moderator-pending-count {
  position: absolute;
  top: calc(0.35rem + 4px);
  right: 0.35rem;
  min-width: 1.05rem;
  height: 1.05rem;
  padding: 0 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #d60000;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}
.button.cartButton span#cTotal {
  margin-left: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.wishlist-empty {
  padding-bottom: 2rem;
}
.header-wishlist {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.header-wishlist > .icon {
  margin: 0 !important;
  position: relative;
  left: 2px;
}
.btnsColumn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}
.btnsColumn .wojo.white.simple.rounded.buttons {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.header-welcome {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px !important;
  margin-right: 0 !important;
  color: var(--dark-color) !important;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}
.header-welcome:visited,
.header-welcome:focus,
.header-welcome.hover-suppressed,
.header-welcome.hover-suppressed:visited,
.header-welcome.hover-suppressed:focus {
  color: var(--dark-color) !important;
}
.header-welcome.hover-suppressed,
.header-welcome.hover-suppressed:hover,
.header-welcome.hover-suppressed:focus,
.header-welcome.hover-suppressed:active {
  color: var(--dark-color) !important;
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:hover,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:focus,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:active {
  color: var(--dark-color) !important;
  background: transparent !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.header-welcome > .icon {
  margin-left: 0.5rem !important;
  margin-right: 0 !important;
  transition: color .15s ease-in-out !important;
}
.header-welcome:hover,
.header-welcome:focus,
.header-welcome.open,
.header-welcome.hover-suppressed,
.header-welcome.hover-suppressed:hover,
.header-welcome.hover-suppressed:focus,
.header-welcome.hover-suppressed:active {
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
}
.header-welcome:hover > .icon,
.header-welcome:focus > .icon,
.header-welcome.open > .icon,
.header-welcome.hover-suppressed > .icon,
.header-welcome.hover-suppressed:hover > .icon,
.header-welcome.hover-suppressed:focus > .icon,
.header-welcome.hover-suppressed:active > .icon {
  transition: color .15s ease-in-out !important;
}
.header-welcome.hover-suppressed > .icon,
.header-welcome.hover-suppressed:hover > .icon,
.header-welcome.hover-suppressed:focus > .icon,
.header-welcome.hover-suppressed:active > .icon {
  color: inherit !important;
}
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed > .icon,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:hover > .icon,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:focus > .icon,
.wojo.white.simple.rounded.buttons .header-welcome.hover-suppressed:active > .icon {
  color: inherit !important;
}
main {
  flex: 1 0 auto;
  margin-top:2rem;
}
#crumbs {
  margin-bottom: 1rem;
}
.mobile-product-crumbs.wojo.breadcrumb {
  display: none !important;
}
body:not(.admin) .navbar .columns.relative {
  position: relative !important;
}
#cartList {
  position: absolute !important;
  z-index: 2000;
  right: 5px !important;
  top: 100% !important;
  min-width: 300px;
  margin-top: 0;
}
#cartList .button,
#cartList a.button {
  height: auto !important;
  padding: 0.875rem 1.875rem !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#cartList .wojo.primary.button {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}
#cartList .wojo.primary.button:hover {
  background-color: var(--primary-color-hover) !important;
}
#cartList .label {
  color: #333 !important;
  background-color: transparent !important;
}
/* == Category Menu == */
ul.top-menu {
  margin: 0 auto;
  width: auto;
  list-style: none;
  padding: 0;
  position: relative;
  display: none;
}
ul.top-menu:before,
ul.top-menu:after {
  content: "";
  display: table;
}
ul.top-menu:after {
  clear: both;
}
ul.top-menu > li {
  float: left;
  padding: 0;
  margin: 0;
}
ul.top-menu > li a {
  text-decoration: none;
  padding: 1.5rem 1rem;
  display: block;
  font-weight: 600;
  color: var(--primary-color-inverted);
}
ul.top-menu > li a .icon.chevron {
  margin-left: .5rem;
}
ul.top-menu > li a:hover,
ul.top-menu > li.active > a {
  color: #fff !important;
}
ul.top-menu > li > ul {
  display: none;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 15px -3px var(--shadow-color), 0 4px 6px -2px var(--shadow-color);
  padding: 1rem;
  position: absolute;
  z-index: 110;
  left: 0;
  margin: 0;
  list-style: none;
}
ul.top-menu > li > ul:before,
ul.top-menu > li > ul:after {
  content: "";
  display: table;
}
ul.top-menu > li > ul:after {
  clear: both;
}
ul.top-menu > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}
ul.top-menu > li > ul > li a {
  color: var(--grey-color);
  padding: .250rem 0;
  display: block;
  font-weight: 400;
  font-size: .913rem;
}
ul.top-menu > li > ul > li a:hover {
  color: #fff;
  background-color: var(--primary-color);
}
ul.top-menu > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: .750rem 0 0;
  list-style: none;
}
ul.top-menu > li > ul > li > ul:before,
ul.top-menu > li > ul > li > ul:after {
  content: "";
  display: table;
}
ul.top-menu > li > ul > li > ul:after {
  clear: both;
}
ul.top-menu > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: .750rem 0;
  margin: 0;
  font-size: .875rem;
}
ul.top-menu > li > ul > li > ul > li a {
  border: 0;
}
ul.top-menu > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 0 .875rem;
}
ul.top-menu > li > ul.normal-sub > li {
  width: 100%;
}
ul.top-menu > li > ul.normal-sub > li a {
  border: 0;
  padding: .5rem 0;
}
#special1 {
  background-color: #a21111;
  color: #fff;
  border: 1px solid #a21111;
}
#special2 {
  background-color: #a21111;
  color: #fff;
  border: 1px solid #a21111;
}
#special3 {
  background-color: #a21111;
  color: #fff;
  border: 1px solid #a21111;
}
.button-add {
  background-color: #a21111 !important;
  color: #fff !important;
}
.blog-list-title {
  margin-bottom: 1rem !important;
}
.blog-list-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 1.25rem;
}
#homeBlog .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-detail {
  padding-top: 1rem;
  padding-bottom: 15px;
}
.blog-detail-header {
  width: 100%;
  max-width: 720px;
}
.blog-detail-body {
  width: 100%;
}
.blog-detail-image {
  display: block;
  width: 100%;
}
.blog-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-detail-title {
  margin: 1.25rem 0 0.25rem;
}
.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.blog-detail-body {
  padding-bottom: 15px;
}
@media screen and (min-width:64.063em) {
  .blog-list-image {
    flex: 0 0 28% !important;
    max-width: 28% !important;
  }
  .blog-list-content {
    flex: 0 0 72% !important;
    max-width: 72% !important;
  }
}
.special-image-link {
  display: block;
  position: relative;
  line-height: 0;
  width: 100%;
}
.homepage-special-row {
  align-items: flex-start;
  margin-left: 0 !important;
}
.homepage-special-row > .columns {
  padding-left: 1rem !important;
}
.homepage-special-image-column {
  display: flex;
  align-items: center;
  padding: 0.5rem 0 0.5rem 0.5rem !important;
  margin-bottom: 0 !important;
}
.homepage-special-image-column .special-image-link {
  width: 90%;
}
.wojo.cards .card#special1 > .content,
.wojo.cards .card#special2 > .content {
  padding: 0.75rem 1rem;
}
.homepage-special-image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
.homepage-special-copy-column {
  display: flex;
  align-items: flex-start;
}
.homepage-special-copy {
  width: 100%;
  padding: 0.25rem 0 0.25rem 0.5rem;
}
.homepage-special-copy > :last-child {
  margin-bottom: 0;
}
.homepage-special-title,
.homepage-special-title.wojo.truncate {
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.15;
}
.homepage-special-title-link,
.homepage-special-title-link:hover,
.homepage-special-title-link:focus {
  color: #fff !important;
}
.homepage-special-category {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}
.homepage-special-category a,
.homepage-special-category a:hover,
.homepage-special-category a:focus {
  color: #fff !important;
}
.homepage-special-text {
  margin: 0 0 1rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.875rem;
  line-height: 1.35;
}
.homepage-special-price {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}
.homepage-special-price small {
  margin-left: 0.75rem !important;
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.8rem !important;
}
.homepage-special-button {
  min-width: 110px;
  height: 42px;
  padding: 0 1.1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 4px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  font-size: 0.9rem;
  font-weight: 600;
}
.homepage-special-button:hover,
.homepage-special-button:focus {
  background: rgba(255, 255, 255, 0.26) !important;
  color: #fff !important;
}
.special-image-link .special-new-ribbon,
.home-product-image-link .special-new-ribbon,
.special-card-image .special-new-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: clamp(2.75rem, 28%, 4rem);
  height: auto;
  pointer-events: none;
}
@media screen and (max-width:30em) {
  .special-image-link .special-new-ribbon,
  .home-product-image-link .special-new-ribbon,
  .special-card-image .special-new-ribbon {
    width: clamp(2.5rem, 22%, 3.5rem);
  }
}
.specials-section {
  padding-top: 3rem;
}
.specials-title {
  margin: 0 0 1.75rem;
  padding-top: 1rem;
  color: #858585;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 2rem;
  text-transform: uppercase;
}
.specials-grid > .columns {
  margin-bottom: 1.75rem;
}
.special-card {
  height: 100%;
  min-height: 0;
  padding: 0.85rem 0.85rem 0.75rem;
  background: #fff;
  border: 1px solid #e3e7ed;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(20, 31, 43, .08);
  text-align: center;
}
.special-card-image {
  display: block;
  position: relative;
  margin-bottom: .45rem;
  text-align: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.special-card-image img:not(.special-new-ribbon) {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}
.special-card-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
}
.special-card-title a {
  color: #333;
}
.special-card-category {
  margin: .3rem 0 .65rem;
  color: #777;
  font-size: .85rem;
  line-height: 1.2;
}
.special-card-price {
  margin: 0;
  color: #4b4b4b;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
}
.special-card-price small {
  margin-left: .6rem !important;
  color: #d73535 !important;
  font-size: .72rem;
}
.special-card-actions {
  text-align: center;
}
.special-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 34px;
  padding: 0 .95rem;
  gap: .4rem;
  color: #fff !important;
  background: #a21111;
  border-radius: 2px;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1;
}
.special-card-view:hover {
  color: #fff !important;
  background: #8e0e0e;
}
.home-product-card {
  border: 1px solid #e3e7ed;
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(20, 31, 43, 0.08);
}
.home-product-card .content,
.home-product-card .header {
  background: #fff;
}
.home-product-card-content {
  padding: 1.1rem 1.1rem 1rem !important;
}
.home-product-image-link {
  display: inline-block;
  position: relative;
  margin-bottom: 0.5rem;
}
.home-product-image {
  width: auto;
  max-width: 100%;
  height: auto;
}
.home-product-title,
.home-product-title.basic {
  margin: 0.3rem 0 0.2rem !important;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}
.home-product-title a {
  color: #98a0b3;
}
.home-product-title a:hover {
  color: #6f7990;
}
.home-product-category {
  margin: 0 0 0.95rem !important;
  color: var(--body-color);
  font-size: 0.875rem;
  line-height: 1.2;
}
.home-product-category a {
  color: var(--primary-color);
}
.home-product-price {
  margin: 0 0 1.15rem !important;
  color: #4c5668;
  font-size: 1.05rem;
  line-height: 1.2;
}
.home-product-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.home-product-actions .wojo.button,
.home-product-actions a.wojo.button,
.home-product-actions .button-add {
  min-width: 120px;
  height: 42px;
  margin: 0 !important;
  padding: 0 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 4px !important;
  font-size: 1rem;
  font-weight: 600;
}
.home-product-actions .icon {
  margin: 0 !important;
}
.home-product-view {
  background-color: #a21111 !important;
  color: #fff !important;
}
.home-product-view:hover {
  background-color: #8e0e0e !important;
  color: #fff !important;
}
.home-product-list-card {
  margin-bottom: 1.25rem;
}
.home-product-list-card .home-product-actions {
  justify-content: flex-start;
}
.home-product-list-layout {
  align-items: center;
}
.home-product-list-card .columns.auto {
  flex: 0 0 auto;
  max-width: none;
}
.home-product-list-card .home-product-image-link {
  margin-bottom: 0;
}
@media screen and (max-width:48.063em) {
  .specials-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 1rem;
  }
  .specials-grid > .columns {
    margin-bottom: 1.25rem;
  }
  .special-card {
    min-height: 0;
  }
  .home-product-card-content {
    padding: 1rem !important;
  }
  .home-product-actions {
    gap: 0.5rem;
  }
  .home-product-actions .wojo.button,
  .home-product-actions a.wojo.button,
  .home-product-actions .button-add {
    min-width: 0;
    flex: 1 1 0;
    font-size: 0.95rem;
  }
  .home-product-list-card .columns.auto {
    flex: 0 0 34%;
    max-width: 34%;
  }
  .home-product-list-layout {
    flex-wrap: nowrap;
    align-items: center;
    margin-left: -0.75rem !important;
  }
  .home-product-list-card .home-product-image-link {
    margin-bottom: 0;
  }
  .home-product-list-card .home-product-list-image-col {
    padding-left: 0.75rem !important;
  }
  .home-product-list-card .home-product-list-info-col {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 0.75rem !important;
  }
  .home-product-list-card .home-product-card-content {
    padding: 0.75rem !important;
  }
  .home-product-list-card .home-product-title,
  .home-product-list-card .home-product-title.basic {
    font-size: 0.98rem;
    line-height: 1.18;
  }
  .home-product-list-card .home-product-category {
    margin-bottom: 0.45rem !important;
    font-size: 0.76rem;
  }
  .home-product-list-card .home-product-price {
    margin-bottom: 0.6rem !important;
    font-size: 0.86rem;
  }
  .home-product-list-card .home-product-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.25rem;
  }
  .home-product-list-card .home-product-actions .wojo.button,
  .home-product-list-card .home-product-actions a.wojo.button,
  .home-product-list-card .home-product-actions .button-add {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    height: 24px;
    padding: 0 0.18rem !important;
    font-size: 0.5rem;
    gap: 0.1rem;
    border-radius: 3px !important;
  }
  .home-product-list-card .home-product-actions .icon {
    font-size: 0.62rem;
  }
}
.product-tags {
  margin: 2.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.product-tags .wojo.label {
  font-size: 0.95rem !important;
}
#special4 {
  background-image: url('../images/deals.jpg');
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: cover;
}
#searchResult {
  background-color: #FFFFFF;
  max-height: 500px;
  overflow: auto;
  position: absolute;
  top: 100%;
  z-index: 3000;
  width: 100%;
  box-shadow: 0 0 65px 0 rgba(0, 0, 0, 0.2);
}
#searchResult .search-results {
  margin: 0;
}
#searchResult .search-tag-results {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 1.5rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}
#searchResult .search-tag-result {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #d7dbf0;
  color: #4657a8;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
}
#searchResult .search-tag-result:hover {
  background: #c9cee9;
  color: #344592;
}
#searchResult .search-tag-result .icon {
  margin: 0;
  font-size: 0.95rem;
}
@media screen and (max-width:30em) {
  #searchResult .search-tag-results {
    padding: 1.25rem 0.75rem;
  }
}
#searchResult .search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  transition: background-color 0.15s ease;
}
#searchResult .search-result-item:hover {
  background-color: #f3f5f9;
}
#searchResult .search-result-thumb {
  flex: 0 0 64px;
  width: 64px;
  max-width: 64px;
}
#searchResult .search-result-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}
#searchResult .search-result-content {
  min-width: 0;
}
#searchResult .search-result-title,
#searchResult .search-result-body,
#searchResult .search-result-price {
  margin: 0.15rem 0;
}
#searchResult .search-result-body {
  max-width: 100%;
}
.wojo.segment.homebanner {
  background-image: url('../images/image.jpg');
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 6rem 2rem;
}
#colorPanel {
  position: relative;
  text-align: center;
}
/* == Color Switcher == */
#colorPanel .icon {
  font-size: 1.5em;
  line-height: 1
}
#colorPanel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  position: absolute;
  z-index: 100;
}
#colorPanel ul li {
  display: block;
  margin-top: 5px;
}
#colorPanel ul a {
  display: block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 1.5em;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  opacity: .5
}
#colorPanel ul li:first-child a {
  background-color: #667eea!important;
}
#colorPanel ul a:hover,
#colorPanel ul a.active {
  opacity: 1
}
#cpToggle {
  display: block;
  width: 1.5em;
  height: 1.5em;
}
/* == Video Player == */
#ytube {
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.05);
  background-image: url('../images/player.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #05090C;
}
#ytube a {
  display: block;
  width: 100%;
  height: 320px;
}
#ytube a:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
.product-video-preview {
  margin-bottom: 1rem;
  width: 50%;
  max-width: 100%;
}
.product-info-layout {
  align-items: flex-start;
}
.product-info-layout .product-video-preview {
  width: 100%;
  margin-bottom: 0;
}
.product-audio-preview audio {
  display: block;
  width: 100%;
}
.product-audio-preview.wojo.basic.attached.segment {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.fluidbox-save-button {
  position: fixed;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  max-width: calc(100vw - 2rem);
  padding: 0.625rem 0.9rem;
  color: #fff !important;
  background: rgba(18, 18, 18, 0.82);
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.fluidbox-save-button:hover,
.fluidbox-save-button:focus {
  color: #fff !important;
  background: rgba(18, 18, 18, 0.94);
}
body.fluidbox-active #backToTopBtn,
body.fluidbox-active .scroll_up {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.veil-open #backToTopBtn,
body.veil-open .scroll_up {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* == Vertical Menus == */
ul.vertical-menu li,
ul.vertical-menu,
ul.vertical-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}
ul.vertical-menu li {
  border-top: 1px solid var(--grey-color-300);
  display: block;
  position: relative
}
ul.vertical-menu li a {
  display: inline-block;
  position: relative;
  padding: .5rem 0;
  color: var(--grey-color);
}
ul.vertical-menu li a:hover,
ul.vertical-menu li a.active {
  color: var(--primary-color);
}
ul.vertical-menu li a.active {
  font-weight: 700;
}
ul.vertical-menu li a > i.icon {
  margin-right: .5rem;
}
ul.vertical-menu .menu-submenu {
  display: none;
  top: 0;
}
ul.vertical-menu .menu-submenu li {
  border-bottom: 0;
  border-top: 1px solid var(--grey-color-300);
  box-shadow: none;
  position: relative;
}
ul.vertical-menu .menu-submenu li a {
  padding: .5rem 1.5rem
}
ul.vertical-menu .menu-submenu li ul li a {
  padding: .5rem 2.5rem
}
ul.vertical-menu .menu-submenu li ul li ul li {
}
ul.vertical-menu .menu-submenu li ul li ul li a {
  padding: .5rem 4rem
}
ul.vertical-menu .icon.chevron.down {
  position: absolute;
  right: 0;
  display: block;
  cursor: pointer;
  padding: .875rem 0;
}

/* == Preloader == */
#preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background-color: #fff;
}
#preloader .inner {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6.250em;
  height: 6.250em;
  animation: rotate 2.4s linear infinite;
}
#preloader .white {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  animation: flash 2.4s linear infinite;
  opacity: 0;
}
#preloader .dot {
  position: absolute;
  margin: auto;
  width: 2.4em;
  height: 2.4em;
  border-radius: 100%;
  transition: all 1s ease;
}
#preloader .dot:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 0;
  background: #FF4444;
  animation: dotsY 2.4s linear infinite;
}
#preloader .dot:nth-child(3) {
  left: 0;
  right: 0;
  top: 0;
  background: #FFBB33;
  animation: dotsX 2.4s linear infinite;
}
#preloader .dot:nth-child(4) {
  top: 0;
  bottom: 0;
  right: 0;
  background: #99CC00;
  animation: dotsY 2.4s linear infinite;
}
#preloader .dot:nth-child(5) {
  left: 0;
  right: 0;
  bottom: 0;
  background: #33B5E5;
  animation: dotsX 2.4s linear infinite;
}
 @keyframes rotate {
 0% {
transform: rotate( 0 );
}
 10% {
width: 6.250em;
height: 6.250em;
}
 66% {
width: 2.4em;
height: 2.4em;
}
 100% {
transform: rotate(360deg);
width: 6.250em;
height: 6.250em;
}
}
 @keyframes dotsY {
 66% {
opacity: .1;
width: 2.4em;
}
 77% {
opacity: 1;
width: 0;
}
}
@keyframes dotsX {
 66% {
opacity: .1;
height: 2.4em;
}
 77% {
opacity: 1;
height: 0;
}
}
 @keyframes flash {
 33% {
opacity: 0;
border-radius: 0%;
}
 55% {
opacity: .6;
border-radius: 100%;
}
 66% {
opacity: 0;
}
}
footer {
  padding: 2rem 0;
  background-color: #ecebeb;
  margin-top: 2rem;
  border-top: 1px solid var(--dark-color-shadow);
}
footer .divider {
  border-top: 1px solid var(--dark-color-shadow);
  height: 1px;
  margin-bottom: 1rem;
}
footer .logo {
  width: 2rem;
  display: inline-block;
}

.product-image-card {
  background-color: #fff;
  padding: 1rem 1rem 0.5rem;
}
.product-image-card.no-wishlist {
  padding: 2rem;
}
.product-image-card.no-wishlist.wojo.attached.segment {
  margin-bottom: 1rem !important;
}
@media screen and (min-width:64.063em) {
  .product-main-image-column {
    margin-top: -2.5rem;
  }
}
.product-wishlist {
  padding: 1.35rem 0 0.35rem;
  text-align: center;
}
.product-wishlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #52658a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}
.product-wishlist-button:hover,
.product-wishlist-button:focus {
  color: #405274;
}
.product-wishlist-button .icon {
  margin: 0;
  color: #68707a;
  font-size: 1.15rem;
}
.contact-altcha {
  display: block;
  width: 100%;
  --altcha-max-width: 100%;
  --altcha-color-base: #fff;
  --altcha-color-text: var(--body-color);
  --altcha-color-border: var(--grey-color-300);
  --altcha-color-border-focus: var(--primary-color);
  --altcha-color-active: var(--primary-color);
  --altcha-color-error-text: var(--negative-color);
  --altcha-border-radius: 0.5rem;
}
.product-add-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 30px !important;
    /* padding-bottom: 30px !important; */
}
.product-detail-add {
  width: 130px;
  justify-content: center;
}
.price-increase-highlight {
  display: inline-block;
  padding: 0 0.2rem;
  color: #fff;
  background-color: var(--primary-color);
}
.cart-price-warning-highlight {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.45rem 0.65rem;
  border-left: 4px solid var(--primary-color);
  border-radius: 0.25rem;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}
.cart-price-warning-highlight br {
  display: block;
  content: "";
  margin-bottom: 0.2rem;
}
.karma-header-banner {
  cursor: default !important;
  background-color: var(--primary-color);
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.karma-clickable-banner {
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
}
.karma-status-block {
  padding-top: 2rem;
  margin-bottom: 10px;
}
.karma-status-title {
  line-height: 40px;
}
.karma-status-title p {
  letter-spacing: 0.5px;
}
.karma-status-help {
  margin-bottom: 20px;
}
.karma-status-help .text {
  font-size: 14px;
  margin-bottom: 4px;
}
@-webkit-keyframes smoothScroll {
 0% {
 -webkit-transform: translateY(-40px);
 transform: translateY(-40px);
}
 100% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
}
@keyframes smoothScroll {
 0% {
 -webkit-transform: translateY(-40px);
 transform: translateY(-40px);
}
 100% {
 -webkit-transform: translateY(0px);
 transform: translateY(0px);
}
}
@-webkit-keyframes slideInUp {
 0% {
  -webkit-transform: translate3d(0, 0.45rem, 0);
  transform: translate3d(0, 0.45rem, 0);
 }
 100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }
}
@keyframes slideInUp {
 0% {
  -webkit-transform: translate3d(0, 0.45rem, 0);
  transform: translate3d(0, 0.45rem, 0);
 }
 100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }
}
/* == Desktop - Hide Mobile Toggle == */
#mobileToggle {
  display: none;
}
/* == Mobile == */
@media screen and (max-width:48.063em) {
.wojo.segment.homebanner {
  background-image: url('../images/image.jpg');
  background-attachment: fixed;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
.blog-list-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-image-card {
  padding: 0.75rem 0.75rem 0.5rem;
}
#crumbs.desktop-product-crumbs {
  display: none !important;
}
.mobile-product-crumbs.wojo.breadcrumb {
  display: block !important;
  margin: 1.25rem 0 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-product-crumbs.wojo.breadcrumb .section,
.mobile-product-crumbs.wojo.breadcrumb .divider {
  display: inline;
}
.product-image-card.no-wishlist.wojo.attached.segment {
  margin-bottom: 0.75rem !important;
}
.product-add-section {
  margin-bottom: 10px;
}
.contact-altcha {
  --altcha-border-radius: 0.375rem;
}
.karma-header-banner {
  display: block;
  margin-top: 1.5rem !important;
}
.karma-status-block {
  padding-top: 1.5rem;
  margin-bottom: 20px;
}
ul.top-menu {
  display: none;
  margin: 0;
  width: 100%;
}
ul.top-menu > li {
  width: 100%;
  float: none;
  display: block;
}
ul.top-menu > li a {
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
ul.top-menu > li a > strong,
ul.top-menu > li a > .icon {
  flex: 1 1 0px;
  min-width: 0;
  padding: .5rem;
}
ul.top-menu > li a > .icon {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  white-space: nowrap;
}
ul.top-menu > li > ul {
  position: relative;
  box-shadow: none;
}
ul.top-menu > li > ul.normal-sub {
  width: 100%;
  margin-left: 1rem;
}
ul.top-menu > li > ul > li {
  float: none;
  width: 100%;
}
ul.top-menu > li > ul > li:first-child {
  margin: 0;
}
ul.top-menu > li > ul > li > ul {
  position: relative;
}
ul.top-menu > li > ul > li > ul > li {
  float: none;
}
ul.top-menu.show-on-mobile {
  display: block !important;
  position: relative;
  width: 100%;
  padding: 0.45rem 0.95rem 1rem;
  background: rgb(102, 126, 234);
  z-index: 100;
  box-shadow: none;
}
ul.top-menu.show-on-mobile > li {
  margin: 0 0 0.2rem;
}
ul.top-menu.show-on-mobile > li > a {
  color: #fff !important;
  min-height: 3.5rem;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
ul.top-menu.show-on-mobile > li > a > strong {
  padding: 0;
  font: inherit;
}
ul.top-menu.show-on-mobile > li > a > .icon {
  padding: 0;
  margin: 0 !important;
  color: #fff !important;
  font-size: 0.85rem;
}
ul.top-menu.show-on-mobile > li > a:hover,
ul.top-menu.show-on-mobile > li > a:focus,
ul.top-menu.show-on-mobile > li > a:active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.12);
}
ul.top-menu.show-on-mobile > li.submenu-open > a {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 0.25rem 0.25rem 0 0;
}
ul.top-menu.show-on-mobile > li > ul.normal-sub {
  display: none;
  width: 100%;
  margin: 0 0 0.3rem;
  padding: 0.75rem 1rem 0.85rem;
  background: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: none;
}
ul.top-menu.show-on-mobile > li > ul.normal-sub > li {
  margin: 0;
}
ul.top-menu.show-on-mobile > li > ul.normal-sub > li a {
  position: relative;
  color: #333 !important;
  min-height: 2.75rem;
  padding: 0 0 0 1.5rem;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
}
ul.top-menu.show-on-mobile > li > ul.normal-sub > li a:before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: #999;
  transform: translateY(-50%);
}
ul.top-menu.show-on-mobile > li > ul.normal-sub > li a:hover,
ul.top-menu.show-on-mobile > li > ul.normal-sub > li a:focus {
  color: #333 !important;
  background: transparent;
}
.mobile-menu-row {
  display: block;
  position: relative;
  order: 10;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin-top: 0.35rem;
}
#mobileToggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  order: 0;
  height: 54px;
  margin-bottom: 0 !important;
}
#mobileToggle .mobile-button {
  width: 48px;
  height: 48px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #5f6368 !important;
  background: #fff !important;
  border: 0 !important;
  border-radius: 0.45rem !important;
  box-shadow: none !important;
  transition: color .35s ease, background-color .35s ease, background .35s ease;
}
#mobileToggle .mobile-button .mobile-menu-lines {
  width: 1rem;
  height: 0.75rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
#mobileToggle .mobile-button .mobile-menu-lines:before,
#mobileToggle .mobile-button .mobile-menu-lines:after,
#mobileToggle .mobile-button .mobile-menu-lines span {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #5f6368;
}
#mobileToggle .wojo.button.mobile-button.menu-mobile:active,
#mobileToggle .wojo.button.mobile-button.menu-mobile[aria-expanded="true"] {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}
#mobileToggle .wojo.button.mobile-button.menu-mobile:active .mobile-menu-lines:before,
#mobileToggle .wojo.button.mobile-button.menu-mobile:active .mobile-menu-lines:after,
#mobileToggle .wojo.button.mobile-button.menu-mobile:active .mobile-menu-lines span,
#mobileToggle .wojo.button.mobile-button.menu-mobile[aria-expanded="true"] .mobile-menu-lines:before,
#mobileToggle .wojo.button.mobile-button.menu-mobile[aria-expanded="true"] .mobile-menu-lines:after,
#mobileToggle .wojo.button.mobile-button.menu-mobile[aria-expanded="true"] .mobile-menu-lines span {
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  #mobileToggle .wojo.button.mobile-button.menu-mobile:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
  }
  #mobileToggle .wojo.button.mobile-button.menu-mobile:hover .mobile-menu-lines:before,
  #mobileToggle .wojo.button.mobile-button.menu-mobile:hover .mobile-menu-lines:after,
  #mobileToggle .wojo.button.mobile-button.menu-mobile:hover .mobile-menu-lines span {
    background: #fff;
  }
}
.desktop-menu {
  display: none !important;
}
nav.wojo.menu.header-custom-menu > ul {
  display: none;
}
body:not(.admin) .navbar .row {
  justify-content: flex-start !important;
  align-items: center !important;
  align-content: center !important;
  gap: 0.35rem;
}
body:not(.admin) .navbar .row.horizontal.gutters.align.middle {
  min-height: 66px;
  padding-top: 0.45rem !important;
  box-sizing: border-box;
}
body:not(.admin) .navbar .columns.relative {
  order: 1;
  margin-left: 0 !important;
  height: 54px;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
}
body:not(.admin) .navbar .columns.relative + .columns.relative {
  order: 2;
}
body:not(.admin) .navbar .columns.relative:nth-of-type(2) {
  margin-left: auto !important;
}
body:not(.admin) .navbar .moderator-column + .cart-column {
  margin-left: -0.15rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body:not(.admin) .navbar .row.horizontal.gutters,
body:not(.admin) .navbar .row.gutters {
  width: 100% !important;
  margin-left: 0 !important;
}
body:not(.admin) .navbar .row.horizontal.gutters > .columns,
body:not(.admin) .navbar .row.gutters > .columns {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
}
body:not(.admin) .navbar .row.horizontal.gutters > #mobileToggle,
body:not(.admin) .navbar .row.gutters > #mobileToggle {
  padding-left: 0 !important;
}
body:not(.admin) .navbar .row.horizontal.gutters > .mobile-menu-row,
body:not(.admin) .navbar .row.gutters > .mobile-menu-row {
  padding-left: 0 !important;
}
body:not(.admin) .navbar .row .button.cartButton {
  margin: 0 !important;
}
.logoColumn,
.btnsColumn {
  text-align: center;
  position: relative;
}
.btnsColumn {
  text-align: right;
}
body:not(.admin) .navbar {
  padding: 0;
  height: auto;
}
.product-video-preview {
  width: 100%;
}
.product-info-layout .product-video-preview {
  margin-top: 1rem;
}
.product-info-layout > .columns:first-child .wojo.relaxed.fluid.list {
  margin-bottom: 0.75rem;
}
.homepage-special-row > .columns {
  padding-left: 0 !important;
}
.homepage-special-copy {
  padding: 0.5rem 0 0;
}
.homepage-special-image-column {
  margin-bottom: 1rem !important;
}
#special1 .homepage-special-image-column,
#special2 .homepage-special-image-column {
  justify-content: center;
  padding: 0.35rem 0 !important;
}
#special1 .homepage-special-image-column .special-image-link,
#special2 .homepage-special-image-column .special-image-link {
  width: min(90%, 280px);
  margin: 0 auto;
}
#special1 .homepage-special-copy-column,
#special2 .homepage-special-copy-column {
  justify-content: center;
  text-align: center;
}
#special1 .homepage-special-copy,
#special2 .homepage-special-copy {
  max-width: 280px;
  margin: 0 auto;
  padding: 0.25rem 0 0 !important;
  text-align: center;
}
.homepage-special-title,
.homepage-special-title.wojo.truncate {
  font-size: 1.25rem;
}
.homepage-special-category {
  font-size: 0.8125rem;
}
.homepage-special-text {
  margin-bottom: 1rem !important;
  font-size: 0.8125rem;
}
.homepage-special-price {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.homepage-special-price small {
  font-size: 0.75rem !important;
}
}
/* == Phone == */
@media screen and (max-width:30em) {
.wojo.segment.homebanner .wojo.big.text {
  font-size: 1.5rem;
}
body:not(.admin) .navbar {
  padding: 0rem 0;
}
}
.profile-static-text {
    padding: 0.75rem 0;
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.4;
}
