@charset "utf-8";
/* CSS Document */

.progress-container {
  position: relative;
  width: 600px;
  height: 30px;
  border: 1px solid gray;
  background-color: #aca39a;
  margin-bottom: 20px;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: orange;
  z-index: 25;
}

.progress-bar-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 25;
}

.countdown-text {
  position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  text-align: center;
  color: white;
  line-height: 25px;
  z-index: 10;
  background-color: #aca39a;
}


.countdown-text span {
  position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
}

.appears-in {
  position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  text-align: center;
  color: white;
  line-height: 25px;
  z-index: 15;
  background-color: #aca39a;
}

.appears-in span {
  position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
}



