/*
#kmt-countdown-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
    color: white;
    text-align: center;
    padding: 10px 0;
}

#kmt-countdown-bar p {
    margin: 0;
    font-size: 18px;
}
*/
/* =====  Count-down bar ===== */
#kmt-countdown-bar{
    /* REMOVE the old behaviour */
    /* position: fixed;  */   /* <— delete this line */
    position: static;         /* default flow-in behaviour */

    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;

    /* keep it on its own line, even after floated elements */
    clear: both;
}

#kmt-countdown-bar p{
    margin: 0;
    font-size: 18px;
}
