html,
body {
  font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #454545;
}

.box {
  padding: 19px;
  margin-bottom: 20px;
  background-color: #ededed;
  border: 1px solid #d2d2d2;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-family: "Ubuntu", Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin: 0 0 26px 0;
}

.form-title h2 {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.1;
}

.form-title h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 1.3;
  margin: 11px 0;
}

.form-title h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.footer-box {
  text-align: center;
}

.form-item {
  margin-bottom: 15px;
  display: block;
}

.form-item-inline {
  margin-bottom: 15px;
  display: inline-block;
}

.form-item-width {
  min-width: 330px;
  max-width: 80%;
}

.form-block {
  display: block;
}

.form-control {
  font-size: 16px !important;
  border: 1px solid #d2d2d2;
  width: 100%;
  background-color:white;
  height: 36px;
  padding: 6px 12px;
  line-height: 1.42857143;
  margin: 0;
  max-width: 100%;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-sizing: border-box;
} 

.form-control:focus {
  border-color: #3892e3;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(56, 146, 227, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(56, 146, 227, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(56, 146, 227, 0.6);
}

.mandatory-indicator,
.form-label {
  font-size: 13px;
  font-weight: bold;
  height: 17px;
}

.mandatory-field-missing {
  color: #b94a48;
  font-weight: 600;
}

.mandatory-field-missing input,
.mandatory-field-missing select {
  border-color: #b94a48;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.checkbox-input {
  margin-left: -20px;
  margin: 4px 0 0;
  line-height: normal;
  box-sizing: border-box;
  padding: 0;
  width: auto;
  max-width: 100%;
  cursor: pointer;
}

.checkbox-label {
  min-height: 22px;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
  font-size: 13px;
  box-sizing: border-box;
}

.button-ua {
  text-decoration: none;
  color: #ffffff;
  background-color: #009999;
  border-color: #009999;
  display: inline-block;
  margin-bottom: 4px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  box-sizing: border-box;
  line-height: 1.42857143;
}

.button-ua:hover,
.button-ua:focus {
  background-color: #009999;
  border-color: #009999;
}

a {
  color: #009999;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #009999;
  text-decoration: underline;
}

#toast {
  border-color: #c5ddd1;
  background-color: #c5ddd1;
  color: #468847;
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
}

#toast.show {
  visibility: visible;
  /* Add animation: Take 0.5 seconds to fade in and out the toast.
  However, delay the fade out process for 4.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
  animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

/* Animations to fade the toast in and out */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
