Radio Button style : demo 3

HTML

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

CSS

                        .radio-list{
                            width: 210px;
                            padding: 20px 0;
                            margin: 0;
                            list-style: none;
                            margin: 0 auto;
                        }
                        .radio-button{
                            color: #fff;
                            font-size: 15px;
                            text-transform: uppercase;
                            padding-left: 35px;
                            position: relative;
                            margin: 0 0 15px;
                        }
                        .radio-button input[type=radio]{
                            margin: auto;
                            visibility: hidden;
                            position: absolute;
                            left: 0;
                            top: 0;
                        }
                        .radio-button label{
                            cursor: pointer;
                            display: block;
                        }
                        .radio-button label:before,
                        .radio-button label:after{
                            content: "";
                            background: #fff;
                            width: 13px;
                            height: 13px;
                            border-radius: 50%;
                            position: absolute;
                            left: 5px;
                            top: 5px;
                        }
                        .radio-button label:after{
                            background: transparent;
                            border: 2px solid #fff;
                            transform: scale(4);
                            opacity: 0;
                            visibility: hidden;
                        }
                        .radio-button input[type=radio]:checked+label:after{
                            opacity: 1;
                            visibility: visible;
                            transform: scale(2.3);
                            animation-name: explode;
                            animation-duration: 0.350s;
                        }
                        @keyframes explode{
                            0% {
                                opacity: 0;
                                transform: scale(10);
                            }
                            60% {
                                opacity: 1;
                                transform: scale(1);
                            }
                            100% {
                                opacity: 1;
                                transform: scale(2);
                            }
                        }
                    
License Terms