.thine-card-header {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left:16px;
}

.glow {
    color: #fff;
    text-align: center;
    -webkit-animation: glow 1s ease-in-out infinite alternate;
    -moz-animation: glow 1s ease-in-out infinite alternate;
    animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #3157eb, 0 0 8px #3157eb, 0 0 10px #3157eb, 0 0 12px #3157eb, 0 0 14px #3157eb;
    }

    to {
        text-shadow: 0 0 2px #fff, 0 0 4px #6882e9, 0 0 6px #6882e9, 0 0 8px #6882e9, 0 0 10px #6882e9, 0 0 12px #6882e9, 0 0 14px #6882e9;
    }
}