@import url('https://fonts.googleapis.com/css2?family=Neuton:wght@400;700&display=swap');

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

p {
  line-height: 1.6;
}
ul > li,
ol > li {
  line-height: 1.6;
}
img {
  height: auto;
}

/* PAGE TITLE */
/* <editor-fold> */
.page-title {
  padding: 10px 0;
  margin: 50px 0;
  text-align: center;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
}
.page-title::before,
.page-title::after {
  content: '';
  flex: auto;
  height: 1px;
  background-color: #000;
}
.page-title .h1:first-child,
.page-title .h2:first-child,
.page-title .h3:first-child,
.page-title .h4:first-child,
.page-title .h5:first-child,
.page-title .h6:first-child,
.page-title h1:first-child,
.page-title h2:first-child,
.page-title h3:first-child,
.page-title h4:first-child,
.page-title h5:first-child,
.page-title h6:first-child {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: inline-block;
  flex: none;
  margin: 0;
}
.page-title .m-text-headline {
  max-width: 100%;
}
/* </editor-fold> */

/*****| PARTIALS |*****/

/* TOPBAR */
/* <editor-fold> */
.topbar {
  width: 100%;
  height: 100px;
}
.topbar .topbar-container {
  height: 100%;
  padding: 0 30px;
}
.topbar .topbar-container,
.topbar .topbar-container > .topbar-left,
.topbar .topbar-container > .topbar-center,
.topbar .topbar-container > .topbar-right {
  display: flex;
  align-items: center;
}
.topbar .topbar-container > .topbar-left {
  justify-content: flex-start;
  flex: 2;
}
.topbar .topbar-container > .topbar-center {
  justify-content: center;
  flex: 1;
  padding: 0 20px;
  min-width: 40%;
}
.topbar .topbar-container > .topbar-right {
  justify-content: flex-end;
  flex: 2;
}
.topbar .topbar-container > .topbar-right > * {
  margin: 0;
}
.topbar .topbar-mobile {
  display: none;
}
.topbar .list-inline > li {
  padding: 0 1em;
}
.topbar .topbar-iconlink {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.topbar .topbar-iconlink > svg {
  height: 24px;
}
.topbar .topbar-iconlink .count {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  font-style: normal;
}
.topbar .topbar-iconlink > small {
  display: block;
  text-align: center;
  margin-top: 5px;
}
body.pageTypecheckout .topbar {
  border-bottom: 1px solid rgba(0,0,0,.15);
}
/* </editor-fold> */

/* FOOTER */
/* <editor-fold> */
.footer {
  background-color: #fafafa;
  padding: 60px 0;
  margin-top: 30px;
}
.footer .footer-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}
.footer .footer-col > strong {
  font-size: 15px;
  color: #000;
  text-transform: uppercase;
  font-weight: normal;
  display: block;
  position: relative;
  padding-bottom: 8px;
}
.footer .footer-col > strong::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #000;
}
.footer .footer-col > strong,
.footer .footer-col > .logo {
  margin-bottom: 20px;
}
.footer .footer-menu {
  margin: 15px 0;
}
.footer .footer-menu > li a {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.footer .footer-menu > li svg {
  height: 16px;
  margin-right: 3px;
}
.footer .footer-paymenticons {
  margin-top: 10px;
}
.footer .footer-socials {
  margin: 0 0 0 15px;
}
.footer .footer-socials svg {
  height: 20px;
}
.footer .footer-col .button-primary {
  width: 100%;
}
.footer .footer-bottom {
  width: 100%;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,.15);
  display: flex;
  align-items: flex-start;
}
.footer .footer-bottom-col {
  width: 50%;
  flex: none;
}
.footer .footer-bottom-col:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* </editor-fold> */

/*****| MODULES |*****/

/* BREADCRUMB */
/* <editor-fold> */
.m-breadcrumb {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .1em;
  margin: 20px 0;
}
.m-breadcrumb .nav li a {
  text-decoration: underline;
}
/* </editor-fold> */

/* CATEGORIES */
/* <editor-fold> */
.categorylist {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
  margin: 30px 0;
}
.categorylist .category-item {
  height: auto !important;
  margin: 0;
}
.categorylist .category-item a {
  padding: 15px;
  border: 1px solid rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 1px;
  transition: border ease .2s, margin ease .2s;
}
.categorylist .category-item a:hover {
  margin: 0;
  border: 2px solid #000;
}
.categorylist .category-item h4 {
  color: #000;
  margin: 0;
  text-align: center;
  font-size: .875em;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: .1em;
  transition: color ease .2s;
}
.categorylist .category-item:hover h4 {
  color: #666;
}
/* </editor-fold> */

/* PRODUCT LIST */
/* <editor-fold> */
.angular-productlist {
  min-height: auto !important;
}
.m-productlist-wrapper {
  display: flex;
}
.m-productlist-wrapper .m-productlist-content {
  width: 100%;
  flex: auto;
}
.m-productlist-content .m-productlist-none {
  margin-top: 30px;
}
.productItem {
  margin-bottom: 0;
}
.productItem .type-col {
  border: none;
  height: 100%;
  border: none;
}
.productItem .productContent {
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  border: none;
  padding: 15px;
  transition: transform ease .2s, box-shadow ease .2s;
  background-color: #fff;
}
.productItem:hover .productContent {
  transform: scale(1.05);
}
.productItem .productContent > form {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.productItem .variants {

}
.productItem .product-description {
  flex: auto;
  display: flex;
  flex-direction: column;
}
.productItem .m-productlist-heading {
  flex: auto;
  margin-bottom: 5px;
}
.productItem .type-col .m-productlist-brand {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .6;
  margin-bottom: 3px;
}
.productItem .type-col .m-productlist-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Neuton', serif;
  margin-bottom: 10px;
}
.productItem .type-col .description,
.productItem .type-col .m-reviews-stars,
.productItem .type-col .product-delivery,
.productItem .type-col .title {
  padding: 0;
}
.productItem .type-col .product-description {
  height: auto !important;
  margin: 0;
}
.productItem .type-col .product-transaction,
.productItem .type-col .product-action {
  padding: 0;
  background: transparent;
  border-top: none;
}
.productItem .type-col .product-transaction {
  display: flex;
  flex-direction: column;
}
.productItem .type-col .product-transaction .prices {
  margin-top: auto;
}
.productItem .type-col .product-transaction .m-productlist-price {
  font-size: 18px;
}
.productItem .image {
  position: relative;
  margin-bottom: 20px
}
.productItem .image .m-productlist-sale {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff763;
  color: #000;
  z-index: 97;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}
.productItem .image .m-productlist-splash {
  display: flex;
  margin: 0 -5px;
  left: auto;
  right: 5px;
  top: 0;
}
.m-product .splash, .m-productlist .splash {
  z-index: 97;
}
.productItem .productContent .image .m-productlist-image:nth-of-type(2) {
  opacity: 0;
  transition: opacity ease .2s;
}
.productItem .productContent .image .m-productlist-wishlist {
  position: absolute;
  right: 0;
  bottom: 0;
}
.productItem .m-productlist-stock {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.productItem .m-productlist-stock i {
  display: none;
}
.productItem .m-productlist-wishlist button {
  background: transparent;
  border: none;
  padding: 0;
}
.productItem .m-productlist-wishlist svg {
  width: 20px;
  height: 20px;
}
.productItem:hover .productContent .image .m-productlist-image:nth-of-type(2) {
  opacity: 1;
}
.productItem .product-buy {
  display: flex;
  margin-top: 10px;
}
.productItem .product-buy fieldset {
  margin: 0;
}
.productItem .product-buy fieldset:last-child {
  flex: auto;
}
.productItem .product-buy fieldset input {
  width: 50px;
  height: 100%;
}
.m-productlist .m-productlist-none {
  grid-column-end: span 5;
}
/* MOST SOLD */
.mostsold {
  padding: 30px;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.05) 0px 25px 100px -20px, rgba(0, 0, 0, 0.1) 0px 15px 60px -30px;
}
.mostsold h3 {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
/* SLICK */
.m-productlist:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.m-productlist:not(.slick-initialized) > .productItem {
  width: calc(25% - 30px);
  margin: 0 15px 30px;
}
.m-productlist.slick-initialized .slick-list {
  margin: 0 -15px;
}
.m-productlist.slick-initialized .slick-slide {
  margin: 0 15px;
}
/* </editor-fold> */

/* FILTER */
/* <editor-fold> */
.filter {
  width: 320px;
  margin-right: 30px;
  flex: none;
  position: relative;
}
.filter .filter-content {
  width: inherit;
  overflow-x: hidden;
  overflow-y: auto;
}
.filter.filterPadding .scroll-content {
  padding-right: 20px;
}
.filter .filter-content > .button {
  width: 100%;
}
.filter .filter-group {
  margin-top: 20px;
}
.filter .filter-group:first-child {
  margin-top: 0;
}
.filter .filter-label {
  font-size: 15px;
  font-family: 'Neuton', serif;
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  width: 100%;
  flex: none;
}
.filter .filter-button {
  width: 100%;
  font-weight: normal;
  margin-bottom: 10px;
  display: flex;
}
.filter .filter-group:not(.filter-group-news-sale) .filter-button {
  display: none;
}
.filter .filter-button > span {
  margin-right: auto;
}
.filter .filter-button > span.is-disabled {
  opacity: .4;
}
.filter .filter-group-content > .filter-button:nth-child(-n+8) {
  display: flex;
}
.filter input:checked + .filter-group-content > .filter-button {
  display: flex;
}
.filter .filter-toggle {
  text-decoration: underline;
  font-size: 12px;
  font-weight: normal;
  display: block;
  color: #888;
  cursor: pointer;
  margin-top: 15px;
}
.filter .filter-toggle::before {
  content: attr(data-showtext);
}
.filter input:checked + .filter-group-content + .filter-toggle::before {
  content: attr(data-hidetext);
}
.filter .filter-results {
  display: none;
}
/* </editor-fold> */

/* SORTBAR */
/* <editor-fold> */
.sortbar {
  display: flex;
  justify-content: center;
}
.sortbar .sortbar-body {
  min-width: 200px;
  height: 50px;
  display: flex;
  border: solid 1px rgba(0, 0, 0, .15);
  border-radius: 99px;
  margin: 30px 0;
  padding: 0 20px;
  align-items: center;
  background-color: #fff;
}
.sortbar .sortbar-body > .sortbar-filter {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  display: none;
}
.sortbar .sortbar-body > .sortbar-filter[data-count]::after {
  content: attr(data-count);
  position: absolute;
  top: -20px;
  left: -20px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #c7a45a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  text-align: center;
}
.sortbar .sortbar-body > .sortbar-filter > svg {
  height: 14px;
  margin-right: 4px;
  stroke-width: 2px;
}
.sortbar .sortbar-body > .form-input {
  border: none;
  padding: 0 25px 0 0;
  background-position: top 50% right 0px;
  font-size: 14px;
  height: auto;
  width: 100%;
}
/* </editor-fold> */

/* PRODUCT BRANDS */
/* <editor-fold> */
.m-brands {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
}
.m-brands .m-brands-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,.15);
  color: #000;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .2em;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}
.m-brands .m-brands-link img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
/* </editor-fold> */

/* PRODUCT ENTITY */
/* <editor-fold> */
.m-product .m-product-splash {
  display: flex;
  margin: 0 -5px;
}
.m-product .m-product-splash > .badge {
  margin: 0 5px 10px;
}
.m-product .m-product-sale {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: #fff763;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1em;
  left: 1em;
  font-size: 16px;
  z-index: 99;
}
.m-product .m-product-image .thumbelina {
  position: static;
  margin-top: 20px;
}
.m-product .m-product-image .thumbelina .owl-wrapper {
  display: grid !important;
  grid-gap: 20px;
  grid-template-columns: repeat(10, 1fr);
}
.m-product .m-product-image .thumbelina .owl-item .item img {
  width: 100%;
}
.m-product .m-product-information {
  margin: 30px 0 0 30px;
}
.m-product .m-product-brand {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .6;
}
.m-product .m-product-brand .placeholder {
  padding-top: 50% !important;
}
.m-product .m-product-title {
  width: 100%;
  max-width: 600px;
  text-align: left;
  padding-top: 0;
  margin: 0 0 5px !important;
  font-size: 24px !important;
}
.m-product .m-product-title::after {
  left: 0;
  transform: translate(0);
}
.m-product .m-product-price-from {
  display: block;
}
.m-product .m-product-stock {
  margin: 10px 0 20px 0;
}
.m-product .m-product-stock.instock {
  color: #00b67a;
}
.m-product .m-product-stock.soldout {
  color: #b6a400;
}
.m-product .m-product-stockamount {
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
}
.m-product .m-description-short-wrap {
  margin-bottom: 10px;
}
.m-product .m-product-variants .m-product-dropdown-list {
  max-width: 320px;
  margin-bottom: 20px;
}
.m-product .m-product-transaction {
  display: flex;
}
.m-product .m-product-transaction .m-transaction-input {
  width: 40px;
  text-align: center;
  height: 40px;
  user-select: none;
}
.m-product .m-product-transaction .m-product-transaction-amount {
  display: flex;
}
.m-product .m-product-transaction .m-product-transaction-amount .m-product-transaction-amount-change {
  display: flex;
  flex-direction: column;
}
.m-product .m-product-transaction .m-product-transaction-amount .m-product-transaction-amount-change span {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,.15);
  cursor: pointer;
}
.m-product .m-product-transaction .m-product-transaction-amount .m-product-transaction-amount-change span:first-child {
  border-top: 1px solid rgba(0,0,0,.15);
}
.m-product .m-product-transaction .m-product-transaction-amount .m-product-transaction-amount-change span svg {
  width: 12px;
}
.m-product .m-product-transaction .button-primary {
  height: 40px;
  padding: 0 1.5em;
}
.m-product .m-product-transaction .m-product-wishlist {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-product .m-product-transaction .m-product-wishlist button {
  padding: 0;
}
.m-product .m-product-splash {
  left: auto;
  right: 1em;
}
.m-product .m-product-additional-info .pane {
  margin-top: 20px;
  border-top: 1px solid #eee;
}
.m-product .m-product-additional-info.customdata {
  padding: 0;
  border: none !important;
}
.m-product .m-product-additional-info-tabs {
  display: none;
}
/* </editor-fold> */

/* TEXT */
/* <editor-fold> */
body.frontpage .m-text {
  margin: 60px 0;
}
/* </editor-fold> */

/* CART */
/* <editor-fold> */
.m-cart .m-cart-lines {
  margin: 0 0 20px;
  padding: 0;
}
.m-cart .m-cart-lines > li,
.m-cart .m-cart-content-heading {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.m-cart .m-cart-lines > li > div,
.m-cart .m-cart-content-heading > span {
  flex: none;
  display: block;
}
.m-cart .m-cart-lines > li > div:nth-child(1),
.m-cart .m-cart-content-heading > span:nth-child(1) {
  width: 55%;
}
.m-cart .m-cart-lines > li > div:nth-child(2),
.m-cart .m-cart-lines > li > div:nth-child(3),
.m-cart .m-cart-lines > li > div:nth-child(4),
.m-cart .m-cart-content-heading > span:nth-child(2),
.m-cart .m-cart-content-heading > span:nth-child(3),
.m-cart .m-cart-content-heading > span:nth-child(4) {
  width: 15%;
  text-align: right;
}
.m-cart .m-cart-lines .m-cart-product-info {
  display: flex;
  position: relative;
}
.m-cart .m-cart-lines .m-cart-product-info .m-cart-delete {
  width: 24px;
  height: 24px;
  border-radius: 15px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}
.m-cart .m-cart-lines .m-cart-product-info .m-cart-delete > svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 4px;
}
.m-cart .m-cart-lines .m-cart-product-info figure {
  width: 120px;
  margin-right: 20px;
}
.m-cart .m-cart-lines .m-cart-product-info .m-cart-totalprice {
  display: none;
}
.m-cart .m-cart-amount-edit {
  display: inline-flex;
}
.m-cart .m-cart-amount-edit > .form-input {
  width: 30px;
  height: 30px;
  padding: 0;
  text-align: center;
}
.m-cart .m-cart-amount-edit > a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.15);
}
.m-cart .m-cart-amount-edit > a:first-child {
  border-right: none;
}
.m-cart .m-cart-amount-edit > a:last-child {
  border-left: none;
}
.m-cart .m-cart-amount-edit > a svg {
  width: 12px;
  height: 12px;
}
.m-cart .m-cart-content .placeholder-wrapper .placeholder {
  padding-top: 133.333%;
}
.m-cart .m-cart-content .m-cart-product-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .1em;
}
.m-cart .m-cart-content .m-cart-variant-title {
  display: block;
  font-weight: normal;
  font-size: 12px;
}
.m-cart .m-cart-delivery-info-container .table > tbody > tr > td,
.m-cart .m-cart-delivery-info-container .table > tfoot > tr > td {
  padding-left: 0;
  padding-right: 0;
}
.m-cart .m-cart-delivery-info-container .m-cart-total-line > td {
  border-top-color: rgba(0,0,0,.3) !important;
}
.m-cart .m-cart-delivery-info-container .m-cart-sub-total-line > td {
  border: none;
}
.m-cart [action="/actions/cart/couponAdd"] {
  max-width: 320px;
}
.m-cart .m-cart-coupon-row .button-primary,
.m-cart .m-cart-coupon-row [href="/shop/"] {
  width: 100%;
}
/* </editor-fold> */

/* CHECKOUT */
/* <editor-fold> */
body.pageTypecheckout header.site-header {
    justify-content: center;
}
body.pageTypecheckout .topbar-container > .topbar-center,
body.pageTypecheckout .topbar-container > .topbar-right,
body.pageTypecheckout .w-productmenu,
body.pageTypecheckout .w-usp,
body.pageTypecheckout .highlight,
body.pageTypecheckout .m-breadcrumb {
    display: none;
}
body.pageTypecheckout .topbar-container > .topbar-left {
  width: 100%;
  flex: none;
  justify-content: center;
}
body.pageTypecheckout .nav-breadcrumbs {
  display: flex;
  justify-content: center;
}
body.pageTypecheckout .nav-breadcrumbs > li {
  float: none;
}
body.pageTypecheckout .panel-border {
  background: #fff;
  border: none;
}
.checkout-title {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
.checkoutForm {
    display: flex;
    flex-direction: column;
}
.checkoutFrame .stepColumn {
    width: 800px;
    max-width: 100%;
    margin: 0 auto 40px;
    float: none;
    border: none;
    min-height: 10px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(0,0,0,.1);
    position: relative;
}
.checkoutFrame .stepLogin {
    margin: 0 auto;
    box-shadow: none;
    padding: 0;
    z-index: 99;
}
.checkoutFrame .stepLogin form {
    width: 100%;
    background-color: #fff;
}
.checkoutFrame .stepColumn::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid rgba(255,255,255,1.00);
    position: absolute;
    top: 100%;
    left: 30px;
    z-index: 20;
}
.checkoutFrame .stepLogin::after {
    display: none;
}
.checkoutFrame .stepColumn:last-child::after {
    display: none;
}
.checkoutFrame .stepColumn .title {
    margin-bottom: 20px;
}
.checkoutFrame .stepColumn .panel {
    border: none;
}
.checkoutFrame .stepColumn .panel-body {
    padding: 0 !important;
}
.checkoutFrame .stepColumn .contactInfoContainer,
.checkoutFrame .stepColumn .deliveryContactInfo {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1% -2%;
    padding-bottom: 15px;
}
.checkoutFrame .stepColumn .contactInfoContainer > *,
.checkoutFrame .stepColumn .deliveryContactInfo > * {
    width: 48%;
    margin: 0 1% 2%;
}
.checkoutFrame .stepColumn .contactInfoContainer > .country {
  display: none;
}
.checkoutFrame .stepColumn .contactInfoContainer > .customer-type-dynamic-fields,
.checkoutFrame .stepColumn .contactInfoContainer > .m-checkout-customer-type {
  width: 98%;
}
.checkoutFrame .stepColumn .contactInfoContainer .m-checkout-coupon .input-group > input {
  flex: auto;
}
.checkoutFrame .stepColumn .contactInfoContainer .m-checkout-coupon .input-group > span {
  width: auto;
  flex: none;
}
.checkoutFrame .stepColumn .contactInfoContainer hr {
  display: none;
}
.checkoutFrame .customer-type-static-fields {
  display: none;
}
.checkoutFrame .stepColumn .input-group {
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: stretch;
}
.checkoutFrame .stepColumn .input-group > * {
    border: none;
}
.checkoutFrame .stepColumn .input-group > .input-group-addon {
    border-right: 1px solid #dfdfdf;
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 40px;
    padding: 0;
    height: inherit;
}
.checkoutFrame .stepColumn .input-group > .input-group-main {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
}
.checkoutFrame .stepColumn .m-checkout-delivery .input-group > .input-group-main > span {
    width: 50% !important;
}
.checkoutFrame .stepColumn .m-checkout-delivery .input-group > .input-group-main > span:nth-child(2) {
    text-align: right;
}
.checkoutFrame .stepColumn .m-checkout-delivery .input-group > .input-group-main > span:last-child {
    width: 100% !important;
    font-weight: normal;
    margin-top: 5px;
}
.checkoutFrame .stepColumn .input-group > .input-group-main > .tooltip {
    margin-left: 5px;
}
.checkoutFrame .stepColumn .deliveryMethodGroupProductsHeader {
    margin-bottom: 15px;
}
.checkoutFrame .stepColumn .stepNumber {
    display: none;
}
.checkoutFrame .stepColumn .orderSummary td {
    border-color: #dfdfdf;
    padding: 5px 0;
}
.checkoutFrame .stepColumn .termsAndConditionsContainer {
    margin: 15px 0;
}
.checkoutFrame .stepColumn .buttonContainer > *:not(:last-child) {
    display: none;
}
.checkoutFrame .stepColumn .buttonContainer > button[type="submit"] {
    min-height: 45px;
    width: 100%;
}
.checkoutFrame .stepColumn textarea.form-input {
    border-color: #dfdfdf;
    min-height: 90px !important;
}
.checkoutFrame .stepColumn.column1 ::-webkit-input-placeholder {
    color: #fff;
}
.checkoutFrame .stepColumn.column1 :-moz-placeholder {
   color: #fff;
   opacity: 1;
}
.checkoutFrame .stepColumn.column1 ::-moz-placeholder {
   color: #fff;
   opacity: 1;
}
.checkoutFrame .stepColumn.column1 :-ms-input-placeholder {
   color: #fff;
}
.checkoutFrame .stepColumn .glsTitle .panel-body {
    padding: 0;
}
.checkoutFrame .stepColumn .DroppointAddressContainer .panel-heading {
    padding: 10px 0;
    border-color: #dfdfdf;
}
.checkoutFrame .stepColumn .targetContainer > ul {
    padding: 0 !important;
}
.checkoutFrame .stepColumn #orderLines {
    font-size: 12px;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div {
    display: flex;
    align-items: center;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div {
    margin-right: 10px;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div:last-child {
    margin-right: 0;
    flex: auto;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div:first-child > strong {
    text-transform: lowercase;
    font-size: 12px;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div img {
    margin: 0 !important;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div:last-child > div {
    display: flex;
}
.checkoutFrame .stepColumn #orderLines .orderLineTitle > div > div:last-child > div > div:last-child {
    margin-left: auto;
}
.checkoutFrame .stepColumn .stepHeaderLogin {
    position: absolute;
    top: 30px;
    right: 30px;
}
.checkoutFrame .stepColumn label[for="acceptTerms"] > a {
    margin-left: 6px;
}
#overlayterms {
    padding: 15px !important;
}
.step-coupon {
    display: flex;
}
.step-coupon .button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-size: 12px;
    flex: none;
    width: auto;
}
.step-coupon input {
    width: 100%;
    flex: auto;
    border-top-left-radius: 99px;
    border-bottom-left-radius: 99px;
    padding-left: 20px;
}
/* </editor-fold> */

/* CONTACT */
/* <editor-fold> */
.m-contact-top {
  padding: 80px 0;
  position: relative;
}
.m-contact-top > .m-contact-map {
  content: '';
  width: 100vw;
  height: 100%;
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.m-contact-top > .m-contact-map > iframe {
  width: 200vw;
  height: 100%;
  transform: translateX(-15%);
}
.m-contact-top > .m-contact-form {
  width: 50%;
  padding: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: relative;
  z-index: 99;
  background-color: #fff;
}
.m-contact-top > .m-contact-form .form-group {
  margin-bottom: 1.5em;
}
.m-contact-top > .m-contact-form textarea.form-input {
  background: transparent !important;
  padding: .8em 1em;
  resize: none;
}
.m-contact-top > .m-contact-form .form-input:not(textarea) {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding: .8em 0;
  height: auto;
  background: transparent !important;
}
.m-contact-options {
  display: grid;
  grid-template-columns: repeat(3, 33.333%);
  margin: 30px 0;
}
.m-contact-option {
  text-align: center;
  padding: 15px 30px;
  border-right: 1px solid rgba(0,0,0,.15);
}
.m-contact-option:last-child {
  border: none;
}
.m-contact-option > b {
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.m-contact-option .m-contact-option-heading {
  font-size: 24px;
}
/* </editor-fold> */

/* FAQ */
/* <editor-fold> */
table.faq {
  width: 100%;
  margin-bottom: 20px;
}
table.faq tr:first-child td {
  background-color: #f4f4f4;
  color: #000;
  padding: 10px 52px 10px 15px;
  cursor: pointer;
  position: relative;
  line-height: 1.6;
}
table.faq tr:first-child td::after {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .3;
  margin-top: 3px;
  transition: margin ease .2s, transform ease .2s;
}
table.faq.open tr:first-child td::after {
  transform: rotate(180deg);
  margin-top: -3px;
}
table.faq tr:last-child td {
  display: none;
  background-color: #fff;
  box-shadow: rgba(50, 50, 93, 0.05) 0px 30px 60px -12px, rgba(0, 0, 0, 0.15) 0px 18px 36px -18px;
  padding: 15px;
  line-height: 1.6;
}
/* </editor-fold> */

/*****| WIDGETS |*****/

/* HIGHLIGHT */
/* <editor-fold> */
.highlight {
  background-color: #000;
  color: #fff;
  padding: 15px;
  position: relative;
  display: none;
}
.highlight.active {
  display: block;
}
.highlight a {
  color: inherit;
  text-decoration: none;
}
.highlight > .highlight-close {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}
.highlight > .highlight-close > svg {
  height: 20px;
}
/* </editor-fold> */

/* USP */
/* <editor-fold> */
.w-usp {
  padding: 15px 0;
}
.w-usp ul {
  margin: 0;
  max-height: 40px;
}
.w-usp ul:not(.slick-initialized) {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
}
.w-usp ul li {
  text-align: center;
  margin: 12px 0;
  font-size: 14px;
  border-right: 1px solid rgba(0,0,0,.1);
}
.w-usp ul li:first-child {
  border-left: 1px solid rgba(0,0,0,.1);
}
.w-usp ul li img {
  height: 20px !important;
  margin: 0 6px 0 0;
  vertical-align: middle;
  display: inline-block;
}
.w-usp ul li a {
  transition: color ease .2s;
}
.w-usp ul li a:hover {
  color: #00b67a;
}
.w-usp + .footer {
  margin-top: 0;
}
body:not(.frontpage) .usp-footer {
  margin-top: 60px;
}
/* </editor-fold> */

/* LOGO */
/* <editor-fold> */
.w-logo .h1 {
  margin-bottom: 0;
  font-size: 20px;
}
.w-logo img {
  height: 50px !important;
}
/* </editor-fold> */

/* SEARCH */
/* <editor-fold> */
.w-search {
  width: 100%;
  background-color: #f2f2f2;
  max-width: 600px;
  height: 50px;
  max-width: 100%;
  border-radius: 99px;
  overflow: hidden;
}
.w-search .w-search-form {
  display: flex;
  height: 100%;
}
.w-search .form-input {
  border: none;
  background: transparent;
  padding: 0 25px;
  height: 100%;
  font-size: 1em;
}
.w-search .button {
  background: transparent !important;
  height: 100%;
  padding-right: 15px;
  flex: none;
  width: 50px;
}
.w-search .button svg {
  height: 20px;
}
/* </editor-fold> */

/* CART */
/* <editor-fold> */
.w-cart .w-cart-product {
  position: relative;
}
.w-cart .w-cart-product .w-cart-delete {
  position: absolute;
  top: 0;
  left: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 50%;
  z-index: 99;
}
.w-cart .w-cart-product .w-cart-delete > svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 4px;
}
.w-cart .topbar-iconlink > svg {
  stroke: #00b67a;
}
.w-cart .topbar-iconlink > small {
  color: #00b67a;
}
.w-cart .w-cart-goto-cart .button {
  background-color: #00b67a;
  color: #fff;
}
.w-cart .dropdown .dropdown-menu {
  min-width: 320px;
}
.w-cart .dropdown .dropdown-menu {
  padding: 0;
}
.w-cart .dropdown-container {
  padding: 0;
}
.w-cart .dropdown-menu ul {
  padding: 10px 0;
}
.w-cart .dropdown-container li.media {
  padding: 10px 20px;
  margin: 0;
}
.w-cart .dropdown-body {
  padding: 15px 20px;
}
.w-cart .dropdown-body .quick-cart-expanded-total > div {
  padding-top: 5px;
  padding-bottom: 5px;
}
.w-cart .dropdown-footer {
  padding: 20px;
}
/* </editor-fold> */

/* PRODUCTMENU */
/* <editor-fold> */
.w-productmenu {
  border-top: 1px solid rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.w-productmenu .w-productmenu-ul {
  margin: 0;
  text-align: center;
  justify-content: center;
  display: flex;
  position: relative;
}
.w-productmenu .w-productmenu-ul > li {
  text-align: left;
}
.w-productmenu .w-productmenu-ul > li > a {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.w-productmenu .w-productmenu-ul > li .marker {
  height: 16px;
  padding: 0;
}
.w-productmenu .w-productmenu-ul > li .marker > svg {
  height: 100%;
}
.w-productmenu .w-productmenu-ul a {
  outline: none;
}
/* DROPDOWN */
.w-productmenu .w-productmenu-ul li.dropdown {
  position: relative;
}
.w-productmenu .w-productmenu-ul > li.dropdown li.dropdown > .dropdown-menu {
  top: 0;
  left: 0;
  transform: translate(100%, 0);
  position: absolute;
}
/* </editor-fold> */

/* SLIDER */
/* <editor-fold> */
.hero-slider-theme, .product-slider-theme {
  margin-top: 0;
}
.hero-slider-theme {
  position: relative;
}
.hero-slider-theme .owl-controls .owl-page span,
.product-slider-theme .owl-controls .owl-page span {
  width: 8px;
  height: 8px;
  margin: 5px;
  transition: width ease .2s, background ease .2s;
}
.hero-slider-theme .owl-controls .owl-page.active span,
.product-slider-theme .owl-controls .owl-page.active span {
  width: 20px;
}
/* Pagination dots pinned to the bottom-right of the hero slider */
.hero-slider-theme .owl-controls .owl-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 20px;
  text-align: right;
  z-index: 98;
}
.hero-slider-theme .owl-controls .owl-page span {
  display: block;
  background-color: #fff;
  border-radius: 4px;
  opacity: .5;
  box-shadow: 0 0 4px rgba(0,0,0,.35);
}
.hero-slider-theme .owl-controls .owl-page.active span {
  opacity: 1;
}
/* Video slide */
.hero-slider-theme .w-slider-video {
  width: 100%;
  height: auto;
  display: block;
}
.hero-slider-theme .owl-controls .owl-buttons .owl-prev,
.product-slider-theme .owl-controls .owl-buttons .owl-prev,
.hero-slider-theme .owl-controls .owl-buttons .owl-next,
.product-slider-theme .owl-controls .owl-buttons .owl-next {
  opacity: .4;
  transition: opacity ease .2s;
}
.hero-slider-theme .owl-controls .owl-buttons .owl-prev:before,
.product-slider-theme .owl-controls .owl-buttons .owl-prev:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="rgb(255,255,255)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-left"><polyline points="15 18 9 12 15 6"></polyline></svg>');
}
.hero-slider-theme .owl-controls .owl-buttons .owl-next:before,
.product-slider-theme .owl-controls .owl-buttons .owl-next:before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="rgb(255,255,255)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg>');
}
.hero-slider-theme .item-caption {
  text-align: left;
  width: auto;
  bottom: 50%;
  left: 6%;
  right: auto;
  transform: translateY(50%);
  background: transparent;
  padding: 0;
  /* padding: 30px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: rgba(255, 255, 255, 0.05) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.15) 0px 50px 100px -20px, rgba(0, 0, 0, 0.2) 0px 30px 60px -30px; */
}
.hero-slider-theme .item-title p,
.hero-slider-theme .item-title span,
.hero-slider-theme .item-text p,
.hero-slider-theme .item-text span {
    color: #fff;
}
.hero-slider-theme .item-title {
  margin-bottom: 5px;
}
.hero-slider-theme .item-text p {
  font-size: 16px;
  font-weight: normal;
  opacity: .6;
}
.hero-slider-theme .item-link {
  margin-top: 30px;
}
/* </editor-fold> */

/* BRANDS */
/* <editor-fold> */
.w-brands {
  position: relative;
  margin-top: 30px;
}
.w-brands::before,
.w-brands::after {
  content: '';
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,.9), rgba(255,255,255,0));
}
.w-brands .w-brand-items:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+9) {
  display: none;
}
.w-brands .w-brand-items a {
  display: block;
  outline: none;
  padding: 0 15px;
  /* opacity: .5; */
  transition: opacity ease .2s;
}
/* .w-brands .w-brand-items a:hover {
  opacity: 1;
} */
.w-brands .w-brand-items img {
  max-width: 100%;
  height: auto;
  margin: 0;
  pointer-events: none;
}
.w-brands .w-brand-items strong {
  padding: 15px 0;
  text-align: center;
  display: block;
}
.w-brands + .footer {
  margin-top: 0;
}
/* .w-brands .slick-slider .slick-arrow {
  transform: translateY(-150%);
} */
/* </editor-fold> */

/* FEATURED */
/* <editor-fold> */
.w-featured {
  margin: 30px 0;
}
.w-featured .w-featured-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-gap: 30px;
}
.w-featured .w-featured-item:nth-child(1) {
  grid-area: 1 / 1 / 5 / 3;
}
.w-featured .w-featured-item:nth-child(2) {
  grid-area: 1 / 3 / 3 / 4;
}
.w-featured .w-featured-item:nth-child(3) {
  grid-area: 1 / 4 / 3 / 5;
}
.w-featured .w-featured-item:nth-child(4) {
  grid-area: 3 / 3 / 5 / 4;
}
.w-featured .w-featured-item:nth-child(5) {
  grid-area: 3 / 4 / 5 / 5;
}
.w-featured .w-featured-item {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.w-featured .w-featured-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.w-featured .w-featured-link img {
  margin: 0;
}
.w-featured .w-featured-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
}
.w-featured .w-featured-item:nth-child(1) .w-featured-caption {
  padding: 60px;
}
.w-featured .w-featured-title {
  margin: 0;
  color: inherit !important;
}
.w-featured .w-featured-desc {
  margin: 5px 0 0;
  color: inherit;
  text-align: left;
}
/* VIDEO */
.w-featured .w-featured-item .video-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* </editor-fold> */

/* MOBILE MENU */
/* <editor-fold> */
.w-mobilemenu {
  display: none;
}
/* </editor-fold> */

/* NOTIFICATIONS */
/* <editor-fold> */
.w-notification {
  margin-top: 20px;
}
/* </editor-fold> */

/* NEWSLETTER */
/* <editor-fold> */
.m-text-content [action="/actions/newsletter/regmail"] {
  max-width: 600px;
  padding: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.m-newsletter-newsletter {
  display: none;
}
[action="/actions/newsletter/regmail"] .form-submit {
  min-width: 100%;
  margin-top: 10px;
}
/* </editor-fold> */

/* POPUP */
/* <editor-fold> */
.w-popup {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.6);
  transition: opacity ease .5s;
}
.w-popup.active {
  opacity: 1;
  pointer-events: auto;
}
.w-popup .w-popup-content {
  width: 90%;
  max-width: 600px;
  padding: 30px;
  background-color: #fff;
  position: relative;
}
.w-popup .w-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(40%, -40%);
}
.w-popup .w-popup-close > svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  pointer-events: none;
}
.w-popup .w-popup-content > strong {
  display: block;
  margin: 0 0 15px;
}
.w-popup .w-popup-content .w-newsletter-signup {
  margin-top: 20px;
}
/* </editor-fold> */

/*****| LIBRARIES |*****/

/* HEADINGS */
/* <editor-fold> */
.h1, .h2, .h3,
h1, h2, h3 {
  font-weight: bold;
  font-family: 'Neuton', serif;
}
.h4, .h5, .h6,
h4, h5, h6 {
  font-weight: normal;
}
/* </editor-fold> */

/* CONTAINER */
/* <editor-fold> */
.container {
  width: 100%;
  max-width: 1600px;
  padding: 0 20px;
}
/* </editor-fold> */

/* LISTS */
/* <editor-fold> */
.list-inline > li {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
}
/* </editor-fold> */

/* DROPDOWN */
/* <editor-fold> */
.dropdown-container {
  border: none;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 30px 60px -12px, rgba(0, 0, 0, 0.15) 0px 18px 36px -18px;
}
.dropdown-menu ul {
  padding: 7px 0;
}
.dropdown-menu ul li {
  padding: 0;
}
.dropdown-menu li > a,
.dropdown-menu li > b {
  padding: 8px 15px;
  display: block;
}
.dropdown-menu li > a {
  opacity: .7;
  transition: opacity ease .2s;
}
.dropdown-menu li > a:hover {
  opacity: 1;
}
/* </editor-fold> */

/* FORM INPUTS */
/* <editor-fold> */
select.form-input {
  padding-right: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: top 50% right 5px;
}
/* </editor-fold> */

/* BUTTONS */
/* <editor-fold> */
.button,
.button-primary,
.button-text,
.button-border {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: .2em;
  border: none;
  user-select: none;
  transition: background ease .2s;
}
.button-border {
  padding: .75em 1em;
  background: transparent;
  border: 1px solid #ccc;
}
.input-group-button>.button,
.input-group-button>.button-primary,
.input-group-button>.button-text,
.button,
.button-group>li>a,
.button-primary,
.button-text,
.pager-group>.button,
.pager-group>.button-primary,
.pager-group>.button-text {
  padding: .75em 1em;
}
.large .input-group-button>.button,
.large .input-group-button>.button-primary,
.large .input-group-button>.button-text,
.large.button,
.large.button-group>li>a,
.large.button-primary,
.large.button-text,
.large.pager-group>.button,
.large.pager-group>.button-primary,
.large.pager-group>.button-text {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.button-text:hover {
  text-decoration: none;
}
.button-newsletter {
  width: 100%;
}
/* </editor-fold> */

/* BADGES */
/* <editor-fold> */
.badge {
  padding: 0 6px 0 8px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.badge.badge-succes,
.badge.badge-warning {
  border: none;
  color: #fff;
}
.badge.badge-succes {
  background-color: #000;
}
.badge.badge-warning {
  background-color: #000;
}
/* </editor-fold> */

/* FEATHER */
/* <editor-fold> */
svg.feather {
  stroke-width: 1.5px;
}
/* </editor-fold> */

/* PANELS */
/* <editor-fold> */
.panel-warning,
.panel-danger,
.panel-success {
  background: transparent;
  border-color: rgba(0,0,0,.15);
  color: #aaa;
}
/* </editor-fold> */

/* SLICK */
/* <editor-fold> */
.slick-slider .slick-track {
  display: flex;
  align-items: center;
}
.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .2;
  cursor: pointer;
  transition: opacity ease .2s;
}
.slick-slider .slick-arrow > svg {
  height: 24px;
  width: auto;
  stroke: #000;
}
.slick-slider:hover .slick-arrow {
  opacity: 1;
}
.slick-slider .slick-prev {
  left: -30px;
}
.slick-slider .slick-next {
  right: -30px;
}
/* </editor-fold> */

/* FANCYBOX */
/* <editor-fold> */
.fancybox-inner .container {
  width: 500px;
  padding: 0;
}
.fancybox-inner #overlayprivacyPolicy {
  padding: 20px;
}
/* </editor-fold> */

/* NAV TABS */
/* <editor-fold> */
.nav-tabs li.active > a {
  padding-left: .75em;
  padding-right: .75em;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: bold;
  background-color: #fff;
}
.t-panel-clean > .pane {
  background-color: #fff;
}
.t-panel-clean > .pane p:last-of-type {
  margin-bottom: 0;
}
/* </editor-fold> */

/* TOUCH */
/* <editor-fold> */
html.touch .form-input,
html.touch .form-input.input-group-main {
  font-size: 13px;
}
/* </editor-fold> */

/* GRID */
/* <editor-fold> */
.ck-content .grid[data-columns].grid-custom {
  display: flex;
  margin: 0;
  gap: 0;
}
.ck-content .grid[data-columns].grid-custom .grid {
  margin: 0;
}
.ck-content .grid[data-columns].grid-custom > .grid-cell {
  width: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-content .grid[data-columns].grid-custom > .grid-cell-image img {
  max-width: none !important;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ck-content .grid[data-columns].grid-custom > .grid-cell:first-child .grid-cell-text {
  padding: 10% 10% 10% 0;
}
.ck-content .grid[data-columns].grid-custom > .grid-cell:last-child .grid-cell-text {
  padding: 10% 0 10% 10%;
}
/* </editor-fold> */

/* TABLES */
/* <editor-fold> */
body.pageTypetext table:not(.faq) {
  border-color: rgba(0,0,0,.15);
}
body.pageTypetext table:not(.faq) td,
body.pageTypetext table:not(.faq) th {
  padding: 10px;
}
body.pageTypetext table:not(.faq) th {
  background-color: #c7a45a;
  color: #fff;
}
/* </editor-fold> */

/* PAGINATION */
/* <editor-fold> */
.pagination {
  margin-top: 30px;
}
.pagination > li a {
  background: transparent;
}
.pagination > li.current a {
  background-color: #00b67a;
  color: #fff;
}
/* </editor-fold> */

/* COOKIES */
/* <editor-fold> */
.w-cookie-actions [name="accept"] {
  background-color: #666;
}
/* </editor-fold> */

/*****| OTHER |*****/

/* SIMPLE POPUP */
/* <editor-fold> */
.simplePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.simplePopup > .simplePopupContent {
  width: 400px;
  max-width: 90%;
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.simplePopup > .simplePopupContent p {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.simplePopup > .simplePopupContent .simplePopupClose {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.simplePopup > .simplePopupContent .simplePopupClose svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
/* </editor-fold> */


/* CAROUSEL WIDGET */
.w-carousel {
  margin-top: 30px;
}
.w-carousel .w-carousel-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.w-carousel .w-carousel-item > img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.w-carousel .slick-list {
  margin: 0 -15px;
}
.w-carousel .slick-slide {
  margin: 0 15px;
}


@media (min-width: 959px) {

  /*****| LIBRARIES |*****/

  /* DROPDOWN */
  /* <editor-fold> */
  .dropdown .dropdown-menu {
    display: block;
    pointer-events: none;
    top: 110%;
    transition: top ease .2s, opacity ease .2s;
  }
  .dropdown:hover>.dropdown-menu {
    pointer-events: auto;
    top: 90%;
  }
  /* </editor-fold> */

}

@media (min-width: 769px) {

  /*****| MODULES |*****/

  /* FILTER */
  /* <editor-fold> */
  .filter.absolute .filter-content,
  .filter.fixed .filter-content {
    overflow-y: auto;
  }
  .filter.fixed .filter-content {
    position: fixed;
    top: 0;
    height: 100%;
    padding: 30px 0;
  }
  .filter.absolute .filter-content {
    position: absolute;
    bottom: 0;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* PRODUCTMENU */
  /* <editor-fold> */
  /* MEGAMENU */
  .w-productmenu .w-productmenu-ul > li.megamenu {
    position: static;
  }
  .w-productmenu .w-productmenu-ul > li.megamenu > .dropdown-menu {
    width: 100%;
    max-width: 1600px;
  }
  .w-productmenu .w-productmenu-ul > li.megamenu > .dropdown-menu > .dropdown-container > ul {
    column-count: 6;
    padding: 22px 8px;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container {
    display: flex;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container > ul {
    width: 100%;
    flex: auto;
    min-width: 200px;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container.has-brands > ul {
    min-width: 250px;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container.has-brands {
    padding: 15px 0;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container.has-brands > ul li > b {
    font-size: 16px;
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container.has-brands > ul.brands {
    border-left: 1px solid rgba(0,0,0,.15);
  }
  .w-productmenu .w-productmenu-ul > li > .dropdown-menu > .dropdown-container.has-brands > ul {
    padding: 0 10px;
  }
  /* </editor-fold> */

}

@media (max-width: 1630px) {

  /*****| LIBRARIES |*****/

  /* SLICK */
  /* <editor-fold> */
  .slick-slider .slick-arrow {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: #fff;
    z-index: 98;
    opacity: 1;
    box-shadow: rgb(149 157 165 / 15%) 0px 8px 24px;
  }
  .slick-slider .slick-next {
    right: -20px;
  }
  .slick-slider .slick-prev {
    left: -20px;
  }
  /* </editor-fold> */

}

@media (max-width: 1280px) {

  /*****| PARTIALS |*****/

  /* FOOTER */
  /* <editor-fold> */
  .footer .footer-row {
    grid-template-columns: repeat(3, 1fr)
  }
  .footer .footer-row .footer-col:last-child {
    grid-area: 2 / 2 / 3 / 4;
  }
  /* </editor-fold> */

  /*****| MODULES |*****/

  /* PRODUCT LIST */
  /* <editor-fold> */
  .productItem .image .m-productlist-sale {
    top: .5em;
    left: .5em;
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .productItem .image .m-productlist-splash {
    right: .5em;
    top: .5em;
    flex-direction: column;
  }
  .productItem .image .m-productlist-splash > .badge {
    height: 16px;
    font-size: 9px;
    padding: 0 3px;
    margin: 0 5px 5px;
    align-self: flex-end;
  }
  .productItem .type-col .m-productlist-brand {
    font-size: 9px;
  }
  .productItem .type-col .m-productlist-title {
    font-size: 10px;
  }
  .productItem .m-productlist-stock {
    font-size: 10px;
  }
  .productItem .m-productlist-price {
    font-size: 12px;
  }
  .productItem .m-productlist-price-before-discount {
    font-size: 10px;
  }
  .productItem .m-productlist-wishlist svg {
    width: 16px;
    height: 16px;
  }
  /* SLICK */
  .m-productlist:not(.slick-initialized) > .productItem {
    width: calc(33.333% - 30px);
  }
  /* </editor-fold> */

  /* PRODUCT BRANDS */
  /* <editor-fold> */
  .m-brands {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
  /* </editor-fold> */

  /* CATEGORIES */
  /* <editor-fold> */
  .categorylist {
    grid-gap: 20px;
    margin: 20px 0;
  }
  .categorylist .category-item a {
    padding: 10px;
  }
  .categorylist .category-item h4 {
    font-size: 12px;
  }
  /* </editor-fold> */

  /* CONTACT */
  /* <editor-fold> */
  .m-contact-top {
    padding: 30px 0;
  }
  .m-contact-top > .m-contact-form {
    padding: 20px;
  }
  .m-contact-option {
    padding: 15px 20px;
  }
  .m-contact-option .m-contact-option-heading {
    font-size: 20px;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* FEATURED */
  /* <editor-fold> */
  .w-featured {
    margin: 20px 0;
  }
  .w-featured .w-featured-items {
    grid-gap: 20px;
  }
  /* </editor-fold> */

  /* USP */
  /* <editor-fold> */
  .w-usp {
    padding: 5px 0;
  }
  .w-usp ul:not(.slick-initialized) {
    grid-template-columns: repeat(4, 25%);
  }
  .w-usp ul:not(.slick-initialized) > li:nth-child(n+5) {
    display: none;
  }
  /* </editor-fold> */

  /* BRANDS */
  /* <editor-fold> */
  .w-brands .w-brand-items:not(.slick-initialized) {
    grid-template-columns: repeat(6, 1fr);
  }
  .w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+7) {
    display: none;
  }
  /* </editor-fold> */

  /**********| LIBRARIES |**********/

  /* SLICK */
  /* <editor-fold> */

  /* </editor-fold> */
}

@media (max-width: 960px) {

  /*****| PARTIALS | *****/

  /* TOPBAR */
  /* <editor-fold> */
  .topbar .topbar-container > .topbar-center {
    max-width: 40%;
  }
  .topbar .topbar-iconlink > small {
    display: none;
  }
  /* </editor-fold> */

  /*****| MODULES |*****/

  /* PRODUCT LIST */
  /* <editor-fold> */
  .m-productlist-content .m-productlist-none {
    margin-top: 20px;
  }
  .m-productlist-list .m-productlist-sidebar {
    width: 100%;
    margin: 0 0 10px;
  }
  /* MOST SOLD */
  .mostsold {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  /* SLICK */
  .m-productlist:not(.slick-initialized) {
    margin: 0 -10px -20px;
  }
  .m-productlist:not(.slick-initialized) > .productItem {
    width: calc(50% - 20px);
    margin: 0 10px 20px;
  }
  /* </editor-fold> */

  /* PRODUCT ENTITY */
  /* <editor-fold> */
  .m-product .m-product-image .thumbelina .owl-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
  /* </editor-fold> */

  /* FILTER */
  /* <editor-fold> */
  .filter {
    overflow-y: auto;
  }
  .filter .filter-content {
    overflow: visible;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* USP */
  /* <editor-fold> */
  .w-usp ul:not(.slick-initialized) {
    grid-template-columns: repeat(3, 33.333%);
  }
  .w-usp ul:not(.slick-initialized) > li:nth-child(n+4) {
    display: none;
  }
  /* </editor-fold> */

  /* BRANDS */
  /* <editor-fold> */
  .w-brands .w-brand-items:not(.slick-initialized) {
    grid-template-columns: repeat(5, 1fr);
  }
  .w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+6) {
    display: none;
  }
  /* </editor-fold> */

  /* FEATURED */
  /* <editor-fold> */
  .w-featured .w-featured-caption {
    padding: 20px;
  }
  .w-featured .w-featured-item:nth-child(1) .w-featured-caption {
    padding: 30px;
  }
  /* </editor-fold> */

  /* POPUP */
  /* <editor-fold> */
  .w-popup .w-popup-content {
    padding: 20px;
  }
  /* </editor-fold> */

}

@media (max-width: 768px) {

  /* PAGE TITLE */
  /* <editor-fold> */
  .page-title {
    padding: 10px 0;
    margin: 20px 0;
  }
  .page-title .h1:first-child,
  .page-title .h2:first-child,
  .page-title .h3:first-child,
  .page-title .h4:first-child,
  .page-title .h5:first-child,
  .page-title .h6:first-child,
  .page-title h1:first-child,
  .page-title h2:first-child,
  .page-title h3:first-child,
  .page-title h4:first-child,
  .page-title h5:first-child,
  .page-title h6:first-child {
    font-size: 16px;
  }
  /* </editor-fold> */

  /*****| PARTIALS |*****/

  /* TOPBAR */
  /* <editor-fold> */
  .topbar {
    height: 60px;
    border-bottom: 1px solid rgba(0,0,0,.15);
  }
  .topbar .topbar-container {
    padding: 0 15px;
  }
  .topbar .topbar-container > .topbar-left {
    justify-content: flex-start;
    flex: auto;
    padding-left: 0;
  }
  .topbar .topbar-container > .topbar-center {
    display: none;
  }
  .topbar .topbar-container > .topbar-right {
    flex: none;
  }
  .topbar .topbar-mobile {
    display: inline-flex;
  }
  .topbar .topbar-iconlink > svg {
    height: 20px;
    stroke-width: 2.5px;
  }
  .topbar .dropdown-menu {
    display: none !important;
  }
  .topbar .topbar-iconlink > small {
    display: none;
  }
  .topbar .list-inline > li {
    padding: 0 .5em;
  }
  /* </editor-fold> */

  /* FOOTER */
  /* <editor-fold> */
  .footer {
    padding: 20px 0;
    margin-top: 20px;
  }
  .footer .footer-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .footer .footer-row .footer-col:last-child {
    grid-area: auto;
  }
  .footer .footer-bottom {
    flex-direction: column;
  }
  .footer .footer-bottom-col {
    width: 100%;
  }
  .footer .footer-bottom-col:last-child {
    justify-content: flex-start;
    margin-top: 10px;
  }
  /* </editor-fold> */

  /*****| MODULES |*****/

  /* BREADCRUMB */
  /* <editor-fold> */
  .m-breadcrumb {
    margin-top: 0;
  }
  /* </editor-fold> */

  /* CATEGORIES */
  /* <editor-fold> */
  .categorylist {
    grid-template-columns: repeat(3, 1fr);
  }
  /* </editor-fold> */

  /* PRODUCT LIST */
  /* <editor-fold> */
  .m-productlist-wrapper {
    flex-direction: column;
  }
  /* SLICK */
  .m-productlist:not(.slick-initialized) > .productItem {
    width: calc(50% - 20px);
  }
  /* </editor-fold> */

  /* FILTER */
  /* <editor-fold> */
  .filter {
    width: 100%;
    padding: 20px;
    max-width: 320px;
    height: 100%;
    overflow-y: auto;
    margin-right: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99;
    box-shadow: rgba(149, 157, 165, 0.15) 3px 0px 24px;
    transform: translateX(-100%);
    transition: transform ease .2s;
  }
  #toggleFilter:checked + .filter {
    transform: translateX(0);
  }
  .filter-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.75);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease .2s;
  }
  #toggleFilter:checked + .filter + .filter-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .filter .filter-results {
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
  /* </editor-fold> */

  /* SORTBAR */
  /* <editor-fold> */
  .sortbar .sortbar-body > .sortbar-filter {
    display: flex;
  }
  /* </editor-fold> */

  /* PRODUCT BRANDS */
  /* <editor-fold> */
  .m-brands {
    grid-template-columns: repeat(3, 1fr);
  }
  /* </editor-fold> */

  /* PRODUCT ENTITY */
  /* <editor-fold> */
  .m-product .m-product-information {
    margin: 20px 0 0;
  }
  /* </editor-fold> */

  /* TEXT */
  /* <editor-fold> */
  body.frontpage .m-text {
    margin: 20px 0;
  }
  body.frontpage .m-text .row [class*="col-"] {
    padding: 0;
    min-height: 0;
  }
  body.frontpage .m-text .row [class*="col-"] img.fill {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: auto;
    min-height: auto;
    max-width: 100%;
    margin: 0 0 20px;
  }
  /* </editor-fold> */

  /* CART */
  /* <editor-fold> */
  .m-cart .m-cart-lines > li > div:nth-child(1),
  .m-cart .m-cart-content-heading > span:nth-child(1) {
    width: 50%;
  }
  .m-cart .m-cart-lines > li > div:nth-child(2),
  .m-cart .m-cart-content-heading > span:nth-child(2) {
    width: 10%;
    text-align: left;
  }
  .m-cart .m-cart-lines > li > div:nth-child(3),
  .m-cart .m-cart-lines > li > div:nth-child(4),
  .m-cart .m-cart-content-heading > span:nth-child(3),
  .m-cart .m-cart-content-heading > span:nth-child(4) {
    width: 20%;
  }
  .m-cart .m-cart-lines .m-cart-product-info figure {
    width: 80px;
    flex: none;
  }
  .m-cart .m-cart-amount-edit > a,
  .m-cart .m-cart-amount-edit > .form-input {
    width: 26.667px;
    height: 26px;
  }
  /* </editor-fold> */

  /* CONTACT */
  /* <editor-fold> */
  .m-contact-top {
    padding: 0;
  }
  .m-contact-top > .m-contact-map {
    display: none;
  }
  .m-contact-top > .m-contact-form {
    width: 100%;
    box-shadow: none;
    padding: 0;
  }
  .m-contact-options {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin: 20px 0;
  }
  .m-contact-option:nth-child(2) {
    border-right: none;
  }
  .m-contact-option:last-child {
    grid-area: 2 / 1 / 3 / 3;
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid rgba(0,0,0,.15);
    border-bottom: 1px solid rgba(0,0,0,.15);
  }
  .m-contact-option > b {
    font-size: 12px;
  }
  .m-contact-option .m-contact-option-heading {
    font-size: 18px;
  }
  /* </editor-fold> */

  /* CHECKOUT */
  /* <editor-fold> */
  body.pageTypecheckout .search-mobile {
    display: none !important;
  }
  /* </editor-fold> */

  /* TEXT */
  /* <editor-fold> */
  body.frontpage .m-text .m-text-content {
    height: 300px;
    overflow: hidden;
  }
  body.frontpage .m-text #toggleText:checked + .m-text-content {
    height: auto;
    overflow: auto;
  }
  body.frontpage .m-text .m-text-toggle {
    display: block !important;
    margin-top: 20px;
  }
  body.frontpage .m-text #toggleText:checked + .m-text-content + .m-text-toggle {
    font-size: 0;
  }
  body.frontpage .m-text #toggleText:checked + .m-text-content + .m-text-toggle::after {
    content: attr(data-hidetext);
    font-size: 13px;
    padding: .75em 1em;
    display: block;
    letter-spacing: .2em;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* USP */
  /* <editor-fold> */
  .w-usp {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
    margin-bottom: 20px;
  }
  .w-usp ul:not(.slick-initialized) {
    grid-template-columns: repeat(2, 50%);
  }
  .w-usp ul:not(.slick-initialized) > li:nth-child(n+3) {
    display: none;
  }
  /* </editor-fold> */

  /* LOGO */
  /* <editor-fold> */
  .w-logo .h1 {
    font-size: 18px;
  }
  .w-logo img {
    height: 30px !important;
  }
  /* </editor-fold> */

  /* SLIDER */
  /* <editor-fold> */
  .hero-slider-theme, .product-slider-theme {
    margin-top: 0;
  }
  .hero-slider-theme .item-caption {
    margin-top: 20px;
    position: static;
    left: auto;
    bottom: auto;
    transform: translate(0);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .hero-slider-theme .item-title {
    margin-bottom: 8px;
  }
  .hero-slider-theme .item-text p {
    font-size: 14px;
  }
  .hero-slider-theme .item-link {
    margin-top: 20px;
  }
  .hero-slider-theme .item-title p,
  .hero-slider-theme .item-title span,
  .hero-slider-theme .item-text p,
  .hero-slider-theme .item-text span {
    color: #000;
  }
  /* </editor-fold> */

  /* FEATURED */
  /* <editor-fold> */
  .w-featured {
    margin: 20px 0;
  }
  .w-featured .w-featured-items {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .w-featured .w-featured-item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
  .w-featured .w-featured-item:nth-child(2) { grid-area: 3 / 1 / 4 / 2; }
  .w-featured .w-featured-item:nth-child(3) { grid-area: 3 / 2 / 4 / 3; }
  .w-featured .w-featured-item:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
  .w-featured .w-featured-item:nth-child(5) { grid-area: 4 / 2 / 5 / 3; }
  /* </editor-fold> */

  /* MOBILE MENU */
  /* <editor-fold> */
  .w-mobilemenu {
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    padding: 20px 0 0 0;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: opacity ease .5s, top ease .25s;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
  }
  #toggleMobileMenu:checked + #mobilemenu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
  }
  .w-mobilemenu .w-mobilemenu-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .w-mobilemenu .w-search {
    width: calc(100% - 40px);
    margin: 0 0 20px;
  }
  .w-mobilemenu .w-logo {
    margin: 5px 0 15px 0;
  }
  .w-mobilemenu .w-mobilemenu-footer {
    padding-top: 20px;
    margin-top: auto;
  }
  .w-mobilemenu .w-mobilemenu-contact {
    padding: 15px 0;
  }
  .w-mobilemenu .w-mobilemenu-contact li a {
    display: flex;
    align-items: center;
    padding: 5px 0;
  }
  .w-mobilemenu .w-mobilemenu-contact svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .w-mobilemenu .logo {
    margin-bottom: 20px;
  }
  .w-mobilemenu .mobilemenu-menu {
    margin: 15px 0;
  }
  .w-mobilemenu .mobilemenu-menu > li a {
    display: flex;
    align-items: center;
    padding: 5px 0;
  }
  .w-mobilemenu .mobilemenu-menu > li svg {
    height: 16px;
    margin-right: 3px;
  }
  .w-mobilemenu .mobilemenu-menu > li > .dropdown-menu .marker {
    display: none;
  }
  .w-mobilemenu .mobilemenu-socials {
    margin-top: 20px;
  }
  .w-mobilemenu .w-usp {
    background: transparent;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .w-mobilemenu .w-usp ul {
    max-height: none;
  }
  .w-mobilemenu .w-usp ul:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .w-mobilemenu .w-usp ul li {
    margin: 0;
    padding: 12px 0;
    display: block !important;
    border: 1px solid rgba(0,0,0,.15);
  }
  /* </editor-fold> */

  /* PRODUCTMENU */
  /* <editor-fold> */
  .w-productmenu {
    display: none;
  }
  .w-mobilemenu .w-productmenu {
    margin-top: 30px;
    display: block !important;
    border: none;
  }
  .w-productmenu .w-productmenu-ul {
    flex-direction: column;
  }
  .w-productmenu .w-productmenu-ul > li > a {
    padding: 10px 0;
    font-size: 16px;
  }
  .w-productmenu .w-productmenu-ul > li > a > .marker {
    margin-left: auto;
  }
  .w-productmenu .w-productmenu-ul > li ul.brands {
    display: none;
  }
  /* </editor-fold> */

  /* SEARCH */
  /* <editor-fold> */
  .w-search {
    width: 100%;
    max-width: 100%;
    height: 40px;
    border-radius: 0;
  }
  .w-search .w-search-form {
    display: flex;
  }
  .w-search > label {
    display: none !important;
  }
  .w-search .form-input {
    padding: 0 15px;
    font-size: 12px;
  }
  .w-search .button {
    width: 45px;
  }
  .w-search .button svg {
    height: 16px;
  }
  /* </editor-fold> */

  /* BRANDS */
  /* <editor-fold> */
  .w-brands {
    margin-top: 20px;
  }
  .w-brands .w-brand-items:not(.slick-initialized) {
    grid-template-columns: repeat(4, 1fr);
  }
  .w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+5) {
    display: none;
  }
  /* </editor-fold> */

  /*****| LIBRARIES |*****/

  /* LISTS */
  /* <editor-fold> */
  .list-inline > li {
    padding: 0 .5em;
  }
  /* </editor-fold> */

  /* DROPDOWN */
  /* <editor-fold> */
  .dropdown .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    padding-top: 0;
    padding-left: 15px;
    border-left: 1px solid rgba(0,0,0,.15);
  }
  .dropdown-container {
    box-shadow: none;
  }
  .dropdown-menu ul {
    padding: 0;
  }
  .dropdown-menu li > a {
    padding: 8px 0;
  }
  /* </editor-fold> */

  /* GRID */
  /* <editor-fold> */
  .ck-content .grid[data-columns].grid-custom {
    flex-direction: column;
  }
  .ck-content .grid[data-columns].grid-custom > .grid-cell {
    width: 100%;
  }
  .ck-content .grid[data-columns].grid-custom > .grid-cell {
    order: 2;
  }
  .ck-content .grid[data-columns].grid-custom > .grid-cell-image {
    order: 1;
    min-height: 1px;
  }
  .ck-content .grid[data-columns].grid-custom > .grid-cell-image img {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-height: 0;
    min-height: 0;
    max-width: 100% !important;
  }
  .ck-content .grid[data-columns].grid-custom > .grid-cell:first-child .grid-cell-text,
  .ck-content .grid[data-columns].grid-custom > .grid-cell:last-child .grid-cell-text {
    padding: 20px 0;
  }
  /* </editor-fold> */

  /* SLICK */
  /* <editor-fold> */

  /* </editor-fold> */

  /* TABLES */
  /* <editor-fold> */
  body.pageTypetext table:not(.faq),
  body.pageTypetext table:not(.faq) thead,
  body.pageTypetext table:not(.faq) tbody,
  body.pageTypetext table:not(.faq) th,
  body.pageTypetext table:not(.faq) td,
  body.pageTypetext table:not(.faq) tr {
		display: block;
	}
	body.pageTypetext table:not(.faq) thead tr {
    display: none;
	}
	body.pageTypetext table:not(.faq) tr {
    border: 1px solid #ccc;
  }
	body.pageTypetext table:not(.faq) td {
		border: none;
		border-bottom: 1px solid #eee;
	}
  body.pageTypetext table:not(.faq) td[data-label] {
    display: flex;
    align-items: center;
  }
  body.pageTypetext table:not(.faq) td[data-label] img,
  body.pageTypetext table:not(.faq) td[data-label] strong {
    margin: 0;
  }
  body.pageTypetext table:not(.faq) td[data-label]::before {
    content: attr(data-label);
    margin-right: auto;
  }
  body.pageTypetext table:not(.faq) td[data-label]:first-child::before {
    font-weight: bold;
  }
  /* </editor-fold> */

}

@media (max-width: 480px) {

  /*****| PARTIALS |*****/

  /* FOOTER */
  /* <editor-fold> */
  .footer .footer-socials {
    margin: 0;
  }
  .footer .footer-bottom-col:last-child > span {
    display: none;
  }
  /* </editor-fold> */

  /*****| MODULES |*****/

  /* PRODUCT LIST */
  /* <editor-fold> */
  .productItem .image .m-productlist-sale {
    top: .5em;
    left: .5em;
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .productItem .image .m-productlist-splash {
    right: .5em;
    top: .5em;
    flex-direction: column;
  }
  .productItem .image .m-productlist-splash > .badge {
    height: 16px;
    font-size: 9px;
    padding: 0 3px;
    margin: 0 5px 5px;
    align-self: flex-end;
  }
  .productItem .type-col .m-productlist-brand {
    font-size: 9px;
  }
  .productItem .type-col .m-productlist-title {
    font-size: 10px;
  }
  .productItem .m-productlist-stock {
    font-size: 10px;
  }
  .productItem .m-productlist-price {
    font-size: 12px;
  }
  .productItem .m-productlist-price-before-discount {
    font-size: 10px;
  }
  .productItem .m-productlist-wishlist svg {
    width: 16px;
    height: 16px;
  }
  /* SLICK */
  /* .m-productlist:not(.slick-initialized) > .productItem {
    width: calc(100% - 20px);
  } */
  /* </editor-fold> */

  /* PRODUCTCARD */
  /* <editor-fold> */
  .m-product .m-product-title {
    font-size: 18px !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
  /* </editor-fold> */

  /* CATEGORIES */
  /* <editor-fold> */
  .categorylist {
    grid-template-columns: repeat(2, 1fr);
  }
  .categorylist .category-item {
    margin: 0;
  }
  /* </editor-fold> */

  /* PRODUCT BRANDS */
  /* <editor-fold> */
  .m-brands {
    grid-template-columns: repeat(2, 1fr);
  }
  /* </editor-fold> */

  /* CART */
  /* <editor-fold> */
  .m-cart .m-cart-content-heading {
    display: none;
  }
  .m-cart .m-cart-lines > li {
    flex-wrap: wrap;
  }
  .m-cart .m-cart-lines > li > div:nth-child(1) {
    width: 100%;
  }
  .m-cart .m-cart-lines > li.m-cart-coupon > div:nth-child(1) {
    margin-bottom: 10px;
  }
  .m-cart .m-cart-lines > li > div:nth-child(3),
  .m-cart .m-cart-lines > li:not(.m-cart-coupon) > div:nth-child(4) {
    display: none;
  }
  .m-cart .m-cart-lines > li.m-cart-coupon > div:nth-child(4) {
    width: 100%;
    text-align: left;
  }
  .m-cart .m-cart-lines .m-cart-product-info .m-cart-amount-edit {
    display: flex;
  }
  .m-cart .m-cart-lines .m-cart-product-info .m-cart-totalprice {
    display: block;
    margin-top: 20px;
  }
  .m-cart .m-cart-coupon-input-text {
    font-size: 12px;
  }
  .m-cart .m-cart-coupon-input-text > span {
    display: none;
  }
  .m-cart [action="/actions/cart/couponAdd"] {
    margin: 30px 0 0 0;
  }
  /* </editor-fold> */

  /* CHECKOUT */
  /* <editor-fold> */
  .checkoutFrame .stepColumn {
    padding: 20px;
  }
  .checkoutFrame .stepColumn .contactInfoContainer,
  .checkoutFrame .stepColumn .deliveryContactInfo {
    flex-direction: column;
  }
  .checkoutFrame .stepColumn .contactInfoContainer > *,
  .checkoutFrame .stepColumn .deliveryContactInfo > * {
    width: 100%;
    margin: 0 0 2%;
  }
  .checkoutFrame .stepHeaderLogin > .button {
    padding: 0;
    background-color: transparent;
    margin-top: -10px;
  }
  /* </editor-fold> */

  /* CONTACT */
  /* <editor-fold> */
  .m-contact-options {
    display: block;
  }
  .m-contact-option {
    border-bottom: 1px solid rgba(0,0,0,.15);
    border-right: none;
  }
  .m-contact-option:last-child {
    border-top: none;
    margin: 0;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* FEATURED */
  /* <editor-fold> */
  .w-featured .w-featured-item:nth-child(1) .w-featured-caption {
    padding: 20px;
  }
  /* </editor-fold> */

  /* USP */
  /* <editor-fold> */
  .w-usp ul li {
    border: none;
  }
  .w-usp ul li:first-child {
    border: none;
  }
  .w-usp ul li img {
    height: 16px !important;
  }
  .w-usp ul li a {
    font-size: 10px;
    white-space: nowrap;
  }
  .w-usp ul:not(.slick-initialized) {
    grid-template-columns: 100%;
  }
  .w-usp ul:not(.slick-initialized) > li:nth-child(n+2) {
    display: none;
  }
  /* </editor-fold> */

  /* BRANDS */
  /* <editor-fold> */
  .w-brands .w-brand-items:not(.slick-initialized) {
    grid-template-columns: repeat(3, 1fr);
  }
  .w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+4) {
    display: none;
  }
  /* </editor-fold> */

  /*****| LIBRARIES |*****/

  /* FANCYBOX */
  /* <editor-fold> */
  .fancybox-inner .container {
    width: 90%;
  }
  /* </editor-fold> */

}

@media (max-width: 320px) {

  /*****| MODULES |*****/

  /* CATEGORIES */
  /* <editor-fold> */
  .categorylist {
    grid-template-columns: 1fr;
  }
  /* </editor-fold> */

  /* PRODUCT BRANDS */
  /* <editor-fold> */
  .m-brands {
    grid-template-columns: 1fr;
  }
  /* </editor-fold> */

  /*****| WIDGETS |*****/

  /* BRANDS */
  /* <editor-fold> */
  .w-brands .w-brand-items:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }
  .w-brands .w-brand-items:not(.slick-initialized) li:nth-child(n+3) {
    display: none;
  }
  /* </editor-fold> */
}
