﻿
.radio-section-group {
    /*display: inline-block;*/
    /*position: relative;*/
    /*line-height: 22px;*/
    font-size: 14px;
    color: #2b2b2b;
    /*text-rendering: optimizeLegibility !important;*/
    /*-webkit-font-smoothing: antialiased !important;*/
}

    .radio-section-group span {
        font-size: 12px;
        position: relative;
        float: left;
        margin-left: -1px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        overflow: hidden;
        display: inline-block;
        line-height: 22px;
        color: #2b2b2b;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        background-color: #fff;
        border: 1px solid rgba(0,0,0,0.2);
        outline: 0;
    }

        .radio-section-group span:first-child {
            margin-left: 0;
            -webkit-border-top-left-radius: 7px;
            -moz-border-radius-topleft: 7px;
            border-top-left-radius: 7px;
            -webkit-border-bottom-left-radius: 7px;
            -moz-border-radius-bottomleft: 7px;
            border-bottom-left-radius: 7px;
        }

        .radio-section-group span:last-child {
            margin-right: 0;
            -webkit-border-top-right-radius: 7px;
            -moz-border-radius-topright: 7px;
            border-top-right-radius: 7px;
            -webkit-border-bottom-right-radius: 7px;
            -moz-border-radius-bottomright: 7px;
            border-bottom-right-radius: 7px;
        }

        .radio-section-group span input[type=radio]:checked ~ label {
            background-color: #8F8;
            color: #2b2b2b;
            -webkit-box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
            -moz-box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
            box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
        }

        .radio-section-group span.RedBack input[type=radio]:checked ~ label {
            background-color: #F88;
            color: #fff;
            -webkit-box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
            -moz-box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
            box-shadow: inset 0 3px 4px rgba(0,0,0,0.4);
        }

        .radio-section-group span input {
            display: none;
        }

        .radio-section-group span label {
            cursor: pointer;
            padding: 2px 10px 0px 10px;
            position: relative;
            display: inline-block;
        }

        .radio-section-group span label:hover {
            text-shadow: 1px 1px 3px #6495ED
        }