.calculator {
  clear: both;
}


/* Time inputs */
.calculator {
  color: #01010a !important;
}

#calculator-form #time .time__inputs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6px;
}

#calculator-form #time p {
  color: #f50304;
  margin-bottom: 0;
}

#calculator-form #time #month-result {
  color: #01010a;
  font-family: 'Nunito Sans SemiBold', sans-serif;
}

#calculator-form #time label {
  border: 1px solid #d2d2d2;
  cursor: pointer;
  flex: 1;
  padding: 20px;
  text-align: center;
  max-width: 70px;
}

#calculator-form #time input {
  display: none;
}

/* km slider */

#km {
  margin: 1.5rem 0;
  width: 100%;
}

#km p {
  color: #f50304;
  margin-bottom: 0;
}

#km #km-result {
  color: #01010a;
  font-family: 'Nunito Sans SemiBold', sans-serif;
}

.slider {
  border-radius: 4px;
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  /* background: #d2d2d2; */
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  cursor: pointer;
  --background: #d2d2d2;
  --slider: #f50304;
  background: var(--background);
}

.slider:hover {
  opacity: 1;
}

.slider:focus {
  outline-color: transparent;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: #fff;
  cursor: grab;
  border-radius: 50%;
  border: 4px solid #f50304;
  box-shadow: 0 0 6px 0 #0000004d;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #f50304;
  cursor: pointer;
}

/* Result */
.result {
  color: #01010a;
  width: 95%;
  text-align: center;
  background: #eee;
  padding: 2rem 0;
  border-radius: 10px;
  font-weight: 600;
  transition: opacity 300ms;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 3rem;
  margin: 16px auto;
    box-shadow: 0px 8px 12px rgb(9 30 66 / 15%),
      0px 0px 1px rgb(9 30 66 / 30%);
}

.result p {
  color: #01010a;
  font-family: Nunito Sans Light, sans-serif;
  margin: 0;
  letter-spacing: 1px;
}

.result #noVat {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.result #noVatText {
  font-size: 1.25rem;
  color: #767575;
}
    

.result #vat {
  font-size: 0.85rem;
}

/* Contact form */
.contact-calculator__input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-calculator__input-group label {
  width: 100%;
}

.contact-calculator__input-group input {
  flex: 2;
}

.contact-calculator__input-group textarea {
  font-family: nunito sans light, sans-serif !important;
  color: #767575 !important;
  font-size: 16px !important;
  font-weight: 400;
  display: block;
  margin: 5px 0 0;
  box-sizing: border-box;
  width: 100% !important;
}

.selectrent_additional_fields {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.selectrent_additional_fields select {
  width: 100%;
  padding: 15px;
  color: #767575 !important;
}

#contact-calculator button {
  background-color: #f50304;
  border-radius: 45px;
  color: #fff;
  display: block;
  transition: all 300ms;
  text-transform: uppercase;
  margin: 0 auto;
  cursor: pointer;
  height: 40px;
  padding: 0 26px;
  border: none;
}

#contact-calculator button:disabled {
  color: white;
  border: 2px solid #818181;
  cursor: not-allowed;
  background-color: #767575;
}

#contactResponse {
  margin-top: 2rem;
  background-color: #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #01010a;

  display: none;
}

/* Hide car info that is no longer required */
.summary.entry-summary .price,
.summary.entry-summary .fineprint,
.summary.entry-summary .shoutout.clearfix,
.summary.entry-summary .offer_slogan {
  display: none;
}


/* Additional information tabs */
.single-product .tabs-nav {
  display: none;
}

.single-product #tab-additional_information {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.single-product #tab-additional_information table {
  margin: 0 !important;
  width: 30%;
}

.single-product #contact-section {
  /* width: 60%; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 120%;
  margin-left: -10%;
  margin-bottom: 140px;
}

.single-product #contact-users {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.single-product #contact-users div {
  margin-right: 1rem;
  position: relative;
  flex: 1;
}

.mit-contact-section-intro {
  font-size: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.single-product #contact-users .mit-contact-users-legend {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-top-right-radius: 20px;
  width: 80%;
  text-align: left;
  padding: 1rem 0;
}

.single-product #contact-users .mit-contact-users-legend h2 {
  font-size: 1rem;
}

.single-product #contact-users .mit-contact-users-legend h3 {
  font-size: 0.8rem;
}

.single-product #contact-users div:last-child {
  margin-right: 0;
}

.single-product #contact-users img {
  height: 300px;
  object-fit: cover;
}

.single-product #contact-section h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
}

.single-product #contact-section hr {
  margin: 2rem 0;
}

.single-product #contact-users .email {
  display: block;
  margin-top: 1rem;
  font-family: 'Nunito Sans Light', sans-serif;
}

.single-product #contact-section {
  min-height: 700px;
}

.single-product #contact-section .mit-contact-flex-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
  margin-right: 2rem;
  width: 50%;
  margin-right: 10%;
}

.single-product #contact-section .mit-contact-flex-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 2rem;
  flex: 1;
  height: 600px;
}

.mit-contact-flex-2 h2 {
  margin-bottom: 2rem;
}

/* Loader */
.loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #f50304;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: 1rem auto;
}

input#Agb {
  margin-right: 26px;
  margin-top: -36px;
}



#calculator-form #time label {
  box-shadow: rgb(163 163 163) 1px 1px 3px;
  border: none !important;
  margin: 0 5px;
  caret-color: transparent;
  padding: 13px 0px;
  color: #818181;
}




.contact-calculator__input-group.agb>#Agb {
  visibility: hidden;
}

.contact-calculator__input-group.agb>#Agb:after {
  visibility: visible;
}




form#contact-calculator input#name,
form#contact-calculator input#email,
form#contact-calculator input#telefon {
  font-family: 'Nunito Sans Light', sans-serif !important;
  color: #767575 !important;
  font-size: 16px !important;
  font-weight: 400;
}

div#CalcInfo p {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding-left: 4px;
  letter-spacing: 1px;
  color: black;
}

.result p#verfuegbar span {
  font-size: 12px;
}


/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* MEDIA QUERIES*/
@media screen and (max-width: 767px) {

  .single-product #contact-users .mit-contact-users-legend {
    padding: 8px 0;
  }

  #calculator-form #time .time__inputs {
    flex-wrap: wrap !important;
  }

  #calculator-form #time label {
    max-width: 50px !important;
    min-width: 50px;
    margin-bottom: 10px;
  }


  div#tab-additional_information {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .single-product #tab-additional_information table {
    width: 100% !important;
    margin-bottom: 50px !important;
  }

  .single-product #contact-section {
    width: 100%;
  }


}

@media screen and (max-width: 600px) {

  /* table */
  div#tab-additional_information {
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .single-product #tab-additional_information table {
    width: 100% !important;
    margin-bottom: 50px !important;
  }



  /* users */
  .single-product #contact-section {
    width: 100%;
  }

  .single-product #contact-users {
    display: flex;
    flex-wrap: wrap;
  }

  div#jochan-heijmink, div#denise-sturm {
    width: 100% !important;
    margin-bottom: 40px;
  }

   div#patrick-schmoellerl{
    width: 100% !important;
  }

  #calculator-form #time .time__inputs {
    justify-content: flex-start;
  }

}

@media screen and (max-width: 480px) {

  .contact-calculator__input-group.agb label {
    font-size: 12px;
    line-height: 18px;
    min-width: 50px;
  }

  .result #noVat {
    display: flex;
    flex-wrap: wrap;
  }

  .result #noVat #noVatSum {
    width: 100%;
    text-align: center;
  }

  .result span#noVatText {
    width: 100%;
    text-align: center;
  }


}

@media screen and (max-width: 767px) {
.selectrent_additional_fields {
    display: block;
  }

  .selectrent_additional_fields #laufzeiten {
    margin-bottom: 1.5rem;
  }
}