/* wordspeller-promo.css - styles for wordspeller promo form
   Jeremy Sarka - 03-20-2016
 */
.warning {
  font-style: italic;
  color: #a51919;
}
.ok {
  font-weight: bold;
  color: #127427;
}
.promo_code {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #7c7cb1;
}
li h3 {
  text-align: left;
}
ol.form_steps {
  list-style-type: none;
  list-style-type: decimal !ie; /*IE 7- hack*/
  margin: 0; margin-left: 10px;
  counter-reset: li-counter;	
}
ol.form_steps li {
  position: relative;
  margin-bottom: 30px;
}
ol.form_steps li:before {
  position: absolute;
  left: -30px;
  width: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  color: #7c7cb1;
  content: counter(li-counter) '.';
  counter-increment: li-counter;
}
input.text_field {
  border: 2px solid #7c7cb1;
  border-radius: 6px;
  padding: 6px;
  font-size: 16px;
  margin-bottom: 4px;
}
label.text_field_label {
  padding-left: 8px;
  font-size: 13px;
}
input.submit_button {
  border: 3px solid #7c7cb1;
  border-radius: 6px;
  background-color: #9999cc;
  color: white;
  padding: 6px;
  font-size: 16px;
  font-weight: bold;
  vertical-align: top;
}
