body {
  font-family: "Oracle Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  margin: 0;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.ui-widget {
  font-family: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-rendering: optimizeLegibility;
  font-weight: 700; }

h1,
.h1 {
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 24px; }

h2,
.h2 {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 20px; }

h3,
.h3 {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 12px; }

h4,
.h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 8px; }

h5,
.h5 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 4px; }

h6,
.h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 2px; }

p {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.5; }

@media only screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 20px; }
  h2,
  .h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px; }
  h3,
  .h3 {
    font-size: 24px;
    line-height: 32px; }
  h4,
  .h4 {
    font-size: 20px;
    line-height: 28px; }
  h5,
  .h5 {
    font-size: 18px;
    line-height: 26px; }
  h6,
  .h6 {
    font-size: 15px; }
  p {
    font-size: 15px; } }

.t-Button {
  border-radius: 64px !important; }

.covid-page-container,
#wwvFlowForm {
  max-width: 1440px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-position: center top;
  background-color: #312D2A;
  background-image: url(../images/body-bg.png);
  box-shadow: 0 0 24px -12px rgba(0, 0, 0, 0.3); }

.covid-body {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
  width: 100%; }

.covid-header,
.covid-footer {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto; }

.covid-header,
.covid-body,
.covid-footer {
  padding-left: 32px;
  padding-right: 32px; }
  @media only screen and (max-width: 640px) {
    .covid-header,
    .covid-body,
    .covid-footer {
      padding-left: 8px;
      padding-right: 8px; } }
  @media only screen and (max-width: 992px) {
    .covid-header,
    .covid-body,
    .covid-footer {
      padding-left: 12px;
      padding-right: 12px; } }

.covid-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%; }
  .covid-header:empty {
    display: none; }

.covid-header-logo {
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  position: relative;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  min-width: 0; }
  .covid-header-logo:before {
    content: '';
    display: block;
    background-image: url(../images/logo.svg);
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 12px;
    flex-shrink: 0; }
    @media only screen and (max-width: 640px) {
      .covid-header-logo:before {
        width: 24px !important;
        height: 24px !important;
        margin-right: 8px; } }
  @media only screen and (max-width: 640px) {
    .covid-header-logo:after {
      content: 'COVID-19';
      speak: none; } }
  @media only screen and (max-width: 640px) {
    .covid-header-logo[data-mobile-logo-text]:after {
      content: attr(data-mobile-logo-text); } }

.covid-header-logo-text {
  min-width: 0;
  display: block; }
  @media only screen and (max-width: 640px) {
    .covid-header-logo-text {
      position: absolute;
      overflow: hidden;
      clip: rect(0 0 0 0);
      margin: -1px;
      padding: 0;
      width: 1px;
      height: 1px;
      border: 0; } }

.covid-header-logo-link,
a.covid-header-logo-link {
  outline: none; }
  .covid-header-logo-link, .covid-header-logo-link:hover,
  a.covid-header-logo-link,
  a.covid-header-logo-link:hover {
    color: inherit;
    text-decoration: none; }
  .covid-header-logo-link:not(:active):focus,
  a.covid-header-logo-link:not(:active):focus {
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 4px;
    margin: -4px;
    box-shadow: inset 0 0 0 1px #377e54; }

.covid-header-nav {
  margin-left: auto; }
  .covid-header-nav:empty {
    display: none; }
  .covid-header-nav .covid-button {
    border-radius: 4px; }
  .covid-header-nav a {
    color: #fff; }

.covid-footer {
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px; }
  @media only screen and (max-width: 768px) {
    .covid-footer {
      text-align: center; } }
  .covid-footer:empty {
    display: none; }

.covid-oracle-apex-logo,
.tms-built-with-apex,
.covid-footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: inherit;
  vertical-align: top;
  text-decoration: none !important;
  outline: none; }

.covid-oracle-apex-logo:before,
.tms-built-with-apex:before,
.covid-footer-oracle-logo:before {
  content: '';
  background-image: url("../images/oracle-logo.svg");
  width: 36px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: block; }

.covid-footer-oracle-logo span {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0; }

.covid-footer-oracle-logo,
.covid-footer-apex-logo {
  display: block;
  outline: none;
  text-decoration: none !important;
  color: inherit;
  padding: 6px; }
  .covid-footer-oracle-logo:not(:active):focus,
  .covid-footer-apex-logo:not(:active):focus {
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px #377e54; }

.covid-sub-footer {
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between; }
  @media only screen and (max-width: 768px) {
    .covid-sub-footer {
      max-width: 100% !important; } }
  @media only screen and (max-width: 480px) {
    .covid-sub-footer {
      flex-direction: column-reverse; } }

.covid-actions {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .covid-actions .covid-button + .covid-button,
  .covid-actions .t-Button + .t-Button {
    margin-top: 8px; }
  .covid-actions .t-Button--large {
    padding: 12px 20px;
    font-size: 14px;
    line-height: 16px; }

.covid-button {
  border: 0;
  display: inline-block;
  vertical-align: top;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  border-radius: 64px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }

.t-Button--hot,
.covid-button--primary {
  font-weight: 700; }

a.covid-support-chat {
  text-decoration: none; }

.covid-support-chat {
  border-radius: 32px;
  font-weight: 700;
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  background-color: rgba(99, 78, 113, 0.9);
  box-shadow: rgba(255, 255, 255, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.3) 0 4px 8px -4px;
  transition: background-color .2s ease, box-shadow .2s ease;
  display: inline-flex;
  vertical-align: top;
  align-items: center; }
  @media only screen and (min-width: 769px) and (max-width: 991px) {
    .covid-support-chat {
      padding: 12px; } }
  .covid-support-chat:hover {
    background-color: #6F577B; }
  #myChatLink a:focus .covid-support-chat, .covid-support-chat:active {
    background-color: #594564;
    box-shadow: inset #634E71 0 0 0 1px, inset rgba(255, 255, 255, 0.2) 0 0 0 2px, rgba(0, 0, 0, 0.3) 0 4px 8px -4px; }
  .covid-support-chat:before {
    content: '';
    display: block;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTkgNUgzYTMgMyAwIDAgMC0zIDN2MmEzLjAxIDMuMDEgMCAwIDAgMS45NzkgMi44MjJsLjAyMS4wMDdWMTUuNWEuNS41IDAgMCAwIC4zMDYuNDYxbC4wMDMuMDAxQS40OS40OSAwIDAgMCAyLjUgMTZoLjAwMWEuNDk4LjQ5OCAwIDAgMCAuMzUzLS4xNDZMNS43MDcgMTNIOWEzIDMgMCAwIDAgMy0zVjhhMyAzIDAgMCAwLTMtM3ptMiA1YTIgMiAwIDAgMS0yIDJINS40OTlhLjQ5OC40OTggMCAwIDAtLjM1My4xNDZMMyAxNC4yOTNWMTIuNDVhLjQ5OS40OTkgMCAwIDAtLjM5Ny0uNDg5TDIuNiAxMS45NkEyLjAwNSAyLjAwNSAwIDAgMSAxIDEwVjhhMiAyIDAgMCAxIDItMmg2YTIgMiAwIDAgMSAyIDJ6Ii8+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTEzIDBIN2EzIDMgMCAwIDAtMyAzdi41YS41LjUgMCAwIDAgMSAwVjNhMiAyIDAgMCAxIDItMmg2YTIgMiAwIDAgMSAyIDJ2MmEyIDIgMCAwIDEtMS41ODcgMS45NTdsLS4wMTMuMDAyYS41LjUgMCAxIDAgLjIwMy45NzlsLS4wMDMuMDAxYTMuMDEzIDMuMDEzIDAgMCAwIDIuNC0yLjk0di0yYTMgMyAwIDAgMC0zLTN6Ii8+PC9zdmc+);
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center; }
    @media only screen and (min-width: 769px) and (max-width: 991px) {
      .covid-support-chat:before {
        margin-right: 0; } }

@media only screen and (min-width: 769px) and (max-width: 991px) {
  .covid-support-chat-label {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0; } }

div#myChatLink {
  position: fixed;
  bottom: 18px;
  right: 16px;
  z-index: 100000; }
  @media only screen and (max-width: 768px) {
    div#myChatLink {
      position: static;
      margin-top: 18px; } }
  div#myChatLink a {
    outline: none; }
    div#myChatLink a, div#myChatLink a:hover {
      text-decoration: none; }

@media only screen and (max-width: 768px) {
  iframe#chatInlay {
    display: none; } }

@media (width: 768px) {
  iframe#chatInlay {
    bottom: 76px; } }

.covid-page--form .covid-header,
.covid-page--form .covid-body,
.covid-page--form .covid-sub-footer,
.covid-page--login .covid-header,
.covid-page--login .covid-body,
.covid-page--login .covid-sub-footer {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (max-width: 768px) {
    .covid-page--form .covid-header,
    .covid-page--form .covid-body,
    .covid-page--form .covid-sub-footer,
    .covid-page--login .covid-header,
    .covid-page--login .covid-body,
    .covid-page--login .covid-sub-footer {
      max-width: 100%; } }

.covid-page--form .covid-header,
.covid-page--login .covid-header {
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 12px; }
  @media only screen and (max-width: 768px) {
    .covid-page--form .covid-header,
    .covid-page--login .covid-header {
      margin: 0; } }

.covid-page--form .covid-body,
.covid-page--login .covid-body {
  padding: 40px;
  flex-grow: 0;
  margin-bottom: auto;
  border-radius: 8px; }
  @media only screen and (max-width: 768px) {
    .covid-page--form .covid-body,
    .covid-page--login .covid-body {
      border-radius: 0;
      padding: 20px;
      flex-grow: 1; } }

@media only screen and (max-width: 768px) {
  .covid-page--form .covid-footer,
  .covid-page--login .covid-footer {
    margin-top: 0; } }

.covid-page--form .covid-actions,
.covid-page--login .covid-actions {
  margin-top: 32px; }
  .covid-page--form .covid-actions:last-child,
  .covid-page--login .covid-actions:last-child {
    margin-bottom: 0; }
  .covid-page--form .covid-actions .covid-button,
  .covid-page--form .covid-actions .t-Button--large,
  .covid-page--login .covid-actions .covid-button,
  .covid-page--login .covid-actions .t-Button--large {
    min-width: 200px;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 24px; }

.covid-page--form .t-Alert.t-Alert--wizard,
.covid-page--login .t-Alert.t-Alert--wizard {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  max-width: 100%;
  margin: 0; }

.covid-page--registration .covid-header,
.covid-page--registration .covid-body,
.covid-page--registration .covid-sub-footer,
.covid-page--registration.covid-page--form .covid-header,
.covid-page--registration.covid-page--form .covid-body,
.covid-page--registration.covid-page--form .covid-sub-footer {
  max-width: 760px; }

.covid-page--form .covid-body,
.covid-page--login .covid-body {
  background-color: #262321;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1); }

@media only screen and (max-width: 768px) {
  .covid-page--form .covid-page-container,
  .covid-page--login .covid-page-container {
    background-image: none; }
  .covid-page--form .covid-header,
  .covid-page--login .covid-header {
    background-color: #3a3631; }
  .covid-page--form .covid-body,
  .covid-page--login .covid-body {
    box-shadow: none; } }

.covid-page--faq .covid-header-logo:before {
  width: 32px;
  height: 32px; }

.covid-page--faq .covid-body {
  padding-top: 40px;
  padding-bottom: 40px; }

.covid-page--faq .covid-header {
  background-color: #3a3631; }

.covid-page--faq .covid-page-container,
.covid-page--faq #wwvFlowForm {
  background-image: none; }

.covid-page--faq .covid-footer {
  background-color: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05); }

.covid-page--splash .covid-header {
  display: none; }

.covid-page--splash .covid-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.covid-page--splash h1,
.covid-page--splash .h1 {
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: 80px;
  line-height: 96px; }
  @media only screen and (max-width: 992px) {
    .covid-page--splash h1,
    .covid-page--splash .h1 {
      margin-top: 32px;
      margin-bottom: 40px;
      font-size: 72px;
      line-height: 80px; } }
  @media only screen and (max-width: 640px) {
    .covid-page--splash h1,
    .covid-page--splash .h1 {
      margin-top: 20px;
      margin-bottom: 20px;
      font-size: 56px;
      line-height: 64px; } }

.covid-page--splash h2,
.covid-page--splash .h2 {
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 48px; }
  @media only screen and (max-width: 992px) {
    .covid-page--splash h2,
    .covid-page--splash .h2 {
      font-size: 48px;
      line-height: 56px;
      margin-bottom: 32px; } }
  @media only screen and (max-width: 640px) {
    .covid-page--splash h2,
    .covid-page--splash .h2 {
      font-size: 32px;
      line-height: 40px;
      margin-bottom: 20px; } }

.covid-page--splash .covid-button,
.covid-page--splash .t-Button--large {
  font-size: 24px;
  line-height: 32px;
  padding: 20px 48px; }
  @media only screen and (max-width: 992px) {
    .covid-page--splash .covid-button,
    .covid-page--splash .t-Button--large {
      font-size: 20px;
      line-height: 24px;
      padding: 16px 32px; } }
  @media only screen and (max-width: 640px) {
    .covid-page--splash .covid-button,
    .covid-page--splash .t-Button--large {
      font-size: 16px;
      line-height: 20px;
      padding: 12px 20px; } }

.covid-page--splash .covid-actions {
  margin-top: 64px;
  margin-bottom: 0; }
  @media only screen and (max-width: 992px) {
    .covid-page--splash .covid-actions {
      margin-top: 32px; } }
  @media only screen and (max-width: 640px) {
    .covid-page--splash .covid-actions {
      margin-top: 16px; } }
  .covid-page--splash .covid-actions .covid-button + .covid-button,
  .covid-page--splash .covid-actions .t-Button + .t-Button {
    margin-top: 40px; }
    @media only screen and (max-width: 992px) {
      .covid-page--splash .covid-actions .covid-button + .covid-button,
      .covid-page--splash .covid-actions .t-Button + .t-Button {
        margin-top: 20px; } }
    @media only screen and (max-width: 640px) {
      .covid-page--splash .covid-actions .covid-button + .covid-button,
      .covid-page--splash .covid-actions .t-Button + .t-Button {
        margin-top: 16px; } }

.covid-page--notice .covid-header,
.covid-page--notice .covid-body {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto; }

.covid-page--notice .covid-header {
  justify-content: center;
  margin-top: auto;
  margin-bottom: 12px; }

.covid-page--notice .covid-header-logo {
  font-size: 20px; }

.covid-page--notice .covid-body {
  text-align: center;
  flex-grow: 0;
  margin-bottom: auto; }

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

body {
  font-size: 16px;
  line-height: 1.5;
  background-color: #46423f;
  color: #fff; }

a {
  color: #facc62;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

.covid-button {
  border: 0;
  display: inline-block;
  vertical-align: top;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  border-radius: 64px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease; }

.covid-button--primary {
  font-weight: 700; }

.covid-button--primary {
  color: #fff;
  background-color: #377E54; }
  .covid-button--primary:hover {
    color: #fff;
    background-color: #3f9060; }
  .covid-button--primary:active {
    color: #fff;
    background-color: #2f6c48; }
  .covid-button--primary:focus {
    box-shadow: inset #377E54 0 0 0 1px, inset 0 0 0 2px rgba(255, 255, 255, 0.5); }

.covid-button--secondary {
  color: #fff;
  background-color: #6E6964; }
  .covid-button--secondary:hover {
    color: #fff;
    background-color: #7B7570; }
  .covid-button--secondary:active {
    color: #fff;
    background-color: #655F5C; }
  .covid-button--secondary:focus {
    box-shadow: inset #6E6964 0 0 0 1px, inset 0 0 0 2px rgba(255, 255, 255, 0.5); }

.covid-button--link:focus {
  box-shadow: inset currentColor 0 0 0 1px; }

.covid-toc {
  margin-bottom: 40px;
  padding-left: 40px; }
  .covid-toc li {
    margin-top: 12px;
    margin-bottom: 12px; }

.covid-toc-article {
  padding-top: 40px;
  padding-bottom: 40px;
  outline: none; }
  @media only screen and (max-width: 768px) {
    .covid-toc-article {
      padding-top: 32px;
      padding-bottom: 32px; } }
  @media only screen and (max-width: 640px) {
    .covid-toc-article {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .covid-toc-article:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .covid-toc-article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px 0; }
  .covid-toc-article ol,
  .covid-toc-article ul {
    padding-left: 40px; }
  .covid-toc-article li {
    margin-top: 12px;
    margin-bottom: 12px; }

.covid-alert {
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset inset 0 0 0 1px rgba(255, 255, 255, 0.1); }
  .covid-alert--error {
    background-color: #4B2119; }

.covid-field {
  margin-bottom: 24px; }

.covid-field-label {
  display: inline-block;
  vertical-align: top;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  position: relative; }

.covid-field-input {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 16px;
  line-height: normal;
  padding: 8px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  outline: none;
  min-height: 40px;
  transition: background-color .1s ease, border .1s ease; }

.covid-field--required .covid-field-label {
  font-weight: 700; }
  .covid-field--required .covid-field-label:after {
    content: '*';
    font-weight: 400;
    margin-left: 4px;
    color: #DC7E6C; }

.covid-field-checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0; }
  .covid-field-checkbox ~ .covid-field-label {
    padding-left: calc(24px + 8px);
    min-height: 24px;
    display: inline-flex; }
    .covid-field-checkbox ~ .covid-field-label:before {
      content: '';
      width: 24px;
      height: 24px;
      border-radius: 2px;
      display: block;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: absolute;
      left: 0;
      transition: background-color .15s ease, box-shadow .15s ease, -webkit-transform .125s ease;
      transition: transform .125s ease, background-color .15s ease, box-shadow .15s ease;
      transition: transform .125s ease, background-color .15s ease, box-shadow .15s ease, -webkit-transform .125s ease; }
  .covid-field-checkbox:active ~ .covid-field-label:before {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .covid-field-checkbox:checked ~ .covid-field-label:before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE1LjUzIDIuNDdhLjc0Ny43NDcgMCAwIDAtMS4wNiAwTDUuNSAxMS40MzkgMS41MyA3LjQ3QS43NS43NSAwIDAgMCAuNDcxIDguNTMxbDQuNSA0LjVhLjc0NS43NDUgMCAwIDAgMS4wNiAwbDkuNS05LjVhLjc0Ny43NDcgMCAwIDAgMC0xLjA2eiIvPjwvc3ZnPg==");
    background-size: 16px 16px; }

.covid-error-text {
  font-size: 14px;
  color: #DC7E6C; }
  .covid-field + .covid-error-text {
    margin-top: -20px;
    margin-bottom: 24px; }

.covid-field-input {
  background-color: #46423f;
  color: #fff;
  border-color: #615b57; }
  .covid-field-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.65); }
  .covid-field-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.65); }
  .covid-field-input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.65); }
  .covid-field-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.65); }
  .covid-field-input::placeholder {
    color: rgba(255, 255, 255, 0.65); }
  .covid-field-input:hover {
    background-color: #393533;
    border-color: #615b57; }
  .covid-field-input:focus {
    background-color: #2b2927;
    border-color: #377E54; }

.covid-field-checkbox ~ .covid-field-label:before {
  background-color: #46423f;
  box-shadow: inset 0 0 0 1px #615b57; }

.covid-field-checkbox:hover ~ .covid-field-label:before {
  box-shadow: inset 0 0 0 1px #615b57; }

.covid-field-checkbox:focus ~ .covid-field-label:before {
  box-shadow: inset 0 0 0 1px #377E54; }

.covid-field-checkbox:checked ~ .covid-field-label:before {
  background-color: #377E54;
  box-shadow: inset 0 0 0 1px #377E54; }

.covid-field-checkbox:focus:checked ~ .covid-field-label:before {
  background-color: #377E54;
  box-shadow: inset #377E54 0 0 0 1px, inset 0 0 0 2px rgba(255, 255, 255, 0.5); }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #5B5652 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s; }

/*# sourceMappingURL=covid-web.css.map */
