/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.offerText {
  font-size: 13px;
  position: relative;
  color: #f25922;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (min-width: 768px) {
  .offerText {
    font-size: 16px;
  }
}
.offerText--alt {
  font-size: 12px;
  font-weight: 700;
  display: block;
}
.lineThrough {
  text-decoration: line-through;
}
.lineThrough .valuta,
.lineThrough .main,
.lineThrough .separator,
.lineThrough .cents {
  text-decoration: line-through;
}
.price {
  font-weight: 700;
}
.priceOld {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  color: #142632 !important;
}
@media only screen and (min-width: 768px) {
  .priceOld {
    font-size: 16px;
  }
}
.priceOld .price {
  color: #142632 !important;
}
.priceOld .valuta,
.priceOld .main,
.priceOld .separator,
.priceOld .cents {
  text-decoration: line-through;
}
.priceOld + .price:not(.priceOld) {
  color: #f25922;
}
.priceNew,
.newPrice:not(.priceOld) {
  position: relative;
  font-weight: 700;
  color: #f25922;
}
.priceNew .lineThrough,
.newPrice:not(.priceOld) .lineThrough {
  display: none;
}
.offerText + .offerText {
  display: none;
}
.productList {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  clear: both;
}
.productList .item {
  position: relative;
  width: calc(50% - 7.5px);
  background: white;
  border: 1px solid transparent;
  padding: 10px 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .productList .item {
    padding: 30px 0;
  }
}
.productList .item.item--loading .thumb:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -14px 0 0 -14px;
  height: 20px;
  width: 20px;
  border: 4px solid #142632;
  border-right-color: transparent;
  border-radius: 50%;
  z-index: 5;
  -webkit-animation: rotate 0.8s infinite linear;
  -moz-animation: rotate 0.8s infinite linear;
  -ms-animation: rotate 0.8s infinite linear;
  -o-animation: rotate 0.8s infinite linear;
  animation: rotate 0.8s infinite linear;
}
.productList .item.item--focus {
  opacity: 0.5;
  border: 1px solid #142632;
}
.productList .item > .inner {
  display: none;
  width: 100%;
}
.productList .item > .inner.active {
  display: block;
}
.productList .item .offergroup {
  position: absolute;
  left: 4%;
  top: 0;
  z-index: 9;
}
.productList .item .thumb {
  width: auto;
  position: relative;
  padding-bottom: 130%;
  height: 0;
}
.productList .item .thumb > a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  display: block;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}
.productList .item .thumb > a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
  margin-right: -1px;
}
.productList .item .thumb > a img {
  display: inline-block;
  vertical-align: middle;
  /*align image*/
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.productList .item .thumb > a img.hoverImg {
  display: none;
}
.productList .item .thumb .image-unavailable {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.productList .item .thumb .image-unavailable p {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  margin: 0;
  text-align: center;
  font-size: 13px;
  line-height: 19px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 400px) {
  .productList .item .thumb .image-unavailable p {
    font-size: 16px;
    line-height: 22px;
  }
}
.productList .item:hover .thumb > a img.hoverImg + img {
  display: none;
}
.productList .item:hover .thumb > a img.hoverImg {
  display: inline-block;
}
.productList .item .content {
  overflow: hidden;
  position: relative;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  .productList .item .content {
    padding: 0 30px;
  }
}
.productList .item .content .title {
  display: block;
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.productList .item .content .title .brand {
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .productList .item .content .title {
    font-size: 16px;
  }
}
.productList .item ul.availableSizes {
  display: none;
}
.productList .item ul.availableColors,
.productList .item ul.availableSizes {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 20%;
  padding: 10px 4%;
  margin: 0;
  list-style: none;
}
.item:hover .productList .item ul.availableColors,
.item:hover .productList .item ul.availableSizes {
  display: block;
}
.productList .item ul.availableColors > li,
.productList .item ul.availableSizes > li {
  padding-bottom: 100%;
  height: 0;
  position: relative;
  width: 100%;
}
.productList .item ul.availableColors > li > a,
.productList .item ul.availableSizes > li > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #c2bfb6;
  display: block;
  background: white;
}
.productList .item ul.availableColors > li > a.active,
.productList .item ul.availableSizes > li > a.active {
  border-color: #142632;
}
.productList .item ul.availableColors {
  top: 0;
  right: 10px;
  left: auto;
  width: 25px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .productList .item ul.availableColors {
    right: 30px;
    width: 50px;
  }
}
.productList .item ul.availableColors.low {
  top: 32%;
}
@media only screen and (min-width: 1280px) {
  .productList .item ul.availableColors.low {
    top: 28%;
  }
}
.productList .item ul.availableColors > li {
  margin-bottom: 15px;
  position: relative;
}
.productList .item ul.availableColors > li > a {
  width: 25px;
  height: 25px;
  line-height: 22px;
  overflow: hidden;
  border: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  border: 1px solid transparent;
}
@media only screen and (min-width: 768px) {
  .productList .item ul.availableColors > li > a {
    width: 50px;
    height: 50px;
    line-height: 47px;
  }
}
.productList .item ul.availableColors > li > a:hover {
  border: 1px solid #142632;
}
.productList .item ul.availableColors > li.more-colors a {
  background: #f7f5ef;
  font-size: 18px;
}
.productList .item ul.availableColors > li ul {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  margin: 0 0 0 15px;
  padding: 5px 7px;
  font-size: 14px;
  list-style: none;
  width: 120px;
  background: white;
  border: 1px solid #c2bfb6;
}
.productList .item ul.availableColors > li ul:before {
  content: attr(aria-title);
  display: block;
}
.productList .item ul.availableColors > li ul li {
  display: inline-block;
}
.productList .item ul.availableColors > li ul li a {
  line-height: 22px;
  color: #142632;
}
.productList .item ul.availableColors > li:hover ul {
  display: block;
}
.productList .item ul.availableSizes {
  width: 100%;
}
.productList .item ul.availableSizes > li {
  float: left;
  margin-right: 2.540650407%;
  margin-bottom: 2.540650407%;
  width: 17.967479675%;
}
.lt-ie9 .productList .item ul.availableSizes > li {
  /*IE 8*/
  width: 17.459349593%;
}
.productList .item ul.availableSizes > li:nth-of-type(n) {
  /*reset if function is called more then once*/
  margin-right: 2.540650407%;
}
.productList .item ul.availableSizes > li:nth-of-type(5n) {
  margin-right: 0;
}
.productList .item ul.availableSizes > li {
  padding-bottom: 22px;
}
.productList .item ul.availableSizes > li > a {
  color: #142632;
}
.productList .item .price {
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .productList .item .price {
    font-size: 16px;
  }
}
.productList .item .price span {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .productList .item .price span {
    font-size: 16px;
  }
}
.productList .item .priceWrap .prefix,
.productList .item .priceWrap .old,
.productList .item .priceWrap .valuta {
  margin: 0 4px 0 0;
}
.productList .item .priceWrap .old {
  color: #142632;
  font-size: 16px;
  font-weight: normal;
  text-decoration: line-through;
}
.loading .productList .item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white url(https://www.vanuffelenmode.nl//images/svg/loading.svg) no-repeat center center;
  background-color: rgba(255, 255, 255, 0.5);
}
.directOrder {
  margin-top: 16px;
}
.directOrder .directOrderSizes {
  width: 100%;
  padding: 4px 0;
}
.directOrder .directOrderButton {
  margin: 8px 0;
}
.label {
  display: block;
  max-width: 45%;
  width: 100px;
  height: auto;
  line-height: 0;
  position: absolute;
  pointer-events: none;
}
.label.brand,
.label.TopLeft {
  top: 0;
  left: 10px;
}
@media only screen and (min-width: 768px) {
  .label.brand,
  .label.TopLeft {
    left: 30px;
  }
}
.label.brand img,
.label.TopLeft img {
  width: auto;
  height: auto;
}
.label.TopRight {
  top: 0;
  right: 10px;
}
@media only screen and (min-width: 768px) {
  .label.TopRight {
    right: 30px;
  }
}
.label.BottomLeft {
  bottom: 0;
  left: 10px;
}
@media only screen and (min-width: 768px) {
  .label.BottomLeft {
    left: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .label.BottomLeft {
    bottom: 30px;
  }
}
.label.BottomRight {
  bottom: 0;
  right: 10px;
}
@media only screen and (min-width: 768px) {
  .label.BottomRight {
    right: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .label.BottomRight {
    bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .productList .item {
    width: calc(33.333333333% - 10px);
  }
}
@media only screen and (min-width: 1024px) {
  .productList .item {
    width: calc(33.333333333% - 10px);
  }
}
.color-selection {
  position: absolute;
  top: 60px;
  right: 30px;
  width: 50px;
  z-index: 1;
}
.color-selection__item {
  margin-bottom: 15px;
}
.color-selection__item__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 47px;
  border: solid 1px #c2bfb6;
  background-color: white;
  cursor: pointer;
  border-radius: 100%;
  overflow: hidden;
}
.color-selection__item__inner img {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  display: block;
  width: auto !important;
  max-width: 50px;
  height: 100%;
  max-height: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.color-selection__item__inner:hover {
  border-color: #142632;
}
.color-selection__item.active .color-selection__item__inner {
  border-color: #142632;
}
