/* GENERAL */
fieldset {
  border-style: none;
  margin-bottom: 3rem;
}

label {
  font-family: var(--font);
  font-size: 1.6rem;
  margin-top: 14px;
  color: var(--color-charcoal-dark);
  text-align: left;
}
label.marginTop20 {
  display: block;
  margin-top: 2.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  label {
    font-size: 1.5rem;
  }
}

textarea,
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
option {
  font-family: var(--font);
  background-color: #ffffff;
  color: var(--color-charcoal);
  font-size: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem;
  margin: 0.3rem 0rem 0.3rem 0rem;
  border-style: solid;
  border-color: #604b44;
  border-width: 1px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

#bookingForm textarea,
#bookingForm input[type="text"],
#bookingForm input[type="password"],
#bookingForm input[type="number"],
#bookingForm input[type="date"],
#bookingForm select,
#bookingForm option {
  background-color: #69544d;
  color: #ffffff;
}
#selfDriveForm textarea,
#selfDriveForm input[type="text"],
#selfDriveForm input[type="password"],
#selfDriveForm input[type="number"],
#selfDriveForm input[type="date"],
#selfDriveForm select,
#selfDriveForm option {
  background-color: #69544d;
  color: #ffffff;
}

.formInputRadio {
  font-family: var(--font);
  color: var(--color-charcoal);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

input[type="radio"] {
  margin: 10px 0px;
}

input.small {
  padding: 3px;
  font-size: 12px;
  background-color: transparent;
  color: var(--color-charcoal);
}

::placeholder {
  color: white;
  opacity: 0.6; /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: white;
  opacity: 0.6;
}

#refresh {
  color: var(--color-gold);
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  cursor: hand;
}
#refresh:hover {
  color: var(--color-gold-light);
}

/*Errors - Feedback*/

/*form label errors*/
p.error {
  margin: 0rem;
  font-size: 1.2rem;
  color: var(--color-error);
  text-align: left !important;
} /*field required*/

/*Feedback Div*/
#errorADiv {
  position: absolute;
  top: 150;
  right: 2rem;
  min-width: 26.3rem;
  max-width: 26.3rem;
  margin: 1rem;
  background-color: #ffffff;
  border-style: solid;
  border-color: var(--color-charcoal-light);
  border-width: 0.1rem;
  padding: 0.8rem;
  border-radius: 0.8rem;
  z-index: 200;
}
.errorA_p {
  font-size: 1.2rem;
  margin: 0rem 0rem 0.5rem 0rem;
  text-align: left;
}

/*form feedback errors*/
.throw_error {
  font-size: 1.2rem;
  color: var(--color-error);
  margin: 0rem 0rem 0.5rem 0rem;
  text-align: left;
} /*form feedback error*/
#message {
  text-align: left;
  color: var(--color-charcoal-dark);
  font-size: 1.3rem;
}
/*form feedback error*/

.successMsg {
  background-color: #fff;
  border-style: dotted;
  border-color: #80b641;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px;
  /* padding: 1rem 1rem 1rem 3.5rem;  */
}

.errorMsg {
  background-color: #fff;
  border-style: dotted;
  border-color: #ff0000;
  border-width: 2px;
  border-radius: 5px;
  padding: 12px 15px;
}
#message p {
  margin: 0px;
  font-size: 1.4rem;
  text-align: center;
  color: var(--color-charcoal);
}

#message p.big {
  margin: 0px 0px 5px 0px;
  padding: 8px;
  font-size: 1.7rem;
  text-align: center;
  color: var(--color-charcoal);
  background-color: #fff;
  border-style: dotted;
  border-color: var(--color-charcoal);
  border-width: 1px;
  border-radius: 4px;
}

.checkmark {
  text-align: center;
}

/* SELF DRIVE MULTIPHASE FORM */

/*self drive section*/
div.divideH {
  color: var(--color-white);
  font-size: 1.6rem;
  padding-top: 10px;
  padding-bottom: 10px;
  border-style: dotted;
  border-width: 0px 0px 1px 0px;
}
@media only screen and (max-width: 550px) {
  div.divideH {
    font-size: 1.5rem;
  }
}

#formPhase1 {
  display: block;
}
#formPhase2 {
  display: none;
}
#formPhase3 {
  display: none;
}
#formPhase4 {
  display: none;
}
#formPhase5 {
  display: none;
}

.formPhaseIcon {
  width: 95px;
  float: right;
  margin: -110px 0px 15px 15px;
}

@media only screen and (max-width: 1000px) {
  .formPhaseIcon {
    width: 60px;
    margin: -80px 0px 15px 15px;
  }
}
@media only screen and (max-width: 550px) {
  .formPhaseIcon {
    width: 60px;
    margin: -65px 0px 0px 10px;
  }
}

.optionsWrapper {
  background-color: #69544d;
  width: 100%;
  padding: 5px;
  margin: 0px auto;
}

.bottomBar {
  overflow: hidden;
  padding-bottom: 20px;
}

.phaseButton {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  cursor: hand;
  transition: 0.3s;
}
.phaseButton:hover {
  opacity: 0.7;
}
.phaseButton-next {
  float: right;
  padding-right: 25px;
  background-image: url("../images/arrow_form-next.png");
  background-repeat: no-repeat;
  background-position: right center;
}
.phaseButton-prev {
  float: left;
  padding-left: 25px;
  background-image: url("../images/arrow_form-previous.png");
  background-repeat: no-repeat;
  background-position: left center;
}

#selfBackArrow {
  cursor: pointer;
  cursor: hand;
  transition: 0.3s;
}
#selfBackArrow:hover {
  opacity: 0.7;
}

