/* cmsms stylesheet: Reserveringformulier V2 modified: woensdag 24 april 2024 23:00:05 */
.reservationoption:after {
     clear: both;
 }
 
.reservationoption .checkbox-container, .reservationoption .not-orderable {
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin: 0!important;
  background: url(../../images/unavailable.png) no-repeat;
}

.reservationoption .checkbox-container {
  cursor: pointer;
} 

/* Hide the browser's default checkbox */
.reservationoption .checkbox-container input {
      position: absolute;
      opacity: 0;
cursor: pointer;}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: solid 1px #ccc;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.reservationoption .checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.reservationoption .checkbox-container input:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.reservationoption .checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.reservationoption .checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.reservationoption {
    display: flex;
    x-justify-content: space-around;
    x-align-items: stretch;
}
.reservationoption div {
    margin: 0!important;
}

.reservationoption .checkbox-container {
    width: 25px;
    flex: 0 0 25px;
}

.reservationoption .col-info {
    width: 30px;
    flex: 0 0 30px;
}
.reservationoption-1000 .col-description label:after {
    content: "Volgeboekt";
    color: #CE0404;
    font-weight: bold;
    margin-left: 7px;
}


._reservationoption .checkboxlabel {
    position: absolute;
    left: 55px;
    right: 0;
    bottom: 0;
    top: 0;
    height:100%;
    width:100%;
}

.grouptypevalue-hidden {
    display: none!important;
}

.not-orderable-tooltip {
  position: relative;
}
.not-orderable-tooltip:after{
  display: block;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  left: -20%;
  opacity: 0;
  content: attr(data-text); /* might also use attr(title) */
  height: auto;
  min-width: 220px;
  padding: 15px 8px;
  z-index: 999;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background-color: #3f3f3f;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.not-orderable-tooltip:before {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  left: 25%;
  bottom: 0px;
  opacity: 0;
  content: "";
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #3f3f3f transparent transparent transparent;
}
.not-orderable-tooltip:hover:after{ visibility: visible; opacity: 1; bottom: 34px; }
.not-orderable-tooltip:hover:before{ visibility: visible; opacity: 1; bottom: 28px; }




/* tips on bottom */
.not-orderable-tooltip.bottom:after { bottom: auto; top: 0; }
.not-orderable-tooltip.bottom:hover:after { top: 28px; }
.not-orderable-tooltip.bottom:before {
  border-width: 0 5px 8.7px 5px;
  border-color: transparent transparent rgba(0,0,0,0.85) transparent;
  top: 0px
}
.not-orderable-tooltip.bottom:hover:before { top: 20px; }


/* tips on the right */
.not-orderable-tooltip.right:after { left: 100%; bottom: -45%; }
.not-orderable-tooltip.right:hover:after { left: 110%; bottom: -45%; }
.not-orderable-tooltip.right:before {
  border-width: 5px 10px 5px 0;
  border-color: transparent rgba(0,0,0,0.85) transparent transparent;
  left: 90%;
  bottom: 2%;
}
.not-orderable-tooltip.right:hover:before { left: 100%; bottom: 2%; }


/* tips on the left */
.not-orderable-tooltip.left:after { left: auto; right: 100%; bottom: -45%; }
.not-orderable-tooltip.left:hover:after { right: 110%; bottom: -45%; }
.not-orderable-tooltip.left:before {
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent rgba(0,0,0,0.85);
  left: auto;
  right: 90%;
  bottom: 2%;
}
.not-orderable-tooltip.left:hover:before { right: 100%; bottom: 2%; }


/* tooltip colors (add your own!) */
.not-orderable-tooltip.blue:after { background:#5f87c2; }
.not-orderable-tooltip.blue:before { border-color: #5f87c2 transparent transparent transparent; }
.not-orderable-tooltip.bottom.blue:before{ border-color: transparent transparent #5f87c2 transparent; }
.not-orderable-tooltip.right.blue:before { border-color: transparent #5f87c2 transparent transparent; }
.not-orderable-tooltip.left.blue:before { border-color: transparent transparent transparent #5f87c2; }



.not-orderable-tooltip.animationTips:after, .not-orderable-tooltip.animationTips:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form_reservation .message-closed {
  padding: 10px 15px;
  background-color: #fffaeb;
  display: block;
  border: solid 1px #ffe08a;
  color: #946c00;
}

.flatpickr-day.date-closed {
   position: relative;
}

.flatpickr-day.date-closed:before {
  position: absolute;
  content: "";
  left: 7px;
  top: 55%;
  right: 7px;
  border-top: 2px solid;
  border-top-color: #FF4500;
  border-color: #FF4500;
  -webkit-transform: skewY(-10deg);
  -moz-transform: skewY(-10deg);
  transform: skewY(-10deg);
}


.reservation_options_group h3 {
    font-size: 1.1em!important;
    font-weight: bold;
}
.reservation_options_groups  .reservation_options_group:nth-child(2) label.reservation-options-label {
    display: none;
}
/* cmsms stylesheet: Mailprotector modified: zondag 28 juli 2019 22:36:17 */
.protectedmlink .apenstaart:after {
   content: '@';
}

.protectedmlink .punt:after {
   content: '.';
}
/* cmsms stylesheet: style-default modified: donderdag 2 februari 2017 15:48:22 */
.clear {
   clear: both;
}

.introslide_content h3 span.c, .homecontent_dlinks h4 span.c {
    display:none;
}

.intro_image .flexvideo {
   border: 6px solid #323231;
}

.fancybox-lock .fancybox-overlay {
    overflow-x: auto;
    overflow-y: auto!important;
}

li.level-n {
    display: list-item !important;
}

.textblock ul {
   overflow:hidden;
}

#kolommen {
  display: block;
  padding: 0px 2% 54px 2%;
  min-height: 300px;
}

@media (max-width: 700px) {
	
  #kolommen {
    xpadding: 34px 5% 54px 5%;
    padding: 0px 2% 54px 2%;
  }
}

#kolom1 {
  float: left;
  width: 48%;
}

#kolom2 {
  float: right;
  width: 48%;
}

#kolom1.breed {
  float: left;
  width: 64%;
}

#kolom1.small {
  float: left;
  width: 32%;
}

#kolom2.small {
  float: right;
  width: 32%;
}

#kolom2.breed {
  float: right;
  width: 64%;
}

.clearer {
  height: 0px;
  font-size: 0px;
  line-height: 0px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  clear: both;
  overflow: hidden;
}

@media (max-width: 900px) {

  #kolom1.breed {
    width: 48%;
  }

  #kolom2.small {
    width: 48%;
  }
}

@media (max-width: 767px) {

  #kolom1 {
    width: 100%;
  }

  #kolom2 {
    width: 100%;
  }

  #kolom1.breed {
    width: 100%;
  }

  #kolom2.small {
    width: 100%;
  }
}


.productimage img {
    border: 5px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}

.products_list .product {
    padding: 30px 10px; 
    border-top: 3px solid #cfccc3;
    position: relative;    
}

.products_list .product .productimage {
    float: left;
    width: 30%;
    padding-right: 20px;
}

.products_list .product .button {
    bottom: 45px;
    left: 30%;
    position: absolute;
    padding-left: 5px;
}

.products_list .product .description {
    top: 90px;
    bottom: 90px;
    left: 30%;
    right: 10px;
    position: absolute;
    overflow: hidden;
    text-overflow: ellipsis; 
    padding-left: 5px;
}

@media screen and (max-width: 499px) {
    .products_list .product .productimage {
        width: 40%; 
    } 

    .products_list .product .description {
        left: 40%; 
    } 
    .products_list .product .button {
        left: 40%;
    }  
}

.cms_checkbox {
    margin-top: 15px;
    width: auto !important;
}

input[type=checkbox]
{
  -webkit-appearance:checkbox;
}


@keyframes cf3FadeInOut {
  0% {
     opacity:1;
  }
  45% {
    opacity:1;
  }
  55% {
    opacity:0;
  }
  100% {
     opacity:0;
   }
}

.introslide_image img.fade_top {
   animation-name: cf3FadeInOut;
   animation-timing-function: ease-in-out;
   animation-iteration-count: infinite;
   animation-duration: 4s;
   animation-direction: alternate;
   position:absolute;
   left: 130px;
   top: 0;
}

.CMSMSBody {
   font-size: 12px!important;
}
/* cmsms stylesheet: Flexslider modified: donderdag 2 februari 2017 15:48:22 */
/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {
  margin: 0px;
  padding: 0px;
  border: 0px;
}

.flexslider ul,
.flexslider li {
  margin: 0px;
  padding: 0px;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
  position: relative;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
	
.flexslider .slides img {
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
  z-index: 1;
}

.flexslider .slides img#fader, 
.flexslider .slides img#fader2 {
  width: 100%;
  display: block;
  margin: 0px;
  padding: 0px;
  z-index: 2;
  position: absolute;
  left: 0px;
  top: 0px;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}


/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0px 0px 0px 0px;
  top: 0px;
  padding: 0px;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 0px solid #fff;
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 600px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 600px;
}

.flexslider .slides {
  zoom: 1;
}

@media (max-width: 600px) {
  .home .flexslider .slides img {
    width: 130%;
    margin-left: -15%;
  }
}

.carousel li {
  margin-right: 0px;
}


/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  width: 43px;
  height: 43px;
  margin: -20px 0 0;
  display: block;
  background: url(../../images/bg_direction_nav.png) no-repeat 0 0;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  z-index: 3;
}

@media (max-width: 700px) {
  .flex-direction-nav a {
    display: none;
    visibility: hidden;
  }
}

.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -43px;
}

.flex-direction-nav .flex-prev {
  left: -43px;
}

.flexslider:hover .flex-next {
  opacity: 0.8;
  right: 0px;
}

.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: 0px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: .3!important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 3;
}

@media (max-width: 767px) {
  .flex-control-nav {
    bottom: 10px;
  }
}

#kolommen .flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  z-index: 3;
}

.flex-control-nav li {
  margin: 0px 3px 0px 3px;
  padding: 0px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 10px;
  height: 10px;
  display: block;
  background: url(../../images/slidenav.png) 0px 0px no-repeat;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
}

.flex-control-paging li a:hover {
  background: url(../../images/slidenav.png) 0px -10px no-repeat;
}

.flex-control-paging li a.flex-active {
  background: url(../../images/slidenav.png) 0px -10px no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
 
  .flex-control-paging li a {
    background: url(../../images/slidenav@2x.png) 0px 0px no-repeat;
    background-size: 10px 20px;
  }

  .flex-control-paging li a:hover {
    background: url(../images/slidenav@2x.png) 0px -10px no-repeat;
    background-size: 10px 20px;
  }

  .flex-control-paging li a.flex-active {
    background: url(../../images/slidenav@2x.png) 0px -10px no-repeat;
    background-size: 10px 20px;
  }
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

.block {
    background-color: #a63c24;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    color: #ffedd6;
    display: block;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
}

.block .text {
    display: block;
    padding: 22px 30px;
}
.block .text  p {
   margin: 0;
   padding: 0;
}

.block {
    color: #ffedd6;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
}
/* cmsms stylesheet: owl.carousel modified: donderdag 2 februari 2017 15:48:22 */
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.2
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.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);
}
/* cmsms stylesheet: Reserveringsformulier modified: vrijdag 8 maart 2019 11:36:48 */
.error_message {
    background-color: #FFECEC;
    border: 1px solid #B90000;
    color: #B90000;
    margin: 0 0 10px;
}

.error_message ul {
   padding-left: 10px;
}

#content .error_message li {
    margin: 10px 0;
    padding-left: 25px;
}

.error_message li {
    line-height: 16px;
    list-style: none outside none;
    margin: 10px 0;
    padding-left: 20px;
}

.fb_invalid label {
    color: #B90000;
    font-weight: bold;
}

img.info {
    margin-bottom: 4px;
    margin-left: 3px;
    margin-right: 3px;
    vertical-align: middle;
    cursor: pointer;
}

.regel {
    margin: 0.7em 0!important;
}

.form .regel div  {
  margin: 7px 0px; 
}

.menu-reserveren {
   margin-bottom: 30px!important;
}

.form .separator {
   height: 20px;
}

.formfield {
    margin: 0.7em 0!important;
}

.form .reservation_options div  {
  margin: 7px 0px; 
}

.combofield label{
   display: block;
}

.openinghours {
   border: solid 1px #cccccc; 
   background-color:#ffffff; 
   padding: 10px; 
   -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px
   opacity:1;
   transition: opacity 1s linear;
}

.vtip-open .openinghours {
    opacity: 0.1;
}

.textblock .openinghours .fotolinks {
    padding: 3px 10px 15px 0;
    width: auto;   
}
/* cmsms stylesheet: AgeCheck modified: zondag 16 juni 2024 21:11:29 */
.micromodal {
      display: none;
    }

    .micromodal.is-open {
      display: block;
    }

    .micromodal__overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: rgba(0,0,0,0.65);
      z-index: 1000;
      padding: 20px;
    }

    .micromodal__container {
      box-sizing: border-box;
      overflow-y: auto;
      max-width: 570px;
      max-height: 100vh;
      padding: 30px;
      background-color: #fff;
      border-radius: 4px;
    }

    .micromodal[aria-hidden="false"] .micromodal__overlay {
      animation: microModalFadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
    }

    .micromodal[aria-hidden="false"] .micromodal__container {
      animation: microModalSlideIn .2s cubic-bezier(0, 0, .2, 1);
    }

    .micromodal .micromodal__container,
    .micromodal .micromodal__overlay {
      will-change: transform;
    }

    @keyframes microModalFadeIn {
        from { opacity: 0; }
          to { opacity: 1; }
    }

    @keyframes microModalSlideIn {
      from { transform: translateY(15%); }
        to { transform: translateY(0); }
    }


.age-check-modal {
    font-family: Arial, Helvetica, sans-serif;
}

.age-check-modal h1,
.age-check-modal h2,
.age-check-modal h3,
.age-check-modal h4,
.age-check-modal h5,
.age-check-modal h6 {
   font-family: inherit;
   padding-top: 0;
   margin-top: 0;
}

.age-check-modal .nix18 .nix18-text {
   font-size: 12px;
   color: #2d2720;
   flex: 1;
}

.age-check-modal .nix18 .nix18-logo {
  width: 100%;
  justify-content: right;
  display: flex;
}

.age-check-modal .nix18 .nix18-logo img {
   width: 125px;
}

.age-check-modal .nix18 {
   display: block;
}

.age-check-buttons button {
  padding: 10px;
  margin-bottom: 5px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}

.age-check-buttons button:focus {
   outline:0;
}

.age-check-buttons .primary {
   color: #fff;
   background-color: #00a5e1;
}
.age-check-buttons .primary:hover {
   background-color: #0699cf;
}

.age-check-buttons .secundary {
   color: #2d2720;
   background-color: #e9e9ed;
}
.age-check-buttons .secundary:hover {
   background-color: #d0d0d7;
}

@media only screen and (min-width: 33.75em) {  /* 540px */
   .age-check-modal .nix18 {
      display: flex;
   }
   .age-check-modal .nix18 .nix18-logo {
      width: 150px;
   }
}
/* cmsms stylesheet: Bestelformulier modified: donderdag 2 februari 2017 15:48:22 */
.product-quantity {
   border-bottom: 1px solid #c0baae;
   padding: 2px 0;
}

.product-quantity input  {
    border: 1px solid #cccccc;
    float: right;
    margin: 0 10px;
    padding: 4px;
    width: 60px;
}

.product-quantity label {
    padding: 5px 3px 3px 10px;
}


.product-quantity .controls {
   float: right;
   width: 230px;
}

.product-quantity .controls label {
   width: 145px;
   display: inline-block;
   padding: 0 !important;
}

.product-quantity select {
    width: 150px;
    border: 1px solid #cccccc;
    padding: 3px;
    margin: 0;
}

.product-quantity .product-type {
    width: 150px!important;
    padding: 5px 3px 3px!important;
}

.product-extra-description .description {
    float: none; /* not needed, just for clarification */
    width: auto;
    overflow: hidden;
}

.product-extra-description .description input {
    border: 1px solid #cccccc;
    padding: 4px;
    width: 100%;
}

.product-extra-description .quantity {
   width: 120px;
   float: right;
   text-align: right;
}

.product-extra-description .button_delete {
   width: 24px;
   height: 24px;
   border: none;
   background-image: url('../../images/delete.png');
   background-repeat: no-repeat;
   background-color: transparent;
}

.product-extra-description .quantity input:first-child  {
    border: 1px solid #cccccc;
    margin: 0 10px;
    padding: 4px;
    width: 60px;
}

.product-quantity .button_delete {
   width: auto;
   background-color: #ffeeaa;
   background-image: url('https://test.usheit.com/images/icon-delete.gif');
   background-repeat: no-repeat;
   border: none;
   height: 24px;
   width: 24px;
}

.product-quantity .clear {
   clear: both;
}

.product-quantity .button_add {
   width: auto;
   background-image: url('https://test.usheit.com/images/icon-add.gif');
   background-repeat: no-repeat;
   background-position: 5px 3px;
   padding-left: 30px;
   height: 30px;
   -webkit-border-radius: 3px;
   -moz-border-radius: 3px;
   border-radius: 3px;
}

.fancybox-inner .productdata {
   max-width: 900px;
   background-color: #ded9c7;
   padding: 20px;
}

.product-quantity input[type="submit"]:disabled {
    display:none;
}

div.product-type {
   display: none;
}

.product-quantity .details {
   float: left;
   margin: 5px!important;
   width: 18px;
}

.form .regel div {
    margin: 0 0 3px;
}

.formbuilderform .submit {
   padding-top: 10px;
   padding-left: 230px;
}

.verkoopvoorwaarden > label {
    font-family: "Abraham Lincoln",sans-serif;
    font-size: 1.75em;
    color: #aa1415;
    margin: 0;
}

@media screen and (max-width: 520px) {
  .product-quantity a.details, .product-quantity .no_info {
      display: none;
  }
}
/* cmsms stylesheet: vTip modified: zondag 12 augustus 2018 23:54:34 */
p#vtip {
     display: none;
     position: absolute;
     padding: 10px;
     left: 5px;
     font-size: 13px;
     line-height: 20px;
     color: #4b4b4b;
     background-color: white;
     border: 1px solid #a6c9e2;
     -moz-border-radius: 3px;
     -webkit-border-radius: 3px;
     border-radius: 3px;
     z-index: 9999;
     max-width: 675px;
}
 p#vtip #vtipArrow {
     position: absolute;
     top: -10px;
     left: 5px 
}

p#vtip strong {
   padding-bottom: 10px;
}

p#vtip {
   margin: 5px 10px 0;
}

p#vtip .vtip-close {
   background-image: url("../../images/close.png");
   background-repeat: no-repeat;
   position: absolute;
   right: 5px;
   top: 5px;
   width: 16px;
   height: 16px;
}
