.collection--title__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: baseline;
}
.collection--stock-switcher {
	padding: 0 10px;
}
.collection--switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.collection--switch__input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.collection--switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #757575;
  -webkit-transition: .4s;
  transition: .4s;
}
.collection--switch__slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.collection--switch__input:checked + .collection--switch__slider {
  background-color: #27bc29;
}
.collection--switch__input[type="checkbox"] {
  margin=top: 0px;
}
.collection--switch {
  margin-bottom: 0px;
}
.collection--switch__input:focus + .collection--switch__slider {
  box-shadow: 0 0 1px #27bc29;
}
.collection--switch__input:checked + .collection--switch__slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}
.collection--switch__slider.round {
  border-radius: 34px;
}
.collection--switch__slider.round:before {
  border-radius: 50%;
}
.collection--stock-switcher {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.collection--stock-switcher__text {
  margin-right: 10px;
  font-size: 1em;
  font-weight: bold;
}
@media(max-width:767.98px){
  .collection--stock-switcher {
  	padding:0px;
  }
}
.item[data-show-product="false"] {
	display:none;
}

/* Infinite scroll */
.collection-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.collection-spinner-more {
  margin-top: 30px;
}
.show-prev .collection-spinner-more {
	margin-top: 0px;
  margin-bottom: 30px;
}
.collection-spinner-more span {
  margin:0px 5px;
}

/* Weekdeal */
.weekdeal__banner .text-wrap {
  max-width: 350px;
}
.weekdeal--banner__actie {
  position: absolute;
  z-index: 9;
  display: flex;
  height: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.weekdeal--banner__actie-title {
	text-transform: uppercase;
  font-size:2.8em !important;
  color:#fff;
  font-weight:bold;
}
.weekdeal--banner__actie-subtitle {
  text-transform: uppercase;
  font-size:1.4em !important;
  color:#fff;
  font-weight:bold;
}
#headlines.banner.weekdeal__banner .spotlight .b_prod .text-wrap {
	max-width:350px;
}
@media(max-width:767.98px){
  .weekdeal--banner__actie {
  	display:none;
  }
  #headlines.banner.weekdeal__banner .spotlight .b_prod .text-wrap {
  	max-width: 100%;
    flex: 1 1 100%;
  }
}
