/* Text Elements */

span.text-element.label {
  margin-bottom: 3px;
  padding-top: .335rem;
  padding-bottom: .35rem;
  background-color: #66af45;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

span.text-element.form-error {
  color: #db6e65;
  font-family: 'Roboto', cursive;
}

span.text-element {
  color: #333;
  font-size: 12px;
  font-family: 'Roboto', Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

/* Interaction Elements */

form.form-container.my-form {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  margin: 5vw auto;
  padding: 30px;
  min-height: 100px;
  max-width: none;
  max-height: none;
  border: .0625rem solid #c1c1c1;
  border-radius: 8px;
  background-color: #9a9a9a;
  box-shadow: rgba(0, 0, 0, .15) 0 20px 60px -5px;

  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
          align-self: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

select.select.select-field-1 {
  width: 80%;
}

/* Layout Elements */

body.body-1 {
  margin-right: 10px;
  margin-left: 10px;
  box-shadow: none;
}

label.label-container {
  padding-bottom: 16px;
}

label.label-container.TeammateContainer {
  margin-top: 0;
  width: 50%;
}

label.label-container.YNContainer {
  width: 20%;
}

@media screen and (min-width: 40rem) {
  /* Text Elements */

  span.text-element.label {
    background-color: #66af45;
  }

  /* Interaction Elements */

  form.form-container.my-form {
    max-width: none;
    background-color: #999;
    opacity: .99;
  }

  select.select.select-field-1 {
    width: 60%;
  }

  label.label-container.TeammateContainer {
    margin-right: 40px;
  }
}