@font-face {
  font-family: 'Urbanist';
  src: url('/lib/fonts/Urbanist/urbanist-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Urbanist';
  src: url('/lib/fonts/Urbanist/urbanist-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

body,
h1, h2, h3, h4, h5, h6,
p, a, span, li, dt, dd, blockquote,
button, input, select, textarea, label,
.usa-button, .usa-alert, .usa-alert__heading, .usa-alert__text,
.usa-card, .usa-card__heading, .usa-card__body,
.usa-banner, .usa-banner__heading,
.usa-prose,
.usa-prose > h1, .usa-prose > h2, .usa-prose > h3,
.usa-prose > h4, .usa-prose > h5, .usa-prose > h6,
.usa-label, .usa-legend,
.usa-language__link, .usa-language__primary {
  font-family: 'Urbanist', 'Noto Sans Ethiopic', 'Kefa', 'Ebrima', system-ui, -apple-system, sans-serif;
}

html {
  position: relative;
  min-height: 100%;
}

main.usa-prose {
  max-width: none;
}

main.usa-prose > h1 {
  font-size: 1.95rem;
  line-height: 1.1;
  margin-top: 1.5rem;
}

main.usa-prose > * + h1,
main.usa-prose > * + h2 {
  margin-top: 1rem;
}

header .usa-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0 1.25rem;
  width: 100%;
}

header.usa-header--basic .usa-navbar {
  width: 100%;
}

header .usa-navbar .usa-menu-btn {
  height: 100%;
}

header .usa-navbar .usa-logo {
  max-width: 125px;
  margin: 0;
}

header .usa-nav-container .usa-language-container {
  position: static;
  right: auto;
  top: auto;
  margin: 0;
  padding: 0;
  max-width: none;
  align-self: center;
}

.translate-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  line-height: 1.1;
}

.translate-button .usa-icon {
  flex-shrink: 0;
}

.translate-button__content {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.translate-button__label {
  font-size: 1rem;
  font-weight: 700;
}

.translate-button__subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 0.125rem;
}

.safe-and-secure {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.need-help-container {
  background-color: #f3bd03;
  min-height: 100px;
  max-width: 100vw;
}

.need-help-container .need-help-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}

.need-help-container .need-help-item a {
  text-align: center;
}

.need-help-container .need-help-item a img {
  max-width: 120px;
}

ul.fieldset-validation-errors {
  list-style: none;
  /*padding-left: 0;*/
  /*margin-top: 0.5rem;*/
}

footer.usa-footer,
footer.usa-footer .usa-footer__primary-section,
footer.usa-footer .usa-footer__secondary-section {
  background-color: #00A4A5;
}

nav.usa-footer__nav {
  max-width: 80%;
  width: 80%;
}

footer .usa-footer__primary-container {
  max-width: 80%;
  justify-content: center;
}

footer a {
  color: #000000;
}

footer .dc-mayor-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer .dc-mayor-logo-wrapper img {
  max-width: 90%;
}

footer .dc-mayor-logo-wrapper a {
  margin: 1rem auto;
}

@media screen and (max-width: 640px) {
  footer li {
    text-align: center;
    margin: 0.5rem 0;
  }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
}

.loading-overlay svg {
  max-width: 100px;
  overflow: visible;
}

.loading-overlay .spinner {
  max-width: 100px;
  fill: none; /* Make the circle hollow */
  stroke: #e52207; /* Choose a color for the stroke */
  stroke-width: 8px; /* Set the thickness of the stroke */
  stroke-dasharray: 283; /* Make the circle incomplete */
  stroke-dashoffset: 0;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  animation: spinner-animation 2s linear infinite; /* Apply the animation */
}

.loading-overlay.loading-overlay--visible {
  display: flex;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@keyframes spinner-animation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

.usa-button {
  width: auto;
}

.usa-button:not(.usa-button--unstyled) {
  background-color: #ffbe2e;
  color: #1b1b1b;
  border-radius: 99rem;
}

.usa-button:not(.usa-button--unstyled):hover {
  background-color: #e5a92a;
  color: #1b1b1b;
}

.usa-button:not(.usa-button--unstyled):active {
  background-color: #c79325;
  color: #1b1b1b;
}

.usa-button:not(.usa-button--unstyled):disabled,
.usa-button:not(.usa-button--unstyled).usa-button--disabled {
  background-color: #c9c9c9;
  color: #757575;
}

.usa-button.usa-button--outline {
  background-color: #ffffff;
  color: #1b1b1b;
  box-shadow: inset 0 0 0 2px #ffbe2e;
}

.usa-button.usa-button--outline:hover {
  background-color: #fff7e0;
  color: #1b1b1b;
  box-shadow: inset 0 0 0 2px #e5a92a;
}

.usa-button.usa-button--outline:active {
  background-color: #fff1c2;
  color: #1b1b1b;
  box-shadow: inset 0 0 0 2px #c79325;
}

.usa-button.usa-button--outline:disabled,
.usa-button.usa-button--outline.usa-button--disabled {
  background-color: #ffffff;
  color: #757575;
  box-shadow: inset 0 0 0 2px #c9c9c9;
}

.usa-alert .usa-alert__heading {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.usa-alert .usa-alert__text:not(:last-child) {
  margin-bottom: 1rem;
}

.usa-alert .usa-alert__text a {
  color: #1b1b1b;
  font-weight: 700;
  text-decoration: underline;
}

.usa-alert .usa-alert__text a:hover,
.usa-alert .usa-alert__text a:focus {
  color: #1b1b1b;
  text-decoration: underline;
}
