/**
* Counter CSS
*/
.counter-wrapper{
    position: relative;
    margin: 0 auto;
    display: table;    
}
.countdown_section{
    width: 55px;
    margin: 20px 3px;
    height: 70px;
    float: left;
    padding: 5px;
    text-align: center;
                   
    border-width: 1px;
    border-style: solid;
    border-color: #b45351;
    color: #fff;
    font-weight: 700;
    font-size: 14px;    
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
    -webkit-box-shadow: inset 0 1px #a84142;
        -moz-box-shadow: inset 0 1px #a84142;
            box-shadow: inset 0 1px #a84142;
    background: #73247d; /* Old browsers */     
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#73247d), to(#f38226)); /* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #f38226, #73247d); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #f38226, #73247d); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #f38226, #73247d); /* IE 10 */
    background: -o-linear-gradient(top, #f38226, #73247d); /* Opera 11.10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f38226', endColorstr='#73247d',GradientType=0 ); /* IE6-9 */
}
.countdown_section:hover{
    background: #5e0e68; /* Old browsers */     
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#5e0e68), to(#ff7e15)); /* Safari 4-5, Chrome 1-9 */
    background: -webkit-linear-gradient(top, #ff7e15, #5e0e68); /* Safari 5.1, Chrome 10+ */
    background: -moz-linear-gradient(top, #ff7e15, #5e0e68); /* Firefox 3.6+ */
    background: -ms-linear-gradient(top, #ff7e15, #5e0e68); /* IE 10 */
    background: -o-linear-gradient(top, #ff7e15, #5e0e68); /* Opera 11.10+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7e15', endColorstr='#5e0e68',GradientType=0 ); /* IE6-9 */
}


.countdown_amount{
    margin: 5px;
    font-size: 150%;
    line-height: 50px;
    font-weight: bold;
    text-align: center;
}
.countdown_day{
    text-align: center;
    font-size: 80%;
    text-transform: uppercase;
}