html{
    background-color: #f8f8f8;
}
blockquote {
    font-size: 13px;
}

#page-wrapper {
    background: transparent;
    padding: 30px;
}

.row {
    background: transparent;
}

.page-header {
    margin: 0 0 30px 0;
    padding: 40px 10px;
    background-color: white;
    border-radius: 4px;
}

.text-center {
    color: white;
}

.text-center a, .text-left a {
    color: skyblue;
}

.text-center a:hover, .text-left a:hover {
    color: #337ab7;
}

@media (min-width: 992px) {
    .page-header {
        width: 66%;
    }
}

#loader {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #004B91;
    z-index: 10;

    -webkit-animation: spin 2s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #949599;

    -webkit-animation: spin 3s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #96b3bd;

    -webkit-animation: spin 1.5s linear infinite;
    /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera */
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);
        /* IE 9 */
        transform: rotate(0deg);
        /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);
        /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);
        /* IE 9 */
        transform: rotate(360deg);
        /* Firefox 16+, IE 10+, Opera */
    }
}

.loader-section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 150%;
    background-color: black;
    z-index: 9;
    opacity: 0.6;
}

footer {
    background: #f8f8f8;
    border-top: solid lightgray thin;
    padding: 1em 2em;
}

#udem_cookie_consent_toggle {
    text-align: right;
}