﻿.button-group {
    color: var(--klein-blue);
    display: inline-flex;
}
.button-group label {
    margin-bottom: 0;
}
.button-group label input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}
.button-group label span {
    cursor: pointer;
    display: block;
    padding: 12px 24px;
    background-color: var(--cream);
    font-weight: normal;
    line-height: normal;
}
.button-group label input:checked + span {
    background-color: var(--apricot);
}
.button-group label:first-child span {
    border-radius: 28px 0 0 28px;
    padding-left: 20px;
}
.button-group label:last-child span {
    border-radius: 0 28px 28px 0;
    padding-right: 20px;
}
.button-group label:not(:last-child) span {
    border-right: solid 1px var(--apricot);
}