/* order */
.notes {
  display: block;
  clear: both;
  width: 100%;
  text-align: center;
}

@media (max-width: 599px) {
  .notes {
    text-align: left;
  }
}

.cource  {
  margin: 0rem 0 2rem;
  border-radius: 10px;
  background-color: #f3f3d9;
}

.cource input {
  width: auto;
  height: 1px;
  margin: 0;
  padding: 0;
}

.cource .wpcf7-list-item {
  float: left;
  padding: 1rem;
}

.cource .last {
  margin-left: 4rem;
}

@media (max-width: 599px) {
  .cource .last {
    margin-left: 1rem;
  }
}

.cource .wpcf7-list-item [type="radio"] {
  opacity: 0;
}

.cource .wpcf7-list-item label {
  position: relative;
  padding-left: 2rem;
}

.cource .wpcf7-list-item label span::before {
  display: inline-block;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  border: 1px solid #ef821a;
  border-radius: 10px;
  background-color: #fff;
  transform: translatey(-50%);
}

.cource .wpcf7-list-item [type="radio"]:checked + span::before,
.cource .wpcf7-list-item [type="hidden"] + span::before {
  border-width: 7px;
}

/**/
.form-group {
  margin: 2rem 0;
}

label {
  display: block;
  margin: 0;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

.required {
  color: red;
}

input {
  display: block;
  width: 100%;
  height: auto;
  padding: 0.5rem 0 0.5rem 1rem;
  vertical-align: top;
  font-weight: 300;
  border: solid 1px #999;
  border-radius: 0.5rem;
  transition: 0.3s;
}

input::placeholder {
  color: #ccc;
}

input:focus {
  outline: none;
  border: solid 1px #ef821a;
  box-shadow: 0 0 5px 1px rgba(239,130,26, .5);
}

input:focus::placeholder {
  color: transparent;
}

.address-group {
  display: inline-block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.address-group input {
  display: block;
  width: 100%;
  height: auto;
  margin: 0.5rem 0;
  vertical-align: top;
  font-weight: 300 !important;
}

.address-group select {
  padding: 0.5rem;
  font-weight: 300 !important;
  border: solid 1px #999;
  border-radius: 0.5rem;
}

textarea {
  display: inline-block;
  width: 100%;
  height: 10rem;
  padding: 0.5rem 1rem;
  font-weight: 300;
  border: solid 1px #999;
  border-radius: 0.5rem;
  transition: 0.3s;
}
textarea::placeholder {
  color: #ccc;
}

textarea:focus {
  outline: none;
  border: solid 1px #ef821a;
  box-shadow: 0 0 5px 1px rgba(239,130,26, .5);
}

textarea:focus::placeholder {
  color: transparent;
}

.em {
  font-weight: 500;
}

.verifi button {
  margin: 1rem 0 3rem;
  width: 50%;
  height: 3rem;
  background-color: #ef821a;
  color: #fff;
  border: 0 none;
  border-radius: 1.5rem;
}


