/* page-products.css */

/* .product-detail - general */
/*
.product-detail {
	display: flex;
	align-items: flex-start;
}
*/

/* .product-detail - form */
/*
.product-detail .info .input-wrap {
	margin-right: var(--space-8);
}
*/

/* .product-detail - info */
/*
.product-detail .info .product-info {
  display: grid;
  grid-template-columns: 60% 40%;
  column-gap: 10px;
}
.product-info > * {
	min-width: 0;
}
.product-detail .info .product-info > * {
	grid-column: 1 / -1;
}

@media (max-width: 991px) {
	.product-detail {
  	display: block;
  }
}

@media (max-width: 768px) {
	.product-detail .info .product-info {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .product-info > * {
  	grid-column: 1 / -1;
    min-width: 0;
  }
}
*/

/* .product-detail - top-info */
/*
.product-detail .top-info .product-title {
	font-size: 1.8em;
	margin: 0;
}
.product-detail .top-info .product-brand {
	font-size: .9em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: var(--space-1);
}
.product-detail .top-info .product-code .title {
	font-weight: 400;
}
.product-detail .top-info .product-code {
	font-size: .75em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
}
*/

/* .product-detail - stock */
/*
.product-detail .info .price-stock {
	font-size: 14px;
  margin: var(--space-6) 0 0 0;
}
.product-detail .simple-product .price-stock {
	margin-bottom: 0;
}
.product-detail .info .stock {
  color: var(--color-gray-dark);
	font-size: .9em;
	font-weight: 700;
  line-height: normal;
}
.product-detail .info .stock i {
	margin-right: var(--space-1);
}
.product-detail .stock-container {
	font-size: 14px;
  color: var(--color-gray-dark);
  margin-right: 70px;
  line-height: normal;
}
.product-detail .stock-container.simple-product {
  margin-bottom: var(--space-3);
  line-height: normal !important;
}

@media only screen and (max-width: 768px) {
  .product-detail .stock-container {
  	margin-right: 55px;
    line-height: 25px;
  }
}
*/

/* .product-detail - cart */
/*
.product-detail .info .cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-detail .info .cart .add-cart {
	flex-grow: 10;
}
.product-detail .info .cart .add-cart img {
	width: 25px;
	margin-left: var(--space-2);
}
*/

/* .product-detail - delivery */
/*
.product-detail .info .product-delivery {
  color: var(--color-gray-dark);
	margin-bottom: var(--space-6);
	font-size: .9em;
	font-weight: 700;
}
.product-detail .info .product-delivery i {
	font-size: 1.3em;
  margin-right: 7px;
}
*/

/* .product-detail - price */
/*
.product-detail .info .price {
  display: flex;
  align-items: baseline;
	font-size: 2em;
	font-weight: 700;
  flex-wrap: wrap;
}
#productpage .new-price,
#productpage .stock .success-color,
.recent-products .recent-product .price {
  color: var(--color-primary);
}
#productpage .new-price.price-top,
#productpage .new-price.calculate-price {
	flex: 1 1 100%;
}
.product-detail .info .price .size-price {
  margin: 0 0 0 8px;
  font-size: 14px;
  color: var(--color-gray-dark);
  opacity: 0.5;
}
.product-detail .info .price .old-price {
	font-size: 80%;
	opacity: .5;
	text-decoration: line-through;
	position: relative;
}
.product-detail .info .price .old-price .price-wrap {
	margin-right: var(--space-2);
}
.product-detail .info .price .old-price .price-wrap:empty {
	display: none;
}
.product-detail .info .price .new-price small,
.product-detail .info .price .old-price small {
	font-size: 50%;
	opacity: .5;
	margin-left: var(--space-1);
}
.product-detail .info .price .unit-price {
	font-size: 13px;
}
.product-detail .info .price .srp {
	font-weight: 400;
	font-size: 12px;
  margin-bottom: var(--space-1);
}

@media (max-width: 767px) {
  .product-detail .info .price .srp {
  	margin-left: 0;
  }
}
*/

/* .product-detail - description */
/*
.product-detail .info .product-description {
	line-height: 1.75em;
	font-size: .97em;
	margin-bottom: var(--space-6);
}
.product-detail .info .product-description a {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-top: var(--space-2);
}
.product-detail .info .product-description a i {
	margin-right: var(--space-2);
}
.product-detail .info .product-description a:hover {
	color: var(--color-gray-dark);
	text-decoration: none;
}
*/

/* .product-detail - legal */




/*
@keyframes placeHolderShimmer {
	0% {
		right: 100%;
	}
	100% {
		right: -200px;
	}
}

.tabs-wrap .pages .page {
	display: none;
}
.tabs-wrap .pages .page.active {
	display: block;
}

.home-products .tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	margin: -5px;
	padding-bottom: var(--gap);
}
.home-products .tabs li {
	display: inline-block;
	padding: 5px;
}
.home-products .tabs li a {
	height: 25px;
	display: inline-flex;
	align-items: center;
	padding: 0 var(--gap);
	border-radius: var(--radius);
	background: rgba(0, 0, 0, 0.2);
	color: var(--black);
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
}
.home-products .tabs li.active a {
	color: var(--color-white);
}
.home-products .tabs li a:hover {
	background: rgba(0, 0, 0, 0.3);
}

.products {
	margin: calc(-1 * var(--gap));
	display: flex;
	flex-wrap: wrap;
}
.products .product,
.products .product-list {
	padding: var(--gap);
}
.products .product-list .product-inner {
	display: flex;
	align-items: center;
  padding: 0;
	border-radius: var(--radius);
}
.products .product .stars,
.products .product-list .stars {
	font-size: .9em;
	color: var(--color-yellow);
	margin: 0 -2px;
}
.products .product .stars i,
.products .product-list .stars i {
	margin: 2px;
}
.products .product a,
.products .product-list a {
	text-decoration: none;
}
.products .product a:hover,
.products .product-list a:hover {
	text-decoration: underline;
	color: var(--color-black) !important;
}
.products .product .image-wrap {
	position: relative;
	overflow: hidden;
}
.products .product .image-wrap .img-wrap {
	display: block;
	position: relative;
	background: var(--color-white);
}
.products .product .image-wrap .img-wrap .sec {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: opacity .25s ease-in-out;
	padding: 10%;
}
.products .product .image-wrap .more-images {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px;
	background: var(--color-white);
	transition: transform .25s ease-in-out;
	transition-delay: .1s;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	border-top: 1px solid rgba(0, 0, 0, .07);
	transform: translate(0, 100%);
}
.products .product.has-more:hover .image-wrap .more-images {
	transform: translate(0, 0);
}
.products .product .image-wrap .more-images .images {
	margin: -10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.products .product .image-wrap .more-images .image-col {
	width: 25%;
	padding: 10px;
}
.products .product .image-wrap .more-images .image .wrap {
	position: relative;
	padding: 5%;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
}
.products .product .image-wrap .more-images .image .wrap:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.03);
}
.products .product .image-wrap .more-images .image img {
	width: 100%;
	opacity: .6;
	transition: opacity .25s ease-in-out;
}
.products .product .image-wrap .more-images .image.active img {
	opacity: 1;
}
.products .product.has-sec:hover .image-wrap .img-wrap .sec {
	opacity: 1;
}
.products .product .buttons,
.products .product-list .buttons {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 9;
	display: flex;
	align-items: center;
	margin: -6px;
	font-size: 16px;
}
.products .product .buttons .button,
.products .product-list .buttons .button {
	padding: 6px;
	opacity: .5;
}
.products .product .buttons .button.text-button,
.products .product-list .buttons .button.text-button {
	display: none;
}
.products .product:hover .buttons .button.text-button,
.products .product-list:hover .buttons .button.text-button {
	display: block;
}
.products .product:hover .buttons .button.text-button .show-btn,
.products .product-list:hover .buttons .button.text-button .show-btn {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 5px 7px;
	background: var(--color-gray-light);
	border-radius: calc(var(--radius) / 2);
	display: inline-flex;
	color: var(--color-white);
}
.add-to-wishlist.in-wishlist i:before {
	content: "\6c";
}
.products .product .product-inner {
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
}
.products .product .product-inner.border-allways,
.products .product-list .product-inner.border-allways {
	border: 1px solid rgba(0, 0, 0, .07);
}
.products .product:hover .product-inner.border-on-hover,
.products .product-list:hover .product-inner.border-on-hover {
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.10);
}
.products .product .img-wrap {
	background: var(--color-white);
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	overflow: hidden;
}
.products .product-list .img-gray .img-wrap {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
}
.products .product .img-wrap img {
	width: 100%;
  height: auto;
}
.products .product .img-gray .img-wrap,
.products .product .product-inner.no-border .img-wrap,
.products .product .product-inner.border-on-hover .img-wrap {
	border: none;
}
.products .product .img-gray .img-wrap:after,
.products .product-list .img-gray .img-wrap:after {
	position: absolute;
	content: '';
	display: block;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.03);
}
.products .product-list .image-wrap {
	min-width: 200px;
	max-width: 200px;
	position: relative;
	background: var(--color-white);
}
.products .product-list .image-wrap img {
	width: 100%;
}
.products .product .info {
	padding: 20px;
}
.products .product-list .info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: stretch;
	padding: 10px 0;
  flex-grow: 1;
}

.products .product-list .info .info-wrap .info-top {
	display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: calc(var(--gap) * 2);
}

.products .product-list .info .info-wrap .info-top  .title {
	margin: 0 !important;
}

.products .product .product-inner.no-border .info {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
}
.products .product .info .product-brand,
.products .product-list .info .product-brand {
	display: block;
	font-size: .9em;
	font-weight: 700;
}
.products .product .info .title,
.products .product-list .info .title {
	margin-bottom: 5px;
	display: block;
	line-height: 1.5em;
	overflow: hidden;
}
.products .product .info .title.one-line,
.products .product-list .info .title.one-line {
	height: 1.5em;
}
.products .product .info .title.two-lines,
.products .product-list .info .title.two-lines {
	height: 3em;
}
.products .product .info .title.three-lines,
.products .product .info-list .title.two-lines {
	height: 4.5em;
}
.products .product .info .title.four-lines,
.products .product .info-list .title.four-lines {
	height: 4.5em;
}

.products .product .info .description,
.products .product-list .info .description {
	font-size: .85em;
	line-height: 1.6em;
	overflow: hidden;
	height: 4.8em;
	margin-top: 5px;
}
.products .product-list .info .description {
	height: auto;
}
.products .product .info .description.one-line {
	height: 1.6em;
}
.products .product .info .description.two-lines {
	height: 3.2em;
}
.products .product .info .description.three-lines {
	height: 4.8em;
}
.products .product .info .price,
.products .product-list .info .price {
	margin-top: 10px;
	font-size: .95em;
	font-weight: 700;
}
.products .product .info .price .old-price .price-inner,
.products .product-list .info .price .old-price .price-inner {
	margin-right: 10px;
	display: inline-block;
	text-decoration: line-through;
	font-size: 90%;
}
.products .product .info .price .old-price .price-inner:empty,
.products .product-list .info .price .old-price .price-inner:empty {
	display: none;
}
.products .product .info .price .legal,
.products .product-list .info .price .legal {
	font-weight: 400;
	font-size: 11px;
	opacity: .5;
  display: none;
}
.products .product .info .price .srp,
.products .product-list .info .price .srp {
	margin-left: 5px;
	font-weight: 400;
	font-size: 11px;
	opacity: .5;
}
.products .product .info .compare,
.products .product-list .info .compare {
	margin-top: 10px;
	display: inline-flex;
}
.products .product .info .compare .ui.checkbox,
.products .product-list .info .compare .ui.checkbox {
	padding: 0;
}
.products .product .product-labels,
.products .product-list .product-labels {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 9;
	display: flex;
	align-items: flex-start;
}
.products .product .product-labels.margin-left,
.products .product-list .product-labels.margin-left {
	right: 10px;
  left: auto;
}
.products .product .product-label,
.products .product-list .product-label {
	height: 20px;
	background: var(--color-gray-light);
	color: var(--color-white);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .1em;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	font-weight: 700;
	margin-right: 5px;
	border-radius: var(--radius);
}
.products .product .product-label:empty,
.products .product-list .product-label:empty {
	display: none;
}
.products .product .product-label:last-child,
.products .product-list .product-label:last-child {
	margin-right: 0;
}
.products .no-products-found > div {
  font-weight: 700;
  padding-top: var(--gap);
  padding-bottom: calc(car(--gap) * 2);
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}
.products .no-products-found > div p {
  margin: 0;
}
.products .no-products-found > div a {
  margin-top: var(--gap);
}
.products .product .product-inner.border-allways,
.products .product-list .product-inner.border-allways {
	transition: 0.25s all ease-in-out;
}
.products .product .product-inner.border-allways:hover, .products .product-list .product-inner.border-allways:hover {
	box-shadow: 0 0 12px 0 rgb(0 0 0 / 12%);
}
.products .product-list .info {
  padding: 20px;
  border-left: 1px solid rgba(0, 0, 0, .07);
}
.products .product .info .price, .products .product-list .info .price {
	font-size: 1.2em;
}

.quickview-popup {
	display: none;
}
.fancybox-slide>.quickview-popup {
	width: 100%;
	max-width: 1400px;
	padding: 0;
	padding: 50px;
	border-radius: var(--radius);
	box-shadow: 0 2px 40px 8px rgba(0, 0, 0, 0.08);
}

.product-detail {
	display: flex;
	align-items: flex-start;
}
.product-detail .images-wrap {
	min-width: 450px;
	max-width: 450px;
  margin-right: 50px;
}
.product-detail .info {
	flex-grow: 10;
}
.product-detail .top-info .product-title {
	font-size: 1.8em;
	margin: 0;
}
.product-detail .top-info .product-brand {
	font-size: .9em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: 7px;
}
.product-detail .top-info .stars-code {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 7px;
}
.product-detail .top-info .stars {
	white-space: nowrap;
	font-size: .9em;
	color: var(--color-yellow);
	margin: 0 -2px;
	font-size: 1.15em;
}
.product-detail .top-info .stars i {
	margin: 2px;
}
.product-detail .info .price-stock {
	font-size: 14px;
  margin: calc(var(--gap) 0 0 0;
}
.product-detail .info .stock {
  color: var(--color-gray-dark);
	font-size: .9em;
	font-weight: 700;
	letter-spacing: .1em;
	margin-bottom: 3px;
  line-height: normal;
}
.product-detail .info .stock i {
	margin-right: 7px;
}
.product-detail .stock-container {
	font-size: 14px;
  color: var(--color-gray-dark);
  margin-right: 70px;
  line-height: normal;
}
.product-detail .stock-container.simple-product {
  margin-bottom: var(--gap);
  line-height: normal !important;
}

.product-detail .top-info .product-code .title {
	font-weight: 400;
}
.product-detail .top-info .product-code {
	font-size: .75em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
}
.product-detail .info .product-delivery {
  color: var(--color-gray-dark);
	margin-bottom: 20px;
	font-size: .9em;
	font-weight: 700;
	letter-spacing: .1em;
}
.product-detail .info .product-delivery i {
	margin-right: 7px;
}
.product-detail .info .price {
  display: flex;
  align-items: baseline;
	font-size: 2em;
	font-weight: 700;
  flex-wrap: wrap;
}
.product-detail .info .price .size-price {
  margin: 0 0 0 8px;
  font-size: 14px;
  color: var(--color-gray-dark);
  opacity: 0.5;
}
.product-detail .info .product-description {
	line-height: 2em;
	font-size: .97em;
	margin-bottom: calc(var(--gap) * 2);
}
.product-detail .info .product-description a {
	text-decoration: underline;
}
.product-detail .info .price .old-price {
	font-size: 80%;
	opacity: .5;
	text-decoration: line-through;
	position: relative;
}
.product-detail .info .price .old-price .price-wrap {
	margin-right: 10px;
}
.product-detail .info .price .old-price .price-wrap:empty {
	display: none;
}
.product-detail .info .price .new-price small,
.product-detail .info .price .old-price small {
	font-size: 50%;
	opacity: .5;
	margin-left: 5px;
}
.product-detail .info .price .legal {
	font-weight: 400;
	font-size: 12px;
	opacity: .5;
  margin-left: 8px;
}
.product-detail .info .price .unit-price {
	font-size: 13px;
}
.product-detail .info .price .srp {
	font-weight: 400;
	font-size: 12px;
	margin-left: 5px;
}
.product-detail .order-countdown {
	display: flex;
	align-items: center;
	margin-bottom: calc(var(--gap) * 2);
}
.product-detail .order-countdown .icon {
	min-width: 50px;
	max-width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-round);
	color: var(--color-white);
	background: var(--color-gray-lighter);
	font-size: 30px;
	margin-right: var(--gap);
}
.product-detail .order-countdown .subtitle {
	font-size: .75em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: 3px;
}
.product-detail .order-countdown .title {
	font-size: 1.1em;
}

.input-wrap .change {
	display: flex;
	align-items: center;
}

.input-wrap .change a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	text-decoration: none;
}
.input-wrap .change a:hover {
	opacity: .5;
}
.input-wrap .change input {
	width: 50px;
	height: 50px;
	text-align: center;
	padding: 0 5px;
	margin: 0 10px;
	background: var(--colar-gray-lighter);
	border-radius: var(--radius);
}

.product-detail .info .cart {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-detail .info .input-wrap {
	margin-right: 40px;
}
.product-detail .info .cart .add-cart {
	flex-grow: 10;
}
.product-detail .info form {
	margin-top: 40px;
}
.product-detail .info .share-compare {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-detail .info .compare {
	display: inline-flex;
}
.product-detail .info .share-compare .share {
	display: flex;
	align-items: center;
	opacity: .7;
}
.product-detail .info .share-compare .share label {
	font-size: .75em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
	margin-right: 7px;
	margin-bottom: 0;
}
.product-detail .info .share-compare .share ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.product-detail .info .share-compare .share ul li {
	margin-left: 10px;
	font-size: 16px;
}
.product-detail .info .cart .add-wish {
	padding: 0;
	width: 50px;
	height: 50px;
	background: transparent;
	margin-left: 20px;
	box-shadow: none !important;
}
.product-detail .info .product-option .options {
	margin: -10px;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
.product-detail .info .product-option .options .option {
	padding: 10px;
	width: auto;
	flex: 1;
	min-width: 50%;
}
.product-detail .info .product-option,
.product-detail .info .product-option-container {
	margin-bottom: calc(var(--gap) * 2);
}
.product-detail .info .product-option label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	font-weight: 700;
	letter-spacing: .1em;
	margin-bottom: 7px;
  cursor: pointer;
}
.product-detail .info .product-option label .price {
  font-size: 1em;
  margin: 0 0 0 5px;
  opacity: 1;
}
.product-detail .info .product-option .ui.selection.dropdown {
	height: 50px;
	border: none !important;
	background: var(--color-gray-lighter);
	display: flex;
}
.product-detail .product-option .product-configure-variants,
.product-detail .product-option .product-configure-custom-option {
	margin-top: 20px;
}
.product-detail .product-option input[type="text"] {
	outline: none;
	height: 50px;
	padding: 0 var(--gap);
	border: none;
	border-radius: var(--radius);
	width: 100%;
	appearance: none;
	margin: 5px 0;
}
.product-detail .product-option textarea {
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 150px;
	min-height: 150px;
	outline: none;
	appearance: none;
	border: none;
	border-radius: var(--radius);
	padding: var(--gap);
	margin: 5px 0;
}
.product-detail .info .product-option .product-variants .dropdown {
	justify-content: flex-start;
  gap: var(--gap);
}
.product-detail .info .product-option .product-variants .dropdown .icon {
	order: 1;
  font-size: 1.7em;
  margin: 0;
}
.product-detail .info .product-option .product-variants .dropdown .text {
	order: 2;
}
.product-detail .images .product-images .owl-stage {
	display: flex;
}
.product-detail .images .product-images .item {
	height: 100%;
	margin: 0 1px;
}
.product-detail .images .image {
	background: var(--color-white);
	overflow: hidden;
	border-radius: var(--radius);
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 1px;
}
.product-detail .images .image .video-inner {
	position: relative;
	width: 100%;
  height: 100%;
}
.product-detail .images .image .video-inner a {
  display: block;
  height: 100%;
}
.product-detail .iframe-video img {
	width: 100%;
  height: 100% !important;
  object-fit: cover;
}

lite-youtube {
  background: var(--color-black);
  padding: 0 !important;
  height: 100% !important;
}

.product-detail .images .image .video-inner iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
.product-detail .images .thumbs .image {
	cursor: pointer;
	height: 100%;
}
.product-detail .images .thumbs .image img {
	height: 100%;
	object-fit: cover;
}
.product-detail .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
  transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
	justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--color-red);
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: 0 0.3rem 0.6rem 0 #0000004d;
  border-radius: var(--radius-round);
  opacity: 0.85;
}
.product-detail .play-btn.large {
	width: 90px;
  height: 90px;
  font-size: 4rem;
}
.product-detail .images .thumbs .image.active,
.product-detail .images .thumbs .image:hover {
	opacity: 1;
}
.product-detail .images .item.active .image.img-border {
	border-width: 2px;
}
.product-detail .images .image.img-border {
	border: 1px solid var(--colar-gray-lighter);
}
.product-detail .images .image.img-border img {
  height: auto;
}
.product-detail .thumbs .image.img-border img {
  height: 100%;
}
.product-detail .images .quickview-thumbs,
.product-detail .images .product-thumbs {
	margin-top: 10px;
}
.product-detail .info .discounts ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .8em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
}
.product-detail .info .discounts ul li {
	background: var(--color-white);
	padding: 10px 15px;
	border-radius: var(--radius);
	border: 1px solid rgba(0, 0, 0, 0.07);
	margin-bottom: 5px;
}
.product-detail .info .discounts ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-detail .info .discounts .discount-label {
	height: 25px;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	border-radius: var(--radius);
	color: var(--color-white);
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
	text-decoration: none;
	align-self: flex-start;
	white-space: nowrap;
	margin-left: 10px;
}
.product-detail .images .thumbs .image .video-image {
	overflow: hidden;
	height: 100%;
  background: var(--color-black);
}
.product-detail .images .thumbs .image .video-image img {
  position: absolute;
  width: 140%;
  height: 140%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -20% 0 0 -20%;
}
.product-detail .images .thumbs .image i {
	z-index: 2;
}
.product-detail .legal-stock-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-detail .info .product-info {
	display: flex;
  flex-direction: column;
}
.product-detail .info .cart .add-cart img {
	width: 25px;
	margin-left: 10px;
}
.product-detail .info .product-delivery i {
	font-size: 1.3em;
}
.product-detail .images {
	position: relative;
}
.product-detail .images .thumbs {
	display: flex;
	padding-top: 10px;
	margin: -5px;
}
.product-detail .images .thumbs .item {
	width: calc(100% / 5);
	padding: 5px;
}
.product-detail .images .thumbs .image img {
	width: 100%;
}
.product-detail .images .thumbs .image {
	position: relative;
}
.product-detail .images .thumbs .item .thumbs-count {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2em;
	color: var(--color-white);
	font-weight: 700;
}
.product-detail .korting-lines {
	padding-top: calc(var(--gap) * 2;
	border-top: 1px solid #eee;
}
.product-detail .korting-lines a {
	background: #eee;
	padding: 20px;
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
}
.product-detail .korting-lines a:hover {
	text-decoration: none;
}
.product-detail .korting-lines a span {
	margin: 1px 0;
}
.product-detail .korting-lines a span span {
	color: var(--color-green);
	width: 30px;
	display: inline-block;
}

#productpage {
	padding-bottom: 100px;
}
#productpage .breadcrumbs {
	margin: 20px 0;
}
#productpage .product-detail-outer {
	background: var(--color-white);
}
#productpage .product-detail-wrap {
	background: rgba(0, 0, 0, 0.03);
}
#productpage .product-detail {
	padding: 50px 0;
	padding-top: 20px;
}
#productpage .product-detail .input-wrap .change input,
#productpage .product-detail .info .product-option .ui.selection.dropdown {
	background: var(--color-white);
	z-index: 50;
}
#productpage .product-detail .info .product-option .ui.selection.dropdown {
  background: var(--color-gray-lighter);
	margin-top: var(--gap);
}
#productpage .product-detail select {
	width: 100%;
	height: 50px;
	opacity: 0;
}
#productpage .content-block {
	padding-top: calc(var(--gap) * 2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
#productpage .content-block .content-right {
	min-width: 570px;
	max-width: 570px;
	margin-left: 50px;
}

#productpage .product-configure-variants {
	display: none;
}
#productpage .bulk-tabs {
	display: flex;
  flex: 1 1 100%;
}
#productpage .bulk-tabs .tab {
	padding: 15px 25px;
  background: #eaeaea;
  font-weight: 600;
  display: flex;
  align-items: center;
  border-top: 2px solid transparent;
  text-decoration: none !important;
}
#productpage .bulk-tabs .tab .icon{
  margin-right: 1rem;
}
#productpage .bulk-tabs .tab .icon img {
	width: 100%;
  height: auto;
  max-height: 18px;
}
#productpage .bulk-tabs .tab:hover {
  border-top: 2px solid #e45a00;
}
#productpage .bulk-tabs .tab:last-child {
	margin: 0;
}
#productpage .bulk-tabs .tab.active {
	background: #fff;
  border-top: 2px solid var(--color-orange);
  color: var(--color-orange);
}
#productpage .bulk-tabs.proefstuk {
	background: var(--color-white);
  padding: var(--gap);
}
#productpage .bulk-tabs .tab .icon {
	display: block;
}
#productpage .bulk-tabs .tab .icon.active {
	display: none;
}
#productpage .bulk-tabs .tab.active .icon {
	display: none;
}
#productpage .bulk-tabs .tab.active .icon.active {
	display: block;
}
#productpage .bulk-tabs .tab.no-icon.active {
  border: 1px solid var(--color-orange);
  background: rgb(228,90,0);
	background: linear-gradient(54deg, rgba(228,90,0,1) 0%, rgba(228,90,0,1) 60%, rgba(228,115,0,1) 100%);
  color: var(--color-white);
  pointer-events: none;
}
#productpage .bulk-tabs .tab.no-icon { 
	padding: 10px 15px;
  border-radius: var(--radius);
  border: none;
  margin: 0 10px 10px 0;
  background: transparent;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
}
#productpage .bulk-tabs .tab.no-icon i {
  font-size: 2rem;
}
#productpage .bulk-tabs .tab.no-icon i.fa-cube {
	font-size: 1.5rem;
}
#productpage .bulk-tabs .tab.no-icon i.img {
	font-size: unset;
}
#productpage .bulk-tabs .tab.no-icon i {
	margin-right: 1rem;
}
#productpage .bulk-table-outer .tab-page {
	display: none;
}
#productpage .bulk-table-outer .tab-page.active {
	display: block;
}
#productpage .bulk-table-outer .add-maatwerk {
	margin-top: 10px;
  display: inline-block;
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none !important;
}
#productpage .bulk-table-outer .add-maatwerk i{
	margin-right: 5px;
}
#productpage .bulk-table table,
#proefstuk-popup .bulk-table table,
.collection-bulk-wrap .bulk-table table{
	width: 100%;
}
#productpage .bulk-table table .stock-td span,
#proefstuk-popup .bulk-table table .stock-td span,
.collection-bulk-wrap .bulk-table table .stock-td span {
	color: var(--color-green);
  font-weight: bold;
  margin: 0;
}
#productpage .bulk-table .custom-input-wrap.disabled,
#proefstuk-popup .bulk-table .custom-input-wrap.disabled,
.collection-bulk-wrap .bulk-table .custom-input-wrap.disabled {
	opacity: 0.6;
  pointer-events: none;
}
#productpage .bulk-table .custom-input-wrap label[for="quantity"] span,
#productpage .bulk-table .custom-input-wrap label.quantity-label span,
#proefstuk-popup .bulk-table .custom-input-wrap label[for="quantity"] span,
#proefstuk-popup .bulk-table .custom-input-wrap label.quantity-label span,
.collection-bulk-wrap .bulk-table .custom-input-wrap label[for="quantity"] span,
.collection-bulk-wrap .bulk-table .custom-input-wrap label.quantity-label span {
	font-size: 0;
}
#productpage .bulk-table table tr th, #productpage .bulk-table table tr td,
#proefstuk-popup .bulk-table table tr th, #proefstuk-popup .bulk-table table tr td {
	padding: 6px;
}

#productpage .bulk-table table tr td.lengte-td,
#proefstuk-popup .bulk-table table tr td.lengte-td {
	font-weight: bold;
}

.collection-bulk-wrap .bulk-table table tr th, .collection-bulk-wrap .bulk-table table tr td{
	padding: 5px 15px;
}
#productpage .bulk-table table tr td.length,
#proefstuk-popup .bulk-table table tr td.length,
.collection-bulk-wrap .bulk-table table tr td.length {
	white-space: nowrap;
}

#productpage .product-usefull-info .links-outer {
	display: flex;
  flex-wrap: wrap;
  margin: -5px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--color-gray-lighter);
}
#productpage .product-usefull-info .links-outer hr {
	width: 100%;
  margin: 10px 0;
}
#productpage .product-usefull-info .links-wrap {
	display: inline-block;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#productpage .product-usefull-info .links-wrap li {
  display: inline-block;
  position: relative;
  padding: 5px 0;
  width: 50%;
}
#productpage .product-usefull-info .links-wrap li img {
	margin-right: 10px;
  width: 17px;
  height: 17px;
}
#productpage .product-usefull-info .links-wrap li a {
	font-weight: bold;
}

.collection-bulk-wrap-outer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.collection-bulk-wrap-outer .btn-wrap {
	display: flex;
  gap: var(--gap);
}

.collection-bulk-wrap-outer .btn-wrap .btn.accent {
	color: var(--color-white) !important;
  text-decoration: none !important;
}

.collection-bulk-wrap-outer .btn-wrap .btn.accent:hover:before {
	background-color: var(--color-orange);
}

.collection-bulk-wrap-outer .btn-wrap .open-btn:hover:before {
	display: none;
}

.collection-bulk-wrap-outer .collection-bulk-wrap-loader {
	height: 200px;
  background: var(--colar-gray-lighter);
  margin-top: -20px;
  position: relative;
  overflow: hidden;
}

.collection-bulk-wrap-outer .collection-bulk-wrap-loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #var(--colar-gray-lighter) 0%, #eee 50%, var(--colar-gray-lighter) 100%);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
}

@keyframes placeHolderShimmer {
  0% {
    right: 100%;
  }
  100% {
    right: -200px;
  }
}

.collection-bulk-wrap-outer .collection-bulk-wrap tbody tr {
  display: none;
}

.collection-bulk-wrap-outer .collection-bulk-wrap tbody tr:nth-child(-n+3) {
  display: table-row;
}

.collection-bulk-wrap-outer .collection-bulk-wrap.active tbody tr {
	display: table-row;
}

.productpage-block {
	margin-top: 100px;
}

.general-content.product-content h1 {
	font-size: 1.7em;
}
.general-content.product-content h2 {
	font-size: 1.5em;
}
.general-content.product-content h3 {
	font-size: 1.3em
}
.general-content.product-content h4 {
	font-size: 1.1em;
}
.general-content .product-content ul {
	margin-bottom: 0;
}

#productpage .content-block .content-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#productpage .specs, #productpage .product-content, #productpage .related-products, #productpage .product-tags {
	margin-bottom: 20px;
}
#productpage .product-content {
	flex-grow: 10;
}
#productpage .product-content[data-content-title="let op"] {
  background: var(--gray-color-lighter);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
  margin-top: -25px;
}
#productpage .product-content[data-content-title="let op"] p:last-child {
	margin: 0;
}
#productpage .specs {
	font-size: .95em;
}
#productpage .specs .spec-table {
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: var(--radius);
	overflow: hidden;
}
#productpage .specs table {
	width: 100%;
}
#productpage .specs table tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.03);
}
#productpage .specs table tr td {
	padding: var(--gap);
}

#productpage .content-block .title-small {
  margin-top: 0;
	margin-bottom: 20px;
}
#productpage .product-stars, #productpage .product-stars .review-summary {
	display: flex;
	align-items: center;
}
#productpage .product-stars .review-summary {
	font-size: .85em;
}
#productpage .product-stars .review-summary .total-score {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
	margin-left: 10px;
	margin-right: 12px;
	padding-right: 12px;
	border-right: 1px solid var(--color-gray-light);
}
#productpage .info-nav-bar .info-nav br,
#productpage .content-block .title-small br,
#productpage .mobile-tabs a br {
	display: none;
}
#productpage .product-customer-photos .photos .small-customer-images .photo {
	height: 50%;
	display: flex;
}
#productpage .big-video {
	padding-bottom: 100%;
	overflow: hidden;
	position: relative;
}
#productpage [data-popup="product-customer-videos"] .big-video {
	padding-bottom: 70%;
}

#productpage .product-customer-photos .photos .photo .big-video>a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#productpage .product-customer-photos.not-visible .photos-outer {
	position: relative;
}
#productpage .product-customer-photos.not-visible .photos-outer .photos {
	opacity: 0;
  visibility: hidden;
}
#productpage .product-customer-photos .placeholder {
	display: none;
}
#productpage .product-customer-photos.not-visible .placeholder {
	display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--colar-gray-lighter);
  overflow: hidden;
}
#productpage .product-customer-photos.not-visible .placeholder:after {
	content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, var(--color-gray-lighter) 0%, #eee 50%, var(--color-gray-lighter) 100%);
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
}
#productpage .product-customer-photos .photos .photo.video img {
	transform: scale(1.4);
}
#productpage .product-customer-photos .photos .photo a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#productpage .product-customer-photos .photos-outer {
	padding: 18px;
	background: var(--gray-color-lighter);
	border-radius: var(--radius);
}
#productpage .product-customer-photos .photos {
	display: flex;
	margin: 0;
}
#productpage .product-customer-photos .photos .photo {
	padding: 7px;
}
#productpage .product-customer-photos .photos .photo a {
	display: block;
	position: relative;
	overflow: hidden;
}
#productpage .product-customer-photos .photos .photo a img {
	width: 100%;
}
#productpage .product-customer-photos .photos .photo a i {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 35px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--color-white);
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
#productpage .product-customer-photos .photos .photo a .overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 30px;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.6);
}

#productpage .bulk-table table tr.out-of-stock,
#proefstuk-popup .bulk-table table tr.out-of-stock,
.collection-bulk-wrap .bulk-table table tr.out-of-stock {
	opacity: 0.4;
	pointer-events: none;
}
#productpage .bulk-table table tr th,
#proefstuk-popup .bulk-table table tr th,
.collection-bulk-wrap .bulk-table table tr th {
	background: #2b2b2b;
	color: var(--color-white);
}

.collection-bulk-wrap .bulk-table table tr th a {
	color: var(--color-orange);
  text-decoration: underline;
}
.collection-bulk-wrap .bulk-table table tr th a:hover {
	color: var(--color-orange) !important;
}

#productpage .bulk-table table tr th .th-inner,
#proefstuk-popup .bulk-table table tr th .th-inner,
.collection-bulk-wrap .bulk-table table tr th .th-inner {
	display: flex;
  align-items: center;
}

#productpage .bulk-table table tr th .th-inner a,
#proefstuk-popup .bulk-table table tr th .th-inner a,
.collection-bulk-wrap .bulk-table table tr th .th-inner a {
	text-decoration: none;
  margin-left: 3px;
}

#productpage .bulk-table table tr th .th-inner i,
#proefstuk-popup .bulk-table table tr th .th-inner i,
.collection-bulk-wrap .bulk-table table tr th .th-inner i {
  font-size: 0.85em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  color: var(--color-white);
  margin-left: 5px;
  background: var(--color-orange)
}

#productpage .bulk-table table tr th .th-inner i:before,
#proefstuk-popup .bulk-table table tr th .th-inner i:before,
.collection-bulk-wrap .bulk-table table tr th .th-inner i:before {
  position: relative;
  top: 1px;
}

#productpage .bulk-table table tr td[data-title="Voorraad"],
.collection-bulk-wrap .bulk-table table tr td[data-title="Voorraad"] {
	font-size: 12px;
  font-style: italic;
}

#productpage .bulk-table table tr td,
.collection-bulk-wrap .bulk-table table tr td {
	background: var(--color-white);
}
#proefstuk-popup .bulk-table table tr td {
	background: #eaeaea;
}
#productpage .bulk-table table tr:nth-child(odd) td,
.collection-bulk-wrap .bulk-table table tr:nth-child(odd) td {
	background: #f2f2f2;
}
#proefstuk-popup .bulk-table table tr:nth-child(even) td {
  background: #f2f2f2;
}
#productpage .bulk-table table tr td.price-td,
#proefstuk-popup .bulk-table table tr td.price-td,
.collection-bulk-wrap .bulk-table table tr td.price-td {
	font-weight: 700;
	white-space: nowrap;
  color: var(--color-gray-dark);
}
#productpage .bulk-table table tr td.price-td.price-mobile,
#proefstuk-popup .bulk-table table tr td.price-td.price-mobile,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-mobile {
  font-size: 1.2em;
}
#productpage .bulk-table table tr td.price-td.price-mobile:before,
#proefstuk-popup .bulk-table table tr td.price-td.price-mobile:before,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-mobile:before {
	color: var(--color-gray-medium);
  font-size: 13px;
}
#productpage .bulk-table table tr td.price-td.price-mobile:before {
	content: none;
}
#productpage .bulk-table table tr td.price-td .old-price,
#proefstuk-popup .bulk-table table tr td.price-td .old-price,
.collection-bulk-wrap .bulk-table table tr td.price-td .old-price {
  font-weight: normal;
  text-decoration: line-through;
  font-size: 0.9em;
  margin-bottom: -3px;
}
#productpage .bulk-table table tr td.price-td .new-price,
#proefstuk-popup .bulk-table table tr td.price-td .new-price,
.collection-bulk-wrap .bulk-table table tr td.price-td .new-price {
  color: var(--color-gray-dark) !important;
}

#productpage .bulk-table table tr td.price-td.price-mobile.price-bulk,
#proefstuk-popup .bulk-table table tr td.price-td.price-mobile.price-bulk,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-mobile.price-bulk {
  font-size: inherit;
}
#productpage .bulk-table table tr td.price-td.price-bulk .old-price,
#proefstuk-popup .bulk-table table tr td.price-td.price-bulk .old-price,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-bulk .old-price,
#productpage .bulk-table table tr td.price-td.price-bulk .calc-price,
#proefstuk-popup .bulk-table table tr td.price-td.price-bulk .calc-price,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-bulk .calc-price {
  color: var(--color-gray-medium);
  opacity: 0.75;
}
#productpage .bulk-table table tr td.price-td.price-bulk .new-price,
#proefstuk-popup .bulk-table table tr td.price-td.price-bulk .new-price,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-bulk .new-price {
  color: var(--color-gray-dark);
}
#productpage .bulk-table table tr td.price-td.price-mobile .calc-price,
#proefstuk-popup .bulk-table table tr td.price-td.price-mobile .calc-price,
.collection-bulk-wrap .bulk-table table tr td.price-td.price-mobile .calc-price {
	font-size: 0.8em;
  color: var(--color-gray-dark);
}

#productpage .bulk-table table tr.disabled {
  opacity: 0.5;
  pointer-events: none;
}

#productpage .custom-input-wrap,
#proefstuk-popup .custom-input-wrap,
.collection-bulk-wrap .custom-input-wrap {
	display: flex;
}
#productpage .custom-input-wrap input,
#proefstuk-popup .custom-input-wrap input,
.collection-bulk-wrap .custom-input-wrap input {
	min-width: 40px;
	max-width: 40px;
	border: 1px solid var(--color-gray-light);
	padding: 0;
	text-align: center;
  font-weight: normal;
}
#productpage .custom-input-wrap .change,
#proefstuk-popup .custom-input-wrap .change,
.collection-bulk-wrap .custom-input-wrap .change {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 5px;
	width: 20px;
}
#productpage .custom-input-wrap .change.change-minus,
#proefstuk-popup .custom-input-wrap .change.change-minus,
.collection-bulk-wrap .custom-input-wrap .change.change-minus {
	margin: 0;
	margin-right: 5px;
}
#productpage .custom-input-wrap .change a,
#proefstuk-popup .custom-input-wrap .change a,
.collection-bulk-wrap .custom-input-wrap .change a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50%;
  font-size: 0;
	text-decoration: none; 
}
#productpage .custom-input-wrap .change a i,
#proefstuk-popup .custom-input-wrap .change a i,
.collection-bulk-wrap .custom-input-wrap .change a i {
	font-size: 13px;
}
#productpage .custom-input-wrap label.quantity-label,
#proefstuk-popup .custom-input-wrap label.quantity-label,
.collection-bulk-wrap .custom-input-wrap label.quantity-label {
  font-size: 0;
}
#productpage .custom-input-wrap label.quantity-label input,
#proefstuk-popup .custom-input-wrap label.quantity-label input,
.collection-bulk-wrap .custom-input-wrap label.quantity-label input { 
  font-size: 13px;
}
#productpage .bulk-table .input-wrap-inner,
#proefstuk-popup .bulk-table .input-wrap-inner,
.collection-bulk-wrap .bulk-table .input-wrap-inner{
	display: flex;
  align-items: center;
}
#productpage .bulk-table .input-wrap-inner input,
#proefstuk-popup .bulk-table .input-wrap-inner input,
.collection-bulk-wrap .bulk-table .input-wrap-inner input {
	height: 40px;
  border-radius: var(--radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid var(--color-gray-light);
  width: 60px;
  position: relative;
  z-index: 1;
  outline: none;
  padding: 0 10px;
  font-weight: normal;
}
#productpage .bulk-table .input-wrap-inner span,
#proefstuk-popup .bulk-table .input-wrap-inner span,
.collection-bulk-wrap .bulk-table .input-wrap-inner span {
	background: var(--color-gray-lighter);
  border: 1px solid var(--color-gray-light);
  height: 40px !important;
  display: flex;
  align-items: center;
  position: relative;
  right: 6px;
  padding: 0 8px 0 13px;
  border-radius: var(--radius);
  margin: 0 !important;
}
#productpage .bulk-table .input-wrap-inner.aantal-lengte input,
#proefstuk-popup .bulk-table .input-wrap-inner.aantal-lengte input,
.collection-bulk-wrap .bulk-table .input-wrap-inner.aantal-lengte input {
	border-right: none;
  padding-right: 0;
  border: 1px solid var(--color-gray-light);
  padding-left: 10px;
}
#productpage .bulk-table .input-wrap-inner.aantal-lengte span,
#proefstuk-popup .bulk-table .input-wrap-inner.aantal-lengte span,
.collection-bulk-wrap .bulk-table .input-wrap-inner.aantal-lengte span {
	background: var(--color-gray-lighter);
  border: 1px solid var(--color-gray-light);
  font-weight: 600;
  color: #696969;
}

#productpage .bulk-table table tr td.price-td .calc-price,
#proefstuk-popup .bulk-table table tr td.price-td .calc-price,
.collection-bulk-wrap .bulk-table table tr td.price-td .calc-price {
  font-weight: 500;
  font-size: 0.9em;
  line-height: 1em;
}

#proefstuk-popup {
	max-width: 50vw;
}
#proefstuk-popup .bulk-table {
  margin-top: 25px;
	margin-bottom: 25px;
}
#proefstuk-popup .cart a {
	width: 100%;
}

#productpage .bulk-table.bulk-table-new table tr td.length,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.length{
	font-weight: bold;
}

#productpage .bulk-table.bulk-table-new table tr td.input-radio {
	width: 20px;
}

#productpage .bulk-table.bulk-table-new table tr td.input-radio label {
	padding-left: 0;
  margin: 0;
}

#productpage .bulk-table.bulk-table-new table tr td.length,
#productpage .bulk-table.bulk-table-new table tr td.length-h,
#productpage .bulk-table.bulk-table-new table tr td.width,
#productpage .bulk-table.bulk-table-new table tr td.width-h,
#productpage .bulk-table.bulk-table-new table tr td.thinkness,
#productpage .bulk-table.bulk-table-new table tr td.thinkness-h,
#productpage .bulk-table.bulk-table-new table tr td.stuks{
  white-space: nowrap;
}

.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.length,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.length-h,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.width,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.width-h,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.thinkness,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.thinkness-h,
.collection-bulk-wrap .bulk-table.bulk-table-new table tr td.stuks {
	white-space: nowrap;
}

#productpage .info-nav-bar {
	margin-top: 20px;
	padding: 10px 30px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
#productpage .info-nav-bar .info-nav {
	display: flex;
	flex-wrap: wrap;
}
#productpage .info-nav-bar .info-nav li {
	margin: 5px 0;
}
#productpage .info-nav-bar .info-nav li:not(:last-child) {
	margin-right: 40px;
}
#productpage .info-nav-bar .info-nav li a {
	font-weight: 700;
  text-decoration: none !important;
}
#productpage .info-nav-bar .info-nav li a:hover {
  text-decoration: underline !important;
}
#productpage .product-usage, #productpage .product-proscons, #productpage .product-customer-photos, #productpage .product-usefull-info {
	margin-bottom: 50px;
}
#productpage .product-usage .usages-outer {
	display: flex;
	flex-wrap: wrap;
	margin: -5px -15px;
}
#productpage .product-usage .usage-wrap {
	padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}
#productpage .product-usage .usage-wrap li {
	display: flex;
  flex: 1 1 50%;
	padding: 5px 5px 0 5px;
}
#productpage .product-usage .usage-wrap li i {
	margin-right: 7px;
	font-size: 1.2em;
}
#productpage .product-proscons ul {
	text-align: left;
}
#productpage .product-proscons li {
	display: flex;
}
#productpage .product-proscons li:not(:last-child) {
	margin-bottom: 10px;
}
#productpage .product-proscons .proscons-wrap i {
	min-width: 20px;
	max-width: 20px;
	height: 20px;
	background: #aaa;
	border-radius: 50%;
	display: inline-block;
	line-height: 22px;
	text-align: center;
	color: var(--color-white);
	font-size: 11px;
	margin-right: 10px;
}
#productpage .product-content .toggle-content {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	margin-top: 10px;
}
#productpage .product-content .toggle-content i {
	margin-right: 10px;
}
#productpage .product-content .hidden-info {
	display: none;
}
#productpage .product-content .hidden-info.active {
	display: block !important;
}
#productpage .product-content .hidden-info.active ul {
	margin-top: -10px;
}
#productpage .product-customer-photos .photos-outer {
	padding: 18px;
	background: var(--color-gray-lighter);
	border-radius: var(--radius);
}
#productpage .product-customer-photos .photos {
	display: flex;
	margin: 0;
}
#productpage .product-customer-photos .photos .photo {
	padding: 7px;
}
#productpage .product-customer-photos .photos .photo a {
	display: block;
	position: relative;
}
#productpage .product-customer-photos .photos .photo a img {
	width: 100%;
}
#productpage .product-customer-photos .photos .photo a i {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 35px;
	height: 35px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--color-white);
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#productpage .product-customer-photos .photos .video a i {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  transform: translate(-50%,-50%);
  width: 90px;
  height: 90px;
  border-radius: var(--radius-round);
  background: var(--color-red);
  font-size: 3em;
  transition: all ease .2s;
  opacity: 0.85;
}
#productpage .product-customer-photos .photos .small-customer-images .video a i {
  font-size: 1.5em;
  width: 35px;
  height: 35px;
}
#productpage .product-customer-photos .photos .photo a .overlay {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 30px;
	font-weight: 700;
	background: rgba(0, 0, 0, 0.6);
}
#productpage .images-wrap .usp-pdp-images {
	margin: 15px 0 0 15px;
}
#productpage .images-wrap .usp-pdp-images ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#productpage .images-wrap .usp-pdp-images ul li {
	font-weight: 400;
	color: var(--color-gray-medium);
	line-height: 2em;
}
#productpage .images-wrap .usp-pdp-images ul li .colored {
	font-weight: 700;
}
#productpage .images-wrap .usp-pdp-images ul li i {
	margin-right: 15px;
}
#productpage .product-customer-photos .photos .big-customer-image,
#productpage .product-customer-photos .photos .small-customer-images {
	width: 60%;
}
#productpage .product-customer-photos[data-popup="product-customer-videos"] .photos .big-customer-image,
#productpage .product-customer-photos[data-popup="product-customer-videos"] .photos .small-customer-images {
	width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#productpage .product-customer-photos .photos .big-customer-image {
	padding: 0;
	width: 40%;
}
#productpage .product-customer-photos .photos .big-customer-image .photo {
	width: 100%;
}
#productpage .product-customer-photos[data-popup="product-customer-videos"] .photos .big-customer-image .photo {
	width: 50%;
}
#productpage .product-customer-photos .photos .small-customer-images {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
#productpage .product-customer-photos .photos .small-customer-images .photo {
	width: calc(100% / 3);
}
#productpage .product-detail .info .price .legal {
	opacity: 1;
	display: flex;
	align-items: center;
}
#productpage .product-detail .info .price .legal a {
	display: inline-flex;
	align-items: center;
	opacity: 1;
}
#productpage .product-detail .info .price .legal a span {
	text-decoration: underline;
}
#productpage .product-detail .info .price .legal a .fa {
	font-size: 0.85em;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border-radius: var(--radius-round);
	color: var(--color-white);
	margin-left: 5px;
}

.bulk-table td.price-td.price-mobile,
.bulk-table td.stock-td.stock-mobile,
.bulk-table td.stuks.stuks-mobile {
	display: none;
}

.bulk-table td.stock-td.stock-mobile,
.bulk-table td.stuks.stuks-mobile {
	padding: 0 10px !important;
  width: 100%;
  font-weight: bold;
}

.product-reviews .summary {
	min-width: 400px;
	max-width: 400px;
	margin-right: 50px;
}
.product-reviews .overview {
	width: calc(100% - 450px);
}
.product-reviews .summary .col {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}
.product-reviews .summary .stars {
	font-size: 12px;
	margin: -1px;
}
.product-reviews .summary .stars i {
	padding: 1px;
}
.product-reviews .summary .bar {
	flex-grow: 10;
	height: 7px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: var(--radius);
	margin-left: var(--gap);
	overflow: hidden;
}
.product-reviews .summary .bar .fill {
	display: inline-block;
	height: 100%;
	vertical-align: top;
	border-radius: var(--radius);
}
.product-reviews .summary .score {
	margin-bottom: calc(var(--gap) * 2);
}
.product-reviews .summary .score .subtitle {
	font-size: .9em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: 7px;
}
.product-reviews .summary .score .title {
	font-size: 1.8em;
}
.product-reviews .summary .button {
	margin-top: 50px;
}
.product-reviews .summary .button .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: -10px;
}
.product-reviews .summary .button .inner .btn {
	margin: 10px;
}
.product-reviews .summary .button .inner .powered-by-yotpo {
	display: flex;
	align-items: center;
	margin: 10px;
}
.product-reviews .summary .button .inner .powered-by-yotpo .text {
	margin-right: 8px;
	font-size: .9em;
	font-weight: 700;
	opacity: .6;
	white-space: nowrap;
}
.product-reviews .summary .button .inner .powered-by-yotpo .logo img {
	width: 45px;
}
.product-reviews .summary .button .normal-link {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.product-reviews .summary .button .normal-link i {
	margin-left: 7px;
}
.product-reviews {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.reviews {
	margin: calc(-1 * var(--gap));
}
.reviews .review {
	padding: var(--gap);
}
.reviews .review .review-inner, .product-reviews .no-reviews {
	background: rgba(0, 0, 0, 0.03);
	padding: calc(var(--gap) * 2);
	border-radius: var(--radius);
}
.reviews .review .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.reviews .review .title {
	font-size: 1.1em;
}
.reviews .review .stars {
	font-size: .9em;
	color: var(--color-yellow);
	margin: 0 -1px;
}
.reviews .review .stars i {
	padding: 1px;
}
.reviews .review .content {
	line-height: 2em;
	font-size: .97em;
}
.reviews .review .date {
	font-size: .8em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .2em;
}
.product-reviews .custom-pager {
	justify-content: center;
	margin-top: calc(var(--gap) * 2);
}
.product-reviews .custom-pager ul {
	justify-content: center;
}


#product_configure_form {
	margin-top: 20px;  
}
#product_configure_form .product-configure {
	background: var(--color-white);
	padding: var(--gap);
}
#product_configure_form .product-configure.product-configure-simple {
	background: none;
  padding: 0;
}
#product_configure_form .product-configure.product-configure-simple .product-variants {
	position: relative;
  z-index: 61;
}
#product_configure_form .product-configure label {
	position: relative;
	cursor: pointer;
  color: var(--color-gray-medium);
  font-size: 1em;
  font-weight: normal;
  letter-spacing: normal;
}
#product_configure_form .product-configure label.label-title {
	margin: 0;
  color: var(--color-black);
  font-size: 1.5em;
}
#product_configure_form .product-configure.error {
	background: #eb526525;
  border: 1px solid var(--color-red);
}
#product_configure_form .product-configure.error .custom-options label {
	color: var(--color-red);
}
#product_configure_form .product-configure label em {
  padding-left: 4px;
  font-style: normal;
}

#product_configure_form .product-configure .custom-options {
  padding: 10px 15px 0 0;
}

.products .product .product-label, .products .product-list .product-label {
	padding: 5px 10px;
	text-transform: none;
	font-size: .95em;
	letter-spacing: 0.05em;
	height: auto;
}
.product-labels-custom {
	position: absolute;
	color: var(--color-white);
	font-size: 1em;
  font-weight: 700;
	padding: 5px 10px;
	top: 10px;
  left: 10px;
	border-radius: var(--radius);
	z-index: 5;
  max-width: calc(100% - 20px);
}
.product-labels-custom strong {
	font-weight: bold;
}
.product-labels-custom.right {
	left: auto;
	top: 25px;
	right: 25px;
}
.products .product-list .product-labels-custom.right {
	position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: fit-content;
  margin-bottom: 10px;
  max-width: 100%;
}
.product-labels-custom.product-labels-custom-down {
	top: 50px;
}

.sm-product-text {
	min-height: 20px;
	color: #535353;
	font-size: 0.75em;
	margin: 10px 0 0 0;
}

.fancybox-show-nav .fancybox-arrow {
	opacity: 1;
}

.usp-bar a {
	display: flex;
	align-items: baseline;
	justify-content: center;
	text-decoration: none !important;
}

.general-content ul.client-photos {
	margin: -20px 0 20px 0;
}
.general-content ul.client-photos a {
	text-decoration: underline;
}
.general-content ul.client-photos a:hover {
	text-decoration: none;
}
.general-content li {
	line-height: 2em;
	font-size: 0.97em;
}

@media (max-width: 767px) {
	.mobile-popup .popup-header {
		padding: 12px 20px;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 2;
	}
  .mobile-popup .popup-header .title-small {
		margin: 0 !important;
	}
	.mobile-popup .popup-header a, .mobile-popup .popup-header div {
		color: var(--color-white);
	}
	 .mobile-popup .popup-header .close-mobile-popup {
		font-size: 18px;
	}
}

.warnings-stock .warning {
	background: var(--color-red);
	padding: 7px 15px;
	color: var(--color-white);
	font-weight: 700;
	border-radius: 6px;
	margin-bottom: 10px;
}

.special-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9999999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s linear;
}
.special-overlay.active {
	opacity: 1;
	visibility: visible;
}

.special-message {
	position: fixed;
	left: 50%;
	transform: translate(-50%, 50%);
	bottom: 50%;
}
.special-message .message {
	width: 600px;
	padding: 30px;
}
.live-message .close-icon {
	display: none;
	position: absolute;
	top: 10px;
	right: 15px;
}
.special-message.live-message .close-icon {
	display: block;
}

.close-autocomplete {
	text-align: right;
}

.product-list.snel-bestellen .btn-wrap .open-btn {
	background: var(--color-white);
  color: var(--color-orange);
  outline: none !important;
  position: relative;
  z-index: 25;
  border: none;
  overflow: hidden;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.product-list.snel-bestellen .btn-wrap .open-btn:hover {
	background: var(--color-white) !important;
  color: var(--color-orange) !important;
}

.products .product-list.snel-bestellen .image-wrap {
  min-width: 250px;
  max-width: 250px;
}

.products .product-list.snel-bestellen .image-wrap .img-wrap.disabled {
	pointer-events: none;
}

.products .product-list.snel-bestellen .add-cart {
	text-decoration: none !important;
  color: #fff !important;
  height: 40px;
}

.products .product-list.snel-bestellen .add-cart img {
	margin-left: 15px;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart {
	display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  align-items: center;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart .open-bulk {
  background: #fff;
  color: #e45a00;
  outline: none !important;
  position: relative;
  z-index: 25;
  border: none;
  overflow: hidden;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  margin-bottom: 35px;
}

.products .product-list.snel-bestellen .bulk-table table {
	border: 1px solid #f7f7f7;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart .open-bulk span {
	text-decoration: underline !important;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart .open-bulk i {
  font-size: 1.3em;
  margin-left: 5px;
  margin-top: 2px;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart .open-bulk:hover {
	color: var(--color-orange) !important;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart .price {
	margin-top: 0;
  font-size: 1.6em;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  align-items: center;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form div:empty {
	display: none;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form > .product-option {
  order: 1;
  width: 100%;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form .product-option .product-configure {
	padding: 0;
}
.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form .product-option .product-configure .custom-options {
	background: var(--color-gray-lighter);
  padding: 10px 15px 10px 15px;
}
.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form .product-option .product-configure label.label-title {
	width: 100%;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form .cart {
	order: 3;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart #product_configure_form .price-stock {
	order: 2;
}

.products .product-list.snel-bestellen .product-inner {
	align-items: flex-start;
}

.products .product-list.snel-bestellen .collection-bulk-wrap-cart {
	display: block;
}

@media (max-width: 1499px) {
	#productpage .info-nav-bar .info-nav li:not(:last-child) {
		margin-right: 30px;
	}
}

@media (min-width: 1400px) {
  .products .product-list.snel-bestellen .product-inner .info {
  	padding-right: 70px;
  }
}

@media (max-width: 1199px) {
  .products {
		margin: -10px;
	}
	.products .product {
		padding: 10px;
	}
	.products .product-list .image-wrap {
		min-width: 170px;
		max-width: 170px;
	}
  
	.product-detail .images-wrap {
		min-width: 350px;
		max-width: 350px;
		margin-right: 50px;
	}
	.product-detail .info .input-wrap {
		margin-right: 20px;
	}
  .product-detail .images .thumbs .item .thumbs-count {
		font-size: 1.7em;
	}
  
	.product-reviews .summary {
		min-width: 350px;
		max-width: 350px;
		margin-right: 30px;
	}
	.product-reviews .overview {
		width: calc(100% - 380px);
	}
  
	.productpage-block {
		margin-top: 50px;
	}
  
  #productpage .content-block .content-right {
		min-width: 500px;
		max-width: 500px;
		margin-left: 30px;
	}
  
  .quickview-popup .images-wrap {
		min-width: 300px;
		max-width: 300px;
		margin-right: 40px;
	}
  
  .collection-bulk-wrap .bulk-table table tr td {
  	padding: 8px;
  }
}

@media (max-width: 991px) {
	.product-detail {
		display: block;
	}
	.product-detail .images-wrap {
		margin: 0 auto;
	}
	.product-detail .images-wrap {
		min-width: auto;
		max-width: 100%;
	}
	.product-detail .images-wrap .images {
    width: 355px;
    max-width: 100%;
    margin: 0 auto;
	}
	#productpage .images-wrap .usp-pdp-images {
		margin: 25px 0 !important;
	}
	#productpage .images-wrap .usp-pdp-images ul {
		display: flex;
		flex-wrap: wrap;
	}
	#productpage .images-wrap .usp-pdp-images ul li {
		flex: 1 1 50%;
	}
	.product-detail .info {
		margin-top: 30px;
	}
	.product-detail .top-info {
		margin-bottom: 30px;
	}
	.fancybox-slide>.quickview-popup {
		margin: 0;
		border-radius: 0;
	}
	#productpage .content-block .content-inner {
		display: block;
	}
	.product-reviews {
		display: block;
	}
	.product-reviews .summary {
		min-width: 100%;
		max-width: 100%;
		margin: 0;
		margin-bottom: 30px;
	}
	.product-reviews .summary .button {
		margin-top: 20px;
	}
	.product-reviews .overview {
		width: 100%;
	}
	.reviews {
		margin: -10px;
	}
	.reviews .review {
		padding: 10px;
	}
	#productpage .content-block .content-right {
		min-width: 100%;
		max-width: 100%;
		margin-left: 0;
	}
	#productpage .specs,
	#productpage .product-content,
	#productpage .related-products,
	#productpage .product-tags {
		margin-bottom: 30px;
	}
  #productpage .product-usage, #productpage .product-proscons, #productpage .product-customer-photos {
		margin-bottom: 0;
	}
  .products .product-list.snel-bestellen .product-inner {
  	display: flex;
    flex-direction: column;
  }  
	.products .product-list.snel-bestellen .image-wrap {
  	min-width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .product-detail .stock-container {
  	margin-right: 55px;
    line-height: 25px;
  }
}

@media (min-width: 768px) {
  #productpage .bulk-table.bulk-table-new table tr td.length-input-wrap, #productpage .bulk-table.bulk-table-new table tr th.calc,
  #proefstuk-popup .bulk-table.bulk-table-new table tr td.length-input-wrap, #proefstuk-popup .bulk-table.bulk-table-new table tr th.calc {
    padding: 8px;
  }
  
  .collection-bulk-wrap .bulk-table.bulk-table-new table tr td.length-input-wrap, .collection-bulk-wrap .bulk-table.bulk-table-new table tr th.calc {
  	padding: 7px;
  }
}

@media (max-width: 767px) {
  .products {
		margin: -7px;
	}
	.products .product,	.products .product-list {
		padding: 7px;
	}
	.products .product .info {
		padding: var(--gap);
	}
  .products .product-list .info {
    padding: 10px;
  }
	.products .product .info .price, .products .product-list .info .price {
		font-size: 1em;
	}
  .home-products-wrap.app-style .page .products {
		margin-right: 40%;
	}
  .home-products-wrap.app-style .owl-dots {
  	width: 166%;
  }
	.home-products-wrap.app-style .products-slider .owl-stage-outer {
		overflow: visible;
	}
	.products .product-list .image-wrap {
		min-width: 90px;
		max-width: 90px;
	}
	.products .product-list .product-inner {
		position: relative;
	}
	.products .product-list .info .description {
		max-height: 3.2em;
	}
	.products .product-list .image-wrap {
		position: initial;
	}
	.products .product .info .title.four-lines {
		height: 6em;
	}
  .products .product-list .info .info-wrap .info-top {
  	gap: 0;
  }
  .products .product-list .info .input-wrap-inner .description {
  	max-height: 100%;
  }
  
  .product-detail .info .price-stock-bottom .price .legal {
		margin-left: 8px;
  }
  .product-detail .top-info .stars-code {
		flex-direction: column;
		align-items: start;
	}
	.product-detail .top-info .product-code {
		margin-top: 10px;
	}
  .product-detail .images-wrap {
		min-width: 100%;
		max-width: 100%;
	}
	.product-detail .top-info {
		margin-bottom: 20px;
	}
	.product-detail .info .price-stock {
    flex-wrap: wrap;
		margin: 15px 0 0 0;
	}
	.product-detail .info .price {
		font-size: 1.5em;
    margin-bottom: 10px;
	}
	.product-detail .info {
		margin-top: 20px;
	}
  .product-detail .info .cart .add-wish {
		height: 45px;
		width: 45px;
		margin-left: 10px;
	}
	.product-detail .info .product-description,
	.product-detail .order-countdown {
		margin-bottom: 20px;
	}
	.product-detail .info form {
		margin-top: 20px;
	}
	.product-detail .order-countdown {
		font-size: 12px;
	}
	.product-detail .info .product-option {
		margin-bottom: 20px;
	}
  
  #productpage .specs {
		margin-top: 0;
	}
	#productpage .content-block {
		margin: 0;
		padding: 0;
		border: none;
	}
	#productpage .mobile-tabs {
		margin: 0 -20px;
	}
	#productpage .mobile-tabs a {
		display: block;
		border-bottom: 1px solid rgba(0, 0, 0, .07);
		padding: 15px 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#productpage .related-products {
		text-align: left;
	}
	#productpage .images-wrap .usp-pdp-images ul li {
		flex: 1 1 100%;
	}
  #productpage .product-content[data-content-title="let op"] {
    background: var(--gray-color-lighter);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    margin-top: 0;
  }
	#productpage .product-detail {
		padding: 20px;
		margin: 0 -20px;
		border-radius: 0;
		padding-top: 10px;
	}
  #productpage .product-content,
	#productpage .specs {
		text-align: left;
	}
	#productpage .mobile-reviews {
		text-align: left;
	}
	#productpage .mobile-reviews .reviews {
		margin: 0 -20px;
	}
	#productpage .specs,
	#productpage .product-content,
	#productpage .related-products,
	#productpage .product-tags {
		margin: 0;
	}
  #productpage .product-content[data-content-title="tips"] ul,
  #productpage .product-content[data-content-title="norm"] ul {
  	padding-left: 10px;
  }
  #productpage .product-bundles {
		margin-top: calc(var(--gap) * 2);
	}
	#productpage .product-detail .input-wrap {
		margin-right: 10px;
	}
	#productpage .product-detail .input-wrap .change input {
		margin: 0;
		width: 45px;
		height: 45px !important;
	}
  #productpage .product-usefull-info .links-wrap {
		width: 100%;
	}
	#productpage .product-usefull-info .links-wrap li {
    text-align: left;
  	width: 100%;
    padding: 10px 0;
  }
  
  #productpage .bulk-table table tr td.length-input-wrap, #productpage .bulk-table table tr th.calc,
  #proefstuk-popup .bulk-table table tr td.length-input-wrap, #proefstuk-popup .bulk-table table tr th.calc,
  .collection-bulk-wrap .bulk-table table tr td.length-input-wrap, .collection-bulk-wrap .bulk-table table tr th.calc {
    padding: 10px 0 10px 45px;
  }
  
  #productpage .bulk-table.bulk-table-new table tr td.input-radio {
    width: 35px;
  }  
  #productpage .custom-input-wrap,
	.collection-bulk-wrap .custom-input-wrap {
    margin-top: -8px;
  }
  
  #productpage .bulk-table.bulk-table-new table tr td.length,
  .collection-bulk-wrap .bulk-table.bulk-table-new table tr td.length {
  	width: 100%;
  }
  
  #productpage .bulk-table.bulk-table-new table tr td.length,
  .snel-bestellen .bulk-table.bulk-table-new table tr td.length {
  	width: 50%;
    display: inline-block;
  }
  #productpage .bulk-table.bulk-table-new table tr td.width {
  	width: 35%;
    display: inline-block;
  }
  
  #productpage .product-usage .usage-wrap li {
  	flex: 1 1 100%;
  }
  
  #productpage .product-customer-photos[data-popup="product-customer-videos"] .photos .big-customer-image .photo {
    width: 100%;
  }
  
  #productpage .product-content .hidden-info {
		margin-top: 0 !important;
	}
	#productpage .bulk-table table tr th, #productpage .bulk-table table tr td {
		padding: 8px;
	}
	#productpage .product-usage, #productpage .product-proscons, #productpage .product-customer-photos {
		margin-bottom: 0;
	}
	#productpage .product-customer-photos .photos .big-customer-image,
	#productpage .product-customer-photos .photos .small-customer-images {
		width: 100% !important;
	}
	#productpage .product-customer-photos .photos .small-customer-images {
		margin-left: unset;
	}
	#productpage .product-customer-photos .photos {
		flex-direction: column;
	}

  #productpage .mobile-tabs a.customer-photos-mobile {
    border: none;
  }
  #productpage .product-customer-photos.mobile-carousel {
    border-bottom: 1px solid rgba(0, 0, 0, .07);
  }
  #productpage .product-customer-photos.mobile-carousel .photos-outer {
    padding-top: 0;
    background: var(--color-white);
  }
  #productpage .product-customer-photos.mobile-carousel .photos a {
    padding: 0;
    border: none;
  }
  #productpage .product-customer-photos.mobile-carousel .photos .small-customer-images .photo {
    width: 100%;
    display: block;
  }
  #productpage .product-customer-photos.mobile-carousel .photos .small-customer-images .single .photo {
  	width: 50%;
    margin: 0 auto;
  }
  #productpage .product-customer-photos.mobile-carousel .photos .small-customer-images .owl-dots {
    margin: 15px auto 0;
  }
  
	#productpage .overlay {
		height: 100%;
		position: fixed;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		top: 0;
		left: 0;
		pointer-events: none;
		z-index: 30;
		display: none;
	}
	#productpage .product-usage .usage-wrap {
		width: 100%;
	}
	#productpage .product-usage .usage-wrap li {
		text-align: left;
	}
	.fancybox-slide #login-popup {
		left: 0;
		margin: 0;
		max-width: 100%;
	}
  #productpage .bulk-tabs .tab .icon{
  	width: 18px;
  }
  
  .product-labels-custom.right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: fit-content;
    margin-bottom: 10px;
    max-width: 100%;
	}
  
  .products .product-list.snel-bestellen .add-cart {
    width: 100%;
  }
  .products .product-list.snel-bestellen .product-inner .info {
  	padding: 10px;
    border: none;
  }
  .products .product-list.snel-bestellen .collection-bulk-wrap-cart {
  	flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  
  .snel_bestellen .search-bar {
  	display: none;
  }
  .snel_bestellen .main-content {
  	margin-top: 0;
  }
  .snel_bestellen #collection-page .snel-sort-wrap.sticky.header-pinned {
  	top: 50px;
  }
  .snel_bestellen .col-main {
    padding: 0;
  }
  .snel_bestellen .products .product-list {
  	padding: 15px 0;
  }
  
  .bulk-table.standaard .table-heading {
  	display: none;
  }
  .bulk-table.standaard table tr:nth-child(even) {
    background: var(--color-white);
  }
  .bulk-table.standaard table tr:nth-child(odd) {
  	background: var(--color-gray-lighter;
  }
  .bulk-table.standaard td {
  	width: 50%;
    display: inline-block;
  }
  .bulk-table.standaard td.title-font {
  	width: 100%;
    display: block;
  }
  .bulk-table.standaard td.length:before,
  .bulk-table.standaard td.width:before,
  .bulk-table.standaard td.price-td:before {
  	content: attr(data-title);
    display: block;
    font-weight: normal;
    padding-right: 5px;
  }
  .bulk-table.standaard td.length,
  .bulk-table.standaard td.width {
  	font-weight: bold;
  }
  .bulk-table.standaard-simple td.length {
  	width: 100%;
  }
  .bulk-table.standaard-extra td.length {
  	width: 50%;
  }
  .bulk-table.standaard td.price-td {
  	font-weight: 700 !important;
  }
  .bulk-table.standaard .input-wrap-inner input {
  	width: 75px !important;
    margin-left: auto;
  }
  .bulk-table.standaard .custom-input-wrap {
  	float: right;
  }
  
  .bulk-table-outer .bulk-table table tr:nth-child(even),
  .snel-bestellen .bulk-table table tr:nth-child(even) {
    background: var(--color-white);
  }
  .bulk-table-outer .bulk-table table tr:nth-child(odd),
  .snel-bestellen .bulk-table table tr:nth-child(odd) {
  	background: #E6EAEA;
  }
  .bulk-table-outer .bulk-table tr td,
  .snel-bestellen .bulk-table tr td {
  	display: inline-block;
  }
  .bulk-table-outer .bulk-table tr td:first-child,
  .snel-bestellen .bulk-table tr td:first-child {
  	display: block;
    width: 100%;
  }
  .bulk-table-outer .tab-page-2 .bulk-table td,
  .snel-bestellen .tab-page-2 .bulk-table td {
  	width: 50%;
  }
  .bulk-table-outer .bulk-table td.length,
  .snel-bestellen .bulk-table td.length {
  	font-weight: 700;
  }
  .bulk-table-outer .bulk-table.maatwerk td.length,
  .snel-bestellen .bulk-table.maatwerk td.length {
  	width: 100%;
  }  
  .bulk-table-outer .bulk-table td.length:before, .bulk-table-outer .bulk-table td.price-td:before,
  .snel-bestellen .bulk-table td.length:before, .snel-bestellen .bulk-table td.price-td:before{
  	content: attr(data-title);
    display: block;
    font-weight: normal;
    padding-right: 5px;
    opacity: 0.75;
  }
  .bulk-table-outer .tab-page-2 .bulk-table td.length:before,
  .snel-bestellen .tab-page-2 .bulk-table td.length:before {
  	content: none;
  }
  .snel-bestellen .bulk-table td.price-td:before {
  	content: none;
  }
  .bulk-table td.length-input-wrap {
  	width: 50%;
  }
  .bulk-table td.length-input-wrap .aantal-lengte {
  	justify-content: flex-end;
  }
  .bulk-table-outer .bulk-table td.price-td,
  .snel-bestellen .bulk-table td.price-td {
  	font-weight: 700 !important;
  }
  .bulk-table td.price-td.price-mobile,
  .bulk-table td.input.calc {
  	width: 50%;
  }
  .bulk-table td.price-td.price-mobile,
  .bulk-table td.stock-td.stock-mobile,
  .bulk-table td.stuks.stuks-mobile {
  	display: inline-block;
  }
  .bulk-table td.stuks.stuks-mobile {
  	width: 100% !important;
  }
  .bulk-table td.stock-td.stock-mobile i,
  .bulk-table td.stuks.stuks-mobile i{
  	font-family: var(--font-icon);
    font-style: normal;
    margin-right: 5px;
  }
  .bulk-table td.stock-td.stock-mobile i.green,
  .bulk-table td.stuks.stuks-mobile i.green {
    color: var(--color-green);
  }
  .bulk-table td.input.calc label, .bulk-table td.input.no-calc label {
  	margin: 0;
  }
  .bulk-table td.input.no-calc {
  	float: right;
  }
  .bulk-table-outer .bulk-table td:last-child .custom-input-wrap,
  .snel-bestellen .bulk-table td:last-child .custom-input-wrap{
  	float: right;
  }
  .bulk-table.bulk-table-new tbody tr {
		display: flex;
		flex-wrap: wrap;
	}
  
  .bulk-table.pak tr td {
  	width: 50%;
  }
  .bulk-table-outer .tab-page-3 .bulk-table td {
  	width: 50%;
  }

  .tab-page-3 .bulk-table table tr:nth-child(even),
  .tab-page-3 .bulk-table table tr:nth-child(even) td {
    background: #E6EAEA !important; 
  }
  .tab-page-3 .bulk-table table tr:nth-child(odd),
  .tab-page-3 .bulk-table table tr:nth-child(odd) td {
  	background: var(--color-white) !important;
  }
  
  .stickyHeaderTable {
  	display: table-header-group !important;
  }
  .stickyHeaderTable tr {
    display: table-row;
  }
  .stickyHeaderTable th {
    top: 0;
    display: table-cell;
    z-index: 25;
    width: 100%;
  }
  
	.product-detail .top-info .product-title,
	.product-reviews .summary .score .title {
		font-size: 1.4em;
	}  
  .product-reviews {
		margin-top: calc(var(--gap * 2)30px;
	}
	.product-reviews .summary .score {
		margin-bottom: 20px;
	}
	.product-reviews .overview {
		margin: 0 -20px;
		width: calc(100% + 40px);
	}
	.product-reviews .summary {
		margin-bottom: 20px;
	}
	.reviews {
		margin: 0;
	}
	.reviews .review {
		padding: 0;
	}
	.reviews .review:first-child .review-inner {
		border-top: 1px solid rgba(0, 0, 0, .07);
	}
	.reviews .review .review-inner {
		padding: 20px;
		background: transparent;
		border-bottom: 1px solid rgba(0, 0, 0, .07);
		border-radius: 0;
	}
  
  .product-tags {
		margin-top: 0;
	}
	.product-tags .popup-inner {
		text-align: left;
	}
}
*/