body {
    background: url('img/bg.png');
}

.container {
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
}


.container.homepage {
    background: none;
}

.footer-container {
    clear: both;
}

.header-container {
    min-height: 56px;
    margin-bottom: 1rem;
}

.header-container:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 20px;
    border: 1px solid #999;
    border-left: none;
    border-top: none;
    border-radius: 100%;
    animation: spinner linear 500ms infinite;
}

.jumbotron {
    position: relative;
    overflow: hidden;
    background: none;
}

.jumbotron .content {
    color: white;
}

.jumbotron .iframe-background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1;
    border-radius: 5px;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(359deg);
    }
}

iframe.sim {
    width: 100%;
    height: 600px;
    border: none;
    margin-bottom: 1rem;
}

.card-deck {
    margin-bottom: 1rem;
}

.scenarios-table-container{
    width:100%;
    overflow-x: scroll;
}

@media(max-width: 768px) {
    iframe.sim {
        display: none;
    }
    iframe.sim+*:before {
        display: block;
        padding: 5px;
        background: #f8d7da;
        margin-bottom: 1rem;
        content: "You'll need to view the site on desktop or tablet to see the simulations.";
    }
}