/* button-set
-------------------------------------*/
.rwmb-button-set {
    label {
        background-color: #ed6f6f;
        border: solid 1px #fff;
        cursor: pointer;
        display: inline-block;
        padding: 6px 12px;
        &:first-child {
            -webkit-border-radius: 15px 0 0 15px;
            -moz-border-radius: 15px 0 0 15px;
            border-radius: 15px 0 0 15px;
        }
        &:last-child {
            -webkit-border-radius: 0 15px 15px 0;
            -moz-border-radius: 0 15px 15px 0;
            border-radius: 0 15px 15px 0;
        }
        &.selected {
            background-color: #4fb845;
        }
    }
    label + label {
        border-left: none;
    }
    label > span {
        color: #fff;
    }
}