.application {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}
h2 span {
    margin-right: 5px;
}
.settings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: auto;
}
.setting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
    min-width: 40%;
}
.setting h1, .setting h2 {
    margin: 0.5rem 0;
}
.setting h1 {
    font-size: 1.7em;
}
.setting h3 {
    margin: 0.5rem 0;
}
.setting h2 input {
    margin-right: 10px;
}
.setting > input {
    width: 100%;
    max-width: 800px;
}
.setting button {
    padding: 15px;
    margin: 0 5px;
    background-color: bisque;
}
.setting button:not(.selected) {
    background-color: grey;
}
.setting .button-container {
    display: flex;
}
.setting input:disabled {
    color: rgba(0, 0, 0, 0);
}
input.figure {
    font-size: 24px;
    text-align: center;
}
.timeline-container {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 3rem auto;
    flex-wrap: wrap;
}
.timeline-tile {
    padding: 5px;
    margin: 3px;
}
.timeline-tile .value {
    text-align: end;
}
.timeline-tile-header td {
    text-align: center;
    font-weight: bolder;
}
#timeline-container-month .timeline-tile {
    background-color: bisque;
}
#timeline-container-year .timeline-tile {
    background-color: darkseagreen;
}
#minimize-amortization {
    height: 1.2rem;
    width: 1.2rem;
    margin: 0 5px;
}
.mortgage-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
}
.mortgage-info table {
    background-color: lightpink;
    color: black;
    border-radius: 0.4rem;
    padding: 1.5rem;
    max-width: 400px;
}
.mortgage-info table th {
    text-align: center;
    font-size: large;
    padding-bottom: 1.5rem;
}
.mortgage-info table tr td:first-of-type, .timeline-tile tr td:first-of-type {
    padding-right: 1rem;
}
.mortgage-info h5 {
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}