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;
}
#important-notice {
  background: var(--important-notice-background-color);
  color: var(--important-notice-text-color);
  text-align: center;
}
#important-notice .fourteen-forty {
  padding: 0.5em var(--gutter-x);
}
.navbar-header form[name="search_form"] .input-group {
  background-color: #f3f3f3;
}
.navbar-header form[name="search_form"] .input-group input {
  font-style: italic;
}
@media (max-width: 991px) {
  #site-menu {
    position: sticky;
    display: block;
    top: 0;
    z-index: 999;
    transition: top 200ms linear;
  }
}
@media (max-width: 991px) {
  #site-menu .container {
    padding: 0 !important;
  }
}
#site-menu .navbar {
  padding: 0.5rem var(--gutter-x);
}
@media (min-width: 992px) {
  #site-menu .navbar {
    margin-top: 6.5em;
		margin-bottom: 0;
    padding: 0;
  }
}
@media (min-width: 992px) and (max-width: 1460px) {
  #site-menu .navbar {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
#site-menu .dropdown-menu {
  --gutter-y: 0.75em;
}
body.scrolling-down #site-menu {
  top: -6em;
}
.navbar-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: var(--gutter-x);
  justify-content: space-between;
  background: var(--header-background-color);
  color: var(--header-text-color);
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-header {
    gap: var(--gutter-x);
  }
}
@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 img {
  max-width: 150px;
  max-height: 32px;
}
@media (min-width: 768px) {
  .navbar-header .logotype img {
    max-width: 250px;
    max-height: 80px;
  }
}
@media (min-width: 768px) {
  .navbar-header .logotype {
    width: auto;
  }
}
.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 .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 .navbar-icon {
  font-size: 1.5em;
}
@media (max-width: 991px) {
  .navbar-header .navbar-icon {
		color: #fff;
	}
}
#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: #c90000;
  border-radius: 2rem;
  padding: 0.25em 0em;
  display: inline-block;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 15px;
  top: 15px;
  width: 2em;
  animation: pulsating 1.5s linear infinite;
  font-size: 10px;
}
#cart .badge:empty {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  #cart .details {
    display: none;
  }
}
#content-wrapper .layout.row {
  margin: 0 0.5em;
}
@media (min-width: 1460px) {
  #content-wrapper .layout.row {
    margin: 0;
  }
}
#sidebar {
  position: relative;
  display: flex;
  flex-flow: column;
}
#footer {
  background-image: url('../images/wave.svg');
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--footer-text-color);
  padding-top: 5em;
}
@media (max-width: 991px) {
  #footer {
    background-image: url('../images/wave_md.svg');
  }
}
@media (max-width: 767px) {
  #footer {
    background-image: url('../images/wave_sm.svg');
  }
}
@media (max-width: 536px) {
  #footer {
    background-image: url('../images/wave_xs.svg');
  }
}
@media (max-width: 1440px) {
  #footer {
    padding: var(--gutter-y) calc(var(--gutter-x)/4);
  }
}
@media (max-width: 1200px) {
  #footer {
    margin-top: var(--gutter-y);
    padding: var(--gutter-y) calc(var(--gutter-x)/2);
  }
}
@media (max-width: 767px) {
  #footer {
    padding: var(--gutter-y) var(--gutter-x);
  }
}
#footer a {
  color: inherit;
}
#footer .columns {
  display: grid;
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: var(--gutter-x);
}
@media (min-width: 768px) {
  #footer .columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  #footer .columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
#footer .title {
  font-size: 1.5em;
  margin: 0 0 0.75em 0;
  color: var(--footer-title-color);
}
#footer ul.list-vertical li {
  padding: 0;
}
#footer .contact {
    margin-top: 2em;
  }
  #footer .copyright-notice {
    font-size: 13px;
  }
@media (min-width: 768px) {
  #footer .copyright-notice {
    margin-top: 8.5em;
  }
}
#footer .footer-icon {
  margin-top: 6.5em;
}
#scroll-up {
  bottom: 30px;
  display: none;
  height: 48px;
  opacity: 0.3;
  position: fixed;
  right: 30px;
  width: 48px;
}
/* Boxes */
.box {
  margin-bottom: var(--gutter-y);
}
#box-filter .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
#box-filter .filters > * {
  flex: 1 1 auto;
  min-width: fit-content;
}
#box-filter .filters [data-toggle="dropdown"] {
  cursor: pointer;
}
#box-filter .filters .dropdown-menu li {
  margin: 0.5em 1em;
}
#box-filter .filters .dropdown-menu .option {
  white-space: nowrap;
}
#box-filter .tokens:not(:empty) {
  padding-top: var(--gutter-y);
}
#box-filter .tokens .token {
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: default;
  margin-inline-end: 0.5em;
}
#box-filter .tokens .token[data-group="name"] {
  background: #cbe2b6;
}
#box-filter .tokens .token[data-group="manufacturer"] {
  background: #b6c2e2;
}
#box-filter .tokens .token[data-group^="attribute"] {
  background: #e2c6b6;
}
#box-filter .tokens .token .remove {
  padding-inline-start: 0.5em;
  color: inherit;
  font-weight: 600;
}
#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(48px, 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(225px, 1fr));
}
@media (min-width: 768px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  }
}
@media (min-width: 992px) {
  .listing.products.columns {
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  }
}
.listing.products.rows {
  grid-auto-flow: row;
  grid-template-columns: initial;
}
.listing.categories {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media (min-width: 768px) {
  .listing.categories {
    grid-template-columns: repeat(auto-fill, minmax(320px, 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);
  border: 1px solid var(--default-border-color);
  border-radius: var(--border-radius);
  transform: scale(1);
  transition: all 100ms linear;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .listing .category:hover,
  .listing .manufacturer:hover,
  .listing .product:hover {
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.15);
    transform: scale(1.01);
  }
}
.listing .category {
  position: relative;
  background: var(--whitespace-color);
}
.listing .category a {
  display: flex;
	flex-direction: row;
	align-items: center;
	padding: 2em;
  justify-content: space-evenly;
}
@media (max-width: 991px) {
  .listing .category a {
    padding: 1em;
  }
}
.listing .category a img {
  max-width: 50%;
}
.listing .category .caption {
  background: var(--whitespace-color);
  color: var(--default-text-color);
  text-align: center;
	font-style: italic;
  font-size: 12px;
}
.listing .category .caption * {
  font-weight: normal;
  color: inherit;
  margin: 0;
}
.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);
}
.listing .product .link {
  text-decoration: none;
}
.listing .product .image-wrapper {
  background: var(--image-whitespace-color);
}
.listing .product .image-wrapper .sticker {
  position: absolute;
  top: 20px;
  left: -32px;
  width: 125px;
  padding: 0.35rem 0;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
}
.listing .product .image-wrapper .sticker.new {
  background: rgba(251, 184, 41, 0.9);
}
.listing .product .image-wrapper .sticker.sale {
  background: rgb(185, 46, 79);
}
.listing .product .name {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 40px;
  font-size: 1em;
  font-weight: 400;
  line-height: 115%;
  border-bottom: 0;
  margin-bottom: 1em;
	color: var(--link-text-color);
	font-size: 18px;
}
@media (max-width: 767px) {
  .listing .product .name {
    margin-bottom: 0.25em;
  }
}
.listing .product .manufacturer-name {
  color: var(--default-text-color);
  font-size: 0.9em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 200%;
  opacity: 0.75;
}
.listing .product .info {
  height: 175px;
}
.listing .product .description {
  max-width: 640px;
  text-align: left;
}
@media (max-width: 767px) {
  .listing.rows .product .description {
    text-align: right;
  }
}
.listing.columns .product .price-wrapper {

}
.listing.rows .product .price-wrapper {
  font-size: 1.25em;
	position: absolute;
  top: var(--gutter-y);
  right:  var(--gutter-x);
}
@media (max-width: 767px) {
  .listing.rows .product .price-wrapper {
    font-size: 1.25em;
    position: relative;
    top: 0;
    right: 0;
  }
}
.listing .product .price-wrapper .price {
  font-weight: bold;
  white-space: nowrap;
	color: var(--link-text-color);
}
.listing .product .codes span {
  color: #3c90cd;
}
.listing .product .price-wrapper .tax {
  font-size: 12px;
	color: #737272;
}
.listing .product .price-wrapper .regular-price,
.listing .product .price-wrapper .recommended-price {
  color: var(--default-text-color);
  font-size: 0.75em;
  font-weight: normal;
  white-space: nowrap;
}
.listing .product .price-wrapper .campaign-price {
  font-weight: bold;
  color: #c00;
  white-space: nowrap;
}
.listing.rows .product .buy-now-wrapper {
	position: absolute;
  bottom:  var(--gutter-y);
  right:  var(--gutter-x);
}
@media (max-width: 767px) {
  .listing.rows .product .buy-now-wrapper {
    position: relative;
    margin: var(--gutter-y) 0;
    bottom: 0;
    right: 0;
  }
  .listing.rows .product .buy-now-wrapper button {
    text-align: right;
  }
  .listing.rows .product .codes {
    margin: var(--gutter-y) 0;
  }
}
.listing .product .preview {
  margin: 0 -1px -1px -1px;
  display: none;
  position: absolute;
  top: 1em;
  right: 1em;
  padding: var(--input-padding-y);
  width: 3em;
  box-shadow: none;
}
@media (min-width: 768px) {
  .listing .product:hover .preview {
    display: inline-block;
  }
}
.listing.columns .product {
  padding: 0.5em;
}
.listing.columns .product .image {
  width: 100%;
  height: auto;
}
.listing.columns .product .info {
  padding-top: 0.5em;
  text-align: center;
}
.listing.columns .product .description {
  display: none;
}
.listing.columns .product .price-wrapper {
  text-align: center;
	font-size: 1.25em;
}
.listing.columns .product .price-wrapper .tax {
  display: none;
}
.listing.columns .product .buy-now-wrapper {
  margin-top: 1em;
}
.listing.columns .product .buy-now-wrapper button {
  width: 100%;
}
.listing.rows .product .link {
  display: flex;
  gap: var(--gutter-x);
  padding: calc(var(--gutter-y)/2) calc(var(--gutter-x)/2);
}
@media (max-width: 767px) {
  .listing.rows .product .link {
    padding: calc(var(--gutter-y)/2) var(--gutter-x);
  }
}
.listing.rows .product .info {
  flex: 1 1 auto;
}
@media (max-width: 767px) {
  .listing.rows .product .info{
    text-align: right;
  }
}
.listing.rows .product .image-wrapper {
  width: 175px;
}
@media (max-width: 767px) {
  .listing.rows .product .image-wrapper {
    width: 225px;
  }
}
.listing.rows .product .price-wrapper {
  text-align: right;
}
@media (min-width: 768px) {
  .listing.rows .product .image-wrapper {
    width: 160px;
  }
}
@media (min-width: 768px) {
  .listing.rows .product {
    height: auto;
  }
  .listing.rows .product .description, .listing.rows .product .codes {
    margin-bottom: 1em;
  }
}
#box-category .category-description {
	margin-bottom: var(--gutter-y);
  position: relative;
}
#box-category .category-hero {
	height: 200px;
	margin-bottom: 1em;
}
#box-category .category-title {
	position: absolute;
	top: 2.5em;
	padding-left: 3em;
	font-style: italic;
	color: #555;
}
@media (max-width: 767px) {
  #box-category .category-title {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
#box-product form[name="buy_now_form"] {
  margin: 1em 0;
}
#box-product .images {
  margin-bottom: var(--gutter-y);
}
#box-product .extra-images {
  margin-bottom: var(--gutter-y);
	padding: calc(var(--gutter-y)/2) var(--gutter-x);
}
#box-product .main-image {
	display: block;
  position: relative;
  background: var(--whitespace-color);
  overflow: hidden;
}
#box-product .main-image .sticker {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  top: 35px;
  left: -45px;
  padding: 0.25rem 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-45deg);
  width: 200px;
}
#box-product .main-image .sticker.new {
  background: rgba(251, 184, 41, 0.85);
}
#box-product .main-image .sticker.sale {
  background: rgb(185, 46, 79);
}
#box-product .price-wrapper {
  font-size: 1.6em;
}
#box-product .title {
  color: var(--link-text-color);
  margin: calc(var(--gutter-y)/2) 0 0 calc(var(--gutter-y)*2);
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 767px) {
  #box-product .title {
    font-size: 1.6em;
  }
}
#box-product .short-description {
  margin-left: calc(var(--gutter-y)*2);
	margin-top: calc(var(--gutter-y)/2)
	color: #555;
}
@media (max-width: 767px) {
  #box-product .title, #box-product .short-description {
		margin-left: 0;
	}
}
#box-product .manufacturer img {
  max-height: 50px;
  max-width: 100%;
}
@media (max-width: 767px) {
  #box-product .manufacturer img {
		margin-top: calc(var(--gutter-x)/2);
	}
}
#box-product .payment-plan {
  margin: 0.5em 0;
}
@media (max-width: 767px) {
  #box-product .payment-plan {
    padding-right: calc(var(--gutter-x)/2);
  }
}
#box-product .price {
  color: var(--link-text-color);
}
#box-product .codes span{
  color: #3c90cd;
}
#box-product .payment-plan > div {
 font-style: italic;
 font-size: 12px;
}
#box-product .price-wrapper .regular-price,
#box-product .price-wrapper .recommended-price {
  font-size: 0.75em;
}
#box-product .price-wrapper .campaign-price {
  color: rgb(185, 46, 79);
}
#box-product .tax {
  color: #999;
	font-size: 11px;
}
#box-product .offer-expires {
  color: #333;
	font-size: 11px;
	font-style: italic;
  margin-bottom: -1em;
  margin-top: 2em;
}
#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.25em;
}
#box-product .description p:first-child {
  margin-top: 0;
}
#box-product .description p:last-child {
  margin-bottom: 0;
}
#box-product .cheapest-shipping {
  margin-right: auto;
}
@media (max-width: 767px) {
  #box-product .cheapest-shipping {
    margin-right: 0;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 1em;
  }
}
#box-index-benefits {
  margin: 30px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
}
#box-index-benefits a {
  color: #555;
  text-decoration: none;
}
@media (min-width: 992px) and (max-width: 1460px) {
	#box-index-benefits {
		margin: 1em 0.5em;
	}
	#box-index-benefits .benefit {
		padding: 0.75em;
	}
}
@media (max-width: 991px) {
  #box-index-benefits {
		margin: 0 0.5em 1em 0.5em;
	}
}
#box-index-benefits .benefit {
  flex-grow: 1;
	padding: 2em;
	background: #f3f3f3;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
	display: flex;
	flex-direction: row;
	align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  #box-index-benefits .benefit {
		flex-direction: column;
		padding: 0.4em;
	}
}
@media (max-width: 991px) {
  #box-index-benefits .benefit {
		flex-direction: column;
		padding: 0.45em;
	}
}
#box-index-benefits .benefit:last-child {
	border-right: 1px solid #e5e5e5;
}
#box-index-benefits .benefit .fa {
  font-size: 1.5em;
}
@media (max-width: 767px) {
 	#box-index-benefits .benefit .fa {
		padding: 5px;
		font-size: 1em;
	}
}
#box-index-benefits .benefit .benefit-text {
  font-weight: 600;
	font-style: italic;
	letter-spacing: 1px;
  font-size: 1em;
}
@media (max-width: 991px) {
 	#box-index-benefits .benefit .benefit-text {
		font-size: 0.7em;
		margin-top: 0.25em;
	}
}
@media (max-width: 767px) {
 	#box-index-benefits .benefit .benefit-text {
		font-size: 0.6em;
	}
}
#box-welcome h1 {
	font-style: italic;
}
.navbar-header .navbar-icon .fa {
	font-size: 1.5em;
}
#box-similar-products article, #box-related-products article, #box-also-purchased-products article {
  margin-top: -1px;
}