body {
  background: var(--background);
}

/* HEADER */
header {
  z-index: 99;
  background: var(--background);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  font-size: 1.25rem;
  border-bottom: 1px solid rgb(204, 204, 204);
}
header .title {
  cursor: pointer;
  font-family: "Protest Strike", sans-serif;
  color: var(--title);
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 1;
}
header .driver-btn {
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: -moz-max-content;
  width: max-content;
  font-family: satoshi;
  font-size: 0.75em;
  padding: 1em;
  border-radius: 0.25em;
  background: var(--secondary);
  color: var(--primary);
}
header .driver-btn span {
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
}

/* MAIN */
main {
  display: flex;
  justify-content: center;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  font-family: Satoshi;
}
form input[type=text], form input[type=tel], form input[type=email], form input[type=url] {
  width: 100%;
}
form input[type=date] {
  max-width: 130px;
}
form input[type=time] {
  max-width: 70px;
}
form .company {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 1rem;
  border-radius: 0.5rem;
  background: #e6e6e6;
  box-shadow: 0 0 2rem -1.5rem #000;
}
form .company h3 {
  font-size: 1.3em;
  font-weight: bold;
}
form .company .contact {
  margin-left: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
form .company .contact h4 {
  margin-left: -0.5em;
  font-weight: bold;
}
form .order {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 1rem;
  border-radius: 0.5rem;
  background: #e6e6e6;
  box-shadow: 0 0 2rem -1.5rem #000;
}
form .order h3 {
  font-size: 1.3em;
  font-weight: bold;
}
form .order .order_datetime {
  display: flex;
  flex-direction: column;
}
form .order .contact {
  margin-left: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
form .order .contact h4 {
  margin-left: -0.5em;
  font-weight: bold;
}
form .trip {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  gap: 0.8rem;
  border-radius: 0.5rem;
  background: #e6e6e6;
  box-shadow: 0 0 2rem -1.5rem #000;
}
form .trip h3 {
  font-size: 1.3em;
  font-weight: bold;
}
form .trip textarea {
  width: 100%;
  height: 6em;
  resize: none;
}
form .trip #price {
  width: 74%;
  text-align: right;
}
form .trip #unit {
  width: 24%;
}
form input[type=submit] {
  cursor: pointer;
  width: 100%;
  padding: 0.5rem 0;
  border-radius: 0.25rem;
  border: none;
  background: var(--main);
  font-family: satoshi;
  font-size: 1em;
  font-weight: bold;
  transition: all 400ms;
}
form input[type=submit]:hover {
  opacity: 0.8;
}

/* FOOTER */
footer {
  font-family: Satoshi;
  line-height: 1;
  background: var(--secondary);
  color: var(--primary);
  width: 100%;
  position: relative;
  padding: 3rem 0.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
footer a {
  cursor: pointer;
}/*# sourceMappingURL=bon-de-commande.css.map */