#animation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin-bottom: auto;
    padding-top:111px;
    height:95vh;
}


.question-container {
    height: 150px;
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.response-container {
    height: 100px;
    display: flex;
    width: 400px;
    max-width: 400px;
    justify-content: space-evenly;
    align-items: center;
}

.question-visible {
    display: none;
}

.intro-visible {
    display: none;
}

.button-visible {
    display: none;
}

@media (pointer: none), (pointer: coarse) {
    .game-container {
        margin-bottom: 0;
    }

    #animation-container {
        padding: 1em;
    }

    .question-visible {
        font-size: 1.2em;
    }

    .question-container {
        width: 100%;
        max-width: 100%;
    }
}

#gamification-header {
    display: flex;
    justify-content: flex-end;
    min-height: 50px;
}

.gamification-button {
    cursor: pointer;
    fill: #EC7026;
    filter: drop-shadow(3px 5px 2px rgba(0, 0, 0, 0.4));
    transform-origin: center center;
    transition: all .1s ease-in-out;
}

.gamification-button:hover {
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.7));
}

.btn-text {
    cursor: pointer;
    pointer-events: none;
    font-weight: bolder;
}

.btn-yes {
    background-color: #8bc34a;
    color: whitesmoke;
    font-weight: 600;
}

.btn-no {
    background-color: #f44336;
    color: whitesmoke;
    font-weight: 600;
}

.btn-na {
    background-color: #ff7043;
    color: whitesmoke;
    font-weight: 600;
}

.btn-na:focus, .btn-yes:focus, .btn-no:focus, .btn-dk:focus {
    outline: none;
}

.btn-dk {
    background-color: #2196f3;
    color: whitesmoke;
    font-weight: 600;
}


svg.yes > path, svg.yes > polyline {
    color: #8bc34a;
}

svg.no > circle, svg.no > line {
    color: #f44336;
}

svg.na > circle, svg.na > line {
    color: #ff7043;
}

svg.dk > circle, svg.dk > path, svg.dk > line {
    color: #2196f3;
}

#result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 200px;
    max-height: 200px;
    opacity: 0;
}


#bail {
    background-color: #f44336;
    color: whitesmoke;
    font-weight: 600;
}

#restart {
    background-color: #333;
    color: whitesmoke;
    font-weight: 600;
}

#score-total {
    color: #8bc34a !important;
}

.score-totals {
    font-size: 2em;
    font-weight: 600;
    color: #333;
}

.result-info {
    margin-top: 2em;
}

.button-container {
    margin-top: 22px;
}

.block {
    fill: transparent;
    transition: fill .333s ease-in-out;
    cursor: pointer;
}

.selected-block {
    fill: #ec7026;
    opacity: 0.6;
}