/* 
Azo Sans Regular
font-family: "azo-sans-web", sans-serif;
font-weight: 400;
font-style: normal;

Azo Sans Italic
font-family: "azo-sans-web", sans-serif;
font-weight: 400;
font-style: italic;
Azo Sans Bold

font-family: "azo-sans-web", sans-serif;
font-weight: 700;
font-style: normal;
Azo Sans Bold Italic

font-family: "azo-sans-web", sans-serif;
font-weight: 700;
font-style: italic;
Azo Sans Uber Regular

font-family: "azo-sans-uber", sans-serif;
font-weight: 400;
font-style: normal; 
*/

:root {

  /* Colors */
  --primary-color: #FAA33F;
  --secondary-color: #0A0A0A ;
  --tertiary-color:#2C2C2C;

  --bg-color: var(--tertiary-color);
  
  --grey: #E4E4E4;
  --grey2: #757575;
  --green: #2CA25B;
	--white: #FFFFFF;
	--black: #000000;
	--warning: #D12929;

  /* Fonts */
  --font-title: "Jost";
  --font-text: "Jost";
  --font-awesome: "Font Awesome 7 Pro";
	--font-awesome-duo: "Font Awesome 7 Duotone";

	/* JUISTE AFMETING IN DE CONTAINER ZETTEN */
	--container-width: 1464px;
	--rest-space: calc(100vw - var(--container-width));
	--half-space: calc(var(--rest-space) / 2);

  /* Border-radius */
  --br-xs: 5px;
  --br-sm: 10px;
  --br-md: 15px;
  --br-xl: 20px;
  --br-xxl: 25px;

  /* Spacing */
  --row-space: 80px;

  --space-xs: 12px;
  --space-sm: 24px;
  --space-md: 36px;
  --space-lg: 48px;
  --space-xl: 60px;
  --space-xxl: 72px;

	/* Filters */
	--filter-white: brightness(0) saturate(100%) invert(100%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
	--filter-primary: brightness(0) saturate(100%) invert(73%) sepia(79%) saturate(970%) hue-rotate(328deg) brightness(99%) contrast(97%);;
	--filter-secondary: ;

  /* Gradients */
  --gradient-primary: linear-gradient(235deg, rgba(250, 163, 63, 0.6) 2%, var(--primary-color) 70%);
  --gradient-secondary: linear-gradient(0deg, rgba(54, 54, 54, 0.6) 12%, rgba(44, 44, 44, 0) 85%);
  --gradient-tertiary: linear-gradient(360deg, rgba(44, 44, 44, 0.9) 19%, rgba(73, 73, 73, 0) 100%);

  --gradient-promo: linear-gradient(300deg, rgba(44, 44, 44, 0.33) 2.5%, rgba(73, 73, 73, 0.96) 60%);

  /* Icons */
  --arrow-left:'\f177';
  --arrow-right:'\f178';

  --angler-up:'\f077';
  --angler-down:'\f078';
  --angler-right: '\f105';
  --angler-left: '\f104';

  --check:'\f00c';
  --check-duo:'\f058\f058';

  --phone: '\f095';
  --mail: '\f0e0';
  --briefcase: '\f0b1';
  --location-dot: '\f3c5';
  --bank: '\f19c';
  
  --user: '\f007';
  --cart: '\f07a';
  --tooltip: '\f05a';
  --search: '\f002';

  --coupon: '\e63e';
  --add: '\2b';
  --edit: '\f304';
  --remove: '\f1f8';
  
  --thumb: '\f164';
  --play: '\f04b';

  --filter: '\f0b0';
  --reset: '\f01e';

  --truck: '\f0d1';

  /* Elemetens */
  --svg-arrow: url("/template/images/arrow.svg");
  --svg-arrow-bend: url("/template/images/arrow-bend.svg");

}

/* * {outline: 1px solid red !important} */

body { font-size: 1rem; font-family: var(--font-text); font-weight: 400; color: var(--grey2); display: flex; flex-direction: column; min-height: 100vh; position: relative; }

h1 { font-size: 4.375rem; font-family: var(--font-title); font-weight: 500; line-height: 1; color: var(--secondary-color); }
h2 { font-size: 2.5rem; font-family: var(--font-title); font-weight: 500; color: var(--secondary-color); text-wrap: balance; margin-bottom: 25px; }
h3 { font-size: 1.25rem; font-weight: 500; color: var(--secondary-color);}
h4 { font-size: 1.125rem; font-weight: 700; }
h5 { font-size: 1.125rem; color: var(--primary-color); font-weight: 700; }

p[role='doc-subtitle'] {color: var(--secondary-color); font-size: 1.375rem; font-weight: 400;}
p { font-size: 1rem; }
p a { color: var(--primary-color); text-decoration: underline; }
p a:hover { color: var(--secondary-color); }

ul { font-size: 1rem; }
li {padding-left: 0px;}
li strong { color: var(--secondary-color); font-weight: 700; }

img { max-width: 100%; }

/* Buttons */
.btn { display: flex; gap: 0 15px; padding: 12px 30px; width: fit-content; border-radius: var(--br-md); font-size: 1.125rem; text-decoration: none; font-family: var(--font-title); font-weight: 500; transition: all 0.5s;}
.btn::before { content: var(--svg-arrow); font-family: var(--font-awesome); color: var(--white); font-weight: 400; transition: transform 0.5s; display: inline-block; filter: var(--filter-primary); }
.btn:hover::before { transform: translateX(5px); filter: var(--filter-white); }

/* Custom buttons */
.btn-back::before { content: var(--arrow-left); }
.btn.play::before {content: var(--play); font-weight: 700; filter: unset;}
.btn.reset {flex-direction: row-reverse;}
.btn.reset::before {content: var(--reset); transform: none;}
.btn.btn-cart {background: var(--green); color: var(--white); justify-content: center;}
.btn.btn-cart::before {content: var(--cart); filter: unset; transform: none;}
.btn.btn-cart:hover {background: var(--bg-color);}
.btn.add {margin-bottom: var(--space-xs);}
.btn.add::before {content: var(--add); transform: none;}
.btn.edit::before {content: var(--edit); transform: none;}
.btn.remove::before {content: var(--remove); transform: none;}
.btn.clear::before {display: none;}

/* Basic buttons */
.btn-primary { background: var(--primary-color); border-color: var(--primary-color); color: var(--white); &::before {filter: var(--filter-white); } }
.btn-primary:is(:hover, :focus, :focus-visible, :active) { background: var(--secondary-color); border-color: var(--secondary-color);}

.btn-secondary { color: var(--secondary-color); background: var(--white); border-color: var(--white); &::before {filter: var(--filter-primary);} }
.btn-secondary:is(:hover, :focus, :focus-visible, :active) { background: var(--secondary-color) !important; border-color: var(--secondary-color); color: var(--white); &::before {filter: var(--filter-white); } }

.btn-info { background: var(--white); border-color: var(--white); color: var(--secondary-color); width: fit-content;}
.btn-info::before {color: var(--primary-color);}
.btn-info:is(:hover, :focus, :focus-visible, :active) {background: var(--white); color: var(--secondary-color); border-color: var(--white); &::before {filter: var(--filter-primary);}}

.btn-search { background: var(--secondary-color); border: none; color: #fff; padding: 6px 12px; border-radius: 5px; }
.btn-search:is(:hover, :focus, :focus-visible, :active) { background: #fda43d; border-color: #fda43d; }
.btn-search::after { display: none; }

.btn-success { background: var(--green); border-color: var(--green); color: var(--white); text-decoration: none; &::before {filter: var(--filter-white); } }
.btn-success:is(:hover, :focus, :focus-visible, :active) { background: var(--primary-color); border-color: var(--primary-color); }

.btn-danger::before {display: none;}

.alert { border-radius: 0; border: 0; font-weight: 700; font-size: 0.875rem; display: block; }
.alert-primary { background: var(--tertiary-color); color: var(--white); }

select,
select.form-control { border-radius: 5px; padding: 8px 12px; border: 1px solid #B5B5B5; }
input[type="number"] { border-radius: 5px; padding: 8px 12px; border: 1px solid #B5B5B5; }
input[type="text"] { border: 1px solid #B5B5B5; border-radius: 5px; padding: 10px 8px; line-height: 1; }

.center { text-align: center; }

::selection { background: var(--primary-color); color: #fff; }

.mbot-100 { margin-bottom: 100px; }
.mtop-100 { margin-top: 100px; }
.mbot-75 { margin-bottom: 75px; }
.mtop-75 { margin-top: 75px; }
.mbot-50 { margin-bottom: 50px; }
.mtop-50 { margin-top: 50px; }
.mbot-25 { margin-bottom: 25px; }
.mtop-25 { margin-top: 25px; }

/* Topbar */
.store-message { text-align: center; padding: 10px 15px; background: #D80000; color: var(--white); font-family: var(--font-title); text-transform: uppercase; font-weight: 700; }

.topbar {padding-top: 16px; padding-bottom: 16px; font-size: 1rem; background: var(--tertiary-color); color: var(--white); font-family: var(--font-title); }
.topbar .container > .row { justify-content: space-between; }
.topbar .top-right,
.topbar .top-left { display: flex; padding: 0 15px; }
.topbar .top-right { }
.topbar a  { display: flex; align-items: center; color:#fff; }
.topbar .top-el { display: flex; align-items: center; }
.topbar .top-right .top-el { }
.topbar .top-right .top-el:first-child { margin-left: 0; }
.topbar .top-left .top-el { }
.topbar .top-left .top-el:first-child { margin-left: 0; }
.topbar .fa-stack,
.topbar svg { margin-right: 15px; font-size: 0.75rem; }
.topbar .fa-stack i { color: #fff; }
.topbar .fa-stack .fa-circle { color: var(--primary-color); }
.topbar .dropdown > span::after { content: '\f078'; font-family: var(--font-awesome); font-size: 0.75rem; vertical-align: middle; margin-left: 8px; }
.topbar .lang-select .dropdown-menu { left: auto; right: 0; min-width: 50px; margin: 0; border: none; padding: 0; background: var(--primary-color-accent); }
.topbar .lang-select .dropdown-menu .dropdown-item { padding: 10px 5px; text-align: center; display: block; font-weight: 700; }
.topbar .lang-select .dropdown-menu .dropdown-item:hover { text-decoration: underline; color: inherit; background: none; color: #fff; }
.topbar .lang-select .dropdown-menu .dropdown-item:active { text-decoration: underline; background: #fff; color: var(--primary-color-accent); }
.topbar .topbar-menu ul { padding: 0; margin: 0; display: flex; list-style: none; }
.topbar .topbar-menu ul li { margin: 0 20px; }
.topbar .top-link-bold { font-weight: 700; text-transform: uppercase; }


/* Header */
header { z-index: 11; color: var(--primary-color); }
header .search-bar { display: flex; align-items: center; }
header .search-bar.show { display: flex!important;  } /* Flex important, because sweetalerts.css overwrites .show */
header .search-bar .search { width: 100%; }
header .form-group { margin: 0; position: relative; }
header input.form-control {}
header input.form-control:active,
header input.form-control:focus { background: none; color: #fff; box-shadow: none; border-color: #fff; color: var(--secondary-color); border-color: var(--secondary-color); }
header input.form-control::placeholder { font-size: 1rem; font-weight: 400; color: #828282;}
header .search-btn { padding: 0; background: var(--secondary-color); border-radius: 0 10px 10px 0; color: #fff; border: none; }
header > .row > .container > .row { padding: 10px 0; }
header > .row > .container > .row > .search-icon-wrap { display: none; }
header > .row > .container > .row > .search-icon-wrap button { color: var(--primary-color); }
header .header-icons { display: flex; align-items: center; justify-content: flex-end; font-size: 1.25rem; }
header .header-icons .user-icon,
header .header-icons .cartmenu { position: relative; width: 100%; height: 50px; display: flex; justify-content: center; align-items: center; border-radius: 35px; flex-shrink: 0; background-color: var(--primary-color); border: 1px solid var(--primary-secondary); transition: 0.5s; }
header .header-icons .cartmenu:hover { background: var(--secondary-color);}
header .header-icons .cartmenu:hover img {filter: var(--filter-white);}
header .header-icons .cartmenu:hover .msc_amount {background-color: var(--primary-color);}
header .logo-wrap { display: flex; height: 100%; align-items: center; }
header .logo-wrap img { max-height: 85px; width: 100%; }

/* Search bar - Magnifying glass in input icon  */
.search-bar .form-group::after { content: var(--search); font-family: var(--font-awesome); color: var(--primary-color); font-weight: 500; position: absolute; top: 0; left: 12px; width: fit-content; height: 100%; display: flex; justify-content: flex-end; align-items: center; pointer-events: none; cursor: auto; }

/* Search results */
.search-results { position: absolute; width: 100%; top: 100%; margin-top: -4px; z-index: 11; margin-top: 0; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border: 1px solid var(--grey); box-shadow: 0px 0px 20px 2px rgba(0,0,0,0.1); }
.search-results a { display: block; }
.search-results .row { margin: 0; padding: 15px 0; }
.search-results .col-3,
.search-results .col-9 { padding: 0 5px; }
.search-results .col-3 { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.search-results img { max-width: 100%; border-radius: var(--br-sm); overflow: hidden;}
.search-results .search-result { border-bottom: 1px solid #B5B5B5; }
.search-results .producttitle { display: block; font-size: 1rem; color: var(--primary-color); font-weight: 700; font-family: var(--font-title); }
.search-results .search-total-results { font-size: 1.125rem; padding: 5px var(--space-sm); color: var(--primary-color); }
.search-results .pricestyle {font-size: 1.375rem; font-weight: 700; color: var(--primary-color); text-decoration: none;}
.search-results .pricestyle .price-messure {color: var(--secondary-color); font-size: 1rem; font-weight: 400;}
.search-results .search-total-results a { color: var(--primary-color); }

/* Mutaties */
.search-results .pricestyle.discount-price {}
.search-results .pricestyle.discount-price .old-price {font-size: 1rem; font-weight: 500; color: var(--grey2); text-decoration: line-through;}

/* Nav */
.mainmenu { }
.mainmenu .navbar-collapse { justify-content: flex-end; }
.mainmenu .nav { flex-wrap: wrap; width: 100%; justify-content: flex-start; }
.mainmenu .navbar-toggler { color: var(--primary-color); }
.navbar .dropdown .nav-link:hover { color: #fff; }
.dropdown { color: #fff; }
.dropdown > ul { margin: 0; border-radius: 0; border: 0; background: var(--primary-color); }
.dropdown a { color: var(--tertiary-color); }
.dropdown.show > .dropdown-menu { display: flex; flex-direction: column; }
.dropdown.show > .nav-link::after { transform: rotate(180deg); }
.dropdown > .dropdown-menu { position: absolute; width: 100vw; left: calc(-12px - var(--half-space)); }
.dropdown > .dropdown-menu > li { margin: 0; padding: 0; margin-bottom: 10px; }
.dropdown > .dropdown-menu > li:last-child { margin-bottom: 0; }
.dropdown > .dropdown-menu > li > a { font-size: 0.875rem; display: block; margin-bottom: 0; font-weight: 700; }
.dropdown > .dropdown-menu > li > ul { padding: 0; list-style: none; }
.dropdown-toggle::after { content: var(--angler-down); font-family: var(--font-awesome); color: var(--white); border: none; font-size: 1rem; margin-left: 8px; vertical-align: middle; font-weight: 400; transition: all 0.5s; }
.dropdown:hover .dropdown-toggle::after {transform: rotate(180deg);} 
.mainmenu li {margin-right: 15px;}

/* Nav - shopping cart */
.cartmenu { display: flex; justify-content: flex-end; }
.cartmenu svg { flex-shrink: 0; }
.shopping-cart-wrap { display: flex; align-items: center; justify-content: flex-end; }
.shopping-cart-circle { width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; position: relative; background: #000; font-size: 1.25rem; flex-shrink: 0; background: var(--primary-color); color: #fff; }
.lrws-loadsmallcart { cursor:pointer; }
.msc_amount { display: none !important; position: absolute; top: -5px; right: -5px; z-index: 2; width: 20px; height: 20px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.75rem; font-weight: 700; background: var(--secondary-color); color: #fff; }

/* Nav - Menu modal */
.modal.fixed-left {  }
.modal.fixed-left .modal-dialog-vertical { height: 100%; width: calc(100% - 50px); max-width: 500px; margin: 0; transition: transform 0.3s; transform: translateX(-100%); }
.modal.fixed-left.show .modal-dialog-vertical { transform: translateX(0); }
.modal.fixed-left .modal-content { border-radius: 0; border: none; min-height: 100%; }
.modal.fixed-left .forehead { display: flex; justify-content: space-between; align-items: center; background: var(--secondary-color); }
.modal.fixed-left .forehead h5 { text-align: center; margin-bottom: 0; color: #fff; }
.modal.fixed-left .forehead .button-filler,
.modal.fixed-left .forehead .close-btn-wrap { height: 50px; width: 50px; display: flex; justify-content: center; align-items: center; font-size: 1.125rem; color: #fff; }
.modal.fixed-left .forehead .close-btn-wrap:hover { cursor: pointer; opacity: 0.8; }
.modal.fixed-left .menu-content .main-menu .section-title { padding: 15px; margin-top: 10px; border-bottom: 1px solid #ddd; margin-bottom: 0; color: #000; }
.modal.fixed-left .menu-content .main-menu .categories { padding: 0; margin-bottom: 25px; list-style: none; }
/* .modal.fixed-left .menu-content .main-menu .categories li { border-bottom: 1px solid #ddd; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 500; color: #000; } */
.modal.fixed-left .menu-content .main-menu .categories li .item { padding: 15px; font-weight: 500; flex-grow: 1; text-decoration: none; color: #000; }
.modal.fixed-left .menu-content .main-menu .categories li .item i { margin-right: 10px; width: 20px; display: inline-flex; justify-content: flex-end; }
.modal.fixed-left .menu-content .main-menu .categories li.contains-sub::after { content: '\f054'; font-family: var(--font-awesome); margin-left: 20px; padding-right: 15px; }
.modal.fixed-left .menu-content .main-menu .categories li:hover { background: rgb(0 0 0 / 5%); }
.modal.fixed-left .menu-content .main-menu .categories li .item.select-wrap { display: flex; align-items: center; }
.modal.fixed-left .menu-content .main-menu .categories li .item.select-wrap select { flex-grow: 1; }
.modal.fixed-left .menu-content { overflow: hidden; }
.modal.fixed-left .menu-content nav { width: 200%; display: flex; transition: transform 0.3s; }
.modal.fixed-left .menu-content nav > * { width: 50%; flex-shrink: 0; }
.modal.fixed-left .menu-content nav.open { transform: translateX(-50%); }
.modal.fixed-left .menu-content nav .sub-menu { display: none; }
.modal.fixed-left .menu-content .first-sub {  }
.modal.fixed-left .menu-content .first-sub .sub-header { display: flex; align-items: center; cursor: pointer; border-bottom: 1px solid #ddd; }
.modal.fixed-left .menu-content .first-sub .sub-header:hover { background: rgb(0 0 0 / 5%); }
.modal.fixed-left .menu-content .first-sub .sub-header .back-btn { height: 50px; width: 50px; display: flex; justify-content: center; align-items: center; color: #000; }
.modal.fixed-left .menu-content .first-sub .sub-header h5 { margin-bottom: 0; line-height: 1; color: #000; }
.modal.fixed-left .menu-content .first-sub .submenu-items .sub-menu { display: block; padding: 0; margin: 0; list-style: none; }
.modal.fixed-left .menu-content .first-sub .submenu-items .sub-menu li a { display: block; border-bottom: 1px solid #ddd; cursor: pointer; padding: 15px; color: #000; }

/* Home slider */
.home-slider { margin-top: 40px; margin-bottom: 75px; }
.home-slider .item { max-height: 500px; position: relative; border-radius: 10px; overflow: hidden; }
.home-slider img { width: 100%; object-fit: cover; max-height: 500px; }
.home-slider .text { position: absolute; width: 100%; height: 100%; top: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 15px; }
.home-slider h2 { display: inline-block; width: fit-content; padding: 20px; font-size: 2.25rem; background: rgb(0 0 0 / 20%); color: #fff; border-radius: 10px; font-weight: 700; }
.home-slider h2::after { display: none; }

.home-slider .slick-dots { position: absolute; right: 0; height: 100%; flex-direction: column; top: 0; width: 50px; margin: 0; }
.home-slider .slick-dots li { margin: 10px 0; }
.home-slider .slick-dots li button::after { margin: 10px 0; background: #fff; border: 1px solid #707070; }
.home-slider .slick-dots li.slick-active button::after { background: var(--primary-color); }

/* Page content */
.page-content { flex-grow: 1; margin-bottom: 50px; }

/* Categories */
.mainproducts {}
/* .category-big { padding: 7.5px; transition: transform 0.3s; }
.category-big a { height: 100%; display: flex; flex-direction: column; justify-content: space-between; text-align: center; padding: 15px; border: 1px solid #B5B5B5; border-radius: 6px; transition: border-color 0.3s; }
.category-big img { width: 100%; height: 215px; object-fit: contain; margin-bottom: 15px; }
.category-big h5 { text-align: left; word-break: break-word; } */

/* USP product */
.usp-product > .container > .row { margin: 50px -15px; font-size: 0.875rem; }
.usp-product-top { background: #F4F4F4;  }
.usp-product-top > .container > .row { margin: 25px -15px; }
.usp-product ul { list-style: none; padding: 0; margin: 0; }
.usp-product ul li { position: relative; padding-left: 35px; }
.usp-product li::before { content: '\f00c'; font-family: var(--font-awesome); height: 25px; width: 22px; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }

/* Products */
.product-list { display: flex; flex-direction: row; padding: 10px; }
.product-list .imagebox { width: 33.333333%; flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
.product-list .imagebox img { height: auto; }
.product-list .product-bot { display: flex; flex-direction: column; justify-content: space-between; padding: 0 0 0 15px; flex-grow: 1; }
.product-list .discountinfo { right: 25px; }

/* Brands */
.brands { margin: 100px -15px; }
.brands img { max-width: 100%; height: 200px; object-fit: contain; }

/* Slick slider buttons */
.slick-slide:focus { outline: none; }
.slick-dots { list-style: none; display: flex; padding: 0; margin-top: 15px; margin-bottom: 50px; justify-content: center; align-items: center; position: relative; width: 100%; }
.slick-dots li { padding: 0; margin: 0 10px; }
.slick-dots li button { font-size: 0; line-height: 0; display: block; width: 0; height: 0; padding: 0; cursor: pointer; color: transparent; border: 0; outline: none; background: transparent; }
.slick-dots li button::after { content: ''; position: absolute; width: 10px; height: 10px; border: 3px solid #707070; border-radius: 50%; transition: 0.3s; width: 12px; height: 12px; border: 2px solid var(--primary-color); }
.slick-dots li.slick-active button::after { border: 2px solid #000; background: #000; border: 2px solid var(--primary-color); background: var(--primary-color); }

/* Text + image */
.text-image { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.text-image .col-md-6,
.text-image .col-lg-6 { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.text-image img { border-radius: var(--br-sm); box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16); }

/* FAQ Accordion */
.faq .block.faq { width: 100%; }
.faq .card { border: none; border-radius: 0; background: rgb(100 100 100 / 10%); }
.faq .card:nth-child(even) { background: #fff; }
.faq .card-header { background: none; padding: 0; cursor: pointer; border: none; }
.faq h5 { padding: 20px 25px; display: flex; align-items: center; text-transform: none; }
.faq svg { margin-right: 10px; width: 10px; transition: transform 0.3s; transform: rotate(90deg); flex-shrink: 0; }
.faq .mb-0.collapsed svg { transform: rotate(0deg); }
.faq .mb-0.collapsed:hover svg { transform: rotate(15deg); }
.faq .mb-0:hover svg { transform: rotate(75deg); }
.faq .card-body { padding: 0 45px 15px 45px; }

/* Footer */
.subfoot { padding: 20px 0; background: var(--white); color: #fff; }
.subfoot .col-lg-3 { margin: 20px 0; }
.subfoot h2 { font-size: 1.25rem; font-weight: 600; color: var(--secondary-color); font-family: var(--font-title);}
.subfoot ul { list-style: none; padding: 0; margin: 0; }
.subfoot ul li { font-size: 1rem; padding: 0; margin: 5px 0; }
.subfoot ul li a { color: var(--tertiary-color); font-weight: 400; }

.foot { font-size: 0.875rem; color: var(--white); font-weight: 700; font-family: var(--font-title); }
.foot a { color: var(--white); }
.foot .footer-part { display: flex; align-items: center; margin: 25px 0;}
.foot .footer-part:nth-child(1) { justify-content: flex-start; }
.foot .footer-part:nth-child(2) { justify-content: flex-end; }

.foot ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; gap: 0 45px; }
.foot ul li { display: inline-block; }


/* ----- CATEGORY PAGE ----- */

/* Banner image */
.category-img img { width: 100%; object-fit: cover; max-height: 400px; min-height: 150px; }

/* Breadcrumbs */
.breadcrumbs ul { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; font-size: 1rem; flex-wrap: wrap; line-height: 1; font-weight: 500; }
.breadcrumbs ul li { padding: 0; display: flex; align-items: center; }
.breadcrumbs ul li::after { margin: 0 5px; content: '/'; font-size: 1rem; color: var(--grey2); }
.breadcrumbs ul li:last-child::after { display: none; }
.breadcrumbs ul li a { color: var(--grey2); text-decoration: underline !important; }
.breadcrumbs ul li a:hover {color: var(--primary-color);}
 
/* Category select */
.filter-side { }
.filter-side h4.filter-title { font-size: 1.125rem; margin-top: 25px; color: var(--primary-color); text-transform: none; font-family: var(--font-title); }
.filter-side h4.filter-title i { font-size: 0.875rem; margin-left: 10px; cursor: pointer; color: var(--primary-color); }
.filter-side h4.filter-title i:hover { opacity: 0.8; cursor: pointer; }
.sibling-categories { margin-bottom: 25px; font-size: 1rem; }
.sibling-categories ul { list-style: none; margin: 0; padding: 0 0 0 15px; border-left: 1px solid; border-color: var(--primary-color); }
.sibling-categories ul li { margin: 0; padding: 0; }
.sibling-categories ul li a { color: var(--text-color); text-decoration: none; }
.sibling-categories ul li.active a { color: var(--primary-color); }
.sibling-categories .see-more { margin-top: 10px; display: block; color: var(--primary-color); font-weight: 500; }
.sibling-categories .see-more::before { content: '\f078'; font-family: var(--font-awesome); font-size: 0.75rem; margin-right: 6px; width: 0px; }
.checkcontainer { font-size: 1rem; display: block; margin-bottom: 0; display: flex; word-break: break-word; user-select: none; color: var(--primary-color-accent); cursor: pointer; }
.checkcontainer .checkmark { display: inline-flex; width: 10px; height: 10px; border-radius: 1px; border: 1px solid var(--primary-color); margin-right: 10px; position: relative; transition: 0.3s; top: 7px; flex-shrink: 0; justify-content: center; align-items: center; }
.checkcontainer:hover .checkmark { background: var(--primary-color); opacity: 0.2; }
.checkcontainer input[type="checkbox"] { position: absolute; height: 0; width: 0; visibility: hidden; }
.checkcontainer input:checked ~ .checkmark { background: var(--primary-color); }
.checkcontainer input:checked ~ .checkmark::after { content: var(--check); font-family: var(--font-awesome); line-height: 11px; font-size: 0.5rem; text-align: center; color: #fff; }
.checkcontainer:hover input:checked ~ .checkmark { background: var(--primary-color); opacity: 0.8; }
.checkcontainer .stock { color: #B5B5B5; }
.filter-price-wrap { color: var(--primary-color-accent); }
.filter-price-wrap label { display: inline-flex; align-items: center; width: auto; }
.filter-price-wrap label input { margin-left: 5px; max-width: 70px; }
.filter-remove-filter button { margin-top: 25px; color: var(--primary-color); border: 1px solid var(--primary-color); background: none; padding: 12px; width: 100%; max-width: 200px; text-align: center; border-radius: 4px; font-size: 1rem; line-height: 1; font-weight: 500; }
.filter-remove-filter button:hover { background: rgba(8,114,56,0.06); }

h1.block {margin-bottom: var(--space-md); font-size: 3rem;}
.btn-wrap { margin-top: var(--space-xs); display: flex; gap: var(--space-xs);}
.table td, .table th {vertical-align: middle;}

/* Category view-type */
.cat-view-type { font-size: 0.875rem; margin-top: 20px; margin-bottom: 20px; }
.cat-view-type .view-type-btns { display: flex; align-items: center; }
.cat-view-type .view-type-btn { display: inline-flex; padding: 10px; justify-content: center; align-items: center; color: #ACACAC; }
.cat-view-type .view-type-btn:hover { text-decoration: none; opacity: 0.8; }
.cat-view-type .view-type-btn.active { background: #ACACAC; color: #fff; }
.cat-view-type .view-type-btn i { height: 15px; width: 15px; line-height: 15px; font-size: 0.875rem; }
.cat-view-type .current-view-desc { margin-left: 10px; color: #000; }
.cat-view-type .dropdown-right { display: flex; align-items: center; justify-content: flex-end; color: #4C4441; }
.cat-view-type .dropdown-right select { margin-left: 10px; font-weight: 700; text-transform: uppercase; }


/* Category pagination */
.category-pagination { display: flex; justify-content: flex-end; margin-bottom: 100px; }
.category-pagination .page-link { width: 40px; height: 40px; padding: 0; display: flex; justify-content: center; align-items: center; margin-left: 5px; font-size: 1rem; border: 1px solid #B5B5B5; border-radius: 4px; color: var(--primary-color); }
.category-pagination .page-link.page-link-active { border-color: var(--primary-color); background: rgba(8,114,56,0.06); }
.category-pagination .page-link:hover { background: rgba(8,114,56,0.06); }
.category-pagination .ellipsis { margin-left: 5px; }


/* Filters button on mobile */
.toggle-filters-mobile .btn { position: fixed; bottom: 25px; z-index: 3; font-size: 1rem; left: 50%; transform: translateX(-50%); display: none; padding: 10px 40px; box-shadow: 0px 5px 25px -10px rgba(0,0,0,0.6); }
.toggle-filters-mobile .btn::before { content: '\f1de'; font-family: var(--font-awesome); margin-right: 10px; }
.toggle-filters-mobile .btn::after { display: none; }


/* Filters modal */
.filter-side .filter-menu-top { background: none; border: none; display: flex; justify-content: flex-end; font-size: 1.375rem; }
.filter-side .filter-menu-top button { color: var(--primary-color); opacity: 1; }
.filter-side .filter-menu-title { margin: 15px 0; text-align: center; }
.filter-side .filter-menu-title h3 { font-size: 1.75rem; font-family: var(--font-title); text-transform: uppercase; color: var(--primary-color); }
.filters-contain .show-products { box-shadow: 0px 5px 25px -5px rgba(0,0,0,0.6); }
.filters-contain .show-products .btn { padding: 10px 25px; width: 100%; background: var(--primary-color); color: #fff; border-color: var(--primary-color); transition: opacity 0.3s; }
.filters-contain .show-products .btn:hover { opacity: 0.8; }
.filters-contain .show-products .btn::after { display: none; }

@media only screen and (min-width: 768px) { .filters-contain .hidden-md { display: none; } }

/* ----- PRODUCT PAGE ----- */

/* Product details */
.productdetail .productimage {  }
.productdetail .productimage .image-wrap { border: 1px solid #C9C9C9; border-radius: 5px; overflow: hidden; padding: 15px; }
.productdetail .productimage .image-wrap img { transition: transform 0.3s; }
.productdetail .productimage .image-wrap .product-main-img { display: block; }
.productdetail .banner-content { padding: 10px 20px; display: inline-block; margin-bottom: 15px; background: var(--primary-color); color: #fff; border-radius: 5px; }
.productdetail .productimage img { width: 100%; max-width: 100%; object-fit: contain; height: auto; }
.productdetail .productimage .img-thumbs { display: flex; margin: 15px; }
.productdetail .productimage .img-thumbs a { display: block; width: 60px; flex-shrink: 0; margin: 0 5px; border: 1px solid #C9C9C9; padding: 5px; border-radius: 5px; }
.productdetail .product-main h1 { margin-bottom: 5px; font-size: 1.5rem; color: #000;  }
.productdetail .product-main .specs-title { font-size: 1rem; }
.productdetail .product-main .currentprice { margin: 0 0 5px 0; position: relative; }
.productdetail .product-main .currentprice .price { font-size: 1.4rem; font-weight: 700; color: #000; }
.productdetail .product-main .currentprice .oldprice { text-decoration: line-through; display: block; line-height: 0.5; color: #B5B5B5; }
.productdetail .product-main .currentprice .discount-price { color: var(--secondary-color); }
.productdetail .product-main .currentprice .unit { color: #333333; }
.productdetail .product-main .product-description {  }
.productdetail .product-main .product-description ul { list-style: none; padding-left: 0; }
.productdetail .product-main .product-description ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #51585E; }
.productdetail .product-main .product-description ul li::before { content: '\f00c'; font-family: var(--font-awesome); position: absolute; left: 0; top: 2px; color: #00a524; }
.productdetail .product-main .product-options {}
.productdetail .product-main .product-option { align-items: center; margin: 15px -15px; }
.productdetail .product-main .product-option .product-option-desc { font-size: 0.875rem; color: var(--primary-color-accent); font-weight: 700;  }
.productdetail .product-main .product-option select { width: 100%; padding: 12px; }
.productdetail .product-main .product-option input { width: 100%; padding: 12px; }
.productdetail .product-main .delivery-wrap { margin-top: 25px; }
.productdetail .product-main .btn { border-radius: 6px; font-size: 1.125rem; text-align: left; display: flex; justify-content: space-between; }
.productdetail .product-main .stock-wrap { margin-bottom: 25px; }
.productdetail .product-main .stock { font-size: 0.875rem; color: #ff8800; }
.productdetail .product-main .stock::before { content: '\f468'; font-family: var(--font-awesome); margin-right: 10px; }
.productdetail .product-main .stock.green { color: #00a524; }
.productdetail .product-main .stock.red { color: var(--color-red-warning); }
.productdetail .product-main .delivery { font-size: 0.875rem; color: var(--primary-color); font-weight: 500; }
.productdetail .product-main .delivery svg { display: inline-block; height: 22px; margin-right: 10px; fill: currentColor; }
.productdetail .discountinfo { position: absolute; width: 120px; height: 120px; border-radius: 50%; z-index: 2; margin: 20px; background: var(--primary-color); }
.productdetail .discountinfo span { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; left: 0; text-align: center; font-size: 1rem; line-height: 1; color: #fff; }

.productinfo { }
.productinfo h2 { font-size: 1.563rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
.productinfo table { color: var(--black); width: 100%; display: block; margin-bottom: 25px; color: #4C4441; }
.productinfo table thead { display: block; }
.productinfo table tbody { display: block; }
.productinfo table thead th { font-size: 1rem; padding: 10px; display: block; min-width: 33%; color: var(--primary-color); }
.productinfo table tr { display: flex; }
.productinfo table tbody td,
.productinfo table tbody th { font-size: 1rem; font-weight: 400; padding: 10px; min-width: 33%; width: 50%; }
.productinfo table tbody tr:nth-child(odd) { background-color: var(--bg-color); border-radius: 6px; }

.productvideo { display: inline-flex; align-items: center; }
.productvideo::before { content: '\f144'; font-family: var(--font-awesome); margin-right: 10px; }

.download-manual { display: flex; align-items: center; }
.download-manual::before { content: '\f1c1'; font-family: var(--font-awesome); margin-right: 10px; }

/* Shopping cart modal */
.modal.fixed-right { padding-right: 0!important; }
.modal.fixed-right .modal-dialog-vertical { height: 100%; max-width: 500px; margin: 0; margin-left: auto; transition: transform 0.3s; transform: translateX(100%); }
.modal.fixed-right.show .modal-dialog-vertical { transform: translateX(0); }
.modal.fixed-right .modal-content { border-radius: 0; border: none; min-height: 100%; }
.modal.fixed-right .card-header { background: none; border: none; display: flex; justify-content: flex-end; font-size: 1.375rem; }
.modal.fixed-right .card-header button { color: var(--primary-color); opacity: 1; }
.modal.fixed-right .card-body { padding: 15px; }
.modal.fixed-right h4,
.modal.fixed-right h5,
.modal.fixed-right h6 { text-align: center; font-family: var(--font-title); }
.modal.fixed-right h4 { font-size: 1.25rem; margin-top: 15px; color: #000; }
.modal.fixed-right h5 { font-size: 1.125rem; margin-bottom: 25px; }
.modal.fixed-right h6 { font-size: 1.25rem; margin-top: 75px; color: #000; }
.modal.fixed-right .sidebar-product-img { display: flex; justify-content: center; }
.modal.fixed-right img { max-width: 100%; transition: transform 0.3s; }
.modal.fixed-right .product { margin-bottom: 0; padding: 0 15px; box-shadow: none; border-radius: 0; overflow: hidden; border: none; }
.modal.fixed-right .product:last-child { }
.modal.fixed-right .product .producttitle { font-size: 0.875rem; }
.modal.fixed-right .product .pricestyle { font-size: 0.875rem; }
.modal.fixed-right .product .old-price { text-decoration: line-through; font-size: 0.75rem; color: #B5B5B5; }
.modal.fixed-right .card-foot { display: flex; justify-content: space-between; padding: 15px; }
.modal.fixed-right .btn { padding: 10px 25px; }
.modal.fixed-right .btn-light { font-size: 0.875rem; background: #fff; border: 1px solid #B5B5B5; color: #B5B5B5; font-weight: 400; }
.modal.fixed-right .btn-light::after { display: none; }
.modal.fixed-right .btn-light:hover { background: #efefef; }
.modal.fixed-right .btn-success { flex-direction: row-reverse; }

/* ----- SHOPPING CART PAGE ----- */
.cart-title h1 { color: var(--secondary-color); font-size: 3rem; text-align: center; margin: 50px 0 50px 0; }
.cart-title .btn-light { padding: 10px 25px; font-size: 1rem; margin-top: 50px; }
.cart-title .btn-light::after { display: none; }
.cart-title .btn-light::before { content: '\f177'; font-family: var(--font-awesome); margin-right: 25px; display: inline-block; transition: transform 0.3s; }
.cart-title .btn-light:hover::before { transform: translateX(-5px); }


/* Cart table */
.cart-products-wrap { margin-bottom: 50px; }
.cartProduct { display: flex; align-items: center; padding: 10px 0; }
.cartProduct,
.cartTable-bottom { border-bottom: 1px solid rgba(181,181,181,0.3); }
.cartProductThumb { width: 20%; max-width: 200px; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.cartProductThumb img { max-width: 100%; border-radius: var(--br-sm); }
.cart-product-desc { flex-grow: 1; padding-left: 15px; }
.cart-product-desc .title,
.cart-product-desc .sub { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.cartProduct h4 a { font-size: 1rem; color: #000; }
.cartProduct .title a i { margin-left: 15px; margin-top: 8px; color: #000; }
.cartProduct .title a i:hover { color: #888; }
.cartProduct .sub .price { color: var(--primary-color); font-weight: 700; }
.cart-product-desc .meta { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--space-xs); }
.cart-product-desc .meta .specs-title { font-size: 0.875rem; color: #333; }
.cart-product-desc .meta .specs-subtitle { font-size: 0.75rem; color: #888; }
.cart-product-desc .sub .pricing { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.cart-product-desc .sub .pricing .unit-price { font-size: 0.75rem; color: #888; font-weight: 400; }
.cart-product-desc .sub .pricing .price { font-size: 1.125rem; }
.cartSmall_cart { display: flex; }
.cart-product-desc input { width: 80px; text-align: center; border: 2px solid #e1e1e1; border-left: none; border-right: none; padding: 3px 0; color: #333; border-radius: 0; font-size: 0.75rem; }
.cart-product-desc button { border: none; background: #e1e1e1; padding: 5px 8px; font-weight: 700; border-radius: 0; font-size: 0.75rem; }
.cart-product-desc button:hover { background: #ccc; }
.cartTable-bottom { display: flex; justify-content: space-between; padding: 10px 0; }
.cartTable-bottom .value { margin-left: 10px; flex-shrink: 0; }
.cartTable-bottom.last-bottom { border-bottom: none; }
.cartTable-bottom:last-of-type { border-bottom: none; }
.cartProduct .extra-desc { margin-top: 10px;  }
.cartProduct .delivery { font-size: 1rem; font-weight: 500; color: var(--primary-color); }
.cartProduct .delivery svg { display: inline-block; height: 22px; margin-right: 10px; fill: currentColor; }
.cartFooter { padding-left: 50px; position: sticky; top: 75px; bottom: 0; }
.cartFooter .btn {margin-top: var(--space-sm);}

.checkout-btns .btn { margin: 0 !important; padding: 10px 25px; font-size: 1rem; }
.checkout-btns .btn-light::after { display: none; }
.checkout-btns .btn-light::before { content: '\f177'; font-family: var(--font-awesome); margin-right: 25px; display: inline-block; transition: transform 0.3s; }
.checkout-btns .btn-secondary { background: #00a524; border-color: #00a524; }
.checkout-btns .btn-secondary:hover { background: #9ce84b; border-color: #9ce84b; }

.checkout-table h4 a { font-size: 0.875rem; }
.checkout-table h4 { margin-bottom: 0; }

/* ----- CHECKOUT PAGE ----- */
.checkout-form { margin-bottom: 50px; }
.checkout-form h4 { margin-top: 75px; margin-bottom: 15px; color: var(--primary-color); border-bottom: 1px solid var(--primary-color); padding-bottom: 10px; }
.checkout-form p.label { font-size: 0.875rem; margin-top: 10px; }
.checkout-btns { display: flex; justify-content: space-between; margin-top: 50px; }
.checkout-form .form-group { margin: 0; }
.checkout-form .form-control { margin-bottom: 15px; }
.checkout-form .payoption { display: flex; align-items: center; padding: 15px; border-radius: 4px; user-select: none; border: 1px solid #B5B5B5; }
.checkout-form .payoption:hover { cursor: pointer; background: rgba(200,200,200,0.1); }
.checkout-form .payoption:active { background: rgba(200,200,200,0.3); }
.checkout-form .payoption input { height: 0; width: 0; position: absolute; visibility: hidden; }
.checkout-form .payoption input:checked ~ .radiobtn { background: var(--primary-color); }
.checkout-form .payoption input:checked ~ .radiobtn::after { display: block; }
.checkout-form .payoption .radiobtn { width: 20px; height: 20px; background: #ccc; margin-right: 15px; border-radius: 50%; display: flex; justify-content: center; align-items: center; flex-shrink: 0; }
.checkout-form .payoption .radiobtn::after { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; display: none; }
.checkout-form .payoption .extraprice { font-size: 0.875rem; margin-left: 15px; color: var(--primary-color); font-weight: 700; }
.checkout-form .factuurgegevens,
.checkout-form .deliverytype,
.checkout-form .payment-method { margin-bottom: 50px; }
.checkout-form .deliverytype { display: flex; align-items: center; }
.checkout-form .deliverytype .checkmark { width: 20px; height: 20px; top: 0; }
.checkout-form .deliverytype input:checked ~ .checkmark::after { content: '\f00c'; font-size: 0.875rem; }
.checkout-form .payMethodes { margin-bottom: 50px; }
.checkout-form .payMethodes input { height: 0; width: 0; position: absolute; visibility: hidden; }
.checkout-form .payMethodes label { border: 1px solid #B5B5B5; padding: 10px 15px; border-radius: 4px; cursor: pointer; user-select: none; text-align: center; }
.checkout-form .payMethodes label:hover { background: rgba(200,200,200,0.1); }
.checkout-form .payMethodes label:active { background: rgba(200,200,200,0.3); }
.checkout-form .payMethodes label.active { border: 1px solid var(--secondary-color); }
.btn.addcoupon {width: fit-content !important;}
.btn.addcoupon::before { content: var(--coupon); transform: none !important;}
.form-group a { color: var(--primary-color-accent); }

.checkout-form input[type="checkbox"],
.checkout-form input[type="radio"] {accent-color: var(--primary-color);}

.checkout-form input[type="text"],
.checkout-form input[type="password"],
.checkout-form input[type="email"],
.checkout-form select { height: auto; padding: 15px; border-radius: 5px; }

.checkout-form .calcBox-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem;}
.checkout-form .calcBox-top h4 { font-size: 1.125rem;}
.checkout-form .checkout-table { margin-bottom: var(--space-sm); }
.checkout-form .cart-product-desc .title,
.checkout-form .cart-product-desc .sub { margin-bottom: 0; }
.checkout-form .cart-product-desc .amount-price { font-size: 0.75rem; }
.checkout-form .cart-product-desc .price { font-size: 0.875rem; }
.checkout-form .cart-product-desc .title h4 { margin-top: 0; border-bottom: 0; }
.checkout-form .cartTable-bottom { font-size: 0.875rem; justify-content: space-between; }

.InvoiceCalcBox { position: sticky; top: 75px!important; bottom: 0; }
.InvoiceCalcBox h4 { margin-top: 0; border-bottom: 0; }
.InvoiceCalcBox .calcBox-top h4 { margin-top: 0; padding-bottom: 0; }

/* Formulier */
form input[type="checkbox"],
form input[type="radio"] {accent-color: var(--primary-color);}
form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select { height: auto; padding: 15px !important; border-radius: 5px !important; }

form textarea {min-height: 150px;}

/* ----- ACCOUNT PAGE ----- */
.submit-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.submit-bot .btn { margin: var(--space-xs) 0; }
.checkout-form h2.block { margin-bottom: var(--space-sm); }


/* ----- REGISTER PAGE ----- */
.checkout-form .customer-type-label { display: inline-flex; align-items: center; margin-right: 20px; margin-bottom: 20px; cursor: pointer; }
.checkout-form .customer-type-label input { height: 0; width: 0; position: absolute; visibility: hidden; }
.checkout-form .customer-type-label .radiobtn { width: 20px; height: 20px; background: #ccc; margin-right: 10px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; }
.checkout-form .customer-type-label:hover .radiobtn { background: #bbb; }
.checkout-form .customer-type-label .radiobtn::after { content: ''; width: 8px; height: 8px; background: #fff; border-radius: 50%; opacity: 0; }
.checkout-form .customer-type-label input:checked ~ .radiobtn { background: var(--primary-color); }
.checkout-form .customer-type-label input:checked ~ .radiobtn::after { opacity: 1; }


/* ----- ORDER PAID PAGE PAGE ----- */
.order-pay-succes {  }
.order-pay-succes .top-details { text-align: center; margin-top: 75px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #707070; }
.order-pay-succes .top-details i { font-size: 4.875rem; color: var(--primary-color-accent); }
.order-pay-succes h1 { margin: 0; }
.order-pay-succes h2 { font-size: 1.75rem; margin-bottom: 25px; color: var(--primary-color-accent); }
.order-pay-succes h3 { font-size: 1.5rem; color: var(--primary-color); }
.order-pay-succes h4 { margin-bottom: 0; color: var(--primary-color-accent);  }
.order-pay-succes .ordered-products { margin-bottom: 25px; }
.order-pay-succes .cart-product-desc .sub { align-items: flex-end; }
.order-pay-succes .ordered-products-sub { margin-top: 50px; padding-bottom: 50px; border-bottom: 1px solid #707070; }
.order-pay-succes .ordered-products-sub .cartTable-bottom { border-bottom: 1px solid rgba(181,181,181,0.3); }
.order-pay-succes .ordered-products-sub .cartTable-bottom.total-price { font-size: 1.5rem; border-bottom: 0; }
.order-pay-succes .ordered-products-sub .cartTable-bottom.total-price .value { font-weight: 700; }
.order-pay-succes .cartProduct { border-bottom: none; }
.order-pay-succes .cartProduct .descs { font-style: italic; }
.order-pay-succes .cartProduct .price { font-weight: 400; font-style: italic; color: #707070; }


/* ----- FORMS ----- */
input.form-control.has-danger { border-color: #d9534f; box-shadow: 0px 3px 10px rgb(217 83 79 / 20%); }


@media only screen and (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {display: flex; flex-direction: column; }
}


@media only screen and (max-width: 1439px) {
  header input.form-control { padding: 20px 10px; }
  header .header-icons .user-icon,
  header .logo-wrap img { max-height: 60px; }

  .mainmenu .navbar-nav > .nav-item > .nav-link { padding: 10px 8px; }

  .breadcrumbs ul { margin: 15px 0; }
}

@media only screen and (max-width: 1199px) {
  h1 { font-size: 1.75rem; } 
  h2 { font-size: 1.5rem; }

  .mainmenu .navbar-toggler .navbar-toggler-icon {color: var(--primary-color);}
  .mainmenu .navbar-toggler .navbar-toggler-icon i {color: var(--primary-color);}
  .mainmenu .navbar-toggler .navbar-toggler-icon i::before {color: var(--primary-color);}

  .mainmenu .navbar-nav > .nav-item > .nav-link { padding: 10px; font-size: 1rem; }
  .dropdown > .dropdown-menu { padding: 5px; }
  .dropdown > .dropdown-menu > li { margin: 0; padding: 0 15px; }
  .dropdown > .dropdown-menu > li > a { margin: 5px 0; font-size: 0.875rem; }

  .breadcrumbs ul { margin: 10px 0; }

  .productdetail .productimage .image-wrap { padding: 8px; }
  .productdetail .product-main h1 { font-size: 1.25rem; }
  .productdetail .product-main .specs-title { font-size: 0.875rem; }
  .productdetail .product-main .currentprice .price { font-size: 1.25rem; }
  .productdetail .product-main .stock-wrap { margin-bottom: 15px; }

  .productinfo h2 { font-size: 1.125rem; margin-bottom: 15px; }
}


@media only screen and (max-width: 991px) {
  .topbar { font-size: 0.875rem; padding-top: 12px; padding-bottom: 12px; }
  .topbar .container > .row { justify-content: flex-end; }
  .topbar .lang-select .dropdown-menu .dropdown-item { font-size: 0.875rem; }
  .dropdown > .dropdown-menu { flex-wrap: wrap; justify-content: flex-start; padding: 15px; max-height: 80vh; overflow-y: auto; }
  .dropdown > .dropdown-menu > li { margin: 0; flex-grow: 1; }
  .dropdown > .dropdown-menu > li > a { font-size: 0.875rem; }

  header .header-icons .user-icon,
  header .header-icons .cartmenu { width: 40px; height: 40px; font-size: 1rem; margin-right: 5px; }
  header .header-icons .cartmenu { margin-right: 0; }

  .msc_amount { top: -5px; right: -5px; }
  header .logo-wrap img { max-height: 60px; }

  .mainmenu { padding: 15px; }

  .home-slider h2 { font-size: 1.875rem; margin-bottom: 0; }

  .usp-product ul { margin: 5px 0; }

  .usp-product-top > .container > .row { margin: 10px -15px; }

  .order-pay-succes h4 { font-size: 1.125rem; }

  .cart-title .btn-light { margin-top: 25px; }

  .cart-title h1 { text-align: left; margin: 25px 0; }
  .cartFooter { padding-left: 0; position: static; }

  .checkout-form .calcBox-top h4 { margin-top: 0; }

  .productdetail .productimage .image-wrap { padding: 15px; }
  .productdetail .product-main h1 { font-size: 1.5rem; }
  .productdetail .product-main .specs-title { font-size: 1rem; }
  .productdetail .product-main .currentprice .price { font-size: 1.4rem; }
  .productdetail .product-main .stock-wrap { margin-bottom: 25px; }

  .productinfo h2 { font-size: 1.25rem; margin-bottom: 20px; }

  .toggle-filters-mobile .btn { display: block; }
  .filters-contain { position: fixed; top: 100dvh; left: 0; height: 100dvh; overflow: hidden; width: auto; transition: transform 0.5s; transform: translateY(0); z-index: 11; background: var(--white); padding: 0 15px; width: 100%;  }
  .filters-contain.show { transform: translateY(-100%); }
  .filter-side { position: relative; height: 100dvh; overflow-y: scroll; display: block; }
  .filter-side-show { overflow: hidden; }
  .filter-remove-filter { margin-bottom: 25px; }
  .filters-contain .show-products { position: absolute; bottom: 0; left: 0; width: 100%; padding: 10px 15px; z-index: 2; }
}


@media only screen and (max-width: 767px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.5rem; }

  .mbot-100 { margin-bottom: 75px; }
  .mtop-100 { margin-top: 75px; }
  .mbot-75 { margin-bottom: 50px; }
  .mtop-75 { margin-top: 50px; }
  .mbot-50 { margin-bottom: 25px; }
  .mtop-50 { margin-top: 25px; }

  .topbar { font-size: 0.75rem; }
  .topbar .top-right .top-el { margin-left: 20px; }
  .topbar .topbar-menu ul { flex-wrap: wrap; }
  .topbar .topbar-menu ul li { margin: 5px 20px; }

  .shopping-cart-circle { width: 40px; height: 40px; }

  .msc_amount { width: 15px; height: 15px; font-size: 0.625rem; }

  .mainmenu .navbar-nav .nav-link { font-size: 1.125rem; }
  .mainmenu .navbar-nav > .nav-item > .nav-link { padding: 10px 0;}

  .home-slider h2 { font-size: 1.5rem; }

  .breadcrumbs ul li::after { margin: 0 10px; }

  .cat-view-type .current-view-desc { margin: 0; }

  /* .product { }
  .product .banner { top: 5px; }
  .product .imagebox { width: 33.333333%; flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
  .product .imagebox img { height: auto; }
  .product .discountinfo { right: 25px; width: 60px; height: 60px; } */

  .productdetail .productimage .image-wrap { padding: 8px; }
  .productdetail .product-main h1 { font-size: 1.25rem; }
  .productdetail .product-main .specs-title { font-size: 0.875rem; }
  .productdetail .product-main .currentprice .price { font-size: 1.25rem; }
  .productdetail .product-main .stock-wrap { margin-bottom: 15px; }

  .productinfo h2 { font-size: 1.125rem; margin-bottom: 15px; }

  .productinfo h2 { font-size: 1.375rem; margin-bottom: 20px; }
  .productinfo table { margin-bottom: 15px; }
  .productdetail .banner-content { margin-bottom: 15px; }
  .productdetail .product-main .currentprice { margin-bottom: 15px; }
  .productdetail .product-main .currentprice .price { font-size: 1.375rem; }
  .productdetail .product-main .currentprice .unit { font-size: 0.875rem; }
  .productdetail .product-main .product-option input { padding: 10px; }
  .productdetail .product-main .btn { font-size: 1rem; }
  .productdetail .addtocart-btn-wrap { align-self: stretch; }
  .productdetail .addtocart-btn-wrap .btn { height: 100%; align-items: center; }

  .cat-view-type .view-type-btn { display: none; }

  .usp-bar .usp-desc h6 { font-size: 1rem; }
  .usp-bar .usp-desc span { font-size: 0.875rem; }

  .cartProduct .title a i { font-size: 0.875rem; }
  .cartProduct .sub .price { font-size: 0.875rem; }
  .cartProduct .delivery { font-size: 0.875rem; }
  .cartProduct .delivery svg { height: 18px; }
  .cartProduct h4 a { font-size: 0.875rem; }
  .cartTable-bottom { font-size: 0.875rem; }

  .cartFooter .btn { font-size: 0.875rem; }

  .checkout-form h4 { font-size: 1rem; }
  .checkout-form input[type="text"],
  .checkout-form input[type="password"],
  .checkout-form textarea,
  .checkout-form select.form-control { font-size: 0.875rem; padding: 10px 15px; }
  .checkout-form .col-md-4 { order: 1; }
  .checkout-form .col-md-8 { order: 2; }

  .order-pay-succes h4 { font-size: 1rem; }
  .order-pay-succes .ordered-products-sub .cartTable-bottom.total-price { font-size: 1.25rem; }
  .order-pay-succes .cartProduct .descs { font-size: 0.875rem; }

  .checkout-btns { flex-wrap: wrap; margin-top: 25px; }
  .checkout-btns .btn { width: 100%; margin: 5px 0; }

  .foot .footer-part:nth-child(2) { justify-content: flex-start; }
  .foot .footer-part:nth-child(3) { justify-content: flex-start; }
}


@media only screen and (max-width: 575px) {

  .topbar .lang-select .dropdown-menu { width: 100%; }
  header > .row > .container > .row > .search-icon-wrap { display: flex; align-items: center; justify-content: center; }
  header > .row > .container > .row > .search-icon-wrap button { color: #fff; text-shadow: none; opacity: 1; }
  header > .row > .container > .row > .search-icon-wrap button:hover { opacity: 0.8; }
  /* header > .row > .container > .row > .search-bar { order: 4; display: none; margin: 10px 0 0 0; } */
  /* header > .row > .container > .row > .search-bar.show { display: block; } */

  .store-message { font-size: 1rem; }

  .page-content { margin-bottom: 25px; }

  .usp-product > .container > .row { margin: 25px -15px; }
  .usp-product-top > .container > .row { margin: 10px -15px; }
  .cat-view-type .view-type-btns { margin: 5px 0; }
  .cat-view-type .dropdown-right { justify-content: flex-start; margin: 5px 0; }

  .dropdown > .dropdown-menu { margin: 0 -15px; width: calc(100% + 30px); }
  .dropdown > .dropdown-menu > li > a { font-size: 1rem; }
  .dropdown > .dropdown-menu > li > ul > li { font-size: 0.75rem; }

  .mainmenu { padding: 5px 0; }

  .home-slider { margin-left: -15px; margin-right: -15px; }
  .home-slider .slick-dots { position: relative; flex-direction: row; width: 100%; height: auto; }
  .home-slider .slick-dots li { margin: 0 10px; }

  .breadcrumbs ul { font-size: 0.75rem; }
  .breadcrumbs ul li::after { margin: 0 5px; }

  .productinfo h2 { font-size: 1.25rem; margin-bottom: 15px; }
  .row > *:first-child > .product { border-width: 1px 0 1px 0; }
  .product:hover { box-shadow: none; }

  .cat-view-type .current-view-desc { margin-left: 0; }
  .category-pagination { margin-top: 20px; }

  .category-big:hover { transform: none; }

  .productinfo { margin-bottom: 25px; }
  .productdetail .product-main .product-options { margin: 20px 0; }
  .productdetail .product-main .product-option { margin: 15px -5px; }
  .productdetail .product-main .product-option > * { padding-left: 5px; padding-right: 5px; }
  .productdetail .discountinfo { width: 100px; height: 100px; margin: 15px; }

  .modal.fixed-right .product { border: none; }

  .cart-title .btn-light { font-size: 0.875rem; }
  .cartFooter .btn { width: 100%; margin: 5px 0; }
  .cartTable-bottom { justify-content: space-between; }

  .checkout-form .customer-type-label { margin-right: 10px; }
  .checkout-form .payoption .radiobtn,
  .checkout-form .customer-type-label .radiobtn { width: 14px; height: 14px; }
  .checkout-form .payoption .radiobtn::after,
  .checkout-form .customer-type-label .radiobtn::after { width: 6px; height: 6px; }

  .checkout-btns .btn { font-size: 0.875rem; }

}


@media only screen and (max-width: 479px) {
  h2 { font-size: 1.5rem; }

  .mbot-100 { margin-bottom: 50px; }
  .mtop-100 { margin-top: 50px; }
  .mbot-75 { margin-bottom: 25px; }
  .mtop-75 { margin-top: 25px; }

  .topbar { font-size: 0.625rem; }
  .topbar .fa-stack { margin-right: 10px; }
  .topbar .top-right, .topbar .top-left { margin: 0; }
  .topbar .top-right .top-el { margin-left: 10px; }
  .topbar .lang-select .dropdown-menu .dropdown-item { font-size: 0.625rem; }

  header > .row > .container > .row { padding: 10px 0; }

  .search-results .producttitle,
  .search-results .pricestyle { font-size: 0.875rem; }

  .shopping-cart-circle { width: 40px; height: 40px; }
  .shopping-cart-circle svg { width: 18px; }

  .mainmenu .navbar-nav .nav-link { font-size: 1rem; }

  .home-slider h2 { font-size: 1.25rem; padding: 15px; }

  .product .discountinfo { width: 40px; height: 40px; }
  .product .discountinfo span { font-size: 0.75rem; }

  .productinfo h2 { font-size: 1.125rem; margin-bottom: 10px; }
  .productdetail .discountinfo { width: 80px; height: 80px; margin: 15px 0; }

  /* .cartProduct .title a i { font-size: 0.75rem; }
  .cartProduct .sub .price { font-size: 0.75rem; }
  .cartProduct h4 a { font-size: 0.75rem; }
  .cartTable-bottom { font-size: 0.75rem; } */

  .cartmenu svg { width: 18px; }

  .order-pay-succes .top-details i { font-size: 3rem; }
  .order-pay-succes .cartProduct .descs { font-size: 0.75rem; }
  .order-pay-succes .ordered-products-sub { margin-top: 25px; padding-bottom: 25px; }

  .usp-bar .right-icons { flex-wrap: wrap; justify-content: flex-start; }
  .usp-bar .right-icons .usp-desc { width: 100%; margin-top: 15px; }

  .modal.fixed-left .modal-dialog-vertical { width: 100vw; }
}

@media only screen and (max-width: 360px) {

}
/* Customs */
.form-control-error-list { margin-top: -15px; padding-bottom: 15px;}


.container {max-width: var(--container-width);}

@media only screen and (max-width: 1499px) {
  :root {
    --container-width: 1320px
  }
	.row > .container { max-width: 1320px; }
}

@media only screen and (max-width: 1399px) {
  :root {
    --container-width: 1140px
  }
	.row > .container { max-width: 1140px; }
}

/* ================================================== */
@media only screen and (max-width: 1199px) {
  :root {
    --container-width: 960px
  }
	.row > .container { max-width: 960px; }
}
/* ================================================== */
@media only screen and (max-width: 991px) {
  :root {
    --container-width: 720px
  }
	.row > .container { max-width: 720px; }
}
/* ================================================== */
@media only screen and (max-width: 767px) {
  :root {
    --container-width: 540px
  }
	.row > .container { max-width: 540px; }
	.modal.fixed-left .menu-content .main-menu .navbar-nav li { font-size: 1.875rem; }
  	.modal.fixed-left .menu-content .first-sub .submenu-items .dropdown-menu li a { font-size: 1.875rem; }
}
/* ================================================== */
@media only screen and (max-width: 575px) {
  :root {
    --container-width: 100%
  }
	.row > .container { max-width: none; }
	.modal.fixed-left .menu-content .main-menu .navbar-nav li { font-size: 1.5rem; }
  	.modal.fixed-left .menu-content .main-menu .navbar-nav li a { padding: 3px 12px; }
  	.modal.fixed-left .menu-content .first-sub .submenu-items .dropdown-menu li a { font-size: 1.5rem; }
}

/* ================================================== */
@media only screen and (max-width: 479px) {

	.modal.fixed-left .menu-content .main-menu .navbar-nav li { font-size: 1.25rem; }
  .modal.fixed-left .menu-content .first-sub .submenu-items .dropdown-menu li a { font-size: 1.25rem; }

	.container-fluid.endpage .col-md-4:nth-child(1){ text-align: center; }
	.container-fluid.endpage .col-md-4:nth-child(3){ text-align: center; }
	.container-fluid.endpage .col-md-4:nth-child(3) img{ max-width: 30px; }
}