:root {
  --black: #000000;
  --white: #FFFFFF;
  --yellow: #CCCCCC;
  --offwhite: #EEEEEE;
}

.logo-form {
  width: 7.5vw;
  min-width: 150px;
  padding: 25px;
}
input[type=text], input[type=email], select {
  width: 100%;
  height: 40px;
}
.form-group, label, select, option, textarea, p {
  font-size: 14px;
}
#message, #commentaires, #comments {
  width: 100%;
  height: 120px;
}
.form-title {
  font-size: 18px!important;
  background-color: black;
  color: white;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}
.form-title a {
  color: #CCCCCC;
}
.form-subtitle {
  font-size: 18px!important;
  background-color: #e4e4e4;
  color: black;
  padding: 10px;
  margin: 25px 0!important;
}
.form-button {
  width: 25%;
  height: 40px;
}
.form-error-title {
  display: inline-block;
  margin-bottom: 0!important;
  padding-left: 12px;
}
.form-error-ul {
  margin: 10px 0!important;
}
.hunnybunny {
  display: none;
}
.invoice thead tr th {
  background-color: var(--yellow);
}
.invoice tfoot tr td:nth-child(2),
.invoice tfoot tr td:nth-child(3) {
  background-color: var(--yellow);
}
.invoice {
  font-size: 14px;
}
.table-sm th, .table-sm td {
  padding: 6px 0;
  min-width: 80px;
}
.form-container {
  max-width: 720px;
  padding: 0;
  flex-grow: 1;
}
.form-container-reg {
  padding: 0;
  flex-grow: 1;
  margin-bottom: 24px;
}
.form-heading {
  font-size: 18px!important;
  background-color: #fff;
  color: #000;
  padding: 15px;
  margin: 15px 0 15px 0;
  font-weight: bold;
  text-transform: uppercase;
}
.form-heading a {
  color: #CCCCCC;
}
.form-subsubheading {
  padding-top: 15px;
  padding-bottom: 12px;
  font-size: 16px;
  text-decoration: underline;
}
.form-content {
  background-color: var(--offwhite);
  padding: 60px;
  margin-bottom: 30px;
}
.form-content-reg {
  width: 100%;
  display: flex;
  flex-direction: row;
  column-gap: 2%;
  margin: 0;
  padding: 0;
}
.form-content-reg-left {
  width: 64%;
  background-color: var(--offwhite);
  padding: 2%;
}
.form-content-reg-right {
  width: 34%;
  background-color: var(--offwhite);
  padding: 2%;
}

@media screen and (max-width: 992px) {
  .form-content-reg {
    flex-direction: column;
    row-gap: 24px;
  }
  .form-content-reg-left {
    width: 100%;
  }
  .form-content-reg-right {
    width: 100%;
  }
}
.form-content-message {
  background-color: var(--offwhite);
}
input[type=submit] {
  background-color: var(--black);
  font-weight: bold;
  border: none;
  color: white;
  text-decoration: none;
  cursor: pointer;
}
.unclickable {
  pointer-events: none;
}
#submitBtn {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border: none;
  width: 100%;
}
@media screen and (min-width: 640px) {
  #submitBtn {
    width: 34%;
  }
}

/* LOADER */

.lds-ring {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;

}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* CUSTOM CONTROL */

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #000;
  border: none;
}
.custom-control-label::before {
  background-color: #ccc;
  border: none;
}
.custom-control-textarea {
  width: 100%;
  height: 96px;
  min-height: 48px;
}