#question {
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  color: #124476;
}

.center_buttons {
  margin: 0 auto;
}


h1,
h2 {
  font-family: Tiempos-Medium, Helvetica Neue, sans-serif;
  font-weight: 300;
}

.center {
  margin: 20px;
  width: 100%;
  border: 0px solid green;
  padding: 5px;
  text-align: center;
  display: flex;
}

.button_class {
  display: inline-block;
  border-radius: 5px;
  background-color: #e7e7e7;
  cursor: pointer;
  text-transform: uppercase;
  margin: 5px;
  padding: 5px;
  color: #124476;
  width: 150px;
  height: 30px;
  text-align: center;
}

.button_class_car {
  display: inline-block;
  border-radius: 5px;
  background-color: #e7e7e7;
  cursor: pointer;
  text-transform: uppercase;
  margin: 5px;
  padding: 5px;
  color: #124476;
  width: 150px;
  height: 150px;
  text-align: center;
}

.hide {
  display: none;
}

.button_class:hover {
  background-color: #46C2E8;
}

.button_class_car:hover {
  background-color: #46C2E8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.custom-field {
  position: relative;
  font-size: 14px;
  border-top: 20px solid transparent;
  margin-bottom: 5px;
  display: inline-block;
  --field-padding: 12px;
}

.custom-field input {
  border: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f2f2f2;
  padding: 12px;
  border-radius: 3px;
  width: 250px;
  outline: none;
  font-size: 14px;
}

.custom-field .placeholder {
  position: absolute;
  left: -30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  top: 50%;
  line-height: 100%;
  transform: translateY(-50%);
  color: #aaa;
  transition:
    top 0.3s ease,
    color 0.3s ease,
    font-size 0.3s ease;
}

.custom-field input.dirty+.placeholder,
.custom-field input:focus+.placeholder,
.custom-field input:not(:placeholder-shown)+.placeholder {
  top: -10px;
  font-size: 10px;
  color: #222;
}

.custom-field .error-message {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 12px;
  background: #d30909;
  color: #fff;
  height: 24px;
}

.custom-field .error-message:empty {
  opacity: 0;
}

/* ONE */
.custom-field.one input {
  background: none;
  border: 2px solid #ddd;
  transition: border-color 0.3s ease;
}

.custom-field.one input+.placeholder {
  left: 8px;
  padding: 0 5px;
}