/* custom checkbox styling start */
.chk-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;
}
.chk-container input {
  position: absolute;
  opacity : 0;
  cursor  : pointer;
  height  : 0;
  width   : 0;
}
.chk-container .chk-checkmark {
  position        : absolute;
  top             : 4px;
  left            : 0;
  height          : 20px;
  width           : 20px;
  background-color: #F5F3E6;
}
.chk-container:hover input~.chk-checkmark {
  background-color: #F5F3E6;
}
.chk-container input:checked~.chk-checkmark {
  background-color: #A29015;
}
.chk-checkmark:after {
  content : "";
  position: absolute;
  display : none;
}
.chk-container input:checked~.chk-checkmark:after {
  display: block;
}
.chk-container .chk-checkmark:after {
  left             : 6px;
  top              : 4px;
  width            : 5px;
  height           : 10px;
  border           : solid white;
  border-width     : 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  transform        : rotate(45deg);
}
.kacheln{
  display: flex;
  flex-basis: 100%;
  justify-items: stretch;
  flex-wrap: wrap;
}

.kacheln .kachel{
  display: inline-block;
  text-align: center;
  flex-basis: 31%;
  background-color: #F5F3E6;
  color: #9a8700;
  padding: 30px 15px;
  margin-right: 2%;
  min-width: 200px;
  max-width: 200px;
  margin-bottom: 15px;
  font-size: 22px;
}
.kacheln .kachel:not(:first){
  padding-right: 20px;
}

.kacheln .kachel .booking-price{
  display: block;
  width: 100%;
}

.kacheln .kachel .fake-radio-wrapper{
  display: flex;
  justify-content: center;
  justify-items: center;
  position: relative;
  width: 100%;
  margin: 0 0 20px 0;
}
.kacheln .kachel .fake-radio{
  margin: 0 auto;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  border: 2px solid lightgrey;
}
.kacheln .kachel .kachel-titel{
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  word-break: break-word;
  min-height: 60px;
  font-size: 22px;
  font-weight: bolder;

}


.kacheln .kachel .date-wrapper {
  font-weight: lighter;
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 15px;
}

.kacheln .kachel input:checked ~ .fake-radio-wrapper .fake-radio::before{
  content: "";
  background-color: #9a8700;
  border-radius: 50%;
  width: 16px;
  height:  16px;
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 3px;
  /* border: 3px solid black; */
}
.kacheln .kachel  input:checked ~ .fake-radio-wrapper .fake-radio{
  border-color: #9a8700;
}

.kacheln .kachel .booking-price{

  cursor:pointer;

}

.kacheln .kachel .booking-price.fat{
  cursor: default;
  font-weight: bold;
}

.not-clickable{
  pointer-events: none;
  opacity: 0.4;

}





/* custom checkbox styling end */



*{
  box-sizing: border-box;
}
.block-wrapper h1{
  margin-bottom: 20px;
  margin-right: 0px;
}


/* REGISTER */
.submit-wrapper{
  display: block;
  width: 100%;

}
#register-participants-form .btn-submit{
  float: right;
}
/* .btn-submit{
  cursor:pointer;
  float: right;
  padding: 10px 35px;
  background-color:#9a8700;
  color: white;
  border: none;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 700;

}

.btn-submit:hover{
  opacity: 0.8;
} */

.collapse-wrap{
  margin-top: 35px;
}
.collapse-label{
  left: 0px;
}
.collapse-label h2{
  /* margin-bottom: 15px; */
  margin: 0px;
  font-size: 18px;
  width: 100%;
  position: relative;
}
.collapse-wrap .hidden-input:checked ~ .form-container{
  display: flex;
  flex-direction: column;
}
.collapse-wrap .collapse-label h2::before{
  content: "+";
  position: absolute;
  right:15px;
}
.collapse-wrap .hidden-input:checked ~ .collapse-label h2::before{
  content: "-";
}
.collapse-wrap .form-container{
  display:none;
  padding-bottom: 15px;
}
.collapse-wrap h5, .event-wrapper .ev{
  display: block;
  flex-basis: 100%;
}
.event-wrapper{
  flex-basis: 100%;
  width:100%;
}

.collapse-wrap .personal-data-wrapper{
  display: inline-flex;
  align-content: flex-start;
  justify-content: stretch;
  flex-wrap: wrap;
  gap: 10px;
}
.collapse-wrap .personal-data-wrapper .p-col{
  display: inline-flex;
  flex-basis: 50%;
  flex-wrap: wrap;
}

.personal-data-wrapper .spot{
  flex-basis: 45%;
  flex-grow: 1;
  display: inline-block;
  min-width: 200px;
  max-width: 50%;
}
.personal-data-wrapper .spot:nth-child(2n - 1){
  padding-left: 0px;
}
.personal-data-wrapper .spot:nth-child(2n){
  padding-right: 0px;
}

.personal-data-wrapper.global-values .spot{
  min-width: 100%;
  max-width: 100%;
  flex: 1 1 100%;
  padding-left: 0px!important;
  padding-right: 0px!important;
}
.personal-data-wrapper.global-values .spot label{
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.personal-data-wrapper .global-value{
  flex:1 1 100%!important;
  padding-left: 0px!important;
  padding-right: 0px!important;
  width: 100%;
  flex-basis: 100%;
  min-width: 100%!important;
}


.spot .form-field{
  width: 100%;
  padding: 17px 0px 17px 10px;
  color: gray;
  background-color: #F5F3E6;
  border: none;
  min-height: 54px;
  font-size: 16px;
  text-indent: 0px;
  line-height:20px;
}

.spot select.form-field{
  display: block;
  /* font-size: 16px; */
  /* font-family: sans-serif; */
  /* font-weight: 700; */
  /* color: #444; */
  /* line-height: 1.3; */
  /* padding: .6em 1.4em .5em .8em; */
  width: 100%;
  max-width: 100%; 
  box-sizing: border-box;
  margin: 0;
  /* border: 1px solid #aaa; */
  /* box-shadow: 0 1px 0 1px rgba(0,0,0,.04); */
  /* border-radius: .5em; */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  /* background-color: #fff; */
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%239A8700%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  /* ,    linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); */
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
}

.spot select.no-triangle{
  background-image: none;
}

.spot select.form-field::-ms-expand {
    display: none;
}
.spot select.form-field:hover {
    /* border-color: #888; */
}
.spot select.form-field:focus {
    border-color: #aaa;
    box-shadow: 0 0 1px 2px rgba(59, 153, 252, .7);
    box-shadow: 0 0 0 2px -moz-mac-focusring;
    color: #222; 
    outline: none;
}
.spot select.form-field option {
    font-weight:normal;
}

.spot .form-field::placeholder{
  color: gray;
  font: 400 16px 'proxima-nova';
}
.spot-label{
  font-size: 12px;
  color: gray;
  position: relative;
  top: 4px;
  left: 2px;
}

#price-wrapper{
  width: 100%;
  display: block;
  margin-bottom: 30px;
}
#price-wrapper > small{
  color: lightgray;
  padding-left: 5px;

}
#price-wrapper > .formatted-price{
  width: 100%;
  display: block;
  background-color: white;
  color:#9A8700;
  text-transform: none;
  padding-left: 5px;
  font-size: 26px;
  margin-bottom: 0px;
  padding-bottom:0px;
}

.error_msg{
  font-size: 12px;
  color:red;
  width: 100%;
}
.success_msg{
  font-size: 12px;
  color: green;
  width: 100%;
}

#stripe-wrapper{
  padding-top: 10px;
  display: none;
  width: 100%;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  padding-left: 10px;
  border: 2px solid #A29015;
}
#stripe-wrapper .spot{
  flex-basis: 50%;
  padding-right: 10px;
}
#card-element {
  background-color: #F5F3E6;
  padding: 10px;
  margin-top: 15px;
  flex-basis: 100%;
  max-height: 35px;
  margin-right: 10px;
}
.btn-submit-stripe{
  padding: 10px 7px;
  flex-basis: 30%;
  width: 100%;
}
.card-button-wrapper{
  flex-basis: 50%;
  padding-right: 10px;
  padding-top:15px;
}

.close-button-wrapper{
  flex-basis: 100%;
  width: 100%;
  min-width: 100%;
}
#close-button{
  float: right;
  display: inline-block;
  max-width: 40px;
  padding: 3px;
  font-weight: bolder;
}

.register-participants-blur {
  filter: blur(1px);
   pointer-events: none;
}

/* .booking-price{
  text-transform: uppercase;
  padding: 2px 3px;
  margin: 0px 5px 0px 5px;
  border: 2px solid #A29015;
  border-radius: 5px;
  
  background-color: #F5F3E6;
  color: black;
}
.fat{
  background-color: #A29015;
  color: white;
  font-weight: bold;
  
} */

#success-after-book{
  display:none;
  margin-top:50px;
}
#success-after-book h2 {
  margin-bottom: 30px;
}

.h4-margin-bottom{
  margin-top: 30px;
  margin-bottom: 15px;
}



@media (max-width: 750px) {
  .spot, .btt-submit-stripe, #card-element {
   flex: 1 1 100%!important;
   max-width: 100%!important;
   padding-right: 0px!important;
   padding-left: 0px!important;
  }
  .card-button-wrapper{
    min-width: 100%;
    padding-top: 7px;
    padding-left: 0px;
  }
  #card-element{
    margin-right: 10px;
  }
}

/* Loadspinner */
/* Absolute Center Spinner */
#loading{
  display:none;
}
.loading {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Loadspinner  end*/

/* toaster */
/* The snackbar - position it at the bottom and in the middle of the screen */
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
/* toaster end */


@media(max-width: 500px){
  .kacheln .kachel{
    flex-basis: 100%;
    margin-right: 0px;
    max-width: 1000px;
  }
}



