/* RADIO GROUPS */
.radio-group > .ui-buttonset {
    width: 100%;
    border: 1px solid #bfbfbf;
    padding: 0;
    display: table;
    border-radius: 5px;
    overflow: hidden;
    font-size: inherit;
    font-family: inherit;
    margin: 0;
    table-layout: fixed;
    box-sizing: border-box;
}
.radio-group .ui-helper-hidden {
    display: none;
}
.radio-group .ui-button {
    display: table-cell;
    width: 100%;
    background: #fafafa;
    text-align: center;
    border: 0;
    border-right: 1px solid #bfbfbf;
    padding: 13px 10px;
    font-size: inherit;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
    cursor: pointer;
}
.radio-group .ui-button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.radio-group .ui-button:last-child {
    border-right: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.radio-group .ui-button:hover,
.radio-group .ui-button:focus {
    background-color: #ffdf7f;
}
.radio-group .ui-button.ui-state-active {
    background-color: #ffc100;
}
.radio-group .ui-button.ui-state-active .ui-button-text {
    font-weight: bold;
}
.radio-group .ui-button .ui-button-text {
    padding: 0;
    text-shadow: none;
    color: #262626;
    font-weight: normal;
    line-height: inherit;
}

.radio-group-vertical {
    display: block;
    height: auto;
}
.radio-group-vertical .ui-button {
    position: relative;
    display: block;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #bfbfbf;
    margin: 0;
    padding: 20px 20px 19px 60px;
}
.radio-group-vertical .ui-button:last-child {
    border-bottom: 0;
}
.radio-group-vertical svg {
    position: absolute;
    left: 19px;
    top: 17px;
    width: 25px;
    height: 25px;
}
.radio-group .ui-button:hover svg path,
.radio-group .ui-button:hover svg polygon,
.radio-group .ui-button:focus svg path,
.radio-group .ui-button:focus svg polygon,
.radio-group .ui-button.ui-state-active svg path,
.radio-group .ui-button.ui-state-active svg polygon {
    fill: #000000;
}