// Radio-Buttonset Controls
.customize-control-radio-buttonset {
    input[type=radio] {

    }
    label {
        padding: 5px 10px;
        background: #f7f7f7;
        border-left: 1px solid #dedede;
        line-height: 35px;
        &.ui-state-active {
            background: #dedede;
        }
        &.ui-corner-left {
            border-radius: 3px 0 0 3px;
            border-left: 0;
        }
        &.ui-corner-right {
            border-radius: 0 3px 3px 0;
        }
    }
}
