.pear-radio-list {
    display: flex;
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
    border-radius: 2px;
    border-bottom: 1px solid var(--dark-pear-green);
    background-color: #ebf7fc;
}

.pear-radio-option {
    position: relative;
    flex: 1;
    height: 100%;
    cursor: pointer;
}

.pear-radio-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 3;
}

.pear-radio-option span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pear-blue-grey);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    transition: 0.3s ease all;
}

.pear-radio-option input:not(:checked) + span {
    background-color: #ebf7fc;
    color: #4e4e4e;
}

.pear-radio-option input:checked + span {
    background-color: var(--secondary-pink);
    color: #fff;
}
