/**
 *	This element is created inside your target element
 *	It is used so that your own element will not need to be altered
 **/
.DateCountdownOuter{
    max-width: 500px !important;
    margin: 0 auto;
}
.time_circles {
    position: relative;
    width: 100%;
    height: 100%;
}

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
    position: absolute;
    text-align: center;
}

/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4{
    position: absolute;
    font-size: 14px;
    bottom: -70px;
    right: 0;
    left: 0;
    text-transform: capitalize;
    font-size: 14px !important;
    font-weight: 500;
}

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Century Gothic', Arial;
    line-height: 1;
    font-weight: bold;
}
@media screen and (max-width: 576px){
    .time_circles > div > h4{
        bottom: -40px;
    }
    #DateCountdown .time_circles > div > span{
        line-height: 24px;
        font-size: 21px !important;
    }
    .time_circles > div {
        top: 48% !important;
    }

}