/* COLORS */
/*  dark green:   --e-global-color-ec930a1
*   light green:  --e-global-color-a6d091f
*   accent red:   --e-global-color-accent
*/

/* GENERAL ----------------------------------------------------------------*/
#form_container{
  padding-bottom: 35px;
  font-family: 'Oswald', Sans-serif;
}

.form_title{
  visibility: hidden;
  height: 0;
  margin: 0;
}

.flex_row{
  display:flex;
  flex-direction: row;
}

.flex_column{
  display:flex;
  flex-direction: column;
}

.centered_text{
  text-align:center;
}
p.centered_text{
  margin-bottom: 0;
}

#form_container .page_title {
  font-size: 36px;
  line-height: 50px;
}
@media only screen and (max-width: 768px) {
  #form_container .page_title {
    font-size: 28px;
    line-height: 40px;
  }
}

.title_has_star {
  margin-bottom: 0;
}

.tab {
  display: none;
  min-height: 460px;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .tab {
    min-height: 500px;
  }
}
.centered_content{
  flex: 1 1 auto;
  justify-content: center;
}

.checkbox_container{
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  margin-bottom: 50px;
  margin-top: 30px;
}

.checkbox {
  flex: 0 1 calc(20% - 50px);
  margin: 25px;
  text-align:center;
}

.checkbox label {
  text-indent: -20px;
  width: 100%;
  min-width: 170px;
  margin: auto;
  height: 66px;
  padding: 0px 0px 0px 20px;
  border: 3px solid var(--e-global-color-text);
  border-radius: 0px 0px 0px 20px;
  font-family: 'Oswald', Sans-serif;
  font-size: 21px;
  color: var(--e-global-color-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 116%;
  cursor:pointer;
}
@media only screen and (max-width: 768px) {
  .checkbox label {
    min-width: 150px;
    font-size:18px;
  }
  .checkbox {
    margin: 10px;
  }
}


.checkbox label.checked {
  background: var(--e-global-color-text);
  color: #FFF;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px 0px 0px 20px;
}
.checkbox label input[type="checkbox"] {
  display:none;
}

/* HIDE ARROWS ON NUMBER INPUT */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.invalid {
  color:#B94A48 !important;
}

/* ERRORS -----------------------------------------------------------------*/
#error_container{
  display:inline;
}
.error_notice {
  color: #B94A48;
  margin-bottom: 0;
  text-align:center;
  height: 0;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}

.info_notice {
  color: #50B156;
  margin-bottom: 0;
  text-align:center;
  height: 0;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  margin-bottom: 15px;
}
.info_notice.show {
  height: 30px;
}

.show_error{
  height: 30px;
}
#customer_error.show_error {
  height:40px;
}
@media only screen and (max-width: 768px) {
  #customer_error.show_error {
    height:80px;
  }
}

/* NAVIGATION -------------------------------------------------------------*/
.nav_container{
  display:flex;
  justify-content: center;
  gap: 50px;
  margin-top:50px;
}
@media only screen and (max-width: 768px) {
  .nav_container{
    gap: 15px;
    margin-top:50px;
  }
}

/* BUTTONS ---------------------------------------*/
#nextBtn.form_btn,
#prevBtn.form_btn {
  box-shadow: none;
  border-radius: 50px;
  padding: 10px 70px;
  border: 2px solid var(--e-global-color-ec930a1);
}

#nextBtn.form_btn {
  background-color: var(--e-global-color-ec930a1);
}

#prevBtn.form_btn {
  background-color: var(--e-global-color-a6d091f);
  color: var(--e-global-color-ec930a1);
}

@media only screen and (max-width: 768px) {
  #nextBtn.form_btn,
  #prevBtn.form_btn {
    padding: 10px 40px;
  }
}

/* HOVER */
#nextBtn.form_btn:hover {
  background-color: #fff;
  color: var(--e-global-color-ec930a1);
}

#prevBtn.form_btn:hover {
  background-color: var(--e-global-color-ec930a1);
  color: #fff;
}

/* FOCUS */
#nextBtn.form_btn:focus,
#prevBtn.form_btn:focus:hover {
  color: #fff;
}
#prevBtn.form_btn:focus,
#nextBtn.form_btn:focus:hover{
  color: var(--e-global-color-ec930a1);
}

/* PAGINATION ------------------------------------*/
#step_container,
#progress_bar{
  border-radius: 15px;
  height: 15px;
}
#step_container{
  max-width: 700px;
  margin: 35px auto;
  border: none;
  height:15px;
  background:#fff;
}
#progress_bar{
  width: 0%;
  background: #50B156;
  transition: 0.5s ease-in-out;
}

/* PAGE 3 DATE -------------------------------------------------------------*/
#datepicker_container{
  display:grid;
  grid-template-columns: 50% 50%;
  max-width: 540px;
  height: 275px;
  border: 3px solid #3B3B3A;
  margin: 30px auto 50px;
}

@media only screen and (max-width: 768px) {
  #datepicker_container{
    display:grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
    height: 550px;
    margin: 30px auto 50px;
  }
}

#datepicker_output_container{
  background-color: #3B3C39;
  justify-content: center;
  gap: 15px;
}
#datepicker_output_container img{
  height: 45px;
  width: 45px;
  margin-bottom: 5px;
}
.datepicker_output{
  align-items:center;
}
.datepicker_date_output{
  overflow: hidden;
  resize: none;
  font-size: 24px;
  color: #FFF;
  background: transparent;
  margin: 0px auto;
  border: 0px;
  box-shadow: none;
  max-width:240px;
  font-family: 'Oswald', Sans-serif;
  text-align:center;
  padding: 0;
  height: 70px;
}

.datepicker,
.datepicker-inline{
  height:100%;
  width:100%;
}

#datepicker_inline .datepicker{
	border: 0px solid !important;
	border-radius: 0px !important;
}
#datepicker_inline .datepicker--day-name{
	color: #3B3B3A;
	font-weight: 600;
}
#datepicker_inline .datepicker--cell.-selected-{
	background: #3B3B3A;
}
#datepicker_inline .datepicker--cell.-in-range-{
	background: #ebebeb;
}

#time_selection {
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
  color: #FFF;
  background: #3B3B3A;
  border: 0px;
  box-shadow: none;
  text-align-last: right;
  font-size: 24px;
  width: 75px;
  justify-self: end;
  float: right;
  padding:0;
  font-family: 'Oswald', Sans-serif;
  cursor:pointer;
}

.time_text {
  color: #FFF;
  font-family: 'Oswald', Sans-serif;
  font-size: 24px;
  margin-left:4px;
  position: relative;
}
/*
.time_text::after {
  content: url('https://catermatch.me/wp-content/uploads/2022/04/chevron-down-medium.svg');
  position: relative;
  top: 4px;
  padding-left: 10px;
}
*/
/* PAGE 2 WISHES -------------------------------------------------------------*/
#checkbox_container_wishes {
  max-width: 700px;
  margin: auto;
}
#checkbox_container_wishes .checkbox {
  flex: 0 1 calc(33% - 50px);
}

/* PAGE 4 ATTENDANCE ---------------------------------------------------------*/

#attendance_subcontainer {
  margin: 30px auto 50px;
}

.input_icon {
  width: 80px;
  height:80px;
}

.input_text[type="number"] {
  border: 3px solid var(--e-global-color-text); 
  background: var(--e-global-color-a6d091f);
  text-align: center;
  color: var(--e-global-color-text);
  font-size: 48px;
  height: 80px;
  font-family: 'Oswald', Sans-serif;
  line-height: 1.3;
  width: 350px;
}
@media only screen and (max-width: 768px) {
  .input_text[type="number"] {
    width: 100%;
  }
}

.input_text[type="number"]:focus {
  outline:none;
}

.input_text[type="number"]::placeholder,
.input_text[type="number"]::-webkit-input-placeholder {
  font-size: 24px;
  position: relative;
  top: -13px;
}
@media only screen and (max-width: 768px) {
  .input_text[type="number"]::placeholder,
  .input_text[type="number"]::-webkit-input-placeholder {
    font-size: 18px;
  }
}

/* PAGE 5 BUDGET ---------------------------------------------------------*/

.input_container{
  max-width: 430px;
  margin: auto;
}
.input_container:not(:last-child){
  margin-bottom: 20px;
}

.radio_selection_container{
  justify-content: center;
  margin-bottom: 20px;
}

.radio_selection_container input {
  text-transform: none;
}

.budget_tab .input_container{
  max-width:480px;
}
.budget_tab .input_container input{
  width:360px;
}
@media only screen and (max-width: 768px) {
  .budget_tab .input_container input{
    width:100%;
  }
}

.radio_selection_container label {
  cursor: pointer;
  text-indent: -20px;
  margin:25px;
  padding: 10px 15px 10px 35px;
  border: 3px solid var(--e-global-color-text);
  border-radius: 0px 0px 0px 20px;
  font-family: 'Oswald', Sans-serif;
  font-size:16px;
  color: var(--e-global-color-text);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 6px #00000029;
  text-transform:none;
}
@media only screen and (max-width: 768px) {
  .radio_selection_container label {
    margin: 15px;
    text-indent: 0px;
    padding: 10px 5px 10px 20px;
  }
}

.radio_selection_container label.checked {
  background: var(--e-global-color-text);
  color: #FFF;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 0px 0px 0px 20px;
}

.hidden {
  display:none;
}

.radio_selection_container input {
  display:none;
}

.budget_input.input_text[type="number"],
.budget_output.input_text[type="number"] {
  border-right:0;
}

.input_currency{
  width: 40px;
  height: 80px;
  font-size: 32px;
  border: 3px solid var(--e-global-color-text);
  border-left:0;
  display:flex;
  align-items:center;
  justify-content: center;
}

/* PAGE 6 INFO ---------------------------------------------------------*/
#radio_uber_container{
  margin-top:50px
}

.info_asterisk{
  color:var(--e-global-color-accent);
}

.info_radio{
  display:grid;
  grid-template-columns: 50% 50%;
}
@media only screen and (max-width: 1200px) {
  .info_radio {
    grid-template-columns: 100%;
  }
  .info_radio:not(:last-child) {
    margin-bottom: 40px;
  }
  .info_radio .flex_row{
    justify-content: center;
  }
}

.page_further_information h3 {
  font-weight: 600;
  text-transform:uppercase;
  font-size:25px;
  font-family: "Oswald", Sans-serif;
  margin-bottom: 0;
  max-width: 500px;
}

.info_heading_container{
  display:flex;
  align-items:center;
}
@media only screen and (max-width: 1200px) {
  .info_heading_container {
    justify-content: center;
  }
  .page_further_information h3{
    text-align: center;
    
  }
}
@media only screen and (max-width: 768px) {
  .page_further_information h3{
    font-size: 20px;
    max-width: 300px;
    margin-bottom: 15px;
  }
}

.info_radio input {
  display: none;
}

.info_label_container {
  justify-content:flex-end;
}

.info_choose {
  background-repeat: no-repeat;
  background-position: center top 15px;
  fill: #3B3B3A;
  padding-left: 20px;
  text-indent: -20px;
  border-radius: 0px 0px 0px 20px;
  border: 3px solid #3B3B3A;
  font-size: 20px;
  height: 100px;
  padding-bottom: 10px;
  width: 130px;
  margin: 25px;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor:pointer;
}

.info_choose.checked {
  fill: #ffffff;
  background: #3B3B3A;
  color: #FFF;
  height: 100px;
  width: 130px;
  border-radius: 0px 0px 0px 20px;
  box-shadow: 0px 3px 6px #00000029;
  background-repeat: no-repeat;
  background-position: center top 15px;
}

@media only screen and (max-width: 768px) {
  .info_choose {
    margin: 5px;
    width: 100px;
    height: 100px;
    font-size: 18px;
  }
  .info_choose.checked {
    width: 100px;
    height: 100px;
  }
}

.info_yes{
  background-image: url(https://catermatch.me/wp-content/uploads/2020/10/thumbsup-dark.svg);
  background-size: 25%;
}
.info_yes.checked{
  background-image: url(https://catermatch.me/wp-content/uploads/2020/10/thumbsup.svg);
  background-size: 25%;
}

.info_no {
  background-image: url(https://catermatch.me/wp-content/uploads/2020/10/thumbsdown.svg);
  background-size: 25%;
}
.info_no.checked{
  background-image: url(https://catermatch.me/wp-content/uploads/2020/10/thumbsdown-white.svg);
  background-size: 25%;
}

.info_maybe {
  background-image: url(https://catermatch.me/wp-content/uploads/2021/08/2021_07_14_Catermatch_Icon_Nicht_sicher_4.svg);
  background-size: 35px 30px;
}
.info_maybe.checked{
  background-image: url(https://catermatch.me/wp-content/uploads/2021/08/2021_07_14_Catermatch_Icon_Nicht_sicher_white.svg);
  background-size: 35px 30px;
}
@media only screen and (max-width: 768px) {
  .info_yes,
  .info_no,
  .info_yes.checked,
  .info_no.checked {
    background-size: 35%;
  }
}

/* PAGE 7 CONTACT DETAILS ---------------------------------------------*/
.page_contact_details {
  max-width:700px;
  margin:auto;
}

.final_paragraph{
  max-width: 450px;
  margin: 0 auto;
}
.loader_container {
  display:none;
  width: 40px;
  height: 40px;
  position: absolute;
  right: -5px;
  top: -4px;
}
@media only screen and (max-width: 768px) {
  .loader_container {
    top:33px;
  }
}

#details_form_container #customer_email{
  margin-bottom: 0;
}

.required_notice {
  margin-top: 10px;
  font-size: 14px;
}

.invalid_field::placeholder {
  color:#B94A48 !important;
}

.select_customer {
  margin-top: 50px;
  margin-bottom: 30px;
  gap: 50px;
  justify-content: center;
  align-items: baseline;
}
@media only screen and (max-width: 768px) {
  .select_customer {
    margin-bottom: 10px;
    gap: 20px;
    justify-content: space-between;
  }
}

.details_customer_select{
  display:flex;
  gap: 25px;
}

.details_customer_select label{
  margin:0;
  text-indent: -15px;
  width: 80px;
}

.page_contact_details h3 {
  font-family: "Oswald",Tahoma,sans-serif;
  font-size: 24px;
  text-transform:uppercase;
  margin-bottom:30px;
}
.page_contact_details .form_switch_heading {
  margin-bottom:0;
}

#details_form_container input,
#details_form_container textarea {
  line-height: 1.5;
  border-color: #BFC3C8;
  background-color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  font-family: "Oswald",Tahoma,sans-serif;
}
#details_form_container input {
  height: 32px;
}
#details_form_container textarea{
  outline: none;
  vertical-align: top;
  resize: vertical;
}

#details_form_container input::placeholder,
#details_form_container textarea::placeholder {
  color: #A1A1A1;
  font-weight: 300;
  font-family: "Lato", Sans-serif;
}
#details_form_container input:focus,
#details_form_container textarea:focus {
  outline:none;
}

#details_form_container input:not(:last-child) {
  margin-bottom: 20px;
}

.full_width_input {
  width: 100%;
}

.half_width_input {
  display: inline-block;
  width:49%;
  float: left;
}

.left_input {
  margin-right: 1%;
}
.right_input {
  margin-left: 1%;
}

.customer_input {
  align-items:center;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .customer_input {
    flex-direction:column;
    align-items: flex-start;
    gap: 10px;
  }
}

.customer_email{
  flex: 1 1 30%;
}

.details_form {
  transition: 0.5s ease-in-out;
  overflow: hidden;
}

.details_form:not(.form_hidden) {
  height: 570px;
}

.form_hidden {
  height: 0;
}

.switch_container {
  gap: 25px;
  flex-flow: wrap;
  margin-top:30px;
}

.form_switch {
  display:none;
}

.form_switch_span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
  vertical-align: middle;
}

.form_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d2d2d2;
  transition: .4s;
  border-radius: 30px;
}

.form_switch:checked + .form_switch_span .form_slider {
  background-color: #50b156;
}

.form_slider:before {
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 1px;
  bottom: 1px;
  background-color: white;
  transition: .4s;
  box-shadow: 0 2px 6px rgb(41 58 82 / 31%);
}

.form_switch:checked + .form_switch_span .form_slider:before {
  transform: translateX(15px);
}

/* COUPON */
#coupon_container{
  display: none;
  flex-direction: column;
  align-items: center;
  margin: 50px 0;
  display:none;
}

input#coupon {
  width:100%;
  line-height: 1.5;
  border-color: #BFC3C8 !important;
  color: #666;
  background-color: #fff;
  font-size: 14px;
  padding: 15px;
  font-family: "Oswald",Tahoma,sans-serif;
  text-transform:uppercase;
}

input#coupon::placeholder {
  color: #A1A1A1;
  font-weight: 300;
  font-family: "Lato", Sans-serif;
  text-transform: initial;
}

input#coupon:focus {
  outline: none;
}

.coupon_input_container {
  padding: 20px 15px;
  width:100%;
  border: 3px solid var(--e-global-color-text);
}