/* button-set
-------------------------------------*/
.rwmb-button-set {
}
.rwmb-button-set label {
    background-color: #F7F7F7;
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
    border: solid 1px #ccc;
}
.rwmb-button-set label + label {
    border-left: none;
}
.rwmb-button-set label:first-child {
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}
.rwmb-button-set label:last-child {
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}
.rwmb-button-set label > span {
    color: #333;
}
.rwmb-button-set label.selected {
    background-color: #007DB9;

}
.rwmb-button-set label.selected > span {
    color: #fff;
    position: relative;
    padding-right: 15px;
}
.rwmb-button-set label.selected > span:before {
    content: "\f00c";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    background-color: #81B441;
    top: -5px;
    right: -10px;
    font-size: 8px;
    font-family: FontAwesome;
    line-height: 15px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 0 5px;
}
