.group_radio a.fcs_group_radio:focus{
    outline: 0;
}
.group_radio a.fcs_group_radio:focus > label{
    outline: 0;
    text-shadow: 1px 1px 5px rgba(122,199,216,0.7), -1px -1px 5px rgba(122,199,216,0.7);   
}
.group_radio[my_width='one4line'] a.fcs_group_radio{
    display: table;
}
.group_radio a.fcs_group_radio > label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-size: 1.4em;
    color: #3c3c3c;
}

.group_radio a.fcs_group_radio > label.disabled {
    pointer-events: none;
    text-decoration: none;
    text-shadow: none;
    cursor: default;
    color: #808080;
}

label > input[type="radio"] {
    display: none;
}

.group_radio a.fcs_group_radio > label:before {
    content: "";
    display: inline-block;
    background: url(radio_uncheck.png) no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.group_radio a.fcs_group_radio > label.unchecked:before {
    content: "";
    display: inline-block;
    background: url(radio_uncheck.png) no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.group_radio a.fcs_group_radio > label.checked:before {
    content: "";
    display: inline-block;
    background: url(radio_check.png) no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.group_radio a.fcs_group_radio > label.disabled.unchecked:before {
    content: "";
    display: inline-block;
    background: url(radio_disable_uncheck.png) no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.group_radio a.fcs_group_radio > label.disabled.checked:before {
    content: "";
    display: inline-block;
    background: url(radio_disable_check.png) no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}