body {
  background: var(--site-background-color);
}
body.has-offcanvas {
  overflow: hidden;
}
#page-container {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}
#content-wrapper {
  flex-grow: 1;
  margin: 0 calc(var(--gutter-x)/2);
}
#important-notice {
  background: var(--important-notice-background-color);
  color: var(--important-notice-text-color);
  text-align: center;
  font-weight: 600;
}
#important-notice .fourteen-forty {
  padding: calc(var(--gutter-x)/5);
  font-size: 0.9em;
}
@media (max-width: 767px) {
  #important-notice .fourteen-forty {
    padding: calc(var(--gutter-x)/2);
    font-size: 0.8em;
  }
}
#site-menu {
  position: sticky;
  display: block;
  top: 0;
  z-index: 999;
  transition: top 200ms linear;
  background: #d1ae8e;
  margin-bottom: var(--gutter-y);
}
@media (max-width: 991px) {
  #site-menu {
    margin-bottom: 0;
  }
  #site-menu .navbar-header a {
    color: var(--navigation-text-color);
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .navbar {
  padding: calc(var(--gutter-x)/2);
  border-radius: 0;
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 6em;
    padding: 0;
  }
  #site-menu .navbar .dropdown-menu .nav-link {
    background: var(--dropdown-menu-item-background-color);
    color: var(--dropdown-menu-item-text-color);
  }
  #site-menu .navbar .dropdown-menu .nav-link:hover {
    filter: brightness(0.95);
  }
}
#site-menu .dropdown-menu {
  overflow: hidden;
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
  top: -6em;
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.5em 1em;
  justify-content: space-between;
  background: var(--header-background-color);
  color: var(--header-text-color);
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-header {
    gap: calc(var(--gutter-x)/2);
  }
}
@media (min-width: 992px) {
  .navbar-header {
    position: absolute;
    top: -5rem;
    left: 0;
    right: 0;
    margin-bottom: var(--gutter-y);
    padding-left: 1em;
    padding-right: 1em;
  }
}
.navbar-header .fourteen-forty {
  display: inherit;
  flex-flow: inherit;
  gap: inherit;
  justify-content: inherit;
  align-items: inherit;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar-header .logotype {
  flex-grow: 1;
}
.navbar-header .logotype img {
  max-width: 150px;
  max-height: 48px;
}
@media (min-width: 768px) {
  .navbar-header .logotype img {
    max-width: 250px;
    max-height: 60px;
  }
}
@media (min-width: 768px) {
  .navbar-header .logotype {
    width: auto;
  }
}
@media (min-width: 992px) {
  .navbar-header .logotype {
    flex-grow: 0;
  }
}
.navbar-header .navbar-brand {
  display: none;
  width: calc(var(--sidebar-width) + var(--gutter-x)/2);
  font-size: 17px;
}
.navbar-header .navbar-brand:hover,
.navbar-header .navbar-brand:focus {
  text-decoration: none;
}
.navbar-header .navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar-header .navbar-brand {
    display: block;
  }
}
.navbar-header form[name="search_form"] .input-group {
  background-color: transparent;
  border: 1px solid #707070;  /*#c1c1c1;*/
}
.navbar-header form[name="search_form"] .input-group * {
  padding: 6px 15px;
}
.navbar-header .navbar-search {
  flex: 1 1 auto;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .navbar-header .navbar-search {
    width: 100%;
    order: 999;
  }
}
@media (min-width: 992px) {
  .navbar-header .navbar-search {
    max-width: 600px;
  }
}
.navbar-header .regional-setting {
  padding-bottom: 7px;
}
.navbar-header .navbar-icon {
  font-size: 1.5em;
  color: #000 !important;
}
.navbar-icon svg {
  fill: var(--navigation-icon-color);
  stroke: var(--navigation-icon-color);
  width: 25px;
  height: 25px;
}
#cart {
  position: relative;
  display: inline-block;
}
#cart > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px transparent solid;
  border-radius: var(--border-radius);
  color: inherit;
  white-space: nowrap;
}
#cart > a:hover {
  border-color: var(--default-border-color);
  text-decoration: none;
}
#cart img {
  max-width: 2em;
  max-height: 2em;
}
@media (min-width: 768px) {
  #cart img {
    font-size: 1.5em;
  }
}
#cart .badge {
  background: #ffc8b3;
  border-radius: 2rem;
  padding: 0.25em 0em;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 15px;
  right: -10px;
  width: 2em;
  animation: pulsating 1.5s linear infinite;
  font-size: 10px;
  color: #000;
}
#cart .badge:empty {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  #cart .details {
    display: none;
  }
}
@media (max-width: 992px) {
  #cart #cart .badge {
    top: 15px;
    right: 0;
  }
}
#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}
#footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
  padding: var(--gutter-y) calc(var(--gutter-x)/2);
}
#footer a {
  color: inherit;
}
#footer .columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--gutter-x);
}
@media (max-width: 767px) {
  #footer .columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 567px) {
  #footer .columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
#footer .newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  #footer .newsletter {
    flex-direction: column;
    align-items: baseline;
  }
}
#footer .title {
  font-size: 1.1em;
  margin: 0 0 0.5em 0;
  color: var(--footer-title-color);
}
#footer .list-unstyled li {
  padding: 6px;
}
#footer ul.list-vertical li {
  padding: 0;
}
#box-newsletter-subscribe .form-group {
  margin: 0 auto;
}
#box-newsletter-subscribe .form-control, #box-newsletter-subscribe .btn  {
  padding: 10px 15px;
}
#box-newsletter-subscribe p {
  margin-top: 0;
}
#copyright .notice {
  font-size: 0.75em;
}
#copyright .notice a {
  color: inherit;
  text-decoration: underline;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  position: fixed;
  right: 30px;
  width: 48px;
  z-index: 9999;
}
#scroll-up .fa {
  color: #cecece;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y);
}
#box-cookie-notice {
  background: var(--cookie-notice-background-color);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1em;
  backdrop-filter: saturate(200%) blur(5px);
  color: var(--cookie-notice-text-color);
  z-index: 999;
}
#box-cookie-notice .notice {
  margin-bottom: 1em;
}
#box-cookie-notice .notice a {
  color: inherit;
  text-decoration: underline;
}
#box-cookie-notice button {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
  #box-cookie-notice {
    max-width: 480px;
    margin: 0 auto;
    bottom: var(--gutter-y);
    border-radius: var(--border-radius);
  }
}
#box-recently-viewed-products .link img {
  transition: all 100ms linear;
}
#box-recently-viewed-products .link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  #box-also-purchased-products {
    position: sticky;
    top: 0;
  }
}
#box-manufacturer-logotypes img {
  max-height: 60px;
}
#box-filter .manufacturers ul {
  max-height: 200px;
  overflow-y: auto;
}
#box-recently-viewed-products .listing {
  grid-template-columns: repeat(auto-fill, minmax(64px, 0.5fr));
}
.listing {
  display: grid;
  grid-gap: calc(var(--gutter-x)/2);
}
@media (min-width: 768px) {
  .listing {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing.products.columns {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
}
@media (min-width: 768px) {
  .listing.categories {
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  }
}
.listing.manufacturers {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .listing.manufacturers {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
.listing h1,
.listing h2,
.listing h3 {
  padding-bottom: 0;
  border: none;
}
.listing a {
  color: inherit;
  text-decoration: none;
}
.listing .category,
.listing .manufacturer,
.listing .product {
  position: relative;
  overflow: hidden;
  background: var(--image-whitespace-color);
  color: inherit;
  text-decoration: none;
  transition: all .5s ease;
  transform: scale(1);
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover .image-wrapper {
    filter: opacity(0.7);
  }
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover h3.name {
    filter: opacity(0.7);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
}
.listing .category .caption {
  padding: 2em;
  color: var(--default-text-color);
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.listing .category .caption * {
  font-weight: 600;
  color: inherit;
  background: #ffffffd1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5em;
  box-shadow: 2px 2px 10px 2px #26252563;
  margin: 0;
  padding: 0.5em;
}
.listing .manufacturer {
  position: relative;
  background: var(--whitespace-color);
}
.listing .manufacturer img {
  width: 100%;
  height: auto;
  padding: 1rem;
}
.listing .manufacturer .caption {
  margin: 0;
  padding: calc(var(--gutter-y)/2) var(--gutter-x);
  background: #f2f2f2;
  color: var(--default-text-color);
  text-align: center;
}
.listing .product {
  position: relative;
  background: var(--whitespace-color);
}
@media (max-width: 376px) {
  .listing .product {
    margin-bottom: calc(var(--gutter-y)*1.5);
  }
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
	font-size: 12px;
	font-weight: 600;
	top: 1em;
	left: 1em;
	padding: 1em;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}
.listing .product .image-wrapper .sticker.new {
  background: rgba(255, 228, 170, 0.95)
}
.listing .product .image-wrapper .sticker.sale {
  background: rgba(190, 255, 191, 0.95)
}
.listing .product .name {
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: calc(var(--gutter-y)/4);
  margin-bottom: calc(var(--gutter-y)/4);
}
.listing .product .manufacturer-name {
  color: #5382b4;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
  margin-top: calc(var(--gutter-y)/-4);
}
.listing .product .description {
  color: var(--default-text-color);
  font-size: 13px;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .price-wrapper {
  font-size: 14px;
}
.listing .product .price-wrapper .price {
  white-space: nowrap;
  
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  color: #ef4242;
  white-space: nowrap;
}
.listing .product .price-wrapper del.regular-price {
  color: #c6c6c6;
  white-space: nowrap;
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding: 0.5rem 0;
}
.listing.columns .product .price-wrapper {
  position: initial;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: var(--gutter-y) var(--gutter-x);
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
.listing.rows .product .image-wrapper img {
  width: 100%;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description {
    margin-bottom: 1em;
  }
}
.category-header {
  margin-top: var(--gutter-y);
  margin-bottom: calc(var(--gutter-y)*2);
}
.category-header h1 {
  margin-bottom: 0;
}
#box-category-tree .categories-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.75em;
}
#box-product .sticky {
  position: sticky;
  display: block !important;
  top: calc(var(--gutter-y)*2);
}
#box-product .images {
  margin-bottom: var(--gutter-y);
}
#box-product .main-image {
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  font-size: 12px;
  font-weight: bold;
  top: 2.5em;
  left: 1em;
  padding: 1em 1.5em;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}
#box-product .main-image .sticker.new {
  background: rgba(255, 228, 170, 0.96);
}
#box-product .main-image .sticker.sale {
  background: rgba(190, 255, 191, 0.95)
}
#box-product .product-title {
  font-size: 2em;
  margin-bottom: 0;
  line-height: 1.15;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #box-product .product-title {
    font-size: 1.4em;
  }
}
#box-product .price-wrapper {
  font-size: 1.25em;
}
@media (max-width: 767px) {
  #box-product .price-wrapper {
    font-size: 1.1em;
  }
}
@media (max-width: 567px) {
  #box-product .price-wrapper {
    font-size: .9em;
  }
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 0.75em;
}
#box-product .price-wrapper .campaign-price {
  color: #ef4242;
}
#box-product .price-wrapper del.regular-price {
  color: #c6c6c6;
}
#box-product .tax {
  color: #999;
}
#box-product .stock-available .value {
  color: #009900;
}
#box-product .stock-partly-available .value {
  color: #ff9900;
}
#box-product .stock-unavailable .value {
  color: #cc0000;
}
#box-product .out-of-stock-notice {
  background: var(--default-background-color);
  border: 1px solid var(--default-border-color);
  padding: var(--gutter-y) var(--gutter-x);
  border-radius: var(--border-radius);
}
#box-product .stock-notice {
  margin-top: 1em;
  padding: 0.5em;
  border-radius: var(--border-radius);
  border: 1px #86cb00 solid;
  color: #86cb00;
}
#box-product .stock-notice:empty {
  display: none;
}
#box-product .stock-notice.warning {
  color: #c00;
  border-color: #c00;
}
#box-product .stock-notice .description {
  margin-top: 1em;
  font-size: 0.8em;
}
#box-product .social-bookmarks {
  font-size: 1.75em;
  margin-top: 1em;
}
#box-product .social-bookmarks a {
  margin: 0 0.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}
#box-product input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
#box-product input[type=number]::-webkit-inner-spin-button,
#box-product input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

#box-product .input-group button {
  -webkit-appearance: none;
  background-color: var(--default-background-color);
  border: none;
  align-items: center;
  justify-content: center;
  width: 20%;
  font-weight: bold;
}
#box-product .input-group input[type=number] {
  font-weight: bold;
  padding: 0;
  flex: 1;
}
.tabs {
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .tabs {
    flex-direction: column;
    margin-bottom: 2em;
  }
}
.tabs label {
	order: 1;
	display: block;
	padding: calc(var(--gutter-x)/2) calc(var(--gutter-y)/2);
	margin-right: 0.2rem;
	cursor: pointer;
  font-weight: bold;
  color: #bababa;
  border-bottom: 3px transparent;
  font-size: 1.15em;
  text-align: center;
}
.tabs .tab {
  order: 99;
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: var(--gutter-x) var(--gutter-y);
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;  
}
.tabs input[type="radio"]:checked + label {
	border-bottom: 3px solid #000;
  color: #000;
}
@media (max-width: 767px) {
  .tabs input[type="radio"]:checked + label {
	border-bottom: 2px solid #000;
  }
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 767px) {
  .tabs .tab {
    padding: calc(var(--gutter-x)*2) var(--gutter-y);
  }
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
#box-slides {
  margin: calc(var(--gutter-y)*-1) calc(var(--gutter-y)/-2) calc(var(--gutter-y)*2)  calc(var(--gutter-y)/-2);
}
@media (min-width: 481px) {
  .flex-d {
    display: flex;
    gap: calc(var(--gutter-x)/2);
  }
}
@media (max-width: 480px) {
  .iflex-m {
    display: flex;
    flex-direction: column;
    gap: var(--gutter-x);
  }
}
.flex0 {
  flex: 0;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.card {
  background: #fff;
  padding: var(--gutter-x);
}
.sort-items li {
  margin: 0.25em;
}
#box-featured-products .listing, #box-featured-categories .listing  {
  margin-bottom: 0.5em;
}