/* FORM ELEMENTS */
.cb-form__box {
  display: inline-block;
  /*width: 50%;*/
  width: 100%;
  background-color: var(--light-light-grey);
  border-bottom: solid 2px var(--grey);
  margin-bottom: 0.3125rem;
  padding: 0.3125rem 1rem;
}
.cb-form__box ::placeholder {
  color: var(--grey);
  font-size: 0.75rem;
}
.cb-form__box label {
  display: block;
  color: var(--grey);
  font-size: 0.75rem;
  line-height: 1em;
}
.cb-form__box input,
.cb-form__box select {
  background: transparent;
  border: none;
  height: 1.5625rem;
  width: 100%;
}
.cb-form__box textarea {
  background: transparent;
  border: none;
  width: 100%;
}
.cb-form .cb-hidden {
  visibility: hidden;
  height: 0;
  width: 0;
}
.cb-form__submit {
  width: 85%;
}
.cb-modal .cb-link--primary {
  float: right;
  padding: 0.8rem 3.5rem;
  margin-top: 0.5rem;
  margin-right: 0;
  background-color: var(--white);
  font-family: var(--font-secondary);
  font-size: 1rem;
  cursor: pointer;
}
.cb-modal .cb-link--primary:hover {
  background-color: var(--yellow);
}