/* http://keith-wood.name/countdown.html
   Countdown for jQuery v1.6.3.
   Written by Keith Wood (kbwood{at}iinet.com.au) January 2008.
   Available under the MIT (https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt) license. 
   Please attribute the author if you use it. */


#countdown,
#countdown2 {
    display: none;
    float: right;
    margin-top: -2px;
    font-family: "Block-Berthold", Arial, Helvetica, sans-serif;
    font-size: 2em;
    letter-spacing: 2px;
    -webkit-animation: myfirst 1s infinite;
            animation: myfirst 1s infinite;
}

#countdown:before,
#countdown2:before {
    margin-right: 10px;
    font-size: .5em;
    letter-spacing: 1px;
    content: "Faltan";
    vertical-align: middle;
}

#countdown2 {
    position: absolute;
    width: 100%;
    display: none;
    font-size: 1.15em;
    text-align: center;
    -webkit-animation: myfirst2 1s infinite;
            animation: myfirst2 1s infinite;
    background: #f3eb36;
    z-index: 5;
}

#countdown2:before {
    font-size: .65em;
}

@-webkit-keyframes myfirst {
    0% {
        color: #fff;
    }
    
    50% {
        color: #f3eb36;
    }
    
    100% {
        color: #fff;
    }
}

@-webkit-keyframes myfirst2 {
    0% {
        color: #ed525c;
    }
    
    50% {
        color: #000;
    }
    
    100% {
        color: #ed525c;
    }
}

.hasCountdown {}

.countdown_rtl {
    direction: rtl;
}

.countdown_holding span {}

.countdown_row {}
/*
.countdown_show1 .countdown_section {
    width: 98%;
}

.countdown_show2 .countdown_section {
    width: 48%;
}
*/
.countdown_show3 .countdown_section {}
/*
.countdown_show4 .countdown_section {
    width: 24.5%;
}

.countdown_show5 .countdown_section {
    width: 19.5%;
}

.countdown_show6 .countdown_section {
    width: 16.25%;
}

.countdown_show7 .countdown_section {
    width: 14%;
}
*/
.countdown_section {
}

.countdown_amount {}

.countdown_descr {}