@import url(https://fonts.googleapis.com/css?family=Caveat);@import url(https://fonts.googleapis.com/css2?family=Londrina+Solid);@charset "UTF-8";

/*
 *  Owl Carousel - Core
 */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/vendor/owl.carousel/src/owl.video.play.png?4a37f8008959c75f619bf0a3a4e2d7a2) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

.appointment-layout {
  background-color: #f0f6f9;
}

.appointment {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
}

.appointment-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.appointment-footer > span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}

.appointment-footer .lock {
  width: 24px;
  height: 32px;
  margin-right: 10px;
  font-weight: bold;
}

.appointment-failed {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  border: red 2px solid;
}

.appointment-questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.appointment-questions .question {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: center;
}

.appointment-questions .question .options {
  margin-left: 1em;
}

.content {
  min-height: 15rem;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

a > .buttons::before {
  color: white;
}

.buttons .flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.buttons .btn-prev {
  margin-right: 1em;
  background-color: #eeeeee !important;
}

.buttons .btn-next {
  background-color: #0091cf;
  color: #fff;
}

.buttons .btn,
.buttons .btn-appointment {
  padding: 0.5rem 0.75rem;
  border: none;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: 100px;
}

.buttons .btn:hover,
.buttons .btn-appointment:hover {
  background-color: #006d9c;
}

.buttons .btn:focus,
.buttons .btn-appointment:focus {
  outline: none;
}

@media (max-width: 576px) {
  .buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .buttons .btn-prev,
  .buttons .btn-next {
    width: 100%;
    margin-top: 0;
    /* Reset margin-top for mobile */
  }

  .buttons .btn-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #000;
    border-top-color: transparent;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
  }

@-webkit-keyframes spin {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
              transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
              transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin {
    0% {
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
              transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
              transform: translate(-50%, -50%) rotate(360deg);
    }
}
}

.week-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.week-buttons .flex-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.week-buttons .btn-prev {
  margin-right: 1em;
  background-color: #eeeeee !important;
}

.week-buttons .btn-next {
  background-color: #0091cf;
  color: #fff;
}

.week-buttons .btn,
.week-buttons .btn-appointment {
  padding: 0.5rem 0.75rem;
  border: none;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  min-width: 100px;
}

.week-buttons .btn:hover,
.week-buttons .btn-appointment:hover {
  background-color: #006d9c;
}

.week-buttons .btn:focus,
.week-buttons .btn-appointment:focus {
  outline: none;
}

@media (max-width: 576px) {
  .week-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .week-buttons .btn-prev,
  .week-buttons .btn-next {
    width: 100%;
    margin-bottom: 1em;
  }
}

.rate-timeslots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.rate-timeslots .slot-item {
  cursor: pointer;
  margin: 4px;
  background-color: #f0f6f9;
  text-align: center;
  border-radius: 5px;
  border: 5px solid #eaf0f3;
}

.rate-timeslots .slot-item.selected {
  background-color: #d2f1ff;
  border: 5px solid #0091cf;
  /* Optional: Add borders for clarity */
}

.rate-timeslots .slot-item.disabled {
  opacity: 0.50;
  cursor: default;
}

@media (max-width: 576px) {
  .rate-timeslots {
    grid-template-columns: repeat(2, 1fr);
  }
}

.week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.week h3 {
  font-weight: bold;
  font-size: 22px !important;
}

.week .resetday {
  text-decoration: underline;
  cursor: pointer;
  color: #0091cf;
}

.rates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.rates .rate-item {
  cursor: pointer;
  background-color: #f0f6f9;
  text-align: center;
  border-radius: 5px;
  border: 5px solid #d1e2ea;
}

.rates .rate-item strong {
  font-size: 28px;
}

.rates .rate-item.selected {
  background-color: #d2f1ff;
  border: 5px solid #0091cf;
  /* Optional: Add borders for clarity */
}

.rates .rate-item.disabled {
  opacity: 0.50;
  cursor: default;
}

@media (max-width: 576px) {
  .rates {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rate-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.timeslot {
  padding: 5px;
  background: white;
  font-size: 13px;
  font-weight: bold;
}

.price {
  display: block;
  padding: 10px;
  font-size: 22px;
  font-weight: bold;
}

.price .label {
  font-size: 10px;
  font-weight: normal;
}

.btn-appointment {
  background-color: #fefefe !important;
}

.appointment-form .form-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5em;
}

@media (max-width: 768px) {
  .appointment-form .form-elements {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.appointment-form .form-elements .input-span-2 {
  grid-column: 1 / span 2;
}

.appointment-form .form-elements .form-element {
  margin-bottom: 1.5rem;
}

.appointment-form .form-elements .form-element .term {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.appointment-form .form-elements .form-element .term .error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.appointment-form .form-elements .form-element textarea,
.appointment-form .form-elements .form-element input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  background-color: #ffffff;
  color: #333;
  font-size: 1rem;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}

.appointment-form .form-elements .form-element textarea:focus,
.appointment-form .form-elements .form-element input:focus {
  outline: none;
  border-color: #999;
}

.appointment-form .form-elements .form-element textarea {
  resize: vertical;
}

.appointment-form .form-elements .form-element .error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

.appointment-form .form-elements .terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 1.5rem;
}

.appointment-form .form-elements .terms input {
  margin-right: 0.5rem;
}

.appointment-form .form-elements .terms label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0 !important;
}

.appointment-form .form-elements .upload label {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0091cf;
  color: #ffffff;
  cursor: pointer;
}

.appointment-form .form-elements .upload .error-message {
  color: #cb3323;
}

.appointment-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  padding: 0 5px 0 5px;
  width: 100%;
}

.appointment-progress .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.appointment-progress .dot .checkmark {
  width: 22px;
}

.appointment-progress .dot.active-dot {
  background-color: #0091cf;
}

.appointment-progress .dot.completed-dot {
  background-color: #a6d255;
}

.appointment-progress .line {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 5px;
  background-color: #ccc;
  margin: 0 5px;
}

.appointment-progress .line.active-line {
  background-color: #0091cf;
}

@media (max-width: 576px) {
  .appointment-progress {
    width: 100%;
  }
}

.appointment-questions {
  margin: 20px 0 20px 0;
}

.appointment-questions table {
  width: 100%;
}

.appointment-questions table th:not(:first-child),
.appointment-questions table td:not(:first-child) {
  text-align: center;
}

.btn-am-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-am-group .btn-am {
  background-color: #fefefe !important;
  color: black;
  border: 2px solid #0091cf;
  margin-left: 1.5em !important;
}

.btn-am-group .btn-am:hover {
  background-color: #0091cf !important;
  color: white;
  font-weight: normal;
}

footer {
  line-height: 2.25;
}

footer .footer-bottom {
  position: relative;
  padding-bottom: 50px;
}

footer .footer-bottom .footerbg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .1;
}

@media (min-width: 992px) {
  footer .footer-bottom .footerbg {
    left: 10%;
    width: 80%;
  }
}

footer .footer-bottom .phonenumber {
  font-size: 22px;
}

footer .footer-bottom .phonenumber:hover {
  text-decoration: none;
  color: inherit;
}

.header-rating {
  display: none;
}

@media (min-width: 768px) {
  .reviews-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .reviews-slider > div {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
}

.call-block-personalized .header-rating {
  display: block;
  float: left;
  white-space: nowrap;
}

.call-block-personalized .header-rating .header-rating-fbc-logo {
  width: 18px;
  min-width: 18px;
  display: block;
  float: left;
}

.call-block-personalized .header-rating .review-stars {
  display: block;
  float: left;
  padding: 0 6px;
  top: -2px;
  position: relative;
  font-size: 1em;
}

.call-block-personalized .header-rating .header-rating-review-count {
  line-height: 20px;
  display: block;
  float: left;
}

.call-block-personalized .header-rating .header-rating-review-count .header-rating-review-count-text {
  display: none;
}

@media (min-width: 360px) {
  .call-block-personalized .header-rating .header-rating-review-count .header-rating-review-count-text {
    display: inline;
  }
}

@media (min-width: 992px) {
  .header-rating {
    display: block;
  }
}

.klantenvertellen .rating {
  width: 70px;
  height: 70px;
  background: #444;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
}

.klantenvertellen .amount {
  line-height: 1.5;
}

.klantenvertellen .amount span {
  font-size: 16px;
}

@media (min-width: 992px) {
  .klantenvertellen .amount span {
    font-size: 20px;
  }
}

.klantenvertellen .amount img {
  width: 20px;
}

.klantenvertellen .amount a {
  color: #0091cf;
  font-weight: 600;
  font-size: 14px;
}

@media (min-width: 992px) {
  .klantenvertellen .amount a {
    font-size: 16px;
  }
}

.klantenvertellen.starversion .rating {
  width: 50px;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
}

.klantenvertellen.starversion .amount span {
  font-size: 14px;
}

.klantenvertellen.starversion .amount img {
  width: 20px;
}

.klantenvertellen.starversion .amount a {
  font-size: 14px;
}

.review-stars .icon {
  margin-right: -4px;
}

@media (max-width: 991.98px) {
  .profile-picture-and-rating-container .img-cover-container,
  .klantenvertellen .img-cover-container {
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    height: 135px;
  }

  .klantenvertellen .img-cover-container {
    height: 115px;
  }
}

.btn-white {
  background: #fff;
}

.btn-white:hover,
.btn-white:active,
.btn-white:focus {
  color: #0091cf;
}

.btn-red {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background-color: #8c0a14;
  color: #fff;
}

.btn-red:hover,
.btn-red:active,
.btn-red:focus {
  background-color: #5c070d;
  color: #fff;
}

.btn-blue {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #0091cf;
  color: #fff;
}

.btn-blue:hover,
.btn-blue:active,
.btn-blue:focus {
  background-color: #006d9c;
  color: #fff;
}

.btn-ghostblue {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: none;
  color: #0091cf;
  border: 1px solid #0091cf;
}

.btn-ghostblue:hover,
.btn-ghostblue:active,
.btn-ghostblue:focus {
  background-color: #e6e5e5;
  color: #0091cf;
}

.btn-lightblue {
  background: #d3e6ee;
  color: #444;
}

.btn-lightblue:not(.btn-full-size) {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.btn-lightblue:hover,
.btn-lightblue:active,
.btn-lightblue:focus {
  background-color: #aed1e0;
  color: #444;
}

.btn-lightred {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #ae242e;
  color: #fff;
}

.btn-lightred:hover,
.btn-lightred:active,
.btn-lightred:focus {
  background-color: #d4313d;
  color: #fff;
}

@media (min-width: 768px) {
  .btn-md-block {
    display: block;
    width: 100%;
  }
}

.usp-slogan {
  color: #62B900;
}

.usp-slogan .icon {
  margin: 4px 6px 0 0;
  width: 16px;
  height: 16px;
  background: no-repeat center;
  background-size: contain;
}

.usp-slogan .icon.check {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/check@2x.png");
}

.radio-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radio-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-container input:checked ~ .checkmark {
  background-color: #fff;
}

.radio-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1.8px solid #444444;
  border-radius: 50%;
}

.radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  top: calc(50% - (15px / 2));
  left: calc(50% - (15px / 2));
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #444444;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-display: auto;
}

@media (max-width: 991.98px) {
  body {
    padding-bottom: 100px;
  }
}

a {
  color: #0091cf;
}

section {
  position: relative;
}

.bgcolor-blue {
  background-color: #f0f6f9;
}

.border-grey-top {
  border-top: solid #dddddd 1px;
}

.border-grey-bottom {
  border-bottom: solid #dddddd 1px;
}

.border-blue-top {
  border-top: solid #d3e6ee 2px;
}

.border-blue-bottom {
  border-bottom: solid #d3e6ee 2px;
}

.bgcolor-pink {
  background-color: #f9f0f0;
}

.location-list {
  line-height: 2.25;
}

.boxshadow,
p iframe {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.boxshadow-dark {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.map-circle-purple {
  width: 78px;
  height: 78px;
  opacity: 0.5;
  background-color: #8c0a14;
  border-radius: 50%;
  position: absolute;
  left: 153px;
  top: 284px;
}

.py-100 {
  padding-top: 45px;
  padding-bottom: 45px;
}

@media (min-width: 992px) {
  .py-100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pt-100 {
  padding-top: 15px;
}

@media (min-width: 992px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 15px;
}

@media (min-width: 992px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.beestje {
  width: 60%;
  height: 60%;
  margin: 10px auto;
}

.usp-phone-link {
  color: #000;
}

.usp-phone-link:hover {
  color: rgba(0, 0, 0, 0.8);
}

img {
  max-width: 100%;
}

.lc-uc-first-letter {
  text-transform: lowercase;
}

.lc-uc-first-letter:first-letter {
  text-transform: uppercase;
}

.comma-separate-elements *:last-child:after {
  content: "" !important;
}

.comma-separate-elements *:after {
  content: ", ";
  color: #444444;
  text-decoration: none;
}

figure figcaption {
  margin-top: 4px;
}

a.fullLink {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}

.owl-carousel .owl-stage {
  margin: 0 auto !important;
}

.beestjesslider .item .sliderimg {
  width: 60%;
  height: 140px;
  margin: 0 auto;
}

.beestjesslider .owl-dots {
  margin-top: 50px !important;
}

.beestjesslider .owl-dots .owl-dot {
  outline: none !important;
}

.beestjesslider .owl-dots .owl-dot span {
  margin: 5px 10px;
}

.beestjesslider .owl-dots .owl-dot.active span {
  background: #444;
}

.methodslider .owl-dots .owl-dot {
  outline: none !important;
}

.methodslider .owl-dots .owl-dot span {
  width: 30px;
  height: 30px;
  background: #f0f6f9;
  border: 2px solid #0091cf;
  color: #0091cf;
}

.methodslider .owl-dots .owl-dot:nth-of-type(1) span:after {
  content: '1';
}

.methodslider .owl-dots .owl-dot:nth-of-type(2) span:after {
  content: '2';
}

.methodslider .owl-dots .owl-dot:nth-of-type(3) span:after {
  content: '3';
}

.methodslider .owl-dots .owl-dot:nth-of-type(4) span:after {
  content: '4';
}

.methodslider .owl-dots .owl-dot:hover span {
  background: inherit;
}

.methodslider .owl-dots .owl-dot.active span {
  background: #0091cf;
  color: #f0f6f9;
}

.businessslider .item .sliderimg {
  width: 60%;
  margin: 0 auto;
  padding: 25% 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.businessslider .owl-dots {
  margin-top: 50px !important;
}

.businessslider .owl-dots .owl-dot {
  outline: none !important;
}

.businessslider .owl-dots .owl-dot span {
  margin: 5px 10px;
}

.businessslider .owl-dots .owl-dot.active span {
  background: #444;
}

.owl-carousel.with-owl-nav .owl-nav {
  font-size: 1.5rem;
  font-weight: bolder;
}

@media (max-width: 991.98px) {
  .owl-carousel.with-owl-nav .owl-nav {
    float: right;
  }
}

.owl-carousel.with-owl-nav .owl-nav button {
  background: #0091cf !important;
  color: white !important;
  border-radius: 7px !important;
  width: 50px;
  height: 50px;
}

@media (min-width: 992px) {
  .owl-carousel.with-owl-nav .owl-nav button {
    position: absolute;
    top: 148px;
    display: block !important;
  }
}

.owl-carousel.with-owl-nav .owl-nav button span {
  margin: auto;
}

.owl-carousel.with-owl-nav .owl-nav button svg.icon {
  fill: white;
}

.owl-carousel.with-owl-nav .owl-nav button svg.icon.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.owl-carousel.with-owl-nav .owl-nav button:hover:not(.disabled) {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

.owl-carousel.with-owl-nav .owl-nav button.disabled {
  display: none !important;
}

@media (min-width: 992px) {
  .owl-carousel.with-owl-nav .owl-nav .owl-next {
    right: 0px;
  }

  .owl-carousel.with-owl-nav .owl-nav .owl-prev {
    margin-left: -64px;
  }
}

@media (max-width: 991.98px) {
  .owl-carousel.with-owl-nav.case-slider .owl-nav {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .owl-carousel.with-owl-nav.case-slider .owl-nav button {
    top: 90px;
  }
}

@media (min-width: 992px) {
  .owl-carousel.with-owl-nav.case-slider .owl-nav .owl-next {
    right: -70px;
  }

  .owl-carousel.with-owl-nav.case-slider .owl-nav .owl-prev {
    margin-left: -65px;
  }
}

@media (max-width: 575px) {
  .case-slider .owl-dots {
    position: absolute;
    width: 100%;
    height: 20px;
    overflow: hidden;
    margin-bottom: 15px;
  }
}

.swipeleft {
  width: 30px !important;
  position: absolute;
  left: calc(50% - 15px);
  top: 0;
  -webkit-animation-name: swipe;
          animation-name: swipe;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  z-index: 999;
}

@-webkit-keyframes swipe {
  0% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
    opacity: 0;
  }
}

@keyframes swipe {
  0% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
    opacity: 0;
  }
}

.js-logo-slider .item {
  height: 100px;
  background: white;
}

.js-logo-slider .item .sliderimg {
  width: auto;
  max-height: 100px;
  position: relative;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 1199.98px) {
  .js-logo-slider.with-owl-nav .owl-dots {
    display: none;
  }
}

@media (min-width: 992px) {
  .js-logo-slider.with-owl-nav .owl-nav button {
    top: 20px;
  }

  .js-logo-slider.with-owl-nav .owl-nav .owl-next {
    margin-right: -64px;
  }
}

.js-logo-slider .owl-dots {
  margin-top: 2.25rem;
}

#contactFormSlim .focussed:invalid {
  border: 1px solid red;
}

#contactFormSlim .focussed:valid {
  border: 1px solid #66C668;
}

.bg-info-block {
  background: #f5f5f5 !important;
}

.form-img-cover-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 90%;
  width: auto;
  max-width: none;
}

.back-btn {
  border: 2px solid #ced4da;
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.btn_next_step:disabled,
.btn_submit:disabled {
  background-color: #bbb3b3;
  color: white;
}

.form-border {
  border: 2px solid #ced4da;
}

.form-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.form-label {
  background-color: transparent;
  border: solid black 2px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11) !important;
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11) !important;
  width: 100%;
  padding: .563em 1.688em;
}

.form-label.white {
  border: solid white 2px;
}

.form-arrow-down {
  background: url(/themes/beestjeskwijt/icons/icon-longarrow-down.svg) no-repeat #fff;
  background-position: calc(100% - 20px) 50%;
  background-size: 17px;
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
}

.form-check input[type="checkbox"] {
  -webkit-appearance: none;
  /* Hides the default checkbox style */
  width: 22px;
  height: 22px;
  cursor: pointer;
  -webkit-transition: .15s;
  background-color: #fff !important;
  border: solid #444 2px;
  color: #444 !important;
  outline: 0;
}

.form-check input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1em;
  text-align: center;
  /*content: '✘';*/
}

.form-check input[type="checkbox"]:checked:before {
  content: '\2714';
}

.form-check input[type="checkbox"]:hover:before {
  background: rgba(255, 255, 255, 0.3);
}

.form-generic ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  opacity: 0.75;
  font-size: 18px;
}

.form-generic :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 0.75;
  font-size: 18px;
}

.form-generic ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 0.75;
  font-size: 18px;
}

.form-generic :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  opacity: 0.75;
  font-size: 18px;
}

.form-generic ::-ms-input-placeholder {
  /* Microsoft Edge */
  opacity: 0.75;
  font-size: 18px;
}

.form-generic ::placeholder {
  /* Most modern browsers support this now. */
  opacity: 0.75;
  font-size: 18px;
}

.personaldata {
  border-top: 1px solid #fff;
  margin-top: 30px;
  padding-top: 20px;
}

.form-check-input {
  margin-top: 0;
}

.form-check-label,
.form-generic .form-label {
  cursor: pointer;
}

select {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.pageform-progressbar .contact-form-btn {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.pageform-progressbar .personaldata {
  margin-top: 0;
  border-top: none;
}

.form-progress-bar .progress-bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

.form-progress-bar .progress-bar .progress {
  display: block;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
}

.form-progress-bar .progress-bar .progress-25 {
  width: 25%;
}

.form-progress-bar .progress-bar .progress-50 {
  width: 50%;
}

.form-progress-bar .progress-bar .progress-100 {
  width: 100%;
}

.form-progress-bar .labels {
  margin-top: 5px;
  font-size: 13px;
}

.form-rect-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  background-color: #007cb0;
  color: #ffffff;
  padding: 10px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  border-radius: 4px;
}

.form-rect-btn:after {
  width: 8px;
  height: 13px;
  margin-left: 13px;
  background-image: url("/themes/beestjeskwijt/icons/icon-arrow-small-right-white.svg");
  background-repeat: no-repeat;
  content: "";
}

.form-rect-btn:focus {
  outline: 0;
}

.form-rect-btn:hover {
  background-color: #006d9c;
}

@media (max-width: 379.98px) {
  .form-control {
    padding: .563em 0.888em;
  }
}

@media (max-width: 991.98px) {
  .form-collapse .collapsable {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 1s ease-in-out;
    transition: max-height 1s ease-in-out;
  }

  .form-collapse form:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .form-collapse.form-collapsed form:after {
    display: none;
  }

  .form-collapse.form-collapsed .collapsable {
    max-height: 15000px;
  }
}

.service-img {
  width: 60%;
  margin: 0 auto;
  padding: 50% 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.servicemethod-img {
  width: 85%;
  margin: 0 auto;
  padding: 40px 0;
}

@media (min-width: 576px) {
  .servicemethod-img {
    width: 60%;
  }
}

.servicemethod-step {
  position: absolute;
  top: 0;
  left: 0;
  background: #0091cf;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  padding-top: 10px;
}

.offset-lg-100 {
  margin-top: 0;
}

@media (min-width: 992px) {
  .offset-lg-100 {
    margin-top: 100px;
  }
}

.full-width-image {
  height: 50vh;
  max-height: 400px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .full-width-image {
    max-height: 225px !important;
  }
}

.full-width-background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.alert {
  background: #8c0a14;
  border-radius: .25rem;
  margin-bottom: 50px;
}

.leaflet-top,
.leaflet-bottom {
  z-index: auto !important;
}

.youtube {
  background-color: white;
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube-disabled {
  position: relative;
  background-color: #444;
  padding-top: 56.25%;
}

.youtube-disabled .placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 50px;
  color: #fff;
  text-shadow: 2px 2px 4px #000;
}

.youtube img {
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}

.youtube .play-button img,
.youtube .play-button {
  cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.faq-items .faq-item.faq-collapsable {
  border-bottom: 1px solid #444444;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.faq-items .faq-item .faq-item-header button {
  color: #444444;
  padding: 0;
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  text-decoration: none;
  font-size: inherit;
}

.faq-items .faq-item .faq-item-header button:after {
  position: absolute;
  top: 50%;
  right: 5px;
  content: "";
  width: 10px;
  border: solid #444444;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.faq-items .faq-item .faq-item-header button[aria-expanded="true"]:after {
  -webkit-transform: rotate(225deg) translateY(-50%);
          transform: rotate(225deg) translateY(-50%);
}

.table-list-image-text {
  width: 100%;
}

.table-list-image-text tr:not(:last-child) td {
  padding-bottom: 10px;
}

.table-list-image-text tr td:first-child {
  vertical-align: top;
}

.table-list-image-text tr td:last-child {
  padding-left: 10px;
}

.table-list-image-text tr td:last-child * {
  padding: 0;
  margin: 0;
}

#userTypeModal .modal-content {
  background: #f0f6f9 !important;
}

#userTypeModal .modal-content .modal-body {
  font-size: 1.1rem;
}

#userTypeModal .modal-content .modal-body .icon {
  width: 1.8rem;
  height: 1.8rem;
}

#userTypeModal .modal-content .modal-body label {
  cursor: pointer;
}

#userTypeModal .modal-content .modal-body label input[type=radio] {
  width: 1.2rem;
  height: 1.2rem;
}

#userTypeModal .modal-content .modal-body button.d-block {
  width: 100%;
}

#userTypeModal .modal-content .modal-body small {
  font-size: 70%;
  color: grey;
}

#userTypeModal .modal-content .modal-title {
  font-weight: bold;
}

.modalLayout {
  z-index: 9070;
}

.modalLayout .modal-content {
  background: #f0f6f9 !important;
}

@media (max-width: 767px) {
  .modalLayout .modal-content h2 {
    font-size: 1.2rem !important;
    line-height: 1.3;
  }
}

.modalLayout .modal-content .modal-body {
  font-size: 1rem;
}

.modalLayout .modal-content .modal-body .subtitle {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .modalLayout .modal-content .modal-body .subtitle {
    font-size: 1.3rem;
  }
}

.modalLayout .modal-content .modal-body .icon {
  width: 1.8rem;
  height: 1.8rem;
}

.modalLayout .modal-content .modal-body .icon-large {
  width: 2.2rem;
  height: 2.2rem;
}

.modalLayout .modal-content .modal-body button.d-block {
  width: 100%;
}

@media (max-width: 767px) {
  .modalLayout .modal-content .modal-body button {
    font-size: 0.9rem !important;
  }
}

.modalLayout .modal-content .modal-body small {
  font-size: 70%;
  color: grey;
}

.modalLayout .modal-content .modal-title {
  font-weight: bold;
}

.modal-backdrop {
  z-index: 9060;
}

/**
 * This file is intended to import all popup modules.
 * If a new popup module is added, add an `@import` for it below (starting from line 9).
 */

.opt-in-popup p {
  margin: 0;
}

.opt-in-popup .content {
  padding: 17px 26px 13px 26px;
}

.opt-in-popup .content-text {
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.opt-in-popup .content-text-line-1,
.opt-in-popup .content-text-line-2 {
  margin: 0;
}

.opt-in-popup .content-text-line-1 {
  font-size: 20px;
  line-height: 28px;
}

@media (min-width: 576px) {
  .opt-in-popup .content-text-line-1 {
    font-size: 28px;
    line-height: 38px;
  }
}

.opt-in-popup .content-text-line-2 {
  font-size: 70px;
  line-height: 58px;
}

@media (min-width: 576px) {
  .opt-in-popup .content-text-line-2 {
    font-size: 100px;
    line-height: 78px;
  }
}

.opt-in-popup .content-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 17px;
}

.opt-in-popup .content-form-fields {
  width: 100%;
  min-width: 220px;
  padding: 10px 0;
}

.opt-in-popup .content-form-fields .form-group {
  margin-bottom: 10px;
}

.opt-in-popup .content-form-fields .form-group .form-control {
  height: auto;
  padding: 8px 16px;
  font-size: 13px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  line-height: inherit;
}

.opt-in-popup .content-form-fields .form-group:last-child {
  margin-bottom: 0;
}

.opt-in-popup .content-form-image {
  display: none;
  margin-left: 13px;
  width: 180px;
  min-width: 180px;
}

@media (min-width: 576px) {
  .opt-in-popup .content-form-image {
    display: block;
  }
}

.opt-in-popup .footer {
  text-align: center;
  padding: 21px 21px 17px;
  background-color: #ffffff;
}

.opt-in-popup .footer .submit-button {
  padding: 8px 21px;
}

.opt-in-popup .footer .secure-explanation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 17px;
  font-size: 11px;
  color: #a2a2a2;
}

.opt-in-popup .footer .secure-explanation .icon {
  color: #495057;
  margin-right: 6px;
}

.opt-in-popup .footer .secure-explanation .text {
  font-size: inherit;
}

@media (max-width: 991px) {
  .open-indicator-popup {
    display: none !important;
  }
}

.open-indicator-popup .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 900px;
  padding: 10px 50px;
}

@media (min-width: 1200px) {
  .open-indicator-popup .content {
    width: 1100px;
  }
}

@media (min-width: 1340px) {
  .open-indicator-popup .content {
    width: 1240px;
  }
}

.open-indicator-popup .content-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.open-indicator-popup .content-image .image {
  width: 100px;
  height: auto;
  max-height: 100px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.open-indicator-popup .content-image .indicator {
  right: 6px;
  width: 12px;
  height: 12px;
}

.open-indicator-popup .content-image,
.open-indicator-popup .content-contact-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.open-indicator-popup .content-text {
  padding: 0 15px;
  font-size: 1.2rem;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.open-indicator-popup .content-text-inset {
  padding-left: 100px;
}

.popup-container .popup-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  z-index: 9060;
  -webkit-animation: popup-backdrop-fade-in-animation 0.2s ease-in-out;
          animation: popup-backdrop-fade-in-animation 0.2s ease-in-out;
}

.popup-container .popup-backdrop-visible {
  display: block;
}

@-webkit-keyframes popup-backdrop-fade-in-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

@keyframes popup-backdrop-fade-in-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.5;
  }
}

.popup-container .popup {
  display: none;
  position: fixed;
  z-index: 9070;
  opacity: 1;
}

.popup-container .popup[data-position='0'] {
  top: 32px;
  left: 32px;
}

.popup-container .popup[data-position='0'][data-add-margin='false'] {
  left: 0;
}

.popup-container .popup[data-position='0'][data-animation='2'] {
  -webkit-animation: popup-top-left-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-top-left-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-top-left-slide-animation {
  0% {
    left: 0;
  }

  100% {
    left: 32px;
  }
}

@keyframes popup-top-left-slide-animation {
  0% {
    left: 0;
  }

  100% {
    left: 32px;
  }
}

.popup-container .popup[data-position='0'][data-animation='2'][data-add-margin='false'] {
  -webkit-animation: popup-top-left-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-top-left-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-top-left-no-margin-slide-animation {
  0% {
    left: -32px;
  }

  100% {
    left: 0;
  }
}

@keyframes popup-top-left-no-margin-slide-animation {
  0% {
    left: -32px;
  }

  100% {
    left: 0;
  }
}

.popup-container .popup[data-position='1'] {
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.popup-container .popup[data-position='1'][data-animation='2'] {
  -webkit-animation: popup-top-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-top-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-top-center-slide-animation {
  0% {
    top: 0;
  }

  100% {
    top: 32px;
  }
}

@keyframes popup-top-center-slide-animation {
  0% {
    top: 0;
  }

  100% {
    top: 32px;
  }
}

.popup-container .popup[data-position='2'] {
  top: 32px;
  right: 32px;
}

.popup-container .popup[data-position='2'][data-animation='2'] {
  -webkit-animation: popup-top-right-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-top-right-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-top-right-slide-animation {
  0% {
    right: 0;
  }

  100% {
    right: 32px;
  }
}

@keyframes popup-top-right-slide-animation {
  0% {
    right: 0;
  }

  100% {
    right: 32px;
  }
}

.popup-container .popup[data-position='3'] {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.popup-container .popup[data-position='3'][data-animation='2'] {
  -webkit-animation: popup-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-center-slide-animation {
  0% {
    top: calc(50% + 32px);
  }

  100% {
    top: 50%;
  }
}

@keyframes popup-center-slide-animation {
  0% {
    top: calc(50% + 32px);
  }

  100% {
    top: 50%;
  }
}

.popup-container .popup[data-position='4'] {
  bottom: 32px;
  left: 32px;
}

.popup-container .popup[data-position='4'][data-add-margin='false'] {
  bottom: 0;
  left: 0;
}

.popup-container .popup[data-position='4'][data-animation='2'] {
  -webkit-animation: popup-bottom-left-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-bottom-left-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-bottom-left-slide-animation {
  0% {
    left: 0;
  }

  100% {
    left: 32px;
  }
}

@keyframes popup-bottom-left-slide-animation {
  0% {
    left: 0;
  }

  100% {
    left: 32px;
  }
}

.popup-container .popup[data-position='4'][data-animation='2'][data-add-margin='false'] {
  -webkit-animation: popup-bottom-left-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-bottom-left-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-bottom-left-no-margin-slide-animation {
  0% {
    left: -32px;
  }

  100% {
    left: 0;
  }
}

@keyframes popup-bottom-left-no-margin-slide-animation {
  0% {
    left: -32px;
  }

  100% {
    left: 0;
  }
}

.popup-container .popup[data-position='5'] {
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.popup-container .popup[data-position='5'][data-add-margin='false'] {
  bottom: 0;
}

.popup-container .popup[data-position='5'][data-animation='2'] {
  -webkit-animation: popup-bottom-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-bottom-center-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-bottom-center-slide-animation {
  0% {
    bottom: 0;
  }

  100% {
    bottom: 32px;
  }
}

@keyframes popup-bottom-center-slide-animation {
  0% {
    bottom: 0;
  }

  100% {
    bottom: 32px;
  }
}

.popup-container .popup[data-position='5'][data-animation='2'][data-add-margin='false'] {
  -webkit-animation: popup-bottom-center-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-bottom-center-no-margin-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-bottom-center-no-margin-slide-animation {
  0% {
    bottom: -32px;
  }

  100% {
    bottom: 0;
  }
}

@keyframes popup-bottom-center-no-margin-slide-animation {
  0% {
    bottom: -32px;
  }

  100% {
    bottom: 0;
  }
}

.popup-container .popup[data-position='6'] {
  bottom: 32px;
  right: 32px;
}

.popup-container .popup[data-position='6'][data-add-margin='false'] {
  bottom: 0;
}

.popup-container .popup[data-position='6'][data-animation='2'] {
  -webkit-animation: popup-bottom-right-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-bottom-right-slide-animation 0.2s ease-in-out, popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-bottom-right-slide-animation {
  0% {
    right: 0;
  }

  100% {
    right: 32px;
  }
}

@keyframes popup-bottom-right-slide-animation {
  0% {
    right: 0;
  }

  100% {
    right: 32px;
  }
}

.popup-container .popup-visible {
  display: block;
}

.popup-container .popup-shadow {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.popup-container .popup[data-animation='1'] {
  -webkit-animation: popup-fade-in-animation 0.2s ease-in-out;
          animation: popup-fade-in-animation 0.2s ease-in-out;
}

@-webkit-keyframes popup-fade-in-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes popup-fade-in-animation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.popup-container .popup .popup-hide-default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #444444;
  background-color: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  outline: none;
}

.popup-container .popup .popup-hide-default:hover {
  background-color: #e3e3e3;
}

.block-screen-hidden {
  display: block;
}

@media (min-width: 1620px) {
  .block-screen-hidden {
    display: none;
  }
}

.block-screen-visible {
  display: none;
}

@media (min-width: 1620px) {
  .block-screen-visible {
    display: block;
  }
}

.contact-img-block-v2 {
  position: relative;
  text-align: center;
}

.contact-img-block-v2 img {
  border-radius: 50%;
  -webkit-transform: translate -50%, -50%;
          transform: translate -50%, -50%;
}

.contact-img-block-v2 img.bordered {
  border: 1px solid #cecece;
}

.prof-pic-v2 {
  height: 230px;
  width: 230px;
}

@media (min-width: 992px) {
  .prof-pic-v2 {
    margin-left: -4rem;
  }
}

@media (max-width: 991.98px) {
  .prof-pic-v2 {
    margin-left: -3rem;
  }
}

@media (max-width: 575.98px) {
  .prof-pic-v2 {
    height: 180px;
    width: 180px;
  }
}

.prof-logo-v2 {
  height: 130px;
  width: 130px;
  top: 7rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  background: white;
  position: absolute;
  margin-left: -3rem;
}

@media (max-width: 575.98px) {
  .prof-logo-v2 {
    height: 100px;
    width: 100px;
    top: 6rem;
  }
}

.contact-img-block-v2 .bordered-v2 {
  border: 1px solid #ddd;
}

.professional-quote-v2 {
  margin-top: auto;
  font-family: Caveat;
}

.professional-quote-v2 h3 {
  font-size: 1.75rem !important;
}

.contact-usp-item-v2 {
  margin-bottom: 0.425rem;
}

.slim-contact-container-v2 {
  border-radius: 7px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.formcontactslim-v2 {
  border-bottom-left-radius: 7px;
  border-top-left-radius: 7px;
}

.formcontactslim-v2 .btn,
.formcontactslim-v2 .btn-appointment {
  height: 50px;
  line-height: 50px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.progress-steps-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.progress-steps-bar .line {
  width: 150px;
  height: 8px;
  margin-left: -2px;
  margin-right: -2px;
  background: #dddddd;
}

.progress-steps-bar .line.active {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.progress-steps-bar .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #dddddd;
  color: #fff;
  font-size: 9px;
  width: 25px;
  height: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  z-index: 1;
}

.progress-steps-bar .step svg {
  display: none;
}

.progress-steps-bar .step.active {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.progress-steps-bar .step.success {
  background-color: #66c668;
}

.progress-steps-bar .step.success svg {
  display: block;
}

.progress-steps-bar .text {
  font-size: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #dddddd;
}

.progress-steps-bar .text.active {
  -webkit-filter: brightness(0.6);
          filter: brightness(0.6);
}

.form-group button.rounded-tooltip {
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  font-size: x-small;
  line-height: initial;
  border: 0px;
}

.content-collapse-block .collapse-item.collapse-item-border {
  border-bottom: 1px solid #444444;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.content-collapse-block .collapse-item .collapse-item-header button {
  color: #444444;
  padding: 0;
  display: block;
  width: 100%;
  position: relative;
  text-align: left;
  text-decoration: none;
  font-size: inherit;
}

.content-collapse-block .collapse-item .collapse-item-header button:after {
  position: relative;
  margin-left: 15px;
  content: "";
  width: 10px;
  height: 10px;
  bottom: 6px;
  border: solid #444444;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.content-collapse-block .collapse-item .collapse-item-header button[aria-expanded="true"]:after {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  bottom: 0;
}

.content-collapse-block .collapse-item .collapse-item-header.collapse-item-header-full-width button:after {
  float: right;
  margin-left: 0;
  bottom: -14px;
}

@media (max-width: 439.98px) {
  .content-collapse-block .collapse-item .collapse-item-header.collapse-item-header-full-width button:after {
    bottom: -12px;
  }
}

.content-collapse-block .collapse-item .collapse-item-header.collapse-item-header-full-width button[aria-expanded="true"]:after {
  bottom: -16px;
  margin-left: 0;
}

.page-builder-table-block {
  font-size: 14px;
}

.page-builder-table-block th,
.page-builder-table-block td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #E3E3E3;
}

.page-builder-table-block tr td p {
  margin: 0;
  padding: 0;
}

.page-builder-table-block tr:nth-child(odd) {
  background-color: #f0f6f9;
}

.page-builder-table-block tr:nth-child(even) {
  background-color: #ffffff;
}

.page-builder-table-block tr th:last-child,
.page-builder-table-block tr td:last-child {
  border-right: none;
}

.page-builder-table-block-inverted-colors tr:nth-child(odd) {
  background-color: #ffffff;
}

.page-builder-table-block-inverted-colors tr:nth-child(even) {
  background-color: #f0f6f9;
}

@media (max-width: 767.98px) {
  .page-builder-table-block {
    width: 100%;
  }

  .page-builder-table-block .page-builder-table-block-headers {
    display: none;
  }

  .page-builder-table-block th,
  .page-builder-table-block td {
    padding: 0;
    border-right: none;
  }

  .page-builder-table-block tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    border: 1px solid #E3E3E3;
    margin-bottom: 15px;
  }

  .page-builder-table-block tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
  }

  .page-builder-table-block tr td[data-th]:before {
    padding: 10px 14px;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    content: attr(data-th);
    font-weight: bold;
    background-color: #f0f6f9;
  }

  .page-builder-table-block tr td p {
    padding: 10px 14px;
  }

  .page-builder-table-block tr td * {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

#page-builder-usp-list .icon,
.usp-strip .icon {
  width: 1.337890625em;
}

#page-builder-usp-list .icon.green,
.usp-strip .icon.green {
  fill: #66c668;
}

@media (min-width: 768px) {
  .usp-strip {
    position: sticky;
    top: 165px;
    z-index: 9050;
  }
}

.page-builder-opt-in-form .image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  .page-builder-opt-in-form .image-container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.page-builder-opt-in-form .image-container .image {
  max-width: 280px;
  max-height: 200px;
}

@media (min-width: 992px) {
  .page-builder-opt-in-form .image-container .image {
    max-width: 385px;
    max-height: 275px;
  }
}

.company-information {
  border-top: 1px solid #e3e3e3;
}

@media (min-width: 768px) {
  .company-information {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, #f9f0f0));
    background: linear-gradient(90deg, #fff 50%, #f9f0f0 50%);
  }
}

@media (min-width: 992px) {
  .company-information-lg-centered {
    padding-left: 12% !important;
    padding-right: 10% !important;
  }
}

.cta-img {
  position: absolute;
  top: -15px;
  width: 60px;
  height: 60px;
}

@media (min-width: 992px) {
  .cta-img {
    top: -20px;
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 992px) {
  .cta-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
}

.call-professional-block .bgImage {
  width: 100%;
  height: 150px;
}

@media (min-width: 768px) {
  .call-professional-block .bgImage {
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.call-professional-block .review-block {
  text-align: center;
}

@media (min-width: 768px) {
  .call-professional-block .review-block {
    top: -2.25rem;
    width: 70%;
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .call-professional-block .review-block {
    width: 40%;
  }
}

.call-professional-block .review-block .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.call-professional-block .review-block .item {
  padding: 0 2px;
}

@media (max-width: 767px) {
  .call-professional-block .review-block .item strong {
    display: block;
    margin-left: 0 !important;
  }
}

.professional-or-diy .cards {
  margin-top: 110px;
}

@media (max-width: 767px) {
  .professional-or-diy .cards .second-card {
    margin-top: 130px;
  }
}

.professional-or-diy .cards .vs-circle {
  position: relative;
  color: white;
  background: #0091cf;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  margin: -20px auto 0 auto;
  z-index: 2;
}

@media (min-width: 768px) {
  .professional-or-diy .cards .vs-circle {
    position: absolute;
    top: -40px;
    margin-top: 0;
    right: -40px;
    z-index: 5;
  }
}

.professional-or-diy .img-rounded {
  margin-top: calc(-2.25rem - 50%);
  border-radius: 50%;
}

@media (min-width: 400px) {
  .professional-or-diy .img-rounded {
    margin-top: -45%;
  }
}

@media (min-width: 576px) {
  .professional-or-diy .img-rounded {
    margin-top: calc(-2.25rem - 50%);
  }
}

.professional-or-diy .profile-picture-default {
  background-color: #eff6f9;
}

.professional-or-diy ul {
  padding: 0;
  list-style-type: none;
}

.professional-or-diy ul li {
  line-height: 2rem;
}

.professional-or-diy ul li .icon {
  margin: 0px 8px 0 0;
  width: 14px;
  height: 14px;
  background: no-repeat center;
  background-size: contain;
}

.professional-or-diy ul li .icon.check {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/check@2x.png");
}

.professional-or-diy ul li .icon.minus {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/minus@2x.png");
}

.professional-or-diy .calltracker {
  display: block !important;
}

@media (min-width: 768px) {
  .professional-or-diy .calltracker {
    float: right;
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .find-local-sea-expert .prof-title {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 992px) {
  .find-local-sea-expert .localProfessional {
    top: -220px;
    margin-bottom: -220px;
  }
}

@media (min-width: 1200px) {
  .find-local-sea-expert .localProfessional {
    top: -175px;
    margin-bottom: -175px;
  }
}

.find-local-sea-expert .blockReview {
  width: 100%;
  margin-top: -20px;
  border-radius: 5px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .find-local-sea-expert .blockReview {
    margin-top: -50px;
    margin-left: -15px;
  }
}

@media (min-width: 992px) {
  .find-local-sea-expert .blockReview {
    width: unset;
    float: right;
    margin-top: -30px;
    margin-right: 20px;
  }
}

@media (min-width: 1200px) {
  .find-local-sea-expert .blockReview {
    margin-top: -115px;
  }
}

.find-local-sea-expert .blockReview .btn,
.find-local-sea-expert .blockReview .btn-appointment {
  height: unset !important;
  padding: 0.25rem !important;
  font-size: 1em;
}

@media (max-width: 991.98px) {
  .find-local-sea-expert .blockReview .btn.d-block,
  .find-local-sea-expert .blockReview .d-block.btn-appointment {
    display: block !important;
  }
}

.find-local-sea-expert ul.icon-list li {
  line-height: 34px;
}

.find-local-sea-expert ul.icon-list li .icon {
  margin: 4px 12px 0 0;
}

.find-local-sea-expert ul.icon-list li img {
  max-height: 25px;
  max-width: 60px;
  margin-right: 5px;
  vertical-align: unset;
}

.find-local-sea-expert .img-rounded {
  background-color: #EFF6F9;
  border-radius: 50%;
}

.sticky-scroll-menu {
  z-index: 3000;
}

.sticky-scroll-menu.sticky {
  position: sticky;
  top: 0px;
  z-index: 9051;
}

.sticky-scroll-menu ul.menu-container {
  margin-bottom: 0px;
  list-style: none;
  overflow-y: hidden;
  white-space: nowrap;
}

.sticky-scroll-menu ul.menu-container :first-child {
  margin-left: auto;
}

.sticky-scroll-menu ul.menu-container :last-child {
  margin-right: auto;
}

.sticky-scroll-menu ul.menu-container li.menu-item a {
  padding: 20px;
}

.sticky-scroll-menu ul.menu-container li.menu-item a.active {
  border-bottom: 3px solid #0091cf;
  padding-bottom: 17px;
}

@media (max-width: 767px) {
  .floating-professional {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .floating-professional {
    display: none;
  }
}

@media (min-width: 992px) {
  .floating-professional {
    z-index: 3001;
    position: fixed;
    top: 17.5rem;
    right: 1rem;
    background-color: #f0f6f9;
    opacity: 0;
    /* Initially set to invisible */
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    /* Add transition property */
  }

  .floating-professional .blockReview {
    position: relative;
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #FFF;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  }
}

@media (min-width: 992px) and (max-width: 767.98px) {
  .floating-professional .blockReview {
    width: auto;
  }
}

@media (min-width: 992px) and (max-width: 991.98px) {
  .floating-professional .blockReview {
    float: none;
    margin-right: 0px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .floating-professional .blockReview ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .floating-professional .blockReview ul li {
    line-height: 40px;
    font-size: 14px;
  }

  .floating-professional .blockReview ul li .certificate-small {
    max-width: 60px;
    margin-right: 15px;
  }

  .floating-professional .blockReview ul li .icon {
    float: left;
    margin: 6px 15px 0 0;
    width: 24px;
    height: 24px;
    background: no-repeat center;
    background-size: contain;
  }

  .floating-professional .blockReview ul li .icon.award {
    background-image: url("/themes/beestjeskwijt/icons/ab-testing/award@2x.png");
  }

  .floating-professional .blockReview ul li .icon.thumbs-up {
    background-image: url("/themes/beestjeskwijt/icons/ab-testing/thumbs-up@2x.png");
  }

  .floating-professional .blockReview ul li .icon.star {
    background-image: url("/themes/beestjeskwijt/icons/ab-testing/star@2x.png");
  }

  .floating-professional .blockReview .star {
    height: 20px;
    width: 23px;
    color: #FFC702;
    font-family: "Font Awesome 5 Pro";
    font-size: 20px;
    line-height: 20px;
  }

  .floating-professional .critter-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    margin-bottom: -8rem;
  }

  /* Add this class to make it visible */

  .floating-professional.visible {
    opacity: 1;
  }

  .text-block {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .floating-professional-img-block-v2 {
    position: relative;
    text-align: center;
  }

  .floating-professional-img-block-v2 img {
    width: 9rem;
    height: 9rem;
    margin-top: -4rem;
    border-radius: 50%;
    -webkit-transform: translate -50%, -50%;
            transform: translate -50%, -50%;
  }

  .floating-professional-img-block-v2 img.bordered {
    border: 1px solid #cecece;
  }
}

.floating-nav {
  z-index: 3001;
  position: fixed;
  top: 26.5rem;
  left: 0;
  background-color: white;
  opacity: 0;
  /* Initially set to invisible */
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  /* Add transition property */
}

/* Add this class to make it visible */

.floating-nav.visible {
  opacity: 1;
}

@media (max-width: 767px) {
  .floating-nav {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .floating-nav {
    display: none;
  }
}

.block-header-costs-v3 {
  background-color: #F8F8F8;
  padding-top: 50px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .btn-am-group,
  .block-header-costs-v3 .btn-am-group .contact-buttons {
    width: 100%;
    padding: 0;
    min-width: auto;
  }

  .block-header-costs-v3 .btn-am-group .contact-buttons a {
    margin: 0 0 15px 0 !important;
  }
}

.block-header-costs-v3 .btn-am-group .contact-buttons {
  gap: 0 15px;
}

.block-header-costs-v3 .btn-am-group .contact-buttons div.phone-button {
  padding: 0;
}

.block-header-costs-v3 .btn-am-group div.phone-button a,
.block-header-costs-v3 .btn-am-group div.form-button a {
  padding: 16px 32px !important;
  height: auto !important;
  line-height: 100% !important;
  font-size: 1rem !important;
  -webkit-transition: .1s ease-in-out all;
  transition: .1s ease-in-out all;
  border-radius: 4px;
  margin: 0 !important;
  min-height: 52px;
}

.block-header-costs-v3 .btn-am-group div.form-button a {
  border: 2px solid #ff7f00;
  color: #ff7f00;
}

.block-header-costs-v3 .btn-am-group div.form-button a:hover {
  background-color: transparent;
  color: #444444;
  border-color: #444444;
}

.block-header-costs-v3 .btn-am-group div.phone-button a:hover {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #fff !important;
}

.block-header-costs-v3 .review-link {
  margin-top: 3px;
  display: inline-block;
}

.block-header-costs-v3 .usp-list > li:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.block-header-costs-v3 img.header-image {
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #DBDBDB;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 img.header-image {
    height: 200px;
    margin-top: 30px;
  }
}

.block-header-costs-v3 .professional-block h3 {
  font-size: 20px;
  font-weight: 700;
}

.block-header-costs-v3 .professional-block h2 {
  font-size: 32px !important;
}

.block-header-costs-v3 .professional-block {
  margin-top: -60px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
  padding: 45px 50px;
  -webkit-transition: .18s ease-in-out all;
  transition: .18s ease-in-out all;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .professional-block {
    margin-top: -30px;
  }
}

.block-header-costs-v3 .professional-block:hover {
  -webkit-box-shadow: 0 3px 12px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 12px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .professional-block {
    padding: 20px;
  }

  .block-header-costs-v3 .professional-block .head {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.block-header-costs-v3 .head .content {
  min-height: auto;
}

.block-header-costs-v3 .head .mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.block-header-costs-v3 .head .mobile .left,
.block-header-costs-v3 .head .mobile .right {
  width: 50%;
}

.block-header-costs-v3 .head .mobile .right {
  text-align: right;
}

.block-header-costs-v3 .head .mobile .logo {
  max-width: 100%;
  max-height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block-header-costs-v3 ul.usp-professional {
  gap: 17px 20px;
}

.block-header-costs-v3 ul.usp-professional li {
  border-radius: 25px;
  background-color: #F5F5F5;
  -webkit-box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-transition: .18s ease-in-out all;
  transition: .18s ease-in-out all;
}

.block-header-costs-v3 ul.usp-professional li:hover {
  background-color: #62B900;
  color: #fff;
  cursor: default;
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
}

.block-header-costs-v3 .certifications ul {
  gap: 10px;
}

.block-header-costs-v3 .certifications ul img {
  max-width: 120px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block-header-costs-v3 .professional-block .professional-info .details,
.block-header-costs-v3 .professional-block .profile {
  min-width: 150px;
}

.badge-success {
  background-color: #62B900;
}

.fbc-small {
  max-width: 75px;
  margin-right: 5px;
}

section.v3-faq .right-box img.featured-image {
  border-radius: 5px;
}

section.v3-faq .right-box .professional {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  section.v3-faq .right-box .professional {
    bottom: 73px;
    max-width: 165px;
  }
}

@media screen and (max-width: 767px) {
  section.v3-faq h2.section-title {
    text-align: center;
  }
}

section.v3-faq #faqAccordion .card {
  border: 0;
}

section.v3-faq .card .card-header button {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

section.v3-faq .card .card-header button:hover,
section.v3-faq .card .card-header button:focus {
  text-decoration: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  outline: 0;
}

section.v3-faq .card .card-header button svg {
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.v3-faq .card .card-header button[aria-expanded="true"] svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

section.v3-faq .card .card-header {
  background: #EFEFEF !important;
  border-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.v3-faq .card .card-body {
  background: #F5F5F5;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

section.v3-faq .usp-list li svg {
  color: #62B900;
}

section.v3-faq .accordion.faqList .card .card-header:after {
  content: none;
}

section.v3-faq .accordion.faqList .card {
  border: 0;
}

section.contactformslim-v3 {
  background: #F8F8F8;
}

section.contactformslim-v3 div.form-group h3,
section.contactformslim-v3 div.form-group h4 {
  color: #000;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 700;
  border: 0;
  -webkit-box-shadow: 0 0 0 0 !important;
          box-shadow: 0 0 0 0 !important;
  padding: 0px !important;
}

section.contactformslim-v3 select,
section.contactformslim-v3 input,
section.contactformslim-v3 textarea,
section.contactformslim-v3 div.form-group label.form-label.border {
  border-radius: 3px;
  border: 1px solid #DBDBDB;
}

section.contactformslim-v3 div.form-group label.form-label.border {
  padding-top: 20px;
  padding-bottom: 20px;
  border: 2px solid #444 !important;
}

section.contactformslim-v3 div.form-group label.form-label.border h4 {
  margin-bottom: 0;
}

section.contactformslim-v3 label.border {
  border: 0;
}

section.contactformslim-v3 .upload-btn {
  border-radius: 5px;
  border: 2px solid #444;
  background: #F5F5F5;
  padding: 10px 15px;
  font-weight: 700;
  color: #444444;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.contactformslim-v3 .upload-btn:hover {
  background: #444;
  color: #fff;
  cursor: pointer;
}

section.contactformslim-v3 button[type="submit"] {
  padding: 16px 55px;
  font-size: 18px;
  border-radius: 5px;
  font-weight: 700;
}

section.contactformslim-v3 .side-info h3 {
  font-weight: 700;
  font-size: 20px;
}

section.contactformslim-v3 .side-info img.professional {
  position: absolute;
  right: 0;
  bottom: 0;
}

section.contactformslim-v3 .side-info a.call {
  background: #FF7F00;
  border-radius: 5px;
  padding: 13px 26px;
  border-color: transparent;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.contactformslim-v3 .side-info a.call:hover {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #fff !important;
}

section.contactformslim-v3 .side-info h4 {
  font-size: 18px;
  font-weight: 700;
}

.font-style-normal {
  font-style: normal;
}

.procedure-block .procedure-desc {
  font-size: 18px;
  color: #444;
}

.procedure-block .title-section {
  max-width: 70vw;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .procedure-block .title-section {
    max-width: 100vw;
  }
}

.procedure-block .timeline .timeline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}

.procedure-block .timeline .timeline-item:not(:first-child):before {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 40px;
  height: 63px;
  width: 2px;
  background-color: #CFECF9;
}

.procedure-block .timeline .timeline-item div.step-title {
  font-weight: 700;
  font-size: 18px;
  color: #444;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

.procedure-block .timeline .timeline-item .icon {
  color: #CFECF9;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

.procedure-block .timeline .timeline-item svg.icon {
  color: #0EAFE6;
  font-size: 10px;
  margin-left: 16px;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

.procedure-block .timeline .timeline-item.active div.step-title,
.procedure-block .timeline .timeline-item.active div.icon svg,
.procedure-block .timeline .timeline-item:hover div.step-title,
.procedure-block .timeline .timeline-item:hover div.icon,
.procedure-block .timeline .timeline-item:hover div.icon svg {
  color: #0091CF;
  fill: #0091CF;
}

.procedure-block .timeline .timeline-item:hover {
  cursor: pointer;
}

.procedure-block #workflowContent .workflow-panel img {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}

.procedure-block #workflowContent .workflow-panel .panel-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.procedure-block #workflowContent .workflow-panel .panel-body .left svg {
  color: #0091CF;
  fill: #0091CF;
}

.procedure-block #workflowContent .workflow-panel .panel-body .left {
  width: 75px;
  display: block;
}

section.procedure-block #workflowAccordion {
  width: 100vw;
  padding: 0 30px;
}

section.procedure-block #workflowAccordion .card,
section.procedure-block #workflowAccordion .card .card-header {
  background-color: transparent;
  border: 0;
}

section.procedure-block #workflowAccordion .card .card-header h5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.procedure-block #workflowAccordion .card .card-header svg {
  color: #0EAFE6;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.procedure-block #workflowAccordion .card .card-header svg:first-child {
  color: #CFECF9;
}

section.procedure-block #workflowAccordion .card .card-header .btn,
section.procedure-block #workflowAccordion .card .card-header .btn-appointment {
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: #444;
}

section.procedure-block #workflowAccordion .card .card-header .btn[aria-expanded="true"],
section.procedure-block #workflowAccordion .card .card-header .btn-appointment[aria-expanded="true"] {
  color: #0EAFE6;
  text-decoration: none;
}

section.procedure-block #workflowAccordion .card .card-header .btn:focus,
section.procedure-block #workflowAccordion .card .card-header .btn-appointment:focus {
  text-decoration: none;
  box-shadow: unset;
  -webkit-box-shadow: unset;
}

section.procedure-block #workflowAccordion .card .card-header .btn[aria-expanded="true"] ~ svg,
section.procedure-block #workflowAccordion .card .card-header .btn-appointment[aria-expanded="true"] ~ svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #0EAFE6;
}

section.procedure-block #workflowAccordion .card .card-body {
  padding-top: 0;
  padding-left: 45px;
  padding-bottom: 0;
}

section.procedure-block #workflowAccordion .card .card-body p,
section.procedure-block #workflowAccordion .card .card-body ul li {
  font-size: 1rem;
}

section.procedure-block #workflowAccordion .card:not(:first-child) .card-header:before {
  content: '';
  width: 3px;
  height: 50%;
  top: -20px;
  left: 28px;
  border-radius: 999px;
  background: #DCF2FB;
  position: absolute;
}

section.procedure-block #workflowAccordion .card .card-body img {
  border-radius: 5px;
  max-height: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.block-header-costs-v3 {
  background-color: #F8F8F8;
  padding-top: 50px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .btn-am-group,
  .block-header-costs-v3 .btn-am-group .contact-buttons {
    width: 100%;
    padding: 0;
    min-width: auto;
  }

  .block-header-costs-v3 .btn-am-group .contact-buttons a {
    margin: 0 0 15px 0 !important;
  }
}

.block-header-costs-v3 .btn-am-group .contact-buttons {
  gap: 0 15px;
}

.block-header-costs-v3 .btn-am-group .contact-buttons div.phone-button {
  padding: 0;
}

.block-header-costs-v3 .btn-am-group div.phone-button a,
.block-header-costs-v3 .btn-am-group div.form-button a {
  padding: 16px 32px !important;
  height: auto !important;
  line-height: 100% !important;
  font-size: 1rem !important;
  -webkit-transition: .1s ease-in-out all;
  transition: .1s ease-in-out all;
  border-radius: 4px;
  margin: 0 !important;
  min-height: 52px;
}

.block-header-costs-v3 .btn-am-group div.form-button a {
  border: 2px solid #ff7f00;
  color: #ff7f00;
}

.block-header-costs-v3 .btn-am-group div.form-button a:hover {
  background-color: transparent;
  color: #444444;
  border-color: #444444;
}

.block-header-costs-v3 .btn-am-group div.phone-button a:hover {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #fff !important;
}

.block-header-costs-v3 .review-link {
  margin-top: 3px;
  display: inline-block;
}

.block-header-costs-v3 .usp-list > li:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.block-header-costs-v3 img.header-image {
  height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #DBDBDB;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 img.header-image {
    height: 200px;
    margin-top: 30px;
  }
}

.block-header-costs-v3 .professional-block h3 {
  font-size: 20px;
  font-weight: 700;
}

.block-header-costs-v3 .professional-block h2 {
  font-size: 32px !important;
}

.block-header-costs-v3 .professional-block {
  margin-top: -60px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
  padding: 45px 50px;
  -webkit-transition: .18s ease-in-out all;
  transition: .18s ease-in-out all;
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .professional-block {
    margin-top: -30px;
  }
}

.block-header-costs-v3 .professional-block:hover {
  -webkit-box-shadow: 0 3px 12px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 12px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .block-header-costs-v3 .professional-block {
    padding: 20px;
  }

  .block-header-costs-v3 .professional-block .head {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.block-header-costs-v3 .head .content {
  min-height: auto;
}

.block-header-costs-v3 .head .mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.block-header-costs-v3 .head .mobile .left,
.block-header-costs-v3 .head .mobile .right {
  width: 50%;
}

.block-header-costs-v3 .head .mobile .right {
  text-align: right;
}

.block-header-costs-v3 .head .mobile .logo {
  max-width: 100%;
  max-height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block-header-costs-v3 ul.usp-professional {
  gap: 17px 20px;
}

.block-header-costs-v3 ul.usp-professional li {
  border-radius: 25px;
  background-color: #F5F5F5;
  -webkit-box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px 3px rgba(0, 0, 0, 0.15);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.875rem;
  -webkit-transition: .18s ease-in-out all;
  transition: .18s ease-in-out all;
}

.block-header-costs-v3 ul.usp-professional li:hover {
  background-color: #62B900;
  color: #fff;
  cursor: default;
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.25);
}

.block-header-costs-v3 .certifications ul {
  gap: 10px;
}

.block-header-costs-v3 .certifications ul img {
  max-width: 120px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.block-header-costs-v3 .professional-block .professional-info .details,
.block-header-costs-v3 .professional-block .profile {
  min-width: 150px;
}

.badge-success {
  background-color: #62B900;
}

.fbc-small {
  max-width: 75px;
  margin-right: 5px;
}

section.v3-reviews {
  background-color: #F0F6F9;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

section.v3-reviews .v3-reviews-slider .v2-review-item {
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.05);
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

section.v3-reviews .v3-reviews-slider .v2-review-item:hover {
  -webkit-box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.1);
}

section.v3-reviews .v3-reviews-slider .v2-review-item svg.icon {
  width: 14px;
  height: 14px;
}

section.v3-reviews .v3-reviews-slider .v2-review-item .v2-review-stars {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.v3-reviews .v3-reviews-slider .v2-review-item .v2-review-stars div.font-size-2 {
  font-size: 1rem !important;
  margin: 0;
  padding: 0;
  line-height: 100%;
}

section.v3-reviews .v3-reviews-slider .v2-review-item a.read-more {
  display: none !important;
}

section.v3-reviews .v3-reviews-slider .v2-review-item .v2-review-content {
  padding-bottom: 2rem;
}

section.v3-reviews .v3-reviews-slider .v2-review-item .v2-review-footer span {
  font-size: 1rem !important;
}

section.v3-reviews .fbc span {
  font-size: 1rem;
}

section.v3-reviews .fbc img {
  width: 100px;
  height: auto;
}

section.v3-reviews .owl-nav button.owl-next,
section.v3-reviews .owl-nav button.owl-prev {
  background: #ABABAB !important;
  color: white !important;
  border-radius: 100% !important;
  width: 45px;
  height: 45px;
  font-size: 0.875rem;
}

@media screen and (min-width: 992px) {
  section.v3-reviews .owl-nav button {
    top: 108px;
  }
}

@media screen and (max-width: 991.98px) {
  section.v3-reviews .owl-nav {
    float: unset !important;
    position: absolute;
    top: 120px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.serviceCtaBlock {
  display: none;
}

.serviceCtaBlock .btn,
.serviceCtaBlock .btn-appointment {
  background-color: #0076a9;
  height: 50px;
}

.experimental-block {
  display: none !important;
}

.divider-v2 .divider-stroke,
.ab_divider .divider-stroke {
  border-top: 2px solid #C8C8C8;
  margin: 0;
}

@media (min-width: 768px) {
  .divider-v2 .divider-stroke,
  .ab_divider .divider-stroke {
    margin: 0 -45px;
  }
}

.v2-dynamic-method-steps .owl-dots,
.ab-dynamic-method-steps .owl-dots {
  font-size: 1.1rem;
  font-weight: bold;
}

.v2-dynamic-method-steps .owl-dots .owl-dot,
.ab-dynamic-method-steps .owl-dots .owl-dot {
  outline: none !important;
}

.v2-dynamic-method-steps .owl-dots .owl-dot span,
.ab-dynamic-method-steps .owl-dots .owl-dot span {
  background: #f0f6f9;
  color: #0091cf;
  -ms-flex-line-pack: center;
      align-content: center;
  display: grid;
  height: 2.5rem;
  width: 2.5rem;
  border: 1px solid #0091cf;
  padding-top: 1px;
}

.v2-dynamic-method-steps .owl-dots .owl-dot:hover span,
.ab-dynamic-method-steps .owl-dots .owl-dot:hover span {
  background: inherit;
}

.v2-dynamic-method-steps .owl-dots .owl-dot.active span,
.ab-dynamic-method-steps .owl-dots .owl-dot.active span {
  background: #0091cf;
  color: #f0f6f9;
}

.v2-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(1) span:after,
.ab-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(1) span:after {
  content: '1';
}

.v2-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(2) span:after,
.ab-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(2) span:after {
  content: '2';
}

.v2-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(3) span:after,
.ab-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(3) span:after {
  content: '3';
}

.v2-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(4) span:after,
.ab-dynamic-method-steps .owl-dots .owl-dot:nth-of-type(4) span:after {
  content: '4';
}

.v2-methodslider .method-img-container,
.ab-methodslider .method-img-container {
  height: 300px;
}

.accordion.faqList .card {
  border-radius: 5px;
  background-color: white;
  border: 1px solid #BDBDBD;
}

.accordion.faqList .card .card-header {
  padding: 0;
  background-color: white;
  border-bottom: 1px solid #BDBDBD;
  padding: .75rem 40px .75rem 1.25rem;
  color: #444;
  line-height: 24px;
  -webkit-transition: all 2s;
  transition: all 2s;
  font-weight: 600;
  cursor: pointer;
}

.accordion.faqList .card .card-header:after {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 15px;
  height: 13px;
  background-image: url("/themes/beestjeskwijt/icons/icon-arrow-down-small.svg");
  background-repeat: no-repeat;
  content: "";
}

.accordion.faqList .card .card-header[aria-expanded="true"]:after {
  top: 1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion.faqList .card .card-body {
  padding-bottom: 0.25rem;
}

.ab-footer {
  background-color: #F9F9F9;
}

@media (max-width: 767.98px) {
  .ab-footer .py-8 {
    padding-bottom: 45px !important;
    padding-top: 45px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .ab-footer .flex-column-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}

.ab-footer h3 {
  font-weight: 600;
  font-size: 25px !important;
  margin-bottom: 0px;
}

.ab-footer .footer-subtitle {
  font-size: 16px;
}

.ab-footer .border-right {
  border-color: #444;
}

.ab-footer .menu-list {
  list-style: none;
  margin-left: 10px;
  padding-left: 22px;
}

@media (max-width: 767.98px) {
  .ab-footer .menu-list {
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  .ab-footer .menu-list {
    margin-left: 0px;
  }
}

.ab-footer .menu-list li a {
  font-size: 16px;
  color: #444;
  text-decoration: underline;
}

.ab-footer .menu-list li a svg {
  width: 5px;
  margin-right: 10px;
  fill: #444;
}

.ab-footer .footer-bottom {
  padding: 13px 0;
  color: white;
  background-color: #424040;
}

.ab-footer .footer-bottom .d-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 16px;
}

@media (min-width: 768px) {
  .ab-footer .footer-bottom .d-flex .ab-flex-md-right {
    margin-left: auto;
  }

  .ab-footer .footer-bottom .d-flex .ab-flex-md-right ~ a {
    margin-left: 1rem;
  }
}

@media (min-width: 992px) {
  .ab-footer .footer-bottom .d-flex .ab-flex-md-right ~ a {
    margin-left: 3rem;
  }
}

@media (max-width: 767.98px) {
  .ab-footer .footer-bottom .d-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .ab-footer .footer-bottom .d-flex * {
    font-size: 12px;
    padding: 5px;
  }

  .ab-footer .footer-bottom .d-flex .ab-flex-sm-50 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .ab-footer .footer-bottom .d-flex a.ab-flex-sm-50,
  .ab-footer .footer-bottom .d-flex a:last-of-type {
    text-align: right;
  }

  .ab-footer .footer-bottom .d-flex *:nth-last-child(2) {
    text-align: center;
  }
}

.ab-footer .footer-bottom .d-flex a {
  color: white;
  text-decoration: none;
}

.flip-card-wrap {
  height: 342px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 30px 15px;
}

@media (max-width: 991.98px) {
  .flip-card-wrap {
    width: calc(100% - 15px);
    margin-bottom: 5px;
  }
}

.flip-card-wrap .flip-card {
  position: relative;
  /* Required to absolutely position the faces */
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.flip-card-wrap .flip-card .flip-card-front,
.flip-card-wrap .flip-card .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 7px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  color: #444;
}

.flip-card-wrap .flip-card .flip-card-front {
  background-size: cover;
  z-index: 1;
}

.flip-card-wrap .flip-card .flip-card-front .title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
}

.flip-card-wrap .flip-card .flip-card-back {
  position: relative;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  padding: 15px;
  font-size: 14px;
  z-index: 2;
  background: white;
}

.flip-card-wrap .flip-card .flip-card-back h4 {
  font-size: 18px;
  font-weight: bold;
}

.flip-card-wrap .flip-card .flip-card-back .footnotes {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 15px;
  padding: 0 15px;
  border-top: 2px solid #EFF6F9;
}

.flip-card-wrap .flip-card .flip-card-back .footnotes .footnote {
  display: block;
  margin-top: 15px;
}

.flip-card-wrap .flip-card .flip-card-back .footnotes .footnote .icon {
  width: 16px;
  height: 16px;
}

.flip-card-wrap:hover .flip-card {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.flip-card-image img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .flip-cards-slider .owl-stage,
  .ab-flip-cards-slider .owl-stage {
    padding-left: 0px !important;
  }
}

.flip-cards-slider .owl-nav,
.ab-flip-cards-slider .owl-nav {
  font-size: 1.5rem;
  font-weight: bolder;
}

@media (max-width: 991.98px) {
  .flip-cards-slider .owl-nav,
  .ab-flip-cards-slider .owl-nav {
    float: right;
  }
}

.flip-cards-slider .owl-nav button,
.ab-flip-cards-slider .owl-nav button {
  background: #0091cf !important;
  color: white !important;
  border-radius: 7px !important;
  width: 50px;
  height: 50px;
}

@media (min-width: 992px) {
  .flip-cards-slider .owl-nav button,
  .ab-flip-cards-slider .owl-nav button {
    position: absolute;
    top: 148px;
    display: block !important;
  }
}

.flip-cards-slider .owl-nav button span,
.ab-flip-cards-slider .owl-nav button span {
  margin: auto;
}

.flip-cards-slider .owl-nav button svg.icon,
.ab-flip-cards-slider .owl-nav button svg.icon {
  fill: white;
}

.flip-cards-slider .owl-nav button svg.icon.rotate-180,
.ab-flip-cards-slider .owl-nav button svg.icon.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.flip-cards-slider .owl-nav button:hover:not(.disabled),
.ab-flip-cards-slider .owl-nav button:hover:not(.disabled) {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

.flip-cards-slider .owl-nav button.disabled,
.ab-flip-cards-slider .owl-nav button.disabled {
  display: none !important;
}

@media (min-width: 992px) {
  .flip-cards-slider .owl-nav .owl-next,
  .ab-flip-cards-slider .owl-nav .owl-next {
    right: 0px;
  }

  .flip-cards-slider .owl-nav .owl-prev,
  .ab-flip-cards-slider .owl-nav .owl-prev {
    margin-left: -64px;
  }
}

.v2-header-costs,
.ab-header-costs {
  /* Media query for tablets */
  /* Media query for mobile devices */
}

.v2-header-costs .img-rounded,
.ab-header-costs .img-rounded {
  border-radius: 50%;
}

.v2-header-costs .overlay-container,
.ab-header-costs .overlay-container {
  margin: -5rem;
  margin-left: 1rem;
  margin-right: 2rem;
}

.v2-header-costs .profile-picture-default,
.ab-header-costs .profile-picture-default {
  background-color: #EFF6F9;
}

.v2-header-costs .usp-slogan,
.ab-header-costs .usp-slogan {
  color: #62B900;
}

.v2-header-costs .usp-slogan .icon,
.ab-header-costs .usp-slogan .icon {
  float: left;
  margin: 4px 6px 0 0;
  width: 16px;
  height: 16px;
  background: no-repeat center;
  background-size: contain;
}

.v2-header-costs .usp-slogan .icon.check,
.ab-header-costs .usp-slogan .icon.check {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/check@2x.png");
}

.v2-header-costs .prof-title,
.ab-header-costs .prof-title {
  line-height: 1.3;
}

.v2-header-costs .blockReview,
.ab-header-costs .blockReview {
  position: relative;
  float: right;
  margin-right: -15px;
  margin-top: -20px;
  border-radius: 5px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

@media (max-width: 767.98px) {
  .v2-header-costs .blockReview,
  .ab-header-costs .blockReview {
    width: auto;
  }
}

@media (max-width: 991.98px) {
  .v2-header-costs .blockReview,
  .ab-header-costs .blockReview {
    float: none;
    margin-right: 0px;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .v2-header-costs .blockReview,
  .ab-header-costs .blockReview {
    margin-top: -110px;
  }
}

.v2-header-costs .blockReview ul,
.ab-header-costs .blockReview ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-header-costs .blockReview ul li,
.ab-header-costs .blockReview ul li {
  line-height: 40px;
}

.v2-header-costs .blockReview ul li .certificate-small,
.ab-header-costs .blockReview ul li .certificate-small {
  max-width: 60px;
  margin-right: 15px;
}

.v2-header-costs .blockReview ul li .icon,
.ab-header-costs .blockReview ul li .icon {
  float: left;
  margin: 6px 15px 0 0;
  width: 24px;
  height: 24px;
  background: no-repeat center;
  background-size: contain;
}

.v2-header-costs .blockReview ul li .icon.award,
.ab-header-costs .blockReview ul li .icon.award {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/award@2x.png");
}

.v2-header-costs .blockReview ul li .icon.thumbs-up,
.ab-header-costs .blockReview ul li .icon.thumbs-up {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/thumbs-up@2x.png");
}

.v2-header-costs .blockReview ul li .icon.star,
.ab-header-costs .blockReview ul li .icon.star {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/star@2x.png");
}

.v2-header-costs .blockReview .star,
.ab-header-costs .blockReview .star {
  height: 20px;
  width: 23px;
  color: #FFC702;
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  line-height: 20px;
}

.v2-header-costs .alert-danger,
.ab-header-costs .alert-danger {
  color: black;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  border: none;
  border-radius: 10px;
  background-color: #F8F2F2;
}

.v2-header-costs .alert-danger .icon,
.ab-header-costs .alert-danger .icon {
  height: 3em;
  width: 2em;
}

@media (max-width: 991px) {
  .v2-header-costs .btn-mobile,
  .ab-header-costs .btn-mobile {
    padding: 0 30px;
    width: auto;
  }

  .v2-header-costs .blockReview,
  .ab-header-costs .blockReview {
    position: relative;
  }
}

@media only screen and (max-width: 768px) {
  .v2-header-costs .overlay-container,
  .ab-header-costs .overlay-container {
    margin-top: 1rem;
  }
}

@media only screen and (max-width: 480px) {
  .v2-header-costs .overlay-container,
  .ab-header-costs .overlay-container {
    margin-top: 1rem;
  }
}

@media (max-width: 991.98px) {
  .v2-reviews-slider .owl-stage,
  .ab-reviews-slider .owl-stage {
    padding-left: 0 !important;
  }
}

.v2-reviews-slider .owl-nav,
.ab-reviews-slider .owl-nav {
  font-size: 1.5rem;
  font-weight: bolder;
}

@media (max-width: 991.98px) {
  .v2-reviews-slider .owl-nav,
  .ab-reviews-slider .owl-nav {
    float: right;
  }
}

.v2-reviews-slider .owl-nav button,
.ab-reviews-slider .owl-nav button {
  background: #0091cf !important;
  color: white !important;
  border-radius: 7px !important;
  width: 50px;
  height: 50px;
}

@media (min-width: 992px) {
  .v2-reviews-slider .owl-nav button,
  .ab-reviews-slider .owl-nav button {
    position: absolute;
    top: 148px;
    display: block !important;
  }
}

.v2-reviews-slider .owl-nav button span,
.ab-reviews-slider .owl-nav button span {
  margin: auto;
}

.v2-reviews-slider .owl-nav button svg.icon,
.ab-reviews-slider .owl-nav button svg.icon {
  fill: white;
}

.v2-reviews-slider .owl-nav button svg.icon.rotate-180,
.ab-reviews-slider .owl-nav button svg.icon.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.v2-reviews-slider .owl-nav button:hover:not(.disabled),
.ab-reviews-slider .owl-nav button:hover:not(.disabled) {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}

.v2-reviews-slider .owl-nav button.disabled,
.ab-reviews-slider .owl-nav button.disabled {
  display: none !important;
}

@media (min-width: 992px) {
  .v2-reviews-slider .owl-nav .owl-next,
  .ab-reviews-slider .owl-nav .owl-next {
    right: 0;
  }

  .v2-reviews-slider .owl-nav .owl-prev,
  .ab-reviews-slider .owl-nav .owl-prev {
    margin-left: -64px;
  }
}

.v2-reviews-slider .v2-review-item,
.v2-reviews-slider .ab-review-item,
.ab-reviews-slider .v2-review-item,
.ab-reviews-slider .ab-review-item {
  min-height: 380px;
}

@media (max-width: 767.98px) {
  .v2-reviews-slider .v2-review-item,
  .v2-reviews-slider .ab-review-item,
  .ab-reviews-slider .v2-review-item,
  .ab-reviews-slider .ab-review-item {
    min-height: 350px;
  }
}

.reviewRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reviewRow > [class*='col-'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviewRow > [class*='col-'] .v2-review-item {
  height: 100%;
}

.v2-review-item,
.ab-review-item {
  position: relative;
  border-radius: 9px;
  background: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
  margin: 10px;
  padding-bottom: 80px;
}

.v2-review-item .v2-review-stars .icon,
.v2-review-item .ab-review-stars .icon,
.ab-review-item .v2-review-stars .icon,
.ab-review-item .ab-review-stars .icon {
  width: 24px;
  height: 24px;
  background: no-repeat center;
  background-size: contain;
}

.v2-review-item .v2-review-footer,
.ab-review-item .v2-review-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.v2-review-item .small-text,
.ab-review-item .small-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

@media (max-width: 767.98px) {
  .v2-review-item .small-text,
  .ab-review-item .small-text {
    -webkit-line-clamp: 5;
    /* number of lines to show */
  }
}

.v2-btn-mobile:before,
.ab-btn-mobile:before {
  background-image: url("/themes/beestjeskwijt/icons/icon-mobile-white-new.svg");
  background-repeat: no-repeat;
  background-position: 91% 50%;
  background-size: 15px 16px;
  width: auto;
  height: auto;
  content: attr(data-prefix);
  margin-right: 0px;
  padding-right: 30px;
}

.v2-btn-mobile,
.ab-btn-mobile {
  background: #62b900;
  display: block;
}

.call-block-personalized .v2-review-stars,
.call-block-personalized .ab-review-stars {
  display: block;
  float: left;
  padding: 0 6px;
  position: relative;
  font-size: 1em;
}

.call-block-personalized .v2-review-stars .icon,
.call-block-personalized .ab-review-stars .icon {
  margin-right: -4px;
}

.call-block-personalized .v2-review-stars,
.call-block-personalized .ab-score {
  margin-top: 2px;
}

.nav-contact .ab-bg-white-red100,
.nav-contact .v2-bg-white-red100 {
  margin-left: 20px;
  background: #f9f0f0;
}

@media (max-width: 991.98px) {
  .nav-contact .ab-bg-white-red100,
  .nav-contact .v2-bg-white-red100 {
    margin-left: 0;
    background: #fff;
  }
}

.v2-header-usps .usp-slogan,
.ab-header-usps .usp-slogan {
  color: #62B900;
}

.v2-header-usps .usp-slogan .icon,
.ab-header-usps .usp-slogan .icon {
  float: left;
  margin: 4px 6px 0 0;
  width: 16px;
  height: 16px;
  background: no-repeat center;
  background-size: contain;
}

.v2-header-usps .usp-slogan .icon.check,
.ab-header-usps .usp-slogan .icon.check {
  background-image: url("/themes/beestjeskwijt/icons/ab-testing/check@2x.png");
}

.v2-header-usps .header-usp-list,
.ab-header-usps .header-usp-list {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.v2-header-usps .header-usp-list .icon.icon-check-usp,
.ab-header-usps .header-usp-list .icon.icon-check-usp {
  margin-top: 5px;
}

.v2-header-usps .btn-mobile-blue,
.ab-header-usps .btn-mobile-blue {
  padding-left: 4px;
}

@media (min-width: 992px) {
  .v2-header-usps .btn-mobile::before,
  .ab-header-usps .btn-mobile::before {
    background-position: 91% 50%;
    background-size: 15px 16px;
    width: auto;
    height: auto;
    padding-right: 30px;
    margin-right: 0;
    content: attr(data-prefix);
  }

  .v2-header-usps .btn-mobile.no-prefix::before,
  .ab-header-usps .btn-mobile.no-prefix::before {
    content: '';
    width: 15px;
    height: 16px;
    padding-right: initial;
    margin-right: 10px;
  }
}

.prize-table tr:nth-child(even) {
  background-color: #f0f6f9;
}

.prize-table tr th,
.prize-table tr td {
  text-align: center;
}

@media (max-width: 991.98px) {
  .prize-table tr th,
  .prize-table tr td {
    padding: 0.55rem;
  }
}

.prize-table tr th.w-fit {
  width: 130px;
}

.prize-table tr th span {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-position: center center;
  background-repeat: no-repeat;
}

.prize-table tr th span.day {
  background-image: url("/themes/beestjeskwijt/icons/icon_day.svg");
}

.prize-table tr th span.evening {
  background-image: url("/themes/beestjeskwijt/icons/icon_evening.svg");
}

.prize-table tr th span.night {
  background-image: url("/themes/beestjeskwijt/icons/icon_night.svg");
}

.call-popup {
  position: sticky;
  bottom: 0px;
  z-index: 9050;
}

.call-popup .bg-blue {
  width: 100%;
}

@media (min-width: 768px) {
  .call-popup .bg-blue {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .call-popup .bg-blue {
    width: 25%;
  }
}

.call-popup .calltracker {
  display: inline-block !important;
  line-height: 50px;
}

.call-popup .calltracker:before {
  background-image: url("/themes/beestjeskwijt/icons/icon-mobile-white-new.svg");
}

.bg-blue-100 {
  background: #F2FAFD !important;
}

.bg-blue-200 {
  background: #f0f6f9 !important;
}

.bg-blue-300 {
  background: #d3e6ee !important;
}

.bg-blue-500 {
  background: #0091cf !important;
}

.bg-red-100,
.open-indicator-popup .content {
  background: #f9f0f0 !important;
}

.bg-red-200 {
  background: #E2C2C4 !important;
}

.bg-red-300 {
  background: #ae242e !important;
}

.bg-green-100 {
  background: #F0F9F0 !important;
}

.bg-green-200 {
  background: #D9F1D9 !important;
}

.bg-green-300 {
  background: #C2E8C3 !important;
}

.bg-red-500 {
  background: #8c0a14 !important;
}

.bg-transparent {
  background: rgba(0, 0, 0, 0) !important;
}

.bg-light-grey {
  background-color: #F9F9F9 !important;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-300,
h3 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600,
h1,
.h1,
h2,
.h2 {
  font-weight: 600;
}

.font-size-1 {
  font-size: 0.875rem !important;
}

.font-size-2 {
  font-size: 1.125rem !important;
}

.font-size-3,
h3 {
  font-size: 1.25rem !important;
}

@media (min-width: 1200px) {
  .font-size-3,
  h3 {
    font-size: 1.6rem !important;
  }
}

.font-size-4,
h2,
.h2 {
  font-size: 1.5rem !important;
}

@media (min-width: 1200px) {
  .font-size-4,
  h2,
  .h2 {
    font-size: 2.375rem !important;
  }
}

.font-size-5,
h1,
.h1 {
  font-size: 1.75rem !important;
}

@media (min-width: 1200px) {
  .font-size-5,
  h1,
  .h1 {
    font-size: 2.625rem !important;
  }
}

.font-size-6 {
  font-size: 2rem !important;
}

@media (min-width: 1200px) {
  .font-size-6 {
    font-size: 3.5rem !important;
  }
}

.font-size-7 {
  font-size: 2.5rem !important;
}

.page-title {
  font-family: Zilla Slab, sans-serif;
  font-size: 1.75rem;
  line-height: normal;
  text-align: center;
}

.page-subtitle {
  font-size: 1.375rem;
  line-height: 1.45;
}

.page-text {
  line-height: 1.75;
}

.page-title-alt {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.36;
}

.font-zillaslab {
  font-family: Zilla Slab, sans-serif;
}

.text-blue-500,
.text-blue-500 a {
  color: #0091cf;
}

.text-red-500 {
  color: #8c0a14;
}

.text-white-underlined {
  color: #fff;
  text-decoration: underline;
}

a.text-white-underlined:hover {
  color: #dddddd;
}

h1,
.h1 {
  font-family: Zilla Slab, sans-serif;
}

h2,
.h2 {
  font-family: Zilla Slab, sans-serif;
}

h1.default-font,
h2.default-font,
h3.default-font {
  font-family: "Helvetica Neue", Helvetica, "Calibri Light", Roboto, sans-serif;
}

.font-caveat {
  font-family: 'Caveat', sans-serif;
}

.font-londrina-solid,
.opt-in-popup .content-text {
  font-family: 'Londrina Solid', cursive;
}

.slide-in-enter-active {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.slide-in-leave-active {
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.slide-in-enter,
.slide-in-leave-to {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fade-enter-active,
.fade-leave-active {
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.border-grey-500 {
  border-color: #dddddd !important;
}

.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.content-columns-2 {
  -webkit-column-count: 2 !important;
     -moz-column-count: 2 !important;
          column-count: 2 !important;
}

@media (min-width: 768px) {
  .content-columns-md-2 {
    -webkit-column-count: 2 !important;
       -moz-column-count: 2 !important;
            column-count: 2 !important;
  }
}

.circle {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  background-color: #444;
  font-weight: 600;
}

.circle-md {
  width: 75px;
  height: 75px;
}

.mt-min {
  width: auto;
  margin-top: -100px;
}

@media (max-width: 767.98px) {
  .mt-min {
    margin-top: -50px;
  }
}

@media (min-width: 992px) {
  .mt-min {
    display: inline-block;
    margin-top: -130px;
  }
}

.img-cover-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  max-width: none;
}

.z-30 {
  z-index: 30;
}

.shadow-full {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.11);
}

.contact-btn-red {
  height: 50px;
}

.contact-btn-red-big {
  width: 290px;
}

.contact-form-btn {
  width: 100%;
}

.contact-form-bottom-border {
  width: 100%;
  margin-top: 41px;
  margin-bottom: 31px;
  border-bottom: solid #d3e6ee 2px;
}

.contact-form-bottom-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.57;
}

.contact-adres-wrapper h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
}

.contact-adres-wrapper h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  color: #444;
}

.contact-adres-wrapper p {
  line-height: 1.75;
}

.contact-company-img-wrapper {
  width: 70px;
}

.contact-company-img-wrapper img {
  width: 70px;
}

.contact-services-wrapper {
  line-height: 2.13;
}

.contact-logo-wrapper img {
  width: 165px;
}

.contact-bottom-title {
  font-weight: bold;
  line-height: 1.21;
  color: #8c0a14;
}

.contact-footer-info {
  font-weight: bold;
  line-height: 1.75;
}

.contact-form-text-bottom {
  font-size: 14px;
  line-height: 1.71;
}

.contact-location-wrapper a {
  font-size: 16px;
  line-height: 2.13;
  color: #444;
}

.method-img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
}

.method-img-container .method-img {
  width: auto !important;
  max-height: 100%;
  display: inline !important;
}

.method-step {
  background: #0091cf;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  padding-top: 10px;
  display: none;
}

@media (min-width: 992px) {
  .method-step {
    display: inline-block;
  }
}

.prof {
  margin-top: -130px;
}

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

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

@media (min-width: 992px) {
  .mt-lg-100 {
    margin-top: 100px;
  }
}

.location-review-block {
  background: #f5f5f5;
}

.business-img {
  width: 80px;
}

.locationnav {
  position: relative;
  margin-top: -100px;
  z-index: 100;
}

@media (min-width: 992px) {
  .locationnav {
    top: -130px;
    position: absolute;
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .locationnav {
    margin-top: -50px;
  }
}

.locationnav .navimg {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  margin-right: 10px;
}

.location-icon-usp {
  fill: #66c668;
}

.locationslist {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

@media (min-width: 768px) {
  .locationslist {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 992px) {
  .locationslist {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.locationmarker {
  width: 18px;
}

@media (min-width: 992px) {
  .locationmarker {
    width: 24px;
  }
}

@media (max-width: 439.98px) {
  .locationslist {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

@media (max-width: 419.98px) {
  .business-certificates img {
    width: 50px !important;
  }
}

.certificates .certificate {
  height: 80px;
}

.certificates .certificate img {
  max-width: 80px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.5;
}

.certificates .certificate img.filter-overexposed {
  -webkit-filter: grayscale(1) brightness(1000%);
          filter: grayscale(1) brightness(1000%);
}

.certificates .certificate img:hover {
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}

.certificates .certificate-small {
  height: 60px !important;
}

.certificates .certificate-small img {
  max-width: 60px !important;
}

@media (max-width: 575.98px) {
  .certificates .certificate {
    height: 60px;
  }

  .certificates .certificate img {
    max-width: 60px;
  }
}

.blue-block-btn {
  width: 100%;
  height: 50px;
  background: #0fa1e0;
  color: #fff;
}

.blue-block-btn:hover,
.blue-block-btn:active,
.blue-block-btn:focus {
  background-color: #0c7fb0;
  color: #fff;
}

.blogitem {
  display: block;
}

.blogitem .blogimg {
  position: relative;
  width: 100%;
  padding: calc(100% / 3) 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.blogitem .bookmark {
  width: 40px !important;
  position: absolute;
  top: 0;
  right: 30px;
}

.blogitem .blogcat {
  position: absolute;
  bottom: 0;
  left: 40px;
  background: #fff;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

@media (min-width: 992px) {
  .blogitem .blogcat.bg-lg-pink {
    background: #f9f0f0;
  }
}

.blogitem .blogdetails {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blogitem .readtime {
  position: absolute;
  bottom: 0;
  right: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
}

.blogitem .readtime .clock {
  width: 22px;
  margin-right: 5px;
}

.blogitem .blogtitle {
  font-size: 22px;
}

.blogitem:hover {
  text-decoration: none;
  color: inherit;
}

.locationmap {
  width: 100%;
  max-width: 400px;
}

@media (min-width: 992px) {
  .locationmap {
    margin-top: -80px;
  }
}

.home-bg-bluewhite {
  background: #f0f6f9;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f6f9), color-stop(50%, #f0f6f9), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(to bottom, #f0f6f9 0%, #f0f6f9 50%, #fff 50%, #fff 100%);
}

.home-bg-whiteblue {
  background: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #f0f6f9), to(#f0f6f9));
  background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f0f6f9 50%, #f0f6f9 100%);
}

.home-bg-whitepink {
  background: #fff;
}

@media (min-width: 992px) {
  .home-bg-whitepink {
    background: #f9f0f0;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #fff), color-stop(50%, #f9f0f0), to(#f9f0f0));
    background: linear-gradient(to bottom, #fff 0%, #fff 50%, #f9f0f0 50%, #f9f0f0 100%);
  }
}

.home-bg-bluepink {
  background: #fff;
}

@media (min-width: 992px) {
  .home-bg-bluepink {
    background: #f9f0f0;
    background: -webkit-gradient(linear, left top, left bottom, from(#f0f6f9), color-stop(50%, #f0f6f9), color-stop(50%, #f9f0f0), to(#f9f0f0));
    background: linear-gradient(to bottom, #f0f6f9 0%, #f0f6f9 50%, #f9f0f0 50%, #f9f0f0 100%);
  }
}

.home-bg-m-bluewhite {
  background: #f0f6f9;
  background: -webkit-gradient(linear, left top, left bottom, from(#f0f6f9), color-stop(75%, #f0f6f9), color-stop(75%, #fff), to(#fff));
  background: linear-gradient(to bottom, #f0f6f9 0%, #f0f6f9 75%, #fff 75%, #fff 100%);
}

@media (min-width: 992px) {
  .home-bg-m-bluewhite {
    background: #fff;
  }
}

.videoplayer,
p iframe {
  width: 100%;
  height: calc((100vw - 30px) / 560 * 315);
}

@media (min-width: 576px) {
  .videoplayer,
  p iframe {
    width: 510px;
    height: calc(510px / 560 * 315);
  }
}

@media (min-width: 768px) {
  .videoplayer,
  p iframe {
    width: 560px;
    height: calc(560px / 560 * 315);
  }
}

.container-iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1px);
  border: 0;
}

.stars {
  font-size: 1.75rem;
}

.home-input-bottom input {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.home-input-bottom-wrapper {
  width: calc(100% - 50px);
}

p iframe {
  border: none;
}

.prof-pic {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  position: relative;
}

.prof-pic img {
  border-radius: 50%;
  border: 1px solid #cecece;
}

.circle-prof-rating {
  position: absolute;
  right: -30px;
  top: -30px;
}

.circle-prof-rating .icon {
  margin-right: 5px;
}

.mobile-circle-prof-rating {
  position: absolute;
  right: -15%;
  top: -15%;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  text-align: center;
}

.mobile-circle-prof-rating .mobile-circle-rating {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.mobile-circle-prof-rating .mobile-circle-rating .icon-star-full {
  margin-top: -3px;
}

.klantenvertellen .mobile-circle-prof-rating {
  width: 65px;
  height: 65px;
  right: -10%;
  top: -20%;
}

@media (max-width: 767.98px) {
  .klantenvertellen .mobile-circle-prof-rating {
    right: -15%;
  }
}

.find-local-expert select {
  padding: 10px 60px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 15px 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  font-size: 1.375rem;
  font-weight: 300;
  position: relative;
}

.find-local-expert select:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 10px;
  background: #47c1bf;
}

.professional-img {
  width: 100%;
  max-width: 400px;
}

.prof-bgimage {
  height: 50vh;
  max-height: 400px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .prof-bgimage {
    max-height: 225px !important;
  }
}

.valign {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%) perspective(1px);
          transform: translateY(-50%) perspective(1px);
}

.bg-blue {
  background: #0091cf;
}

@media (max-width: 1199.98px) {
  .prof-pic {
    width: 117px;
    height: 117px;
  }
}

@media (max-width: 991.98px) {
  .prof-pic {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 575.98px) {
  .prof-pic {
    width: 148px;
    height: 148px;
  }
}

@media (max-width: 434.98px) {
  .prof-pic {
    width: 128px;
    height: 128px;
  }
}

@media (max-width: 379.98px) {
  .prof-pic {
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 359.98px) {
  .prof-pic {
    width: 102px;
    height: 102px;
  }
}

.pagination a {
  padding: 0 10px;
  color: #444;
}

.pagination a:hover {
  color: #0091cf;
  text-decoration: none;
}

.pagination a.current {
  color: #0091cf;
}

.singlepost .single-cat {
  display: inline-block;
  background: #f9f0f0;
  font-weight: 600;
  padding: 10px;
  border-radius: 3px;
}

.singlepost .single-readingtime {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px;
  float: right;
}

.singlepost .single-readingtime .clock {
  width: 20px;
  margin-right: 5px;
}

.singlepost .single-dateauthor {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.singlepost .single-timesread {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.singlepost p {
  margin-bottom: 30px;
}

.singlepost iframe {
  width: 100% !important;
  height: calc((100vw - 30px) / 560 * 315) !important;
}

@media (min-width: 576px) {
  .singlepost iframe {
    width: 510px !important;
    height: calc(510px / 560 * 315) !important;
  }
}

@media (min-width: 992px) {
  .singlepost iframe {
    width: 560px !important;
    height: calc(560px / 560 * 315) !important;
  }
}

.testimonial {
  position: relative;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  padding-left: 60px;
}

.testimonial p {
  margin-bottom: 10px;
}

.testimonial .author {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

.testimonial:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: url(/images/icon-quote-1.svg?97dd5baf8c79d93db404ab7dc66947b0) no-repeat;
  background-size: contain;
  background-position: center;
}

.intro {
  font-size: 20px;
  font-weight: 600;
}

.singleblogimage {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.selectfont {
  font-size: 0.875rem !important;
}

@media (min-width: 576px) {
  .selectfont {
    font-size: 1rem;
  }
}

.pointer {
  cursor: pointer;
}

.blogitemlist {
  background: #fff;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
  z-index: 999;
  display: none;
}

.blogitemlist a {
  display: block;
  border-top: 1px solid #eee;
  font-weight: 700;
  font-size: 16px;
  color: #444;
}

.blogitemlist a:hover {
  text-decoration: none;
  background: #0091cf;
  color: #fff;
}

.blogitemlist.open {
  display: block;
}

.navbar .form-button a,
.stickymenu .form-button a,
.popup-container .form-button a,
.professional-or-diy .form-button a,
.footer-bottom .form-button a,
#anchor-faq .form-button a,
#app > main > section:nth-child(1) > div > div > div.col-12.col-lg-6.d-flex.align-items-center.mb-5.mb-lg-0 > div > div > div > a,
.shadow-full .form-button a {
  display: none !important;
}

.ab-test {
  display: block !important;
}

.phone-button a,
#phoneButtonContent1 {
  width: 100%;
}

.block-header-with-professional-and-u-s-ps-block .form-button,
.block-header-costs-v2 .form-button,
.block-header-costs-v3 .form-button {
  display: block !important;
}

.btn-callbutton {
  background-color: #ff7f00 !important;
  border: 1px solid #ff7f00 !important;
}

.block-faq-block-v2 .phone-button,
.block-faq-block-v3 .phone-button {
  margin: auto;
}

footer .phone-button a {
  background-color: transparent !important;
  border: 1px solid transparent !important;
}

.product-slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-slider .owl-stage .product-item {
  height: 100%;
}

.product-item .product-image {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 180px;
  width: 100%;
}

.product-item .product-title {
  font-weight: bold;
  font-size: 1.125rem;
  text-wrap: wrap;
}

.product-item .product-subtitle {
  color: #444;
  font-weight: 300;
  line-height: 1rem;
  font-size: 0.875rem;
}

.product-item .product-add-to-cart .meta .stock.in-stock {
  color: #66C668;
  font-size: 0.875rem;
  font-weight: 300;
}

.product-item .product-add-to-cart span.checkmark {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzEwN182OTgpIj4KPHBhdGggZD0iTTcuNSAxNC43NjU2QzExLjUxMjcgMTQuNzY1NiAxNC43NjU2IDExLjUxMjcgMTQuNzY1NiA3LjVDMTQuNzY1NiAzLjQ4NzMxIDExLjUxMjcgMC4yMzQzNzUgNy41IDAuMjM0Mzc1QzMuNDg3MzEgMC4yMzQzNzUgMC4yMzQzNzUgMy40ODczMSAwLjIzNDM3NSA3LjVDMC4yMzQzNzUgMTEuNTEyNyAzLjQ4NzMxIDE0Ljc2NTYgNy41IDE0Ljc2NTZaIiBmaWxsPSIjNjZDNjY4Ii8+CjxwYXRoIGQ9Ik0xMS42MDc2IDUuNDU3MDRMMTAuOTQ3MyA0Ljc5MTQ3QzEwLjgxMDYgNC42NTM2MyAxMC41ODggNC42NTI3MiAxMC40NTAyIDQuNzg5NDhMNi4zMDg5OCA4Ljg5NzM3TDQuNTU3MjYgNy4xMzE0NEM0LjQyMDU0IDYuOTkzNiA0LjE5Nzk0IDYuOTkyNjkgNC4wNjAxIDcuMTI5NDJMMy4zOTQ1IDcuNzg5NjZDMy4yNTY2NiA3LjkyNjM5IDMuMjU1NzUgOC4xNDg5OCAzLjM5MjUxIDguMjg2ODVMNi4wNTIxMSAxMC45NjhDNi4xODg4NCAxMS4xMDU4IDYuNDExNDMgMTEuMTA2NyA2LjU0OTI4IDEwLjk3TDExLjYwNTYgNS45NTQyNEMxMS43NDM0IDUuODE3NDggMTEuNzQ0MyA1LjU5NDg4IDExLjYwNzYgNS40NTcwNFoiIGZpbGw9IndoaXRlIi8+CjwvZz4KPGRlZnM+CjxjbGlwUGF0aCBpZD0iY2xpcDBfMTA3XzY5OCI+CjxyZWN0IHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K");
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  display: inline-block;
  background-position: center;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 7px;
}

.product-item .product-add-to-cart .add-to-cart .add-to-cart-button {
  background: #FF7F00;
  border-radius: 4px;
  padding: 16px 19px 10px 23px;
  width: 65px;
  height: 57px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: .2s ease-in-out all;
  transition: .2s ease-in-out all;
}

.product-item .product-add-to-cart .add-to-cart .add-to-cart-button:hover {
  background-color: #cf6c09;
}

.product-item .product-add-to-cart .add-to-cart .add-to-cart-button span.external {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzIDAuNUMxMi4zMDg2IDAuNSAxMS43NSAxLjA1ODU5IDExLjc1IDEuNzVDMTEuNzUgMi40NDE0MSAxMi4zMDg2IDMgMTMgM0gxNi4yMzA1TDguMzYzMjggMTAuODY3MkM3Ljg3NSAxMS4zNTU1IDcuODc1IDEyLjE0ODQgOC4zNjMyOCAxMi42MzY3QzguODUxNTYgMTMuMTI1IDkuNjQ0NTMgMTMuMTI1IDEwLjEzMjggMTIuNjM2N0wxOCA0Ljc2OTUzVjhDMTggOC42OTE0MSAxOC41NTg2IDkuMjUgMTkuMjUgOS4yNUMxOS45NDE0IDkuMjUgMjAuNSA4LjY5MTQxIDIwLjUgOFYxLjc1QzIwLjUgMS4wNTg1OSAxOS45NDE0IDAuNSAxOS4yNSAwLjVIMTNaTTMuNjI1IDQuMjVDMS44OTg0NCA0LjI1IDAuNSA1LjY0ODQ0IDAuNSA3LjM3NVYxNy4zNzVDMC41IDE5LjEwMTYgMS44OTg0NCAyMC41IDMuNjI1IDIwLjVIMTMuNjI1QzE1LjM1MTYgMjAuNSAxNi43NSAxOS4xMDE2IDE2Ljc1IDE3LjM3NVYxNC4yNUMxNi43NSAxMy41NTg2IDE2LjE5MTQgMTMgMTUuNSAxM0MxNC44MDg2IDEzIDE0LjI1IDEzLjU1ODYgMTQuMjUgMTQuMjVWMTcuMzc1QzE0LjI1IDE3LjcxODggMTMuOTY4OCAxOCAxMy42MjUgMThIMy42MjVDMy4yODEyNSAxOCAzIDE3LjcxODggMyAxNy4zNzVWNy4zNzVDMyA3LjAzMTI1IDMuMjgxMjUgNi43NSAzLjYyNSA2Ljc1SDYuNzVDNy40NDE0MSA2Ljc1IDggNi4xOTE0MSA4IDUuNUM4IDQuODA4NTkgNy40NDE0MSA0LjI1IDYuNzUgNC4yNUgzLjYyNVoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  display: inline-block;
}

@media screen and (max-width: 400px) {
  .product-item .product-add-to-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px 0;
  }

  .product-item .product-add-to-cart .add-to-cart a.add-to-cart-button {
    width: 100%;
  }

  .product-item .product-add-to-cart .meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .product-slider .product-item .product-meta {
    height: auto !important;
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .product-slider .owl-stage .product-item {
    height: auto !important;
  }
}

@media (max-width: 500px) {
  .contact-buttons {
    max-width: 100%;
    padding-right: 15px;
    min-width: 260px;
  }
}

@media (min-width: 501px) {
  .contact-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .phone-button {
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  p {
    font-size: 0.88rem;
  }

  .font-size-5,
  h1,
  .h1,
  h1,
  .h1 {
    font-size: 1.65rem !important;
  }

  .font-size-2 {
    font-size: 1rem !important;
  }

  .font-size-4,
  h2,
  .h2,
  h2,
  .h2 {
    font-size: 1.45rem !important;
  }

  .font-size-3,
  h3,
  h3 {
    font-size: 1.15rem !important;
  }

  div.shadow-full.locationnav p:first-child span {
    font-size: 22px !important;
  }

  .block-content-block h4,
  .block-content-block .h4 {
    font-size: 1.12rem !important;
  }
}

/**
* Changes for issue 1661
*/

@media screen and (min-width: 992px) {
  div.navbar .nav-contact div.bg-red-100,
  div.navbar .nav-contact .open-indicator-popup div.content,
  .open-indicator-popup div.navbar .nav-contact div.content {
    background-color: transparent !important;
  }
}

/* section.block-case-slider .blogitem .blogcat::first-letter {
    color: #66c668;
} */

.ab-header-costs .usp-slogan,
.v2-header-costs .usp-slogan {
  color: #66c668;
}

.usp-slogan {
  color: #66c668;
}

@media screen and (min-width: 992px) {
  div.navbar .nav-contact div.bg-red-100 div.text-center,
  div.navbar .nav-contact .open-indicator-popup div.content div.text-center,
  .open-indicator-popup div.navbar .nav-contact div.content div.text-center {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

@media screen and (min-width: 992px) and (max-width: 1404px) {
  div.navbar .nav-contact div.bg-red-100 div.text-center,
  div.navbar .nav-contact .open-indicator-popup div.content div.text-center,
  .open-indicator-popup div.navbar .nav-contact div.content div.text-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 991.98px) {
  .nav-contact {
    border-top: 0;
    -webkit-box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.21);
    bottom: 0px;
  }

  .nav-contact .bg-red-100,
  .nav-contact .open-indicator-popup .content,
  .open-indicator-popup .nav-contact .content {
    background-color: #0091cf !important;
    color: #fff !important;
  }

  .nav-contact .bg-red-100 .phone-button a.btn-mobile#phonenumberUspblock,
  .nav-contact .open-indicator-popup .content .phone-button a.btn-mobile#phonenumberUspblock,
  .open-indicator-popup .nav-contact .content .phone-button a.btn-mobile#phonenumberUspblock {
    background: #ff7f00;
  }
}

section.block-reviews-block-v2 div.container div.col-12 a.btn.btn-ghostblue,
section.block-reviews-block-v2 div.container div.col-12 a.btn-ghostblue.btn-appointment {
  display: none;
}

section.block-contact-form-slim-v2 div.formcontactslim-v2 {
  padding: 2%;
}

section.block-contact-form-slim-v2 div.personalblok-v2 {
  padding: 5% 5% 5% 5%;
}

section.block-contact-form-slim-v2 form.form-generic .form-control::-webkit-input-placeholder {
  font-size: 1rem !important;
}

section.block-contact-form-slim-v2 form.form-generic .form-control::-moz-placeholder {
  font-size: 1rem !important;
}

section.block-contact-form-slim-v2 form.form-generic .form-control::-ms-input-placeholder {
  font-size: 1rem !important;
}

section.block-contact-form-slim-v2 form.form-generic .form-control::placeholder {
  font-size: 1rem !important;
}

section.block-contact-form-slim-v2 form.form-generic select.form-control option,
section.block-contact-form-slim-v2 form.form-generic select.form-control {
  font-size: 1rem !important;
  color: #495057;
}

div.form-group label.form-label.border {
  background: #fff;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 2px solid #ced4da !important;
  border-radius: 0;
}

div.form-group label.form-label.border input {
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}

div.form-group input:-internal-autofill-selected {
  background-color: #fff !important;
}

section.block-contact-form-slim-v2 .btn_submit {
  width: 100%;
}

.slim-contact-form-section .form-control:user-valid {
  border: 2px solid #66c668;
}

section.block-contact-form-slim-v2 p.icn-lock {
  color: #66c668;
}

html .open-indicator-popup .content {
  padding: 40px 50px;
  min-height: auto !important;
  background: #0091cf !important;
  color: #fff !important;
  width: 960px !important;
}

html .open-indicator-popup .content a#phonenumberUspblock {
  background-color: #ff7f00 !important;
}

html .open-indicator-popup .content a#phonenumberUspblock::before {
  -webkit-animation-name: wiggle;
  -ms-animation-name: wiggle;
  -ms-animation-duration: 1000ms;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-in-out;
  -ms-animation-timing-function: ease-in-out;
  -webkit-animation-delay: 1000ms;
  animation-delay: 1000ms;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(10deg);
  }

  25% {
    -webkit-transform: rotate(-10deg);
  }

  50% {
    -webkit-transform: rotate(20deg);
  }

  75% {
    -webkit-transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }

  25% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }

  50% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }

  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@media screen and (max-width: 991px) {
  section.block-contact-form-slim-v2 div.formcontactslim-v2 {
    padding: 5%;
  }

  section.block-contact-form-slim-v2 .container.slim-contact-container-v2.bordered {
    padding: 0;
  }

  section.block-contact-form-slim-v2 .container.slim-contact-container-v2.bordered .row {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  section.section.block-contact-form-slim-v2 div.personalblok-v2 {
    padding: 3%;
  }
}

@media (max-width: 500px) {
  section.v2-header-costs .contact-buttons {
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  section.v2-header-costs .contact-buttons div.phone-button {
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  section.v2-header-costs .btn-mobile {
    padding: 0 15px;
  }
}

section.v2-header-costs div.form-button a.btn-mobile.btn-mobile-white:before {
  content: none;
}

@media (max-width: 500px) {
  .block-faq-block-v2 div.contact-buttons {
    padding-right: 0px;
  }
}

section #anchor-werkgebied div.contact-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section#anchor-werkgebied div.phone-button a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  section.block-contact-form-slim-v2 div.formcontactslim-v2 {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 7px;
  }
}

@media (max-width: 500px) {
  #top-nav .contact-buttons {
    padding-right: 0px;
  }
}

.nav-desktop ul li a,
.nav-desktop ul li button {
  padding-left: 29px !important;
  padding-right: 29px !important;
  font-size: 14px !important;
}

.block-product-slider .owl-carousel .owl-stage-outer {
  height: auto !important;
}


/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiIvdGhlbWVzL2JlZXN0amVza3dpanQvY3NzL2FwcC5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/