body {
}


#q_a_content {
    display: none;
}

.container {
    max-width: 90%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial Narrow, sans-serif;
    font-size: 2.5vmin;
    line-height: 1.2;
}

.row.content {
    /* margin-left: 0 */
    /* margin-right: 0 */
    flex-grow: 1;
}

.jumbotron {
    margin-top: 20%;
    display: none;
}

.content-column {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.col.narrow {
    width: 50px;
}

.content-box {
    margin: 5px;
    height: 20%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.content-reset p,
.content-title p,
.content-box p {
    margin: 0;
    width: 100%;
}

.content-box .back,
.content-box .front {
    padding: 10px;
    width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: right top;
}

.content-box {
    background-color: 0;
}

.content-box .front {
    background-color: #ffffff;
    background-image: url('../images/icon_triangle_green.svg');
}

.content-box .back {
    background-color: #b4adaa;
    background-image: url('../images/icon_triangle_orange.svg');
}

.content-reset,
.content-title {
    min-height: 60px;
    margin: 5px;
    color: white;
    background-color: #6cc04a;
    font-size: 4vmin;
    display: flex;
    flex-grow: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-box .question {
    color: #48a548;
}

.content-box .answer {
    opacity: 0;
}

.content-reset {
    width: 60px;
    background-image: url('../images/reset_icon.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    font-size: 2.5vmin;
}

form {
    font-size: 12px;
}

form .navigation {
    height: 50px;
}

input {
    width: 100%;
    margin: 5px 0px;
    height: 100%;
}

textarea, .CodeMirror {
    height: 90vh;
}

.CodeMirror .cm-operator {
    color: #aaa;
}

.CodeMirror .cm-string {
    color: black;
}