body {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", "Verdana", sans-serif;
    --theme-blue: hsl(210, 85%, 50%);
    --theme-blue-dark: hsl(210, 85%, 40%);
    --theme-blue-darkest: hsl(210, 85%, 30%);
    --theme-blue-light: hsl(210, 85%, 70%);
    --theme-orange: hsl(30, 95%, 50%);
    --theme-orange-dark: hsl(30, 95%, 40%);
    --theme-orange-darkest: hsl(30, 95%, 30%);
    --theme-orange-light: hsl(30, 95%, 70%);
    --theme-orange-lightest: hsl(30, 95%, 90%);
    --theme-grey-dark: #555555;
    color: var(--theme-grey-dark);
    background-color: var(--theme-grey-dark);
}

header {
    background-color: #f9f9f9;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 10;
    position: relative;
}

main {
    background-color: white;
    padding: 0.5em 0 1em 0;
}

footer {
    box-shadow: 0 -2px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    color: white;
    background-color: var(--theme-grey-dark);
    text-align: center;
}

footer p {
    margin: 0.5em 0;
}

@media (max-width: 650px) {
    .shrink {
        font-size: 1.3rem;
    }
}

header .banner {
    font-size: 1.5rem;
    color: var(--theme-grey-dark);
    font-weight: bold;
    margin: 0;
    padding: 0.3em;
}

header .banner a {
    text-decoration: none;
    color: inherit;
}

header .banner a:hover {
    text-decoration: none;
    outline: none;
}

header .banner .logo {
    height: 1.5rem;
    transform: translate(-0.1em, 0.15em);
}

.icon-small {
    width: 1.5em;
    vertical-align: middle;
    margin-right: 0.2em;
    color: var(--theme-grey-dark);
}

header ul.nav-list {
    flex-grow: 1;
    margin: 0 0.5em 0 0;
    text-align: right;
    list-style: none;
    padding: 0.5em 0;
    color: var(--theme-grey-dark);
}

header ul.nav-list>li {
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 0.3em 0;
}

header ul.nav-list>li>a {
    padding: 0.5em;
    ;
    text-decoration: none;
    color: inherit;
    border-radius: 0.2em;
}

header ul.nav-list>li>a:hover {
    outline: 2px solid var(--theme-orange);
    outline-offset: 2px;
}


.text-smaller {
    font-size: smaller;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

footer .circus-landscape-wide {
    width: 80%;
    margin-top: 1em;
}

a {
    outline-color: transparent;
    text-decoration: underline;
}

a:link {
    color: var(--theme-blue-dark);
}

a:visited {
    color: var(--theme-grey-dark);
}

a:focus-visible,
a:focus {
    outline: solid 2px var(--theme-orange);
    outline-offset: 2px;
    border-radius: 0.2em;
}

a:hover {
    cursor: pointer;
}

a:active {
    color: var(--theme-orange-dark);
}

form label.required::after {
    content: " *";
    color: var(--theme-orange);
}

form input,
form select {
    font-family: "Verdana", sans-serif;
    font-size: inherit;
    padding: 0.4em;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0.2em;
    background-color: white;
    color: var(--theme-grey-dark);
}

form input:focus-visible,
form select:focus-visible {
    outline: 2px solid var(--theme-orange-light);
    outline-offset: 0;
    border: 1px solid var(--theme-orange);
}

form input:disabled,
form select:disabled {
    background-color: #eee;
    color: #999;
}

form label.disabled,
button:disabled {
    opacity: 0.6;
}

button:disabled {
    cursor: default;
}

.currency {
    font-family: "Verdana", sans-serif;
}

.error-message {
    color: var(--theme-orange-dark);
    font-weight: bold;
    font-size: small;
    margin-top: 0.2em;
}

main.error-page {
    padding-top: 5em;
    min-height: 65vh;
    text-align: center;
}

main.error-page h1 {
    font-size: 3rem;
}

main.error-page img.elephant-on-ball {
    height: 15em;
}

div.page-heading {
    display: flex;
    border-bottom: 1px solid rgb(0, 0, 0, 0.25);
}

div.page-heading>div:last-child {
    flex-grow: 1;
    text-align: right;
}

div.page-heading img {
    height: 5em;
    margin-right: 0.5em;
}
