Radio Button style : demo 5

HTML

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

CSS

                        .radio-list{
                            font-family: 'Poppins', sans-serif;
                            text-align: center;
                            padding: 20px 0;
                            margin: 0;
                            list-style: none;
                            margin: 0 auto;
                        }
                        .radio-button{
                            color: #000;
                            font-size: 16px;
                            text-transform: capitalize;
                            text-align: left;
                            padding-left: 37px;
                            margin: 0 5px 15px;
                            display: inline-block;
                            position: relative;
                            z-index: 1;
                        }
                        .radio-button input[type=radio]{
                            margin: auto;
                            visibility: hidden;
                            position: absolute;
                            left: 0;
                            top: 0;
                        }
                        .radio-button label{
                            font-weight: 500;
                            cursor: pointer;
                            margin: 0;
                            display: block;
                        }
                        .radio-button label:before,
                        .radio-button label:after{
                            content: "";
                            height: 18px;
                            width: 18px;
                            border: 1px solid #111;
                            border-radius: 50%;
                            position: absolute;
                            top: 2px;
                            left: 5px;
                        }
                        .radio-button label:after{
                            background: #e28800;
                            border: none;
                            transform: scale(0);
                            z-index: -1;
                            transition: transform 0.3s ease 0s,box-shadow 0.5s;
                        }
                        .radio-button input[type=radio]:checked+label:after{
                            transform: scale(0.5);
                            box-shadow: 0 0 0 25px rgba(234,140,0, 0.18);
                        }
                        @media only screen and (max-width:479px){
                            .radio-list{ text-align: left; }
                        }
                    
License Terms