/**
 * jQuery Countdown
 *
 * Basic styles for a countdown timer. Feel free to write you own. These are
 * here really for demo purposes only.
 */
.countdown {
    width: 100%;
    overflow: hidden;
    height: 85px;
    float: left;
    position: relative;
    z-index: 10;
    display: table;
}

    .countdown > div {
        display: table-cell;
    }

        .countdown > div > span {
            display: block;
            text-align: center;
            font-family: sans-serif;
        }

span.count {
    font-size: 42px !important;
    color: #fff;
    line-height: 48px;
    padding-top: 7px;
    font-family: 'Open Sans Condensed';
    font-weight: bold;
    margin-bottom: 0px;
    line-height: initial;
}

span.title {
    color: #555;
    color: white;
    font-size: 12px;
    font-family: 'open sans condensed';
    font-weight: normal;
}

.days, .minutes, .hours, .seconds {
    background-color: #bbb !important;
    text-align: center;
}
