/*------------------------------------*\
:    Variables
\*------------------------------------*/
/*------------------------------------*\
:    Mixins - Flexbox
\*------------------------------------*/
/*------------------------------------*\
:    Mixins
\*------------------------------------*/
/*------------------------------------*\
:    Media Queries

NOTE: we use mixin "@include mobile" (same as tablet-portait-down) for all things hidden/shown on mobile devices like mobile menu
\*------------------------------------*/
/*  BUTTONS
+  ================================ */
/* line 9, ../../scss/dev/09-buttons.scss */
.call-to-action {
  font-family: "nobel", arial, sans-serif;
  color: #ED1C24;
  background: #fff;
  padding: 10px 20px;
  font-size: 20px;
  font-size: 2rem;
  border-radius: 25px;
}
/* line 16, ../../scss/dev/09-buttons.scss */
.call-to-action.black {
  color: #fff;
  background: #000;
}

/* line 23, ../../scss/dev/09-buttons.scss */
.google_pin {
  width: 60px;
  height: 80px;
  float: left;
  margin: -12px 7px 0 0;
}
/* line 28, ../../scss/dev/09-buttons.scss */
.google_pin:before {
  font-family: "icomoon";
  content: "\e947";
  font-size: 60px;
  font-size: 6rem;
  color: #ED1C24;
}

/* line 37, ../../scss/dev/09-buttons.scss */
.google_pin:hover:before {
  color: #000;
}

/* line 42, ../../scss/dev/09-buttons.scss */
a.button,
.button,
a.btn_koop,
a.btn_zob,
.btn_koop,
.btn_uitverkocht {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 4.2rem;
  color: #ffffff;
  font-family: "nobel", arial, sans-serif;
  font-size: 1.8rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  padding: 0.5rem 4rem;
  background-color: #000000;
  border-radius: 24px;
  cursor: pointer;
  border: 0;
  text-align: center;
}
/* line 63, ../../scss/dev/09-buttons.scss */
a.button:hover,
.button:hover,
a.btn_koop:hover,
a.btn_zob:hover,
.btn_koop:hover,
.btn_uitverkocht:hover {
  color: #ffffff;
  background-color: #ED1C24;
  text-decoration: none;
}
/* line 69, ../../scss/dev/09-buttons.scss */
a.button.white-red,
.button.white-red,
a.btn_koop.white-red,
a.btn_zob.white-red,
.btn_koop.white-red,
.btn_uitverkocht.white-red {
  background-color: #ED1C24;
}
/* line 71, ../../scss/dev/09-buttons.scss */
a.button.white-red:hover,
.button.white-red:hover,
a.btn_koop.white-red:hover,
a.btn_zob.white-red:hover,
.btn_koop.white-red:hover,
.btn_uitverkocht.white-red:hover {
  color: #ED1C24;
  background-color: #fff;
}
@media (min-width: 0px) and (max-width: 360px) {
  /* line 42, ../../scss/dev/09-buttons.scss */
  a.button,
  .button,
  a.btn_koop,
  a.btn_zob,
  .btn_koop,
  .btn_uitverkocht {
    width: 80%;
  }
}

/* line 81, ../../scss/dev/09-buttons.scss */
.btn_uitverkocht {
  color: #ffffff;
  background-color: #ED1C24;
  text-decoration: none;
}

/* line 87, ../../scss/dev/09-buttons.scss */
a.btn_zob {
  margin: 0 10px 0 0;
}

/* line 89, ../../scss/dev/09-buttons.scss */
.featured {
  position: relative;
}
/* line 91, ../../scss/dev/09-buttons.scss */
.featured .icon {
  display: block;
  position: absolute;
  bottom: 5rem;
  right: 2rem;
  color: #fff;
  font-size: 60px;
  font-size: 6rem;
}
/* line 98, ../../scss/dev/09-buttons.scss */
.featured .icon:hover {
  cursor: pointer;
  color: #ED1C24;
}
@media (min-width: 0px) and (max-width: 960px) {
  /* line 91, ../../scss/dev/09-buttons.scss */
  .featured .icon {
    font-size: 34px;
    font-size: 3.4rem;
    right: 1rem;
  }
}
@media (min-width: 0px) and (max-width: 360px) {
  /* line 91, ../../scss/dev/09-buttons.scss */
  .featured .icon {
    font-size: 30px;
    font-size: 3rem;
    bottom: 3rem;
    right: 1rem;
  }
}
/* line 113, ../../scss/dev/09-buttons.scss */
.featured.has_gallery:hover {
  cursor: pointer;
}
