/* 20231218154424 - v2 */
.gui,
.gui-block-linklist li a {
  color: #545555;
}

.gui-page-title,
.gui a.gui-bold,
.gui-block-subtitle,
.gui-table thead tr th,
.gui ul.gui-products li .gui-products-title a,
.gui-form label,
.gui-block-title.gui-dark strong,
.gui-block-title.gui-dark strong a,
.gui-content-subtitle {
  color: #545555;
}

.gui-block-inner strong {
  color: #989999;
}

.gui a {
  color: #009754;
}

.gui-input.gui-focus,
.gui-text.gui-focus,
.gui-select.gui-focus {
  border-color: #009754;
  box-shadow: 0 0 2px #009754;
}

.gui-select.gui-focus .gui-handle {
  border-color: #009754;
}

.gui-block,
.gui-block-title,
.gui-buttons.gui-border,
.gui-block-inner,
.gui-image {
  border-color: #d9d9d9;
}

.gui-block-title {
  color: #545555;
  background-color: #ffffff;
}

.gui-content-title {
  color: #545555;
}

.gui-form .gui-field .gui-description span {
  color: #545555;
}

.gui-block-inner {
  background-color: #f4f4f4;
}

.gui-block-option {
  border-color: #f9f9f9;
  background-color: #fdfdfd;
}

.gui-block-option-block {
  border-color: #f9f9f9;
}

.gui-block-title strong {
  color: #545555;
}

.gui-line,
.gui-cart-sum .gui-line {
  background-color: #ededed;
}

.gui ul.gui-products li {
  border-color: #f3f3f3;
}

.gui-block-subcontent,
.gui-content-subtitle {
  border-color: #f3f3f3;
}

.gui-faq,
.gui-login,
.gui-password,
.gui-register,
.gui-review,
.gui-sitemap,
.gui-block-linklist li,
.gui-table {
  border-color: #f3f3f3;
}

.gui-block-content .gui-table {
  border-color: #f9f9f9;
}

.gui-table thead tr th {
  border-color: #ededed;
  background-color: #fdfdfd;
}

.gui-table tbody tr td {
  border-color: #f9f9f9;
}

.gui a.gui-button-large,
.gui a.gui-button-small {
  border-color: #e2a73d;
  color: #ffffff;
  background-color: #e2a73d;
}

.gui a.gui-button-large.gui-button-action,
.gui a.gui-button-small.gui-button-action {
  border-color: #e2a73d;
  color: #ffffff;
  background-color: #e2a73d;
}

.gui a.gui-button-large:active,
.gui a.gui-button-small:active {
  background-color: #b48530;
  border-color: #b48530;
}

.gui a.gui-button-large.gui-button-action:active,
.gui a.gui-button-small.gui-button-action:active {
  background-color: #b48530;
  border-color: #b48530;
}

.gui-input,
.gui-text,
.gui-select,
.gui-number {
  border-color: #d9d9d9;
  background-color: #ffffff;
}

.gui-select .gui-handle,
.gui-number .gui-handle {
  border-color: #d9d9d9;
}

.gui-number .gui-handle a {
  background-color: #ffffff;
}

.gui-input input,
.gui-number input,
.gui-text textarea,
.gui-select .gui-value {
  color: #545555;
}

.gui-progressbar {
  background-color: #009754;
}

/* custom */
.padding-y-xxxl{
  padding-top: 100px;
  padding-bottom: 100px;
}
//Verberg API betaalmethode
.gui-checkout-payment-provider.gui-payment-provider-invoice{
		display: none !important;
}
.gui-payment-provider-invoice{
		display: none !important;
}
.payment-methods__item:last-child{
	display: none !important;
}
#gui-form-billing_address-streetname2{
  display: none !important;
  border: 1px solid red;
}
 .unit-cost{
  display: none !important;
}

@media only screen and (max-width:480px) {
  #slider .headline {height:auto!important;}
}



 .calc_holder {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
}

.calc_holder .form-group {
    padding: 0 15px;
}
  .calc_ul_result{
  	font-size:14px;
  }
  .calc_ul_result a{
  	text-decoration:underline;
    font-weight: bold;
  }
.calc-btn{
	padding:3px 14px !important;
  margin-bottom:5px !important;
  text-decoration:none !important;
}
.calculator-section {
	margin-bottom:10px;
  
}
  .calculator-section ul{
  	list-style-type: none;
    padding: 0;
  }
  .calc_product_item{
  		width:100%;
      padding: 0 15px;
    	
  }
  .calculator-section table{
  	margin-left: 16px;
  }
  .calc_product_item label{
  	margin-bottom:0;
  }
  .calc_product_item .desc{
  padding-left: 29px;
  }
  /* Customize the label (the container) */
.chechcontainer {
  display: block;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px !important
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.chechcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
}

/* On mouse-over, add a grey background color */
.chechcontainer:hover input ~ .checkmark {
  background-color: #94c020;
}

/* When the checkbox is checked, add a blue background */
.chechcontainer input:checked ~ .checkmark {
  background-color: #94c020;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.chechcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.chechcontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
  .table_product{
  	margin-bottom:10px;
  }
.grey{background:#eee;}
