﻿.normal-radios {
            text-align: center;
            line-height: 20px;
        }

            .normal-radios label {
                display: inline;
                white-space: nowrap;
                cursor: pointer;
                margin-bottom: 0px;
                padding-left:5px;
                padding-right:20px;
                transition: all .9s ease;
            }

                .normal-radios label:hover {
                    background-color: gray;
                    color: white;
                    border-radius: 5px;
                }

            .normal-radios span span label {
                background-color: gray;
                color: white;
                border-radius: 5px;
            }

            .normal-radios input {
                line-height: 20px;
            }

        @media screen and (max-width: 400px) {
            .normal-radios label {
                font-size: 13px;
                padding-left:5px;
                padding-right:20px;
            }

            .normal-radios span span label {
                border-radius: 5px;
            }
        }