.input-pane-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-top: 20px;
}

.pane {
    padding: 25px;
    background-color: #FAF9F6;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
    margin-bottom: 25px;
}

.input-context {
    width: 100%;
    max-width: 575px;
}

.input-context h1 {
    font-size: 1.5rem !important;
    font-weight: 500;
}

.form-input {
    margin-bottom: 20px;
}

.input-controls {
    width: 100%;
    max-width: 400px;
}

.input-controls h2 {
    font-size: 1.5rem;
}

.input-controls details {
    width: 100%;
}

@media (max-width: 1000px) {
    .input-context {
        max-width: 100%;
        width: 100%;
        margin-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;

        border-bottom: 1px solid #3333332d;
    }
    .input-controls {
        max-width: 100%;
        width: 100%;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .extra-context {
        display: none;
    }
}

.calc-input {
    width: 100%;
}

.input-symbol {
    font-size: calc(var(--x,100) * 1%);
    padding: calc(var(--x,100) * .08px) calc(var(--x,100) * .12px);
    line-height: 1.15;
    background-color: lightgray;
}

.group {
    width: 100%;
}

.group :first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.group :last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.button-select {
    margin: 7.5px 0;
}

.button-select input[type="checkbox"] {
    display: none;
}

.button-select span {
    display: inline-block;
    padding: 5px;
    margin: 2.5px 0;
    border: 2px solid rgb(6, 132, 125);
    border-radius: 3px;
    color: rgb(6, 132, 125);
    cursor: pointer;
    }

.button-select input[type="checkbox"]:checked + span {
    background-color: rgb(6, 132, 125);
    color: white;
}

.full-width-pane {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-width: 300px;
    max-width: 1000px;
    position: relative;
    padding: 25px;
    background-color: #FAF9F6;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 15px -3px, rgba(0, 0, 0, 0.15) 0px 4px 6px -2px;
    margin-bottom: 25px;
}
#results.full-width-pane {
    justify-content: center;
}

#results.full-width-pane .br {
    width: 100%;
}

#results h2 {
    font-size: 1.5rem;
    text-align: center;
}

#results div.standard {
    width: 256px;
    text-align: center;
    padding: 10px;
    margin: 12px;
    background-color: #FAF9F6;
}

#results div.wide {
    width: 532px;
    min-width: 256px;
    text-align: center;
    padding: 10px;
    margin: 12px;
}

#results table, #results thead, #results tr, #results td, #results th {
    text-align: center;
}

#results div h3 {
    font-size: 20px;
}

#results div p.key-stat {
    font-size: 30px;
    font-weight: bold;
    color: rgb(6, 132, 125);
}

#results div p.context {
    font-size: 12px;
    font-style: italic;
}

.results-title {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.results-link {
    cursor: pointer;
}

.results-link:hover {
    font-weight: bold;
}

#about-calc {
    text-align: left;
}