﻿:root {
  --primary-color: #000000;
  --primary-color-hover: #252525;
  --secondary-color: #2f6f60;
  --secondary-color-hover: #52af98;
  --white-color: #fff;
  --gray-color: #f0f0f0;
  --red-color: #d70000;
  --font-family: 'MainFontFamily', sans-serif;
  --mobile-padding: 14px;
  --desktop-padding: 48px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-weight: normal;
  color: var(--primary-color);
  font-size: 1.6rem;
  line-height: 2.8rem;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1515px;
  margin: 0 auto;
  padding: 0 var(--mobile-padding);
}

@media screen and (min-width: 981px) {
  .container {
    padding: 0 var(--desktop-padding);
  }
}

.banner-list h1,
.banner-list h2,
.banner-list h3 {
  font-family: var(--font-family);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: normal;
}

.banner-list h3 {
  font-size: 1.8rem;
  line-height: 2rem;
}

ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

menu {
  margin: 0;
  padding: 0;
}

a {
  color: var(--primary-color);
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: #fff;
}

::selection {
  background-color: var(--secondary-color);
  color: #fff;
}

input {
  border: 1px solid var(--gray-color);
  padding: 16px;
}

input:focus {
  border-color: var(--primary-color);
}

input[type="submit"] {
  color: #fff;
  background-color: var(--secondary-color);
}

.offscreen {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.pt-2rem {
  padding-top: 2rem;
}

a {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}

/* Promo Bar
==============================================*/
.promo-bar {
  font-size: 1.2rem;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--white-color);
  text-transform: uppercase;
}

.promo-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.promo-bar ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.promo-bar ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.promo-bar ul a:hover {
  text-decoration: underline;
}

.promo-bar ul a span {
  display: inline-block;
}

.promo-bar .credit-points-msg { text-transform: none; }

@media screen and (max-width: 768px) {
  .promo-bar ul a span {
    font-size: 1rem;
  }
  .promo-bar .footer-list__social {
      display: none;
  }
  .promo-bar .credit-points-msg { display: none; }
}

/* Buttons Elements
==============================================*/
button {
  border-radius: 0;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

[role="button"] {
  cursor: pointer;
}

/* Buttons
==============================================*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  background: transparent;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 1rem 2.27rem;
  font-size: 1.2rem;
  position: relative;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  /* Modifier */
  /* Ghost Button */
  /* Modifier */
}

.btn--primary {
  background-color: #2c2c2c;
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--primary-color-hover);
}

.btn--shadow {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.btn--secondary:hover {
  background-color: var(--secondary-color-hover);
}

.btn--ghost {
  background-color: var(--white-color);
  color: #000000;
  border: 1px solid #000000;
}

.btn--ghost:hover {
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

.btn--primary-white {
  background-color: #fff;
  color: var(--primary-color);
}

.btn--primary-white:hover {
  background-color: #dddddd;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  gap: 1rem;
}

.btn-details 
{
    background-color: var(--details-btn-bg-color) !important;
    border: 1px solid var(--details-btn-br-color) !important;
    color: var(--details-btn-color) !important;
}
.btn-details:hover 
{
    background-color: var(--details-btn-bg-color-hover) !important;
    border: 1px solid var(--details-btn-br-color-hover) !important;
    color: var(--details-btn-color-hover) !important;
}
.btn-addtocart 
{
    background-color: var(--addtocart-btn-bg-color) !important;
    border: 1px solid var(--addtocart-btn-br-color) !important;
    color: var(--addtocart-btn-color) !important;
}
.btn-addtocart:hover 
{
    background-color: var(--addtocart-btn-bg-color-hover) !important;
    border: 1px solid var(--addtocart-btn-br-color-hover) !important;
    color: var(--addtocart-btn-color-hover) !important;
}

/* Burger Menu Component
==============================================*/
#mobileNavBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  float: left;
}

#mobileNavBtn .burger {
  color: var(--dark);
  height: 22px;
}

#mobileNavBtn .burger div {
  display: inline-block;
}

#mobileNavBtn .burger .burger__cut {
  width: 2.4rem;
  height: 2.2rem;
  position: relative;
}

#mobileNavBtn .burger .burger__cut span {
  height: 0.2rem;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background-color: var(--primary-color);
  left: 0;
  right: 0;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
}

#mobileNavBtn .burger .burger__cut span:first-child {
  top: 0;
}

#mobileNavBtn .burger .burger__cut span:nth-child(2) {
  top: calc(50% - 1px);
}

#mobileNavBtn .burger .burger__cut span:last-child {
  bottom: 0;
}

/* Header
==============================================*/
.header {
  display: -ms-grid;
  display: grid;
  padding: 2rem 0;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      grid-template-areas: "logo tools"
 "search search";
}

@media screen and (min-width: 768px) {
  .header {
    padding: 2.5rem 0;
    -ms-grid-columns: 1fr 2fr 1fr;
        grid-template-columns: 1fr 2fr 1fr;
        grid-template-areas: "logo search tools";
  }
  .header #mobileNavBtn {
    display: none;
  }
}

.header__logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: logo;
}

.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 260px;
}

.header .searchBar {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: search;
}

.header__tools {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: tools;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2.2rem;
  font-size: 1.2rem;
}

.header__tools li {
  position: relative;
}

.header__tools li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
}

.header__tools li a span {
  display: inline-block;
  line-height: initial;
}

.header__tools li img,
.header__tools li svg {
  height: 20px;
  display: block;
}

.header__tools li.tools-seperator {
  display: none;
  color: #f0f0f0;
}

@media screen and (min-width: 768px) {
  .header__tools {
    font-size: 1.4rem;
  }
  .header__tools li img,
  .header__tools li svg {
    height: 30px;
  }
  .header__tools li.tools-seperator {
    display: block;
  }
}

.header .basket-number {
  color: #fff;
  background-color: #d61f27;
  font-size: 0.8rem;
  width: 13px;
  height: 13px;
  position: absolute;
  top: -6px;
  right: -5px;
  line-height: 1.5;
  border-radius: 50%;
  text-align: center;
}

.header .basket-number:empty {
  display: none;
}

/* Search Bar
==============================================*/
.searchBar form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.searchBar input[type="text"] {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  background-color: #f4f4f4;
  border: 1px solid #f0f0f0;
  border-radius: 50px;
  outline:none;
}

.searchBar button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 60px;
}

@media screen and (max-width: 768px) {
    .searchBar form { width: 75%; } 
}

/* Mobile Menu
==============================================*/
.mobile-nav {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  height: 100vh;
  z-index: 3;
}

.mobile-nav__menu {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  left: 14%;
  bottom: 0;
  padding: 0;
  margin-bottom: 0;
  -webkit-transform: translateX(320px);
          transform: translateX(320px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  list-style-type: none;
  padding: 30px;
  font-size: 1.6rem;
  text-align: center;
  /* Main Navigation Links Mobile */
  /* Language Mobile */
  /* Login & Basket Mobile */
}

.mobile-nav__menu.open {
  -webkit-transform: translateX(26px);
          transform: translateX(26px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.mobile-nav__menu .toplinks {
  font-size: 2.4rem;
}

.mobile-nav__menu .toplinks .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 20px 0.4rem 0;
  text-decoration: none;
}

.mobile-nav__menu .toplinks .link:last-child {
  margin-bottom: 2rem;
}

.mobile-nav__menu li {padding: 20px 0; }
.mobile-nav__menu a {
    text-decoration: none;
}

.mobile-nav .blur-closeBtn {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Desktop Menu
==============================================*/
.desktop-menu {
  border-top: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  display: none;
}

@media screen and (min-width: 768px) {
  .desktop-menu {
    display: block;
  }
}

.desktopMenuList {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 5rem;
  list-style-type: none;
}

.desktopMenuList a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: left;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 0;
  align-items: center;
}

.desktopMenuList a.text-sale {
  color: var(--red-color);
}

.uppercase {
    text-transform: uppercase; 
}

/*@media screen and (max-width: 1400px) {
  .desktopMenuList {
    margin-right: 140px;
  }
}*/

/* Desktop Menu - Dropdown
==============================================*/

/* Hero Section
==============================================*/
.hero {
  padding: 22px 0;
}
.hero:has(.fullwidth) { padding: 0; }

.hero--pattern {
  background-color:#fbfdff;
}

@media screen and (min-width: 1237px) {
  .hero {
    padding: 45px 0;
  }
}

/* Hero Slider
==============================================*/
.heroSlider {
  padding: 0px;
  background: #ffffff;
  position: relative;
  min-height: 300px;
  width: 100%;
}
.container .heroSlider { border-radius: 10px; height: 450px; }
.fullwidth .heroSlider { height: 630px; }

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  color: var(--white-color) !important;
  padding: 0 30px;
}

.heroSlider .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.heroSlider .swiper-slide img,video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .heroSlider {
      height: 300px;
  }
}

.heroSlider .swiper-slide-content-hover 
{
    position: absolute;
    left: 70px;
    right: 70px;
    z-index: 3;
    color: #fff;

}
.heroSlider .swiper-slide-content { padding: 15px 25px 25px; }
.heroSlider .swiper-slide-content.filledbg  {
    max-width: 580px; 
    -webkit-box-shadow: var(0px 3px 6px rgba(0, 0, 0, 0.16));
    box-shadow: var(0px 3px 6px rgba(0, 0, 0, 0.16)); 
}
.heroSlider .swiper-slide-content__heading { line-height: 4rem; }

.fullwidth .heroSlider .swiper-slide-content-hover { max-width: 1500px; margin: 0 auto; }
.fullwidth .heroSlider .swiper-slide-content.filledbg { max-width: 621px; }
.fullwidth .heroSlider .swiper-slide-content { padding: 42px; }
.fullwidth .heroSlider .redirect-to-img { width: 100%; }

/* Handle sliders visibility if no sliders exist*/
.hero:not(.hero:has(.swiper-slide)) {
    display: none;
}

.swiper-slide-content .btn { border: 1px solid #000; }

/* Brands-slider
==============================================*/
.brands-slider {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-color);
}

.brands-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.brands-slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.brands-slider-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.brands-slider-container:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.brands-slider .swiper-button-next,
.brands-slider .swiper-button-prev {
  color: var(--dark-grey-color);
}

.brands-slider .swiper-button-next {
  right: 0;
}

.brands-slider .swiper-button-prev {
  left: 0;
}

.brands-slider .swiper-button-next::after,
.brands-slider .swiper-button-prev::after {
  font-size: 26px;
}

/* Brands-slider
==============================================*/
.categories {
  background-color: #ffffff;
  border-radius:7px;
}

.categories .categories-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.categories .categories-header__title {
  font-size: 30px;
  font-weight: 400;
}

.category-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  text-align: center;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 576px) {
  .category-list {
    -ms-grid-columns: (minmax(auto, 203px))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(auto, 203px));
  }
}

@media (min-width: 992px) {
  .category-list {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
  }
}

.category-list li a {
  display: block;
  text-decoration: none;
}

.category-list__image {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 2px 5px rgba(130, 130, 130, 0.25));
          filter: drop-shadow(0px 2px 5px rgba(130, 130, 130, 0.25));
  position: relative;
}

.category-list__image:hover::before {
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid var(--white-color);
  opacity: 1;
  border-radius: 7px;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}

.category-list__image::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 1px dashed var(--gray-color);
  border-radius: 5px;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.category-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.category-list__title {
  font-size: 1.6rem;
  margin-top: 1rem;
}

/* Home Products
==============================================*/
.products {
  padding: 2rem 0;
}


.products .products-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.products-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .products-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
  
  .productstable-home > .products-list {
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
  }
  
.brands > .products-list {
    -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
  }
  
}

.products-list .product {
  border: 1px solid var(--gray-color);
  -webkit-filter: drop-shadow(0px 2px 5px rgba(218, 218, 218, 0.24));
          filter: drop-shadow(0px 2px 5px rgba(218, 218, 218, 0.24));
  border-radius: 10px;
  padding: 18px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white-color);
  margin-bottom: 2rem;
  /* Typography */
}

.products-list .product__buttons {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 576px) {
  .products-list .product__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.products-list .product__buttons .btn {
  padding: 1rem 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.products-list .product::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border: 1px dashed #acacac;
  border-radius: 5px;
  opacity: 0.5;
  z-index: 1;
}

.products-list .product__heart {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.products-list .product__heart svg:hover {
  fill: var(--secondary-color);
}

.products-list .product__image {
  height: 104px;
  margin-bottom: 8px;
  text-align: center;
}

@media (min-width: 576px) {
  .products-list .product__image {
    height: auto;
  }
}

.products-list .product__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: 100%;
}

.products-list .product a {
  text-decoration: none;
  z-index: 2;
}

.products-list .product__heading {
  font-size: 1.6rem;
  font-weight: 100;
  margin: 2px 0 10px 0;
}

.products-list .product__oldprice, .products-list .product__price, .products-list .product__price-btw {
  font-size: 2rem;
  margin-right: 0.3rem;
}

.products-list .product__oldprice {
  display:block;
  color: #aa0303;
  text-decoration: line-through;
}

.products-list .product__price-btw {
  font-size: 1.3rem;
}

li.product .product__info { margin-bottom: 5px; }
li.product .product__info span { display:block; font-size: 13px; }

/* Home - Banners
==============================================*/
.banners {
  padding: 2rem 0;
  background-color: #fff;
}

.banners .container {
  margin-bottom: 4rem;
}

.banner-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .banner-list {
    gap: 5rem;
  }
  .banner-list.banner-count-2 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .banner-list.banner-count-1 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.banner-list li {
  position: relative;
  height: 247px;
  -webkit-filter: drop-shadow(0px 2px 4px rgba(83, 83, 83, 0.25));
          filter: drop-shadow(0px 2px 4px rgba(83, 83, 83, 0.25));
  border-radius: 10px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .banner-list li {
    height: 347px;
  }
}

.banner-list__image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-list__heading {
  position: absolute;
  top: 26px;
  left: 26px;
  right: 26px;
  line-height: 3rem;
  text-transform: uppercase;
  color: var(--white-color);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.banner-list__button {
  position: absolute;
  bottom: 26px;
  right: 26px;
  font-size: 1.4rem;
}

/* Footer - Top Section Logo / Free NL Delivery
==============================================*/
.footer-top {
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1200px) {
  .footer-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer-top__delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  margin: auto;
  padding: 0;
  gap: 4rem;
  padding-top: 3rem;
}

@media (min-width: 576px) {
  .footer-top__delivery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .footer-top__delivery {
    padding-top: 0;
  }
}

.footer-top__delivery li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (min-width: 1200px) {
  .footer-top__delivery li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    text-align: left;
  }
}

.footer-top__delivery li svg,
.footer-top__delivery li img {
  height: 40px;
}

.footer-top__delivery li h3 {
  margin-top: 5px;
  margin-bottom: 0;
}
.footer-top__delivery li p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Footer
==============================================*/
.footer {
  padding-bottom: 5rem;
  font-size: 1.5rem;
  font-weight: lighter;
}

.footer a {
  font-size: 1.5rem;
  text-decoration: none;
  display: block;
}

.footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer a {
      padding: 12px 0;
      font-size: 1.7rem;
  }
}

/* Footer - Bottom Section
==============================================*/
.footer-bottom {
  padding: 3rem 0;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}

/* Footer - List
==============================================*/
.footer-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-weight: lighter;
}

.footer-list__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

@media (min-width: 576px) {
  .footer-list__social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.footer-grid {
  text-align: center;
  display: -ms-grid;
  display: grid;
  gap: 5rem;
}

@media (min-width: 576px) {
  .footer-grid {
    text-align: left;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .footer-grid {
    -ms-grid-columns: 2fr 1fr 1fr 1fr;
        grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Footer - CopyRight
==============================================*/
.footer-copyright__links {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .footer-copyright__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
  }
}

.footer-copyright-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 576px) {
  .footer-copyright-grid {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .footer-copyright-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.container:before,
.container:after {content:normal; display:inherit;}
.d-flex{display:flex;}

/***************** Header dropdowns (language, currency) *******************/
.quicklinks-list {
    display: inline;
    position: relative;
}
.quicklinks-list img {
	width: 24px;
	height: 24px;
}

.quicklinks-list {
	display: inline;
	position: relative;
}

.quicklinks-list:hover .quicklinks-list__dropdown {
	visibility: visible;
	opacity: 1;
	display: block;
}

.quicklinks-list span {
	display: none;
}

.quicklinks-list__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 0 1rem;
}

.quicklinks-list .quicklinks-list__dropdown {
	visibility: hidden;
	opacity: 0;
	display: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	top: 32px;
	left: -33px;
	min-width: 110px;
	z-index: 32;
	background-color: #fff;
	padding: 10px 0;
	border: 1px solid #0f519f;
}

.quicklinks-list__dropdown .dropdown-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 2px 20px !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none !important;
	white-space: nowrap;
	color: #000;
}
.quicklinks-list__dropdown {
	justify-content: normal !important;
	text-transform: none !important;
}

.quicklinks-list__dropdown .dropdown-link:hover {
	background-color: #0f519f;
	color: #fff;
}

.quicklinks-list__dropdown .dropdown-link img {
	margin-right: 10px;
}

.quicklinks-list__dropdown:after {
	content: "";
	position: absolute;
	display: block;
	top: -30px;
	width: 60%;
	height: 100%;
	z-index: -1;
	left: 50%;
	transform: translateX(-50%);
}

.quicklinks-list__dropdown:before, .categorymenu__dropdown:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid #0f519f;
	left: calc(50% - 4px);
	top: -13px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media screen and (min-width: 768px) {
	.quicklinks-list__dropdown {
		top: 100%;
		left: -24px;
	}
}

@media screen and (min-width: 768px) {
	.quicklinks-list span {
		display: inline;
	}
}

/* *************************************modal ************************************* */ /* Move it (define the animation) */
@-moz-keyframes ticker-text {
	0% {
		-moz-transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%);
	}
}
@-webkit-keyframes ticker-text {
	0% {
		-webkit-transform: translateX(100%);
	}
	100% {
		-webkit-transform: translateX(-100%);
	}
}
@keyframes ticker-text {
	0% {
		-moz-transform: translateX(100%); /* Firefox bug fix */
		-webkit-transform: translateX(100%); /* Firefox bug fix */
		transform: translateX(100%);
	}
	100% {
		-moz-transform: translateX(-100%); /* Firefox bug fix */
		-webkit-transform: translateX(-100%); /* Firefox bug fix */
		transform: translateX(-100%);
	}
}   

#klaro div.klaro div.cookie-notice 
{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(14, 81, 161, 0.9) !important;
    display: block;
    max-width: 100%;
    font-size: 1.6rem;
}
#klaro div.klaro div.cookie-notice .cn-body {display: flex; justify-content: space-around;}
#klaro div.klaro div.cookie-notice .cn-body .cn-learn-more { color: #fff; padding: 0.2em 0.4em; }
#klaro div.klaro div.cookie-notice .cn-body .cm-btn-success { background-color: #2f6f60; padding: 10px 15px; text-transform: uppercase; font-size: 1.3rem; }
#klaro div.klaro div.cookie-notice .cn-body .cn-ok { justify-content: center; text-align: center; }

/** Modal **/
.modal {
  display: none;
  position: fixed; 
  z-index: 1; 
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px 0;
  border: 1px solid #888;
  width: 500px;
  max-width: 95%;
}

.modal-content .modal-body { text-align: center; padding: 10px 0px; }
.modal-content .modal-header { padding: 0 20px 10px 20px; border-bottom: 1px #dee2e6 solid; }
.modal-content .modal-footer { height: 42px; border-top: 1px #dee2e6 solid; }
.modal-content .modal-footer button { float: right; margin-right: 10px; margin-top: 10px; }

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/** Barcode scanner **/
#barcode-scan-start, 
#barcodeScanModal .drawingBuffer { display: none; }

@media screen and (max-width: 768px) {
	#barcode-scan-start { display: flex; }
    #searchBar { display: flex; align-items: center; flex-wrap: wrap; justify-content: space-around; }
}

/* switch on product list */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.switch input:checked + .slider { background-color: #2196F3; }
.switch input:checked + .slider:before {
  -webkit-transform: translateX(21px);
  -ms-transform: translateX(21px);
  transform: translateX(21px);
}
.switch .slider.round { border-radius: 34px;}
.switch .slider.round:before { border-radius: 50%; }

/* Rate stars styles */
.star-rating {
    position: relative;
    display: inline-block;
    width: 10rem;
    height: 3rem;
    vertical-align: bottom;
}
.star-rating>span { overflow: hidden; }
.star-rating:before, .star-rating>span, .star-rating>span:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
.star-rating:before, .star-rating>span:before {
    right: 0;
    content: "";
    display: block;
    background-repeat: repeat-x;
    background-position: left 50%;
    width: 10rem;
    background-size: 2rem;
}
.star-rating:before {
    background-image: url("/Content/default/img/icons/star-empty.svg");
}
.star-rating>span:before {
    background-image: url("/Content/default/img/icons/star-filled.svg");
}

.star-rating-count { font-style:italic; color:darkgray; display: inline-block; }

/* Category submenu items */
.categorymenu { position: relative; display: inline-block; }
.categorymenu ul { list-style: none; padding: 10px 0; }
.categorymenu__dropdown {
  position: absolute;
  left: calc(-50%);
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 100;
  background-color: var(--categorymenu-subitems-bg);
  border: 1px solid var(--categorymenu-subitems-border);
}
.categorymenu__dropdown li { width: 100%; min-width: max-content; }
a.dropdown-link {
    padding: 10px 15px; 
    color: var(--categorymenu-subitems-color); 
}
a.dropdown-link:hover {
    background-color: var(--categorymenu-subitems-bg-hover);
    color: var(--categorymenu-subitems-color-hover); 
}
.categorymenu__dropdown:before {
	border-right-color: var(--categorymenu-subitems-border);
}
.show-fadein .categorymenu__dropdown { transition: all var(--categorymenu-subitems-fadein-speed) linear var(--categorymenu-subitems-fadein-speed);}

/* level 1*/
.categorymenu__dropdown { visibility: hidden; opacity: 0; }
.categorymenu:hover .categorymenu__dropdown { visibility: visible; opacity: 1; }

/* level 2*/
.categorymenu .categorymenu__dropdown .categorymenu__dropdown {
    left: 100%;
    top: -10px !important;
    visibility: hidden; opacity: 0;
}
.categorymenu .categorymenu__dropdown .categorymenu:hover .categorymenu__dropdown {
    visibility: visible; opacity: 1;
}
.categorymenu__dropdown .categorymenu__dropdown:before {
  left: -10px;
  top: 1.5em;
  -webkit-transform: none;
  transform: none;
}

/* level 3*/
.categorymenu .categorymenu__dropdown .categorymenu .categorymenu__dropdown .categorymenu__dropdown {
    visibility: hidden; opacity: 0;
}
.categorymenu .categorymenu__dropdown .categorymenu .categorymenu__dropdown .categorymenu:hover .categorymenu__dropdown {
    visibility: visible; opacity: 1;
}