body * {
    font-family: 'Nunito', sans-serif;
    box-sizing: border-box;
}

#countdown-wrap {
    width: 100%;
    height: 300px;
//border: 1px solid black;
    padding: 20px;
    font-family: arial;
    max-width: 650px;
}

#goal {
    font-size: 48px;
    text-align: right;
    color: #c7c7c7;
    width: 50%;
    float: right;
}

#current {
    font-size: 48px;
    text-align: left;
    color: #FF5D50;
    width: 50%;
    float: left;
}

#glass {
    width: 100%;
    height: 20px;
    background: #c7c7c7;
    border-radius: 10px;
    float: left;
    overflow: hidden;
}

#progress {
    float: left;
    height: 20px;
    background: #FF5D50;
    z-index: 333;
//border-radius: 5px;
    transition: width 2s;
}

.names {
    font-size: 24px;
    color: #ffffff;
}

.goal-stat {
    width: 25%;
//height: 30px;
    padding: 10px;
    float: left;
    margin: 0;
    color: #FFF;
}

.goal-number, .goal-label {
    display: block;
}

.goal-number {
    font-weight: bold;
}