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

body {
	background-color: #FFF;
}

#countdown-wrap {
  width: 100%;
  height: 80px;
  /* border: 1px solid black; */
  padding: 20px;
  font-family: arial;
  max-width: 650px;
  margin: 10px auto 50px;
}

#goal {
  font-size: 24px;
  float: right;
  color: #080808;
  @media only screen and (max-width : 640px) {
    text-align: center;  
  }
  
}

#raised {
  width: 35%;
  font-size: 24px;
  float: left;
  color: #080808;
  @media only screen and (max-width : 640px) {
    text-align: center;  
  }
  
}
#glass {
  width: 100%;
  height: 20px;
  background: #A6A6A6;
  border-radius: 10px;
  float: left;
  overflow: hidden;
}

#progress {
  float: left;
  width: 20%;
  height: 20px;
  background: #D1481D;
  z-index: 333;
  /* border-radius: 5px; */
}

.goal-stat {
  width: 25%;
  /* height: 30px; */
  padding: 10px;
  float: left;
  margin: 0;
  color: #080808;
  
  @media only screen and (max-width : 640px) {
    width: 50%;
    text-align: center;
  }
}

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

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