* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
textarea:focus, input:focus, select:focus, button:focus, option:focus{
  outline: none;
}
input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
html,
body {
  margin:0;
  padding:0;
  height:100%;
  background-color: #f6f6f5;
  font-family: 'Muli', sans-serif;
}

.logo {
  width: 20px;
  margin: 0 auto;
  display: block;
  margin-top: 5px;
}

.gender_keuze {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  height: 100vh;
  margin-top: 10px;
}

.gender_keuze2 {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100vh;
  margin-top: 10px;
}

.gender_keuze article {
  width: 31.33%;
  margin: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: #ededed 2px solid;
  position: relative;
  overflow: hidden;
}

.gender_keuze2 article {
  width: 100%;
  margin: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: #ededed 2px solid;
  position: relative;
  overflow: hidden;
}

.gender_keuze article a, .gender_keuze2 article a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.gender_keuze article img, .gender_keuze2 article img {
  width: 100%;
  position: relative;
  z-index: 0;
  transition: all 1s;
}

.gender_keuze article h2, .gender_keuze2 article h2 {
  font-weight: 700;
  font-size: 18px;
  padding: 10px;
  background-color: white;
  z-index: 1;
  position: relative;
  width: 100%;
  text-align: center;
}

.gender_keuze article:hover img {
  transform: scale(1.1);
}

.demo__card__top {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-height: 400px;
  overflow: hidden;
}

.demo__card__top img {
  width: 100%;
}

.demo {
  width: 100%;
  background: #f6f6f5;
  max-height: 100vh;
  overflow: hidden;
}

.demo h3 {
  font-size: 20px;
  font-weight: 700;
  color: #EF1A23;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

.demo__header {
  height: 100px;
  background: #EF1A23;
}
.demo__content {
  overflow: hidden;
  position: relative;
  height: 48rem;
  padding: 10px 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.demo__card__img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto 1.5rem;
  border: 0.5rem solid #ffffff;
  background-image: url("//s3-us-west-2.amazonaws.com/s.cdpn.io/142996/profile/profile-512_5.jpg");
  background-size: cover;
}

.card_content {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 500px;
  margin: 0 auto 30px;
  margin-bottom: 0px;
}

.demo__card {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
}
.demo__card.reset {
  transition: transform 0.3s;
  transform: translateX(0) !important;
}
.demo__card.reset .demo__card__choice {
  transition: opacity 0.3s;
  opacity: 0 !important;
}
.demo__card.inactive {
  transition: transform 0.3s;
}
.demo__card.to-left {
  transform: translateX(-30rem) rotate(-30deg) !important;
}
.demo__card.to-right {
  transform: translate(30rem) rotate(30deg) !important;
}
.demo__card.below {
  z-index: 1;
  opacity: 0;
}

.demo__card__name {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}
.demo__card__btm {
  height: 50px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 18px;
  font-weight: 700;
}

.demo__card__btm p:first-of-type {
  font-size: 12px !important;
  display: block;
  text-transform: uppercase;
  color: #717171;
  padding-bottom: 2px;
  letter-spacing: 1px;
}

.demo__card__choice {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.demo__card__choice:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  color: #fff;
  border-radius: 50%;
  box-shadow: -2rem -3rem #fff, 2rem -3rem #fff;
}
.demo__card__choice:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4rem;
  height: 1.5rem;
  margin-left: -2rem;
  border: 0.6rem solid #fff;
  border-bottom: none;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.demo__card__choice.m--reject {
  background: #e74c3c;
}
.demo__card__choice.m--like {
  background: #2ecc71;
}
.demo__card__choice.m--like:after {
  transform: scaleY(-1);
}
.demo__card__drag {
  z-index: 5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: -webkit-grab;
  cursor: grab;
}

.like_dislike {
  text-align: center;
  font-size: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 5px auto;
}

.like_dislike div {
  width: 48%;
  margin: 0;
  padding:5px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all .3s;
  font-size: 16px;
  font-weight: 700;
}

.like_dislike div i {
  font-size: 20px;
  margin-bottom: 3px;
}

.like_dislike div:first-of-type {
  background-color: #fff;
  color: #e74c3c;
  margin-left: 0;
  margin-right: 2%;
}

.like_dislike div:last-of-type {
  background-color: #fff;
  color: #2ecc71;
  margin-right: 0;
  margin-left: 2%;
}

.menu-block {
  overflow: hidden;
}


.result {
  display: none;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}

.result-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
  padding: 30px 0;
  align-items: flex-start;
  -ms-align-items: flex-start;
}

.result-block h1 {
  display: block !important;
  width: 100%;
  max-width: 1400px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 5px;
  background-color: #e74c3c;
  color: #fff;
  font-weight: 700;
  padding: 5px 0;
  text-align: center;
  margin-bottom: 10px;
}
.result > h2 {
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 130%;
  max-width: 95%;
  letter-spacing: 1px;
  margin: auto;
}

.result article {
  width: 17%;
  margin: 1.5%;
  position: relative;
}

.result article img {
  width: 100%;
}

.result article h2 {
  font-size: 12px;
  display: block;
  text-transform: uppercase;
  color: #717171;
  padding-bottom: 2px;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
  padding-top: 10px;
}

.result article p {
  font-size: 18px;
  text-align: center;
  width: 100%;
  font-weight: 700;
  padding: 0 10px;
  padding-bottom: 10px;
}

.result article i {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 200px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(10deg);
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
}

.resultitemy i {
  color: #2ecc71;
  border: 3px solid #2ecc71;
}

.resultitemn i {
  color: #e74c3c;
  border: 3px solid #e74c3c;
}

.resultitemy {
  border: 3px solid #2ecc71;
}

.resultitemn {
  border: 3px solid #e74c3c;
}

.social_split {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 50px;
  background-color: #e74c3c;
}

.socials {
  margin: auto;
  justify-content: space-between;
  align-items: center;
  -ms-align-items: center;
  text-align: center;
  display: flex;
  flex-direction: row;
  width: 100%;
}

.socials .part{
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  width: 33%;
}

.socials .part div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.socials .part p {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.socials > div a {
  color: #fff;
  border: 2px solid #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 0.8em;
  transition: all .3s;
}

.socials > div a:last-of-type {
  margin-right: 0;
}

.socials > div a:hover {
  background-color: #fff;
  color: #e74c3c;
}


/* Blokken */

.blokken {
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 95%;
  padding: 30px 20px;
  margin: 0 auto;
  width: 100%;
}

.blokken article {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 70px;
  width: 100%;
}

.blokken_slider {
  width: 60%;
}

.blokken article:last-of-type {
  padding-bottom: 0;
}

.blokken_slider img {
  width: 100%;

}

.blokken_prijs p {
  text-align: left !important;
  font-size: 20px !important;

}

.blokken_content {
  width: 40%;
  padding: 30px;

}



.blokken_titel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}

.blokken_titel>div:first-of-type {
  height: 1px;
  width: 52px;
  background-color: #e74c3c;

}

.blokken_titel h2 {
  color: #e74c3c !important;
  line-height: 120%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1.5em !important;
  padding-left: 10px;
  text-align: left !important;
}

.promo {
  background-color: #e74c3c !important;
  color: white !important;
  padding: 5px 10px !important;
}
.blokken_tekst {
  line-height: 160%;
  font-weight: 200 !important;
  max-width: 850px;
  color: rgb(110, 110, 110) !important;
  font-size: 1.3em !important;
  margin-bottom: 20px !important;
}

.blokken_tekst p {
  color: rgb(110, 110, 110) !important;
  font-size: 1em !important;
  font-weight: 200 !important;

  text-align: left !important;
}

.blokken_tekst ul {
  list-style-type: disc;
  padding-left: 20px !important;
}

.blokken_tekst ul li {
  line-height: 160%;
  padding-left: 10px;
  font-size: 1em !important;
}

.blokken_tekst p>a {
  color: #e74c3c;
}

.blokken_content>a:hover i {
  margin-left: 10px;
}

.blokken article:nth-child(odd) img {
  order: 3;
}

.blokken_slider {
  width: 60%;
}

.blokken article:last-of-type {
  padding-bottom: 0;
}

.blokken_slider img {
  width: 100%;

}

#promo-bol {
  width: 80%;
  margin: auto;
  margin-top: 50px;
  cursor: pointer;
  margin-bottom: 80px;
}


/* Einde Blokken */

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

  #promo-bol {
    width: 100%;
  }
  .result article{
    width: 22%;
  }

  .gender_keuze article {
    width: 48%;
  }

  .gender_keuze {
    height: auto;
  }

  .blokken {
    padding: 30px 0px;
  }
  .blokken article {
    flex-direction: column;
    width: 100% !important;
    margin: 0 !important;
  }

  .blokken_slider {
    order: 1 !important;
    width: 95% !important;
    margin: auto;
  }

  .blokken_content {
    order: 2 !important;
    width: 95% !important;
    margin: auto
  }
}

@media screen and (max-width: 900px){
  .result article {
    width: 30.33%;
  }
  .blokken article {
    width: 100% !important;
    margin: 0 !important;

  }
}

@media screen and (max-width: 800px){
  .gender_keuze article {
    width: 96%;
    margin: 2%;
  }
  .blokken_titel h2 {
    font-size: 1.2em !important;
  }
  .blokken_prijs p {
    font-size: 18px !important;
  }
  .blokken_tekst ul li {
    font-size: .9em !important;
  }
}

@media screen and (max-width: 700px){
  .result article {
    width: 44%;
    margin: 3%;
  }

  .blokken article {
    width: 100% !important;
    margin: 0 !important;

  }

  .result article p {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px){
  .socials {
    flex-direction: column;
  }

  .socials .part {
    margin-bottom: 30px;
    width: 90%;
  }

  .socials .part:last-of-type {
    margin-bottom: 0;
  }

  .socials>div a {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
@media screen and (max-width: 375px){
  .card_content {
    height: 450px;
  }
}
