/*
Theme Name: kpot theme
Author: kpot
Author URI: https://kpot.be/
Version: klant-v1;
*/

/* IE FIX (omdat die nieuwe tags niet kent) */
main,
section,
article {
    display: block;
}

/* EDIT ICON */
.editpost{
  position: fixed;
  top: 1vw;
  right: 1vw;
  margin: 0;
  z-index: 999999;
}
.editpost a{
  background-image: url(assets/img/edit.png);
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
}
.editpost a span{
  display: none;
}

/* GENERAL */
html{
  scroll-behavior: smooth;
}
body {
  -webkit-text-size-adjust: 100%;
  -webkit-animation: fadein 1s;
          animation: fadein 1s;
          overflow:hidden;
}
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.grecaptcha-badge{
	display: none;
}
body, label, input, textarea, select, button {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}
h1, h2, h3, h4, h5, h6{
  font-family: Arial, sans-serif;
}
img{
  width: 100%;
  height: auto;
}
.hidden_title{
  display: none;
}


/* LINK ONDERLIJN ANIMATIE */
a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: #000;
}
a:not(.button)::after,
a:not(.button) .hover_arrow_tekst::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #3D6C5C;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
a:not(.button):hover::after,
a:not(.button) .hover_arrow_tekst:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.site_logo a::after{
  display: none;
}


/* LOADINGANIMATION */
.animateOnLoad,
.wp-block-column {
  -webkit-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.animateOnLoad.load,
.wp-block-column.load {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}


/* HEADER */
.site_logo a{
  background-image: url(assets/img/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 100px;
  height: 100px;
}
.site_logo a>span{
  display: none;
}

.site_header{
  background-color: lightblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* HAMBURGE-MENU */
#nav-icon {
  width: 30px;
  height: 22px;
  position: relative;
  margin: 15px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display:none;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span{
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2) {
  top: 9px;
}

#nav-icon span:nth-child(3) {
  top: 18px;
}

#nav-icon.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}

#nav-icon.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 21px;
  left: 0px;
}

@media screen and (max-width: 800px) {
  #nav-icon {
    display:block;
  }
  .site_nav{
    display:none;
  }
}











.site_header{
  display:none;
}
.onthaal_container{
  display:flex;
  flex-flow:wrap;
  margin: 100px 50px 100px 100px;
  gap:10%;
}
.onthaal_container .left{
  width:45%;
  /* background-color:lightpink; */
}
.onthaal_container .right{
  width:45%;
  /* background-color:lightblue; */
}

h1, h2{
  font-family: "Indiana", Arial, sans-serif;
  font-weight: 700;
  font-size:50px;
  line-height: 1.075em;
  margin-bottom: 20px;
}

p, a, span, div, input, label, body, textarea, select{
  color: #000;
  line-height:1.33;
  font-size:15px;
  font-family: "Wagram", Arial, sans-serif;
}



input[type=email], input[type=tel], input[type=text], select, textarea {
  -webkit-appearance: none;
  background-color: #ede8b9;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  display: block;
  float: none;
  font-size: 14px;
  font-weight: 500;
  height: 26px;
  line-height: 1.1;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 3px 11px;
  transition: box-shadow .3s linear, color .3s linear;
  width: 100%;
  max-width: 400px;
}
.wpcf7-form-control-wrap{
    margin-bottom: 25px;
    display: block;
}

.form-col label{
  display:none;
}
.wpcf7 input::placeholder {
    color: #757575; /* change this to your desired color */
    opacity: 1;      /* ensure full opacity (default is often 0.5) */
}

.btn, input[type=submit] {
  align-items: center;
  background-color: #570b25;
  border-radius: 20px;
  color: #ede8b9;
  display: inline-flex;
  flex-wrap: wrap;
  font-family: indiana, Arial, Noto Sans, sans-serif;
  font-size: 15px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  padding: 9px 28px;
  text-transform: uppercase;
  transition: background .3s linear, color .3s linear, box-shadow .3s linear;
  border: unset;
}

.container_bottom{
  height: 26vh;
  bottom: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: unset;
  transform: translateX(-50%);
  z-index: -1;
  background: url(assets/img/blue-shape-bg.svg);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 0 0 0 330px;
  width: 200% !important;
}

.decor-img{
  left: 15%;
  margin: 0;
  width: 330px;
  transform: none;
  position: absolute;
  top: -175px;
  z-index: 2;
}







.cf7-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}





.custom-select {
  position: relative;
  width: 100%;
  /* margin-bottom: 40px; */
}

.custom-select-trigger {
  padding: 12px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: white;
  background-color: #ede8b9;
  border: unset;
  color: #757575;
  font-size: 15px;
  max-width: 400px;
  padding: 8px 12px;
}

.custom-options {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  background: white;
  z-index: 20;
  background-color: #ede8b9;
    border: unset;
    color: black;
    font-size: 15px;
    max-width: 400px;
    padding: 8px 12px;
}

.custom-options.open {
  display: block;
}

.custom-options div {
  padding: 10px;
  cursor: pointer;
  background-color: #ede8b9;
  border: unset;
  color: #757575;
  font-size: 15px;
  max-width: 400px;
  padding: 8px 0px;
}

.custom-options div:hover {
  background: #f3f3f3;
}



.wpcf7 form .wpcf7-response-output, .wpcf7-not-valid-tip {
  border:unset;
  color:#570b25;
  font-size:9px;
  margin-top: 5px;
}








.wpcf7-response-output{
    display:none !important;
}

.cf7-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cf7-popup-content {
    background: white;
    padding: 30px 40px;
    border-radius: 6px;
    font-size: 18px;
    text-align: center;
    background-color: #EDE8B9;
}

.cf7-popup-content p{
  color: #00411d;
}