﻿body {
    background: #cc0001;
    padding-top: 0;
    margin: 0;
    padding-bottom: 50px;
    width: 100%;
    height: 100%;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    color: #fffa00;
    background-color: #960000;
}

.top-heading {
    background: #ff3019; /* Old browsers */
    background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ff3019 0%,#cf0404 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ff3019 0%,#cf0404 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 ); /* IE6-9 */
    width: 100%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    border-radius: 3px;
}

.counter-heading {
    font-size: 34px;
}

.token-counter-bg {
    background: #f28979; /* Old browsers */
    background: -moz-linear-gradient(top, #f28979 0%, #e86c57 50%, #ff6600 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f28979 0%,#e86c57 50%,#ff6600 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f28979 0%,#e86c57 50%,#ff6600 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f28979', endColorstr='#ff6600',GradientType=0 ); /* IE6-9 */
}

.token-counter-content {
    width: 100%;
    text-align: center;
    line-height: 80px;
    color: #000;
    background: #fff;
    font-weight: 700;
    font-size: 80px;
    border-radius: 3px;
    margin-top: 5px;
    height: 80px;
}

.blinker {
    opacity: 1;
    -moz-animation: blinking 1s linear 5;
    -o-animation: blinking 1s linear 5;
    -webkit-animation: blinking 1s linear 5;
    animation: blinking 1s linear 5;
}

@-moz-keyframes blinking {
    from, 49.9% {
        opacity: 0;
    }

    50%, to {
        opacity: 1;
    }
}

@-webkit-keyframes blinking {
    from, 49.9% {
        opacity: 0;
    }

    50%, to {
        opacity: 1;
    }
}

@-ms-webkit-keyframes blinking {
    from, 49.9% {
        opacity: 0;
    }

    50%, to {
        opacity: 1;
    }
}

@keyframes blinking {
    from, 49.9% {
        opacity: 0;
    }

    50%, to {
        opacity: 1;
    }
}
