button, input:not(input[type="range"]) {
    background-color: var(--accent-color-secondary);
    border: none;
    color: white;
    padding: 0.75em 1.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}

button {
    cursor: pointer;
}

input[type="range"]{
    -webkit-appearance: none;
    background: var(--accent-color-secondary);
    height: 1.25em;
    /* 0.875 */
    margin-top: 1em;
    margin-bottom: 1em;
}

::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 3em;
    height: 3em;
    background: green;
    border-radius: 50%;
    cursor: pointer;
}

button.active {
    background-color: green;
}

.input-group {
    display: grid;
    grid-template-columns: max-content max-content;
    grid-gap: 5px;
}
.input-group input[type="checkbox"]{
    height: 80%
}
.input-group label{
    text-align: right;
    display: inline-flex;
    align-items: center;
    padding-right: 1em;
    min-height: 2.5em;
}