:root {
  --form-object-margin-height: 30px;
}

#progress {
  list-style-type: none;
//  margin-top: var(--main-object-margin-height);
  margin-top: 30px;
  text-align: center;
  width: 100%;
}

#progress li {
  display: inline-block;
  margin-right: 30px;
}

#progress li:last-of-type {
  margin-right: 0;
}

#progress li .num {
  display: inline-block;
  line-height: 1em;
  width: 1em;
  height: 1em;
  padding: 0.5em;
  margin-right: 0.5em;
  color: #ffffff;
  background-color: #999999;
  border-radius: 2em;
  font-size: 1em;
}

#progress li.active .num {
  background-color: var(--site-main-color);
}

form {
  font-size: 18px;
  margin: 30px auto 0 auto;
  text-align: center;
//  width: 100%;
  width: 900px;
}


#form-message {
  color: var(--site-red-color);
  margin: 0;
  width: 100%;
  padding: 0;
  text-align: center;
  line-height: 1.4em;
  font-size: 1.1em;
  font-weight: bold;
}

button, input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

input[type=text], select, textarea {
  border: solid 1px #aaaaaa;
/*  background-color: var(--site-white-color); */
  background-color: #ffffff;
  border-radius: 0.2em;
  font-size: 1em;
}

input[type="text"] {
  line-height: 1em;
  padding: 0.2em 0.5em;
}

textarea {
  padding: 0.2em 0.5em;
}

select {
  line-height: 1em;
  padding: 0.1em 0.2em;
  text-align: left;
}

select.error, input[type="text"].error, textarea.error {
  background-color: #ffe4e1;
  border-color: #ee0000;
}

a.button, a.submit-button, input[type=submit] {
  display: inline-block;
  width: auto;
  padding: 1em 4em;
  line-height: 1em;
  font-size: 1em;
  text-align: center;
  color: var(--site-white-color) !important;
  background-color: #aaaaaa;
  text-decoration: none !important;
  border-radius: 2em;
}

a.button:hover, a.submit-button:hover, input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}

a.submit-button, input[type=submit] {
//  background-color: #4c71b3;
  background-color: var(--site-main-color);
}

::placeholder {
  color: #aaaaaa;
}
