:root {
    --footer-vertical-padding: 1rem;
    --footer-img-height: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-active {
    color: #293277 !important;
    font-weight: 600 !important;
}

.spinner {
    margin-right: 5px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: var(--footer-vertical-padding);
    padding-bottom: var(--footer-vertical-padding);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.uppercase {
    text-transform: uppercase;
}

footer img {
    height: var(--footer-img-height);
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}