html {
    font-size: 18px;
}
html > * {
        
        font-family: 'Montserrat', sans-serif;
        letter-spacing: 0.1em;
    }

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}
.content-container {
    /*border: 1px solid #ddd;
    border-radius: 0.3em;
    background: #a6c72477;*/
}
body > * {
    box-sizing: border-box !important;
}
ul {
    list-style: none;
    text-align: left;
    padding: 1em;
    margin: 0;
}
footer > .container,
footer > .container > a {
    color: #FFFFFF;
}

footer > a:hover {
    color: #FFFFFF;
}
.error-message {
    font-size: small;
    padding-left: 1em;
    padding-top: 0.1em;
}
.header-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
    .header-title > h1 {
        font-family: 'Montserrat ExtraBold', Sans-serif;
        width: fit-content;
        text-transform: uppercase;
        letter-spacing: -1.6px;
        line-height: 33px;
        margin: 0 auto;
        color: #d46f12;
        font-weight: 600 !important;
        font-size: 41px;
        text-align: center;
    }

a,
a:hover {
    color: #00a3a2;
}

.imgBackground {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin-bottom: 60px;
    opacity:0.9;
    background-size: cover;
}
.btn.form-control,
.btn.form-control:hover {
    font-variant: all-small-caps;
    font-style: inherit;
    font-weight: 600;
    font-size: 1.3em;
    padding-bottom: 0.5em;
    background: #00a3a2;
    border-color: #00a3a2;
    border-radius: 0 !important;
}
.form-label {
    margin-bottom: 0.5rem;
    font-style: inherit;
    font-variant: all-small-caps;
    font-size: larger;
    font-weight: 500 !important;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
textarea.form-control:focus,
.form-select:focus {
    border-color: #00a3a2 !important;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(0, 163, 162, 0.6) !important;
    outline: 0 none !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.remove-ekg {
    cursor: pointer;
}
input[type=number] {
    -moz-appearance: textfield;
}
input[type=button] {
    min-width: fit-content;
}
input[type=text],
input[type=number],
textarea,
.form-select {
    background-color: #ffffffbc;
    border-radius: 0 !important;
}

.usrsc15-header {
    height: 491px;
    background: url("/header_bg1.png");
    background-size: cover;
    background-position: center bottom;
}

.animate-down {
    animation-duration: 1s;
    animation-name: movingDown;
    animation-timing-function: ease;
}
.animate-right {
    animation-duration: 0.5s;
    animation-name: movingRight;
    animation-timing-function: ease;
}
.animate-appear {
    animation-duration: 1s;
    animation-name: appearing;
    animation-timing-function: ease;
}
.animate-wiggle {
    animation-duration: 1.5s;
    animation-name: wiggle;
    animation-timing-function: linear;
}
.estimatedKgElement {
    min-width: 300px;
}


.tt-query, .tt-hint {
}

.twitter-typeahead {
    display: flex !important;
    flex-direction: row !important;
}
.tt-menu {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 12px;
    padding: 1em 0.5em;
}

.tt-suggestion {
}

    .tt-suggestion:hover,
    .tt-suggestion:focus {
        background: #ECFFEC;
        cursor: pointer;
    }

.tt-suggestion p {
    margin: 0;
}

@keyframes movingDown {
    0% {
        transform: translate(0px, -8000px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes movingRight {
    0% {
        transform: translate(-18000px, 0px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes appearing {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes wiggle {
    0%,10% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-5deg);
    }

    20% {
        transform: rotateZ(5deg);
    }

    25% {
        transform: rotateZ(-3deg);
    }

    30% {
        transform: rotateZ(3deg);
    }

    35% {
        transform: rotateZ(-1deg);
    }

    40% {
        transform: rotateZ(0);
    }
    100% {
        transform: rotateZ(0);
    }
}
