Radio Button style : demo 14

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)
                        
                        

CSS

                        .option-list{
                            text-align: center;
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }
                        .radio-button{
                            margin: 0 5px;
                            display: inline-block;
                            position: relative;
                        }
                        .radio-button input[type=radio]{
                            margin: auto;
                            visibility: hidden;
                            position: absolute;
                            left: 0;
                            right: 0;
                            bottom: 0;
                            top: 0;
                        }
                        .radio-button label{
                            color: #ee5253;
                            font-size: 17px;
                            font-weight: 600;
                            padding: 4px 13px 4px 35px;
                            margin: 0;
                            border-radius: 20px;
                            cursor: pointer;
                            position: relative;
                            z-index: 1;
                            transition: all 0.3s ease 0s;
                        }
                        .radio-button:hover label,
                        .radio-button input[type=radio]:checked+label{
                            background-color: rgba(0,0,0,0.05);
                        }
                        .radio-button label:before{
                            content: "";
                            width: 20px;
                            height: 20px;
                            margin: auto;
                            border-radius: 50%;
                            border: 2px solid #333;
                            position: absolute;
                            top: 0;
                            bottom: 0;
                            left: 9px;
                            z-index: -1;
                            transition: all 0.3s ease 0s;
                        }
                        .radio-button input[type=radio]:checked+label:before{
                            border-width: 6px;
                            border-color: #ee5253;
                        }
                        @media only screen and (max-width:767px){
                            .radio-button{ margin: 0 0 20px; }
                        }
                    
License Terms