Radio Button style : demo 4

HTML

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

CSS

                        .radio-button{
                            color: #555;
                            font-size: 17px;
                            text-transform: capitalize;
                            padding-left: 23px;
                            position: relative;
                        }
                        .radio-button input[type=radio]{
                            margin: auto;
                            visibility: hidden;
                            position: absolute;
                            left: 0;
                            top: 0;
                        }
                        .radio-button label{
                            font-weight: 400;
                            cursor: pointer;
                            margin: 0;
                            display: block;
                        }
                        .radio-button label:before,
                        .radio-button label:after{
                            content: "";
                            width: 17px;
                            height: 17px;
                            border: 4px solid #777;
                            border-radius: 50%;
                            position: absolute;
                            left: 0;
                            top: 4px;
                            transition: all 0.3s ease 0s;
                        }
                        .radio-button label:after{ transform: scale(0); }
                        .radio-button input[type=radio]:checked+label:before{
                            border-width: 2px;
                            border-color: #ff4e5a;
                            box-shadow: 0 0 5px -1px #ff4e5a;
                        }
                        .radio-button input[type=radio]:checked+label:after{
                            background-color: #ff4e5a;
                            border-color: #ff4e5a;
                            transform: scale(0.5);
                        }
                    
License Terms