table,
        td,
        th {
            padding: 5px 12px;
            text-align: left;
        }

        .table td,
        .table th {
            padding: 4px 10px;
            ;
        }

        .agp {
            color: black;
        }

        img.crest-ico {
            margin: 0 8px 0 0;
            height: 38px;
            width: 38px;
            vertical-align: top;
            border: 1px solid #fafafa;
            object-fit: scale-down;
            background-color: #eee;
            border-radius: 50%;
            /*overflow: visible;*/
            box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
        }

        img {
            vertical-align: middle;
        }

        .driverName{
            font-weight: 700;
        }

        .bonusName{
            font-weight: 500;
        }

        img.crest-ico2 {
            width: 50px;
            height: 50px;
            vertical-align: top;
            border: 1px solid #fafafa;
            object-fit: scale-down;
            background-color: #eee;
            border-radius: 50%;
            margin-right: 10px;
            /*overflow: visible;*/
            box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
        }

        hr,
        img {
            border: 0;
        }

        .nameUser {
            color: white;
        }

        * {
            margin: 0;
            padding: 0;
        }

        .blink {
            animation: 1s blinker linear infinite;
            -webkit-animation: 1s blinker linear infinite;
            -moz-animation: 1s blinker linear infinite;
            color: green;
        }

        @-moz-keyframes blinker {
            0% {
                opacity: 1.0;
            }

            50% {
                opacity: 0.0;
            }

            100% {
                opacity: 1.0;
            }
        }

        @-webkit-keyframes blinker {
            0% {
                opacity: 1.0;
            }

            50% {
                opacity: 0.0;
            }

            100% {
                opacity: 1.0;
            }
        }

        @keyframes blinker {
            0% {
                opacity: 1.0;
            }

            50% {
                opacity: 0.0;
            }

            100% {
                opacity: 1.0;
            }
        }