@charset "UTF-8";
.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}
.checkbox input[type=checkbox], .checkbox input[type=radio] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.checkbox input[type=checkbox]:focus + label::before, .checkbox input[type=radio]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type=checkbox]:checked + label::after, .checkbox input[type=radio]:checked + label::after {
  font-family: "FontAwesome";
  content: "";
}
.checkbox input[type=checkbox]:indeterminate + label::after, .checkbox input[type=radio]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}
.checkbox input[type=checkbox]:disabled, .checkbox input[type=radio]:disabled {
  cursor: not-allowed;
}
.checkbox input[type=checkbox]:disabled + label, .checkbox input[type=radio]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type=checkbox]:disabled + label::before, .checkbox input[type=radio]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type=checkbox]:checked + label::before, .checkbox-primary input[type=radio]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type=checkbox]:checked + label::after, .checkbox-primary input[type=radio]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type=checkbox]:checked + label::before, .checkbox-danger input[type=radio]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type=checkbox]:checked + label::after, .checkbox-danger input[type=radio]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type=checkbox]:checked + label::before, .checkbox-info input[type=radio]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type=checkbox]:checked + label::after, .checkbox-info input[type=radio]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type=checkbox]:checked + label::before, .checkbox-warning input[type=radio]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type=checkbox]:checked + label::after, .checkbox-warning input[type=radio]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type=checkbox]:checked + label::before, .checkbox-success input[type=radio]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type=checkbox]:checked + label::after, .checkbox-success input[type=radio]:checked + label::after {
  color: #fff;
}

.checkbox-primary input[type=checkbox]:indeterminate + label::before, .checkbox-primary input[type=radio]:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type=checkbox]:indeterminate + label::after, .checkbox-primary input[type=radio]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-danger input[type=checkbox]:indeterminate + label::before, .checkbox-danger input[type=radio]:indeterminate + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type=checkbox]:indeterminate + label::after, .checkbox-danger input[type=radio]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-info input[type=checkbox]:indeterminate + label::before, .checkbox-info input[type=radio]:indeterminate + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type=checkbox]:indeterminate + label::after, .checkbox-info input[type=radio]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-warning input[type=checkbox]:indeterminate + label::before, .checkbox-warning input[type=radio]:indeterminate + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type=checkbox]:indeterminate + label::after, .checkbox-warning input[type=radio]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-success input[type=checkbox]:indeterminate + label::before, .checkbox-success input[type=radio]:indeterminate + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type=checkbox]:indeterminate + label::after, .checkbox-success input[type=radio]:indeterminate + label::after {
  background-color: #fff;
}

.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type=radio] {
  opacity: 0;
  z-index: 1;
  cursor: pointer;
}
.radio input[type=radio]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type=radio]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type=radio]:disabled {
  cursor: not-allowed;
}
.radio input[type=radio]:disabled + label {
  opacity: 0.65;
}
.radio input[type=radio]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type=radio] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type=radio]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type=radio]:checked + label::after {
  background-color: #337ab7;
}

.radio-danger input[type=radio] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type=radio]:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type=radio]:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type=radio] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type=radio]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type=radio]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type=radio] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type=radio]:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type=radio]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type=radio] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type=radio]:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type=radio]:checked + label::after {
  background-color: #5cb85c;
}

input[type=checkbox].styled:checked + label:after, input[type=radio].styled:checked + label:after {
  font-family: "FontAwesome";
  content: "";
}
input[type=checkbox] .styled:checked + label::before, input[type=radio] .styled:checked + label::before, input[type=checkbox] .styled:checked + label::after, input[type=radio] .styled:checked + label::after {
  color: #fff;
}

@keyframes bounce {
  0%, 20%, 60%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(-5px);
  }
}
html {
  background-color: #ffffff;
  color: #42150f;
}
html body {
  background-color: #ffffff;
  background-image: url("../gfx/main/landschap-lucht.jpg");
  background-position: center bottom 100px;
  background-repeat: no-repeat;
  color: #42150f;
  font-family: "VarelaRound";
  overflow-x: hidden;
  padding-top: 78px;
}
@media (max-width: 767px) {
  html body {
    padding-top: 50px;
    background-position: center bottom 0px;
  }
}
@media (max-width: 767px) {
  html body > div:nth-last-of-type(1) {
    margin-bottom: 100px;
  }
}

img {
  max-width: 100%;
}

a {
  transition: 0.2s;
}
a:hover {
  transition: 0.2s;
}

p a {
  color: #42150f;
}
p a:hover {
  text-decoration: underline;
}

hr {
  border-top: 2px solid #42150f;
}

.btn {
  border-radius: 0;
}

.container {
  padding-bottom: 20px;
  padding-top: 20px;
}
.container--actie {
  margin-bottom: 15px;
}
.container--actie .col-sm-8 {
  padding: 15px !important;
}
.container-no-padding {
  padding: 0px;
}
@media (max-width: 767px) {
  .container-no-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.container-padding-right {
  padding-right: 30px;
}
.container-padding-left {
  padding-left: 30px;
}
.container--relevant-product {
  height: 250px;
  margin-bottom: 250px;
}
@media (max-width: 767px) {
  .container--relevant-product {
    height: auto;
    margin-bottom: auto;
  }
}
.container-timeline > .row {
  border-top: 4px solid #42150f;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
}
.container-timeline > .row:first-child {
  border-top: none;
}

.equalHeight {
  display: flex;
  flex-wrap: wrap;
}
.equalHeight__item {
  display: flex;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-150 {
  margin-top: 150px;
}

.mtm-300 {
  margin-top: -300px;
}

.mtm-500 {
  margin-top: -500px;
}

.row-eq-height {
  display: flex;
}
@media (max-width: 767px) {
  .row-eq-height {
    display: block;
  }
}

.vcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

table {
  width: 100% !important;
  border: none;
}
table tr {
  border: none;
  border-bottom: 1px solid #99807d;
  line-height: 28px;
}
table tr td {
  border: none;
}

@font-face {
  font-family: "Chalkduster";
  src: url("../fonts/Chalkduster/Chalkduster.eot");
  src: url("../fonts/Chalkduster/Chalkduster.eot?#iefix") format("embedded-opentype"), url("../fonts/Chalkduster/Chalkduster.woff2") format("woff2"), url("../fonts/Chalkduster/Chalkduster.woff") format("woff"), url("../fonts/Chalkduster/Chalkduster.ttf") format("truetype"), url("../fonts/Chalkduster/Chalkduster.svg#Chalkduster") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Jenthill";
  src: url("../fonts/Jenthill/Jenthill.eot");
  src: url("../fonts/Jenthill/Jenthill.eot?#iefix") format("embedded-opentype"), url("../fonts/Jenthill/Jenthill.woff2") format("woff2"), url("../fonts/Jenthill/Jenthill.woff") format("woff"), url("../fonts/Jenthill/Jenthill.ttf") format("truetype"), url("../fonts/Jenthill/Jenthill.svg#Jenthill") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "VarelaRound";
  src: url("../fonts/VarelaRound/VarelaRound.eot");
  src: url("../fonts/VarelaRound/VarelaRound.eot?#iefix") format("embedded-opentype"), url("../fonts/VarelaRound/VarelaRound.woff2") format("woff2"), url("../fonts/VarelaRound/VarelaRound.woff") format("woff"), url("../fonts/VarelaRound/VarelaRound.ttf") format("truetype"), url("../fonts/VarelaRound/VarelaRound.svg#VarelaRound") format("svg");
  font-weight: normal;
  font-style: normal;
}
.font-chalkduster {
  font-family: "Chalkduster";
}

.font-jenthill {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none !important;
}

.font-grotesk {
  font-family: "niveau-grotesk";
  font-weight: 700;
}

.font-varelaround {
  font-family: "VarelaRound";
}

h1 {
  font-family: "niveau-grotesk";
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  font-family: "niveau-grotesk";
  font-weight: 700;
  text-transform: uppercase;
}

h4 {
  font-weight: 700;
}

p {
  font-family: "VarelaRound";
  line-height: 1.7em;
}

.image-header {
  background-position: center center;
  background-color: #424242;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 11em;
}
@media (max-width: 767px) {
  .image-header {
    padding: 6em;
  }
}

#footer {
  background-color: #f8981d;
  background-image: url("../gfx/main/grond-herhaal-footer.png");
  color: #ffffff;
  font-family: "niveau-grotesk";
  font-size: 1.2em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 300px;
}
@media (max-width: 767px) {
  #footer {
    margin-top: 80px;
  }
}
#footer:before {
  background-image: url("../gfx/main/grond-herhaal-homepage.png");
  background-repeat: repeat-x;
  content: " ";
  display: block;
  height: 116px;
  position: relative;
  top: -30px;
  width: 100%;
}
#footer a {
  color: #ffffff;
}
#footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
#footer .footer-right {
  float: right;
}
@media (max-width: 767px) {
  #footer .footer-right {
    float: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #footer .footer-right {
    float: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #footer .footer-menu {
    margin-top: -50px;
  }
}
#footer .container {
  position: relative;
}
#footer .container .zon-footer {
  position: absolute;
  right: 0;
  top: -300px;
}
@media (max-width: 767px) {
  #footer .container .zon-footer {
    top: -180px;
  }
}
@media (max-width: 767px) {
  #footer .container .zon-footer img {
    width: 100%;
  }
}
#footer ul li:after {
  content: "|";
  padding-left: 10px;
}
#footer ul li:last-child:after {
  display: none;
}

.actie-product {
  position: relative;
}
.actie-product h1 {
  color: #000000;
}
.actie-product h2 {
  color: #000000;
}
.actie-product h3 {
  color: #000000;
}
.actie-product h4 {
  color: #000000;
}
.actie-product h5 {
  color: #000000;
}
.actie-product h6 {
  color: #000000;
}
@media (max-width: 767px) {
  .actie-product h4 {
    color: #ffffff;
  }
}

.arrow {
  font-size: 1.5em;
  font-weight: 100;
}
.arrow:hover {
  color: #42150f;
  text-decoration: none;
}
.arrow:after {
  content: url("../gfx/main/pijl-bruin.png");
  float: right;
  margin-left: 10px;
}
.arrow--top:after {
  display: none;
}
.arrow--top:before {
  content: url("../gfx/main/pijl-bruin.png");
  float: left;
  margin-left: 10px;
  margin-top: 20px;
  transform: rotate(270deg);
  width: 100%;
}
.arrow--left:after {
  content: url("../gfx/main/pijl-bruin.png");
  float: left;
  margin-left: 10px;
  margin-top: 20px;
  transform: rotate(0deg);
  width: 100%;
}
.arrow--left:before {
  display: none;
}

.col-acties {
  width: 20% !important;
}
@media (max-width: 767px) {
  .col-acties {
    width: 100% !important;
  }
}
.col-acties .recipe__image_square {
  height: 200px !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-acties .recipe__image_square {
    height: 150px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-acties .recipe__image_square {
    height: 120px !important;
  }
}
@media (max-width: 767px) {
  .col-acties .recipe__image_square {
    height: inherit;
  }
}
.col-acties h4 {
  font-size: 1.3em !important;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-acties h4 {
    font-size: 1.1em !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-acties h4 {
    font-size: 0.9em !important;
  }
}

.bg-grey {
  background-color: #f3f3f3;
}

.bg-top {
  background-position: 0px 200px;
  background-repeat: repeat-x;
}
@media (min-width: 768px) and (max-width: 991px) {
  .bg-top {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .bg-top {
    background-size: cover;
  }
}

.block-intro {
  padding: 2em 2.5em;
}

.breeder__name {
  color: #42150f;
  font-family: "niveau-grotesk";
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.breeder__title {
  margin-top: 5px;
}

.breeder-quote .btn-border {
  border: 2px solid #42150f;
  color: #42150f;
  font-family: "niveau-grotesk";
  font-size: 1em;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-transform: uppercase;
}
.breeder-quote .btn-border:hover, .breeder-quote .btn-border:active, .breeder-quote .btn-border:focus {
  background-color: #42150f;
  color: #ffffff;
}

#bg-asperges {
  background-image: url("../uploads/producten/afbeeldingen-vrijstaand/asperges.png");
  height: 500px;
  width: 500px;
}

#bg-tomatoes {
  background-image: url("../uploads/producten/afbeeldingen-vrijstaand/tomaten.png");
  height: 500px;
  width: 500px;
}

#bg-courgette {
  background-image: url("../uploads/producten/afbeeldingen-vrijstaand/courgette.png");
  height: 500px;
  left: -400px;
  width: 500px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #bg-courgette {
    left: -350px;
  }
}
@media (min-width: 1200px) {
  #bg-courgette {
    left: -400px;
  }
}
@media (min-width: 1400px) {
  #bg-courgette {
    left: -350px;
  }
}
@media (min-width: 1600px) {
  #bg-courgette {
    left: -250px;
  }
}

.circle {
  width: 100%;
  height: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .circle--timeline {
    left: 18px;
  }
}
.circle--timeline:after {
  background-image: url("../gfx/main/hout-bordje-small.jpg");
  content: attr(title);
  color: #ffffff;
  display: inline-block;
  font-family: "niveau-grotesk";
  font-weight: 700;
  font-size: 2em;
  padding: 10px 30px;
  text-transform: uppercase;
  position: relative;
  top: -30px;
}

.content {
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .content {
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
.content--heading--jenthill h1 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--heading--jenthill h2 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--heading--jenthill h3 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--heading--jenthill h4 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--heading--jenthill h5 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--heading--jenthill h6 {
  font-family: "Jenthill";
  font-weight: 500;
  text-transform: none;
}
.content--top {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
@media print {
  .content--top {
    margin-top: 20px;
  }
}
.content--top h1 {
  font-size: 4em;
}
@media (max-width: 767px) {
  .content--top h1 {
    font-size: 2.5em;
  }
}
.content--top p {
  font-size: 1.2em;
}

.img-detached {
  bottom: 0px;
  position: absolute;
  right: -150px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .img-detached {
    position: relative;
  }
}

.polaroid-holder {
  width: 49%;
  display: inline-block;
}

.img-polaroid,
.img-polaroid-2 {
  z-index: 0;
  border: 8px solid #f3f3f3;
  border-bottom: 50px solid #f3f3f3;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.6);
  transform: rotate(6deg);
}
@media (max-width: 767px) {
  .img-polaroid,
.img-polaroid-2 {
    margin-top: 20px;
    width: 90%;
  }
}

.img-polaroid-2 {
  transform: rotate(-6deg);
  margin-left: 30px;
  z-index: 10;
  margin-top: 10px;
}

.label-month {
  background-color: rgba(66, 21, 15, 0.5);
  color: #ffffff;
  display: inline-block;
  font-family: "niveau-grotesk";
  font-weight: 700;
  font-size: 1.2em;
  padding: 10px 20px;
  text-transform: uppercase;
}

.month-overview {
  border-bottom: 2px solid #42150f;
  display: table;
  margin-bottom: 50px;
  width: 100%;
}
@media (max-width: 767px) {
  .month-overview {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .month-overview {
    display: none;
  }
}
.month-overview li {
  display: table-cell;
  font-family: "niveau-grotesk";
  font-weight: 700;
  font-size: 1.5em;
  list-style-type: none;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 10%;
}
.month-overview li:first-child {
  background: linear-gradient(to right, #ffffff 1%, #99807d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.month-overview li:nth-child(2) {
  background: linear-gradient(to right, #99807d 25%, #42150f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.month-overview li:nth-last-child(2) {
  background: linear-gradient(to right, #42150f, #99807d 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.month-overview li:last-child {
  background: linear-gradient(to right, #99807d, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.month-overview li.active {
  font-size: 3em;
}

.month-overview-complete {
  border-bottom: 4px solid #42150f;
  margin-top: 2em;
}
@media (min-width: 768px) and (max-width: 991px) {
  .month-overview-complete {
    display: none;
  }
}
@media (max-width: 767px) {
  .month-overview-complete {
    display: none;
  }
}
.month-overview-complete li {
  font-family: "niveau-grotesk";
  font-weight: 700;
  font-size: 1.2em;
  list-style-type: none;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .month-overview-complete li {
    font-size: 1em;
  }
}
.month-overview-complete li a {
  color: #42150f;
}
.month-overview-complete li.active {
  background-image: url("../gfx/main/hout-bordje-small.jpg");
  bottom: -15px;
  font-size: 2em;
  padding: 10px 20px;
  position: relative;
}
.month-overview-complete li.active a {
  color: #ffffff;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .month-overview-complete li.active {
    font-size: 1.2em;
  }
}
.month-overview-complete li.active:after {
  bottom: -40px;
  content: "";
  font-family: "Glyphicons Halflings";
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .month-overview-complete li.active:after {
    bottom: -20px;
  }
}

.partner__logo {
  background-color: #ffffff;
  box-shadow: 0px 0px 2px 2px rgba(184, 184, 184, 0.7);
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 10px;
}
.partner__logo img {
  height: 100px;
}

.product-info-main {
  margin-bottom: 3em;
}
.product-info-main .col-sm-8 {
  padding-right: 40px;
}

.product-month {
  background-image: url("../gfx/main/vignet-product-van-de-maand.png");
  background-size: cover;
  height: 170px;
  left: 25%;
  position: absolute;
  top: -50px;
  width: 170px;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product-month {
    height: 270px;
    width: 270px;
  }
}
@media (max-width: 767px) {
  .product-month {
    top: -20px;
  }
}

.row-timeline {
  height: 40px;
}

.side {
  position: absolute;
  z-index: 9;
}
@media (max-width: 767px) {
  .side {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .side {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .side {
    display: none;
  }
}
@media (max-width: 767px) {
  .side-left {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .side-left {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .side-left {
    left: -350px;
  }
}
@media (min-width: 1200px) {
  .side-left {
    left: -350px;
  }
}
@media (min-width: 1400px) {
  .side-left {
    left: -250px;
  }
}
@media (max-width: 767px) {
  .side-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .side-right {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .side-right {
    right: -300px;
  }
}
@media (min-width: 1200px) {
  .side-right {
    right: -300px;
  }
}
@media (min-width: 1400px) {
  .side-right {
    right: -250px;
  }
}

.social-media-share a {
  background-color: #f8981d;
  color: #ffffff;
  display: inline-block;
  font-size: 1.7em;
  height: 30px;
  margin-right: 10px;
  text-align: center;
  width: 30px;
}
.social-media-share a:hover {
  background-color: #42150f;
}

.teler-image {
  display: block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .teler-image {
    margin-bottom: 2em;
  }
}
.teler-image .description {
  background: linear-gradient(transparent, black);
  bottom: 0px;
  color: #ffffff;
  padding: 10px 30px;
  position: absolute;
  text-align: left;
  text-transform: uppercase;
  width: calc(100% - 30px);
}
.teler-image .description h4 {
  margin-bottom: 0px;
}
.teler-image img {
  transition: all 0.3s;
  width: 100%;
}
.teler-image:hover img {
  transform: scale(1.05);
}
.teler-image:hover:before {
  border: 1px solid #ffffff;
  content: "»" attr(title);
  color: #ffffff;
  display: block;
  font-family: "niveau-grotesk";
  font-size: 0.8em;
  letter-spacing: 2px;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  vertical-align: inherit;
  text-transform: uppercase;
  z-index: 1;
  background-color: #f8981d;
}
@media (max-width: 767px) {
  .teler-image:hover:before {
    font-size: 1em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .teler-image:hover:before {
    font-size: 0.5em;
  }
}

.timeline-bar .row {
  border-left: 5px solid #42150f;
  float: left;
  padding-bottom: 100px;
  padding-left: 3%;
}
@media (max-width: 767px) {
  .timeline-bar .row {
    margin-left: 20px;
    width: 90%;
  }
}
.timeline-bar .row .recipe {
  margin-bottom: 0em;
  margin-top: 0em;
}
@media (max-width: 767px) {
  .timeline-bar .row .recipe {
    overflow: hidden;
  }
}
.timeline-bar .row .recipe .recipe__image:before {
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .timeline-bar .row .recipe .recipe__image:before {
    font-size: 0.55em;
  }
}

.wood--black {
  background-image: url("../gfx/main/hout-bg-zwart-groot.jpg");
  color: #ffffff;
}
.wood--black a {
  color: #ffffff;
}

.wood--orange {
  background-image: url("../gfx/main/hout-bg-oranje-groot.jpg");
  color: #ffffff;
}
.wood--orange a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .wood--orange-product {
    height: auto !important;
  }
}

.wood--wit {
  background-image: url("../gfx/main/hout-bg-wit-groot.jpg");
}

@media (max-width: 767px) {
  .teler-home {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .teler-home {
    margin-top: 0;
  }
}

.facebook-feed {
  margin: 50px 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .facebook-feed > div {
    height: 250px;
  }
}
@media (min-width: 1200px) {
  .facebook-feed > div {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .facebook-feed .facebook-posts {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .facebook-feed .facebook-posts {
    position: relative;
    top: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .facebook-feed .facebook-posts {
    position: relative;
    top: 20px;
  }
}
@media (min-width: 1200px) {
  .facebook-feed .facebook-posts {
    position: relative;
    top: 20px;
  }
}
.facebook-feed .facebook-posts .facebook-post {
  background: #f0ede6;
  padding: 15px 0;
  overflow: hidden;
  color: #42150f;
  -webkit-box-shadow: 0 2px 3px #777;
  -moz-box-shadow: 0 2px 3px #777;
  box-shadow: 0 2px 3px #777;
}
@media (max-width: 767px) {
  .facebook-feed .facebook-posts .facebook-post {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .facebook-feed .facebook-posts .facebook-post {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .facebook-feed .facebook-posts .facebook-post {
    word-wrap: break-word;
  }
}
.facebook-feed .facebook-posts .facebook-post a {
  color: #42150f;
  text-decoration: underline;
}
.facebook-feed .facebook-posts .facebook-post .link:after {
  font-family: FontAwesome;
  content: "";
  color: #42150f;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.container--actie-recept {
  height: 250px;
  margin-bottom: 210px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container--actie-recept {
    margin-bottom: 140px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container--actie-recept {
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .container--actie-recept {
    height: auto;
    margin-bottom: 20px;
  }
  .container--actie-recept .container-padding-left {
    padding-left: 0;
  }
}

.container--actie-margin-bottom-youtube {
  margin-bottom: 540px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container--actie-margin-bottom-youtube {
    margin-bottom: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container--actie-margin-bottom-youtube {
    margin-bottom: 270px;
  }
}
@media (max-width: 767px) {
  .container--actie-margin-bottom-youtube {
    margin-bottom: 40px;
  }
}

.actie-recept .video {
  padding-right: 0;
  padding-left: 0;
}
.actie-recept .recept-left {
  overflow: auto;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .actie-recept .recept-left {
    height: 337px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .actie-recept .recept-left {
    height: 289px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .actie-recept .recept-left {
    height: 228px;
  }
}

.actie-recept {
  color: #42150f;
}

.recept-inner a {
  font-size: 20px;
  display: block;
  width: 70%;
  color: #42150f;
  padding-bottom: 10px;
}

.iframe-preview {
  cursor: pointer;
}

.iframe-preview img {
  transition: 0.3s all ease-out;
}

.iframe-preview > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}

.iframe-preview .btnPlayBig-2 {
  position: absolute;
  z-index: 2;
  left: 24%;
  top: 33%;
  width: 20%;
}

.iframe-preview .btnPlayBig {
  position: absolute;
  z-index: 2;
  left: 63%;
  top: 34%;
  width: 20%;
}

button.close {
  background-color: #ffffff;
  border-radius: 15px;
  color: #000000;
  height: 30px;
  position: absolute;
  opacity: 1;
  right: -15px;
  top: -15px;
  text-shadow: none;
  width: 30px;
  z-index: 2;
}
button.close:hover {
  background-color: #A51140;
  color: #fff;
  opacity: 1;
}

.container--teler-detail {
  height: 360px;
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .container--teler-detail {
    height: auto;
    margin-bottom: 60px;
  }
}

.container--teler-detail .font-chalkduster {
  font-size: 22px;
  color: #42150f;
}

.polariod-teler-holder {
  height: 250px;
}

.img-polaroid-teler {
  border-bottom: 8px solid #f3f3f3;
  width: 49%;
  position: absolute;
}
.img-polaroid-teler-1 {
  left: 10%;
  top: 5%;
  z-index: 1;
  transform: rotate(-6deg);
}
@media (max-width: 767px) {
  .img-polaroid-teler-1 {
    left: 0;
  }
}
.img-polaroid-teler-2 {
  right: 0;
  transform: rotate(6deg);
}

.teler-video {
  margin-top: 20px;
}

.img-polaroid-actie {
  width: 90%;
}

.btnPlayActie {
  left: 36% !important;
  top: 31% !important;
  width: 42% !important;
}

.teler-video .video-link {
  padding-top: 35px;
}

.filter-holder {
  margin-bottom: 40px;
  overflow-y: auto;
}
.filter-holder h4 {
  font-size: 16px;
  margin-bottom: 12px;
}
.filter-holder input .form-control {
  border-radius: 0;
  border-color: #efefef;
}
.filter-holder button .filter-button.btn {
  padding-bottom: 4px;
}
.filter-item--select {
  padding: 2px 10px;
  font-size: 14px;
  border: none;
  height: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #f3f3f3;
  background-image: url(../gfx/main/arrow-orange.png);
  background-position: center right;
  background-repeat: no-repeat;
}
.filter-item input {
  /*width: 74%*/
  padding: 2px 10px;
  border: 2px solid #f3f3f3;
}
.filter-item .col-xs-6 {
  padding-left: 0px;
}
.filter-checkbox {
  display: block;
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.filter-checkbox input:checked ~ .checkmark {
  background-color: #ffffff;
}
.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.filter-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 2px solid #f3f3f3;
}
.filter-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 0;
  width: 7px;
  height: 12px;
  border: solid #f8981d;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.filter-button {
  background: #f3f3f3;
  color: #f8981d;
  border: 2px solid #f3f3f3;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #f8981d;
  background: #f8981d;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #f8981d;
}

@media (max-width: 767px) {
  .margin-bottom-sm {
    margin-bottom: 10px;
  }
}

.product-recipes-holder {
  height: 380px;
  margin-top: 50px;
  padding-top: 0;
}

.product-recipes-pictures {
  margin-top: 35px;
}

.product-recipes {
  position: relative;
  font-family: "Chalkduster";
  font-size: 1.3em;
  height: 290px;
}
@media (max-width: 767px) {
  .product-recipes {
    height: 200px;
  }
}
.product-recipes-1 {
  position: absolute;
  left: 0;
  bottom: 50px;
}
@media (max-width: 767px) {
  .product-recipes-1 {
    bottom: auto;
    top: 30px;
    left: 30px;
  }
}
.product-recipes-1:before {
  content: url("../gfx/main/arrow-white-krom.png");
  width: 33px;
  height: 16px;
  position: absolute;
  left: -10px;
  top: -20px;
}
@media (max-width: 767px) {
  .product-recipes-1:before {
    transform: scaleY(-1) rotate(-65deg);
    left: -42px;
    top: -15px;
  }
}
.product-recipes-2 {
  position: absolute;
  top: 38px;
  right: 20px;
}
@media (max-width: 767px) {
  .product-recipes-2 {
    top: auto;
    bottom: 20px;
    right: 90px;
  }
}
.product-recipes-2:after {
  content: url("../gfx/main/arrow-white-krom.png");
  width: 33px;
  height: 16px;
  position: absolute;
  right: -35px;
  top: -9px;
  transform: scaleX(-1);
}
@media (max-width: 767px) {
  .product-recipes-2:after {
    transform: scaleX(-1) rotate(-55deg);
    top: 10px;
    right: -48px;
  }
}

.recept-image-background {
  background-repeat: no-repeat;
  /* height: auto; */
  min-height: 569px;
  background-size: cover;
}

.container--social-media {
  height: 250px;
  margin-bottom: -150px;
}

.instagram-holder {
  margin-bottom: 30px;
  cursor: pointer;
  height: 360px;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 1200px) {
  .instagram-holder {
    height: 260px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .instagram-holder {
    height: 300px;
  }
}
@media (max-width: 550px) {
  .instagram-holder {
    height: 210px;
  }
}
.instagram-holder a {
  color: #fff;
  position: relative;
  display: block;
  height: 100%;
}
.instagram-holder a h4 {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 0 1rem;
  margin-top: 10px;
  z-index: 2;
}
.instagram-holder a h4 i {
  float: right;
  font-size: 26px;
}
.instagram-holder a img {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
  max-width: none;
  left: 50%;
  transform: translate(-50%, 0);
}

.facebook-responsive {
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  height: 0;
}

.facebook-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.btn-border {
  border: 2px solid #ffffff;
  color: #42150f;
  font-family: "niveau-grotesk";
  font-size: 1em;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-transform: uppercase;
}
.btn-border:hover, .btn-border:active, .btn-border:focus {
  background-color: #42150f;
  color: #ffffff;
}
.btn-border-brown {
  border: 2px solid #42150f;
  color: #42150f;
  font-family: "niveau-grotesk";
  font-size: 1em;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  text-transform: uppercase;
}
.btn-border-brown:hover, .btn-border-brown:active, .btn-border-brown:focus {
  background-color: #42150f;
  color: #ffffff;
}

.btn-arrow:before {
  content: "";
  font-family: "Glyphicons Halflings";
  padding-right: 5px;
}

.btn-filter {
  margin-top: 0;
  width: 100%;
  padding: 5px;
}

.navbar {
  border-width: 0 0 0px;
  min-height: 78px;
  z-index: 999;
}
@media (max-width: 767px) {
  .navbar {
    min-height: 50px;
  }
}
.navbar .container {
  padding: 0;
}
.navbar .navbar-nav {
  border-left: 2px solid #42150f;
  color: #42150f;
}
.navbar .navbar-nav li {
  border-right: 2px solid #42150f;
}
.navbar .navbar-nav li a {
  color: #42150f !important;
  font-family: "niveau-grotesk";
  font-weight: 700;
  padding: 30px 20px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-nav li a {
    padding: 10px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.navbar .navbar-nav li a:hover {
  background-color: rgba(248, 152, 29, 0.2) !important;
}
.navbar .navbar-nav li a:hover:after {
  animation: bounce 0.8s;
  bottom: 5px;
  content: "";
  font-family: "Glyphicons Halflings";
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}
.navbar .navbar-nav li.active a {
  background-color: rgba(248, 152, 29, 0.2);
}
.navbar .navbar-nav li.active a:after {
  animation: bounce 0.8s;
  bottom: 0px;
  content: "";
  font-family: "Glyphicons Halflings";
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 100%;
}
.navbar .navbar-header .navbar-brand {
  max-width: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar .navbar-header .navbar-brand {
    max-width: 275px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar .navbar-header .navbar-brand {
    max-width: 190px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-header .navbar-brand {
    margin-left: 20px;
    max-width: 50%;
    width: 100%;
  }
}
.navbar .navbar-header .navbar-brand img {
  height: 50px;
}
@media (max-width: 767px) {
  .navbar .navbar-header .navbar-brand img {
    height: 30px;
  }
}
.navbar .navbar-header .navbar-toggle {
  background-color: #42150f;
  border: 0px;
  margin-right: 30px;
}
.navbar .navbar-header .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .navbar .navbar-collapse {
    min-height: 100vh;
    border-top: 0px;
  }
}

.navbar--scrolled {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.3);
  min-height: auto;
}
.navbar--scrolled .navbar-header .navbar-brand img {
  height: 30px;
}
@media (max-width: 767px) {
  .navbar--scrolled .navbar-header .navbar-brand img {
    height: 30px;
  }
}
.navbar--scrolled .navbar-nav li a {
  padding-bottom: 15px;
  padding-top: 15px;
}
@media (max-width: 767px) {
  .navbar--scrolled .navbar-nav li a {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.navbar--scrolled .navbar-nav li a:hover:after {
  bottom: 0;
}
.navbar--scrolled .social-media-menu li a {
  padding-bottom: 15px;
  padding-top: 15px;
}

.social-media-menu {
  float: right;
  margin: 0px;
  padding-left: 25px;
}
@media (max-width: 767px) {
  .social-media-menu {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .social-media-menu {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .social-media-menu {
    display: none;
  }
}
.social-media-menu li {
  display: block;
  font-size: 1.4em;
  float: left;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  position: relative;
}
.social-media-menu li a {
  color: #42150f;
  padding: 30px 10px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.social-media-menu li a:hover {
  color: #f8981d;
}

#carouselHome {
  background-image: url("../uploads/sliders/sliderHome/sliderHomeBG.jpg");
}

.carousel .carousel-control {
  background-image: none;
}
@media print {
  .carousel {
    max-height: auto !important;
    height: auto !important;
  }
}

.carousel {
  overflow: hidden;
  max-height: 500px;
}
@media (max-width: 767px) {
  .carousel .carousel-indicators {
    display: none;
  }
}

.recipe {
  color: #42150f;
  display: block;
  margin-top: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .recipe {
    margin-top: 0em;
  }
}
.recipe h4 {
  font-size: 1.5em;
  height: 65px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .recipe h4 {
    font-size: 1.3em;
    height: 62px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe h4 {
    font-size: 1.2em;
    height: 70px;
  }
}
.recipe h4.product-name {
  overflow: visible;
}
.recipe__image {
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recipe__image {
    background-color: #ffffff;
  }
}
.recipe__image img {
  transition: all 0.3s;
  width: 100%;
  transform-origin: 50% 50%;
}
.recipe__image:hover img {
  transform: scale(1.05);
}
.recipe:hover, .recipe:active, .recipe:focus {
  color: #f8981d;
  text-decoration: none;
}
.recipe:hover .recipe__image, .recipe:active .recipe__image, .recipe:focus .recipe__image {
  white-space: nowrap;
}
.recipe:hover .recipe__image img, .recipe:active .recipe__image img, .recipe:focus .recipe__image img {
  opacity: 0.8;
}
.recipe:hover .recipe__image:before, .recipe:active .recipe__image:before, .recipe:focus .recipe__image:before {
  border: 1px solid #ffffff;
  content: "»" attr(title);
  color: #ffffff;
  display: block;
  font-family: "niveau-grotesk";
  font-size: 0.8em;
  letter-spacing: 2px;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  -moz-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  vertical-align: inherit;
  text-transform: uppercase;
  z-index: 1;
  background-color: #f8981d;
  top: 65%;
}
@media (max-width: 767px) {
  .recipe:hover .recipe__image:before, .recipe:active .recipe__image:before, .recipe:focus .recipe__image:before {
    font-size: 1em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe:hover .recipe__image:before, .recipe:active .recipe__image:before, .recipe:focus .recipe__image:before {
    font-size: 0.5em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe:hover .recipe__image:before, .recipe:active .recipe__image:before, .recipe:focus .recipe__image:before {
    top: 60%;
  }
}
.recipe__image_square {
  background-color: #f1f1f1;
  height: 263px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .recipe__image_square {
    height: 213px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe__image_square {
    height: 158px;
  }
}
@media (max-width: 767px) {
  .recipe__image_square {
    height: auto;
  }
}
.recipe__title {
  top: 25px;
  left: 0;
  position: absolute;
  background: rgba(135, 135, 135, 0.7);
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
  color: #fff;
  font-size: 0.8em;
  z-index: 1;
}
.recipe-favorite {
  margin-left: -100px;
  margin-top: -100px;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .recipe-favorite {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe-favorite {
    display: none;
  }
}
.recipe-favorite img {
  transform: rotate(10deg);
}
.recipe-favorite a {
  color: #42150f;
}
.recipe-favorite a:hover {
  color: #f8981d;
}
.recipe-favorite p {
  transform: rotate(6deg);
}
.recipe-favorite [class^=col-] {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.recipe__playbutton {
  position: absolute;
  left: 28%;
  top: 23%;
  width: 50% !important;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .recipe__playbutton {
    left: 26%;
    top: 25%;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .recipe__playbutton {
    width: 40%;
    left: 25%;
    top: 27%;
  }
}

.recipe-info div h2 {
  margin-top: 2em;
}

.recipe-overview {
  border-top: 3px solid #42150f;
}

.recipe__container {
  height: auto;
}
.recipe__container a .recipe__image {
  background-image: url("../gfx/main/hout-bg-wit-groot.jpg");
}

.recipe__image {
  width: 100%;
}

.recipe__uitgelicht .caption {
  text-align: center;
}

.filter-object {
  height: 365px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .filter-object {
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .filter-object {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .filter-object {
    height: auto;
  }
}

@media print {
  .no-print, .no-print * {
    display: none !important;
  }

  .image-header-print {
    display: block;
    width: 100%;
    height: 230px;
    overflow: hidden;
  }
  .image-header-print img {
    width: 100%;
    margin: 0 auto;
    margin-top: -30%;
  }
}
@media screen {
  .image-header-print {
    display: none;
  }
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  box-shadow: 0px 0px 2px 2px rgba(184, 184, 184, 0.7);
  margin: 15px 0;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
}

/*# sourceMappingURL=app.css.map */
