:root {
  --dark-blue: rgb(21, 54, 87);
  --dark-gray: rgb(51, 51, 51);
}

@font-face {
  font-family: 'Work Sans';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/WorkSans/WorkSans-Italic.ttf) format('ttf');
}

@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(../fonts/WorkSans/WorkSans-Regular.ttf) format('ttf');
}

#rc-app {
  color: var(--dark-gray);
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  font-weight: normal;
}

#rc-app .loader {
  position: fixed;
  z-index: 100;
  width: 80px;
  top: 50%;
  left: 45%;
  -webkit-animation: spin 1.2s linear infinite;
  -moz-animation: spin 1.2s linear infinite;
  animation: spin 1.2s linear infinite;
  height: 35px;
}

#rc-app .intake-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#rc-app .hide {
  display: none;
}

#rc-app .center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#rc-app .title {
  font-size: 36px;
  font-weight: bold;
  margin-top: 12px;
}

#rc-app form {
  width: 100%;
  max-width: 640px;
}

#rc-app fieldset {
  border: none;
  outline: none;
  display: grid;
  margin: 0;
  padding: 8px 0;
}

#rc-app label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#rc-app .required {
  color: rgb(255, 0, 0);
  position: relative;
  top: 3px;
  right: 2px;
}

#rc-app input,select {
  padding: 4px 8px;
  line-height: 22px;
  margin-top: 4px;
  border: 1px solid var(--dark-blue);
  border-radius: 4px;
  outline: none;
}

#rc-app .inquire-button-submit {
  color: #3472ba;
  text-decoration: none !important;
  text-align: center;
  text-transform: none !important;
  box-shadow: 0 -1px 2px 0 inset #d6d6d6;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: .5rem 1rem;
  display: inline-block;
  margin-top: 12px;
  font-weight: bold;
}

#rc-app .error {
  font-weight: 600;
  color: rgb(147, 0, 0);
}