@charset "UTF-8";

#master {
  overflow: hidden;
  /* margin-top: 200px; */
  padding: 0;
  margin: 0;
  transition: all 1s ease;
}

#master {
	/* background: url('../images/lamna-the-shark-yoEMDhSV_kE-unsplash.jpg') no-repeat fixed center; */
	/* background: url('../images/lamna-the-shark-yoEMDhSV_kE-unsplash.jpg') no-repeat; */	
	background: url('../images/nasa-yZygONrUBe8-unsplash.jpg') no-repeat;
	background-size: cover;
  /* margin-top: 200px; */
}

/* BLACK SHADOWY OVERLAY */
#master::before {

  content: '';
  /* background: rgba(0,0,0,0.2); */
  /* position: absolute; */
  top: 0;
  bottom: 0;
  width: 100%;
}

.timeline-pace a {
	color: #fff;
	text-decoration: none;
}

.timeline-pace a:focus a:hover {
	color: #fff;
	text-decoration: none;
}


.info_box_wrapper {
	display: grid;
	/* display: none; */
	visibility: hidden;
	/* position: relative; */
	grid-template-columns: 250px 1fr;
	/* align-items: center; */
	align-items: start;
	height: 500px;
	justify-items: center;
	/* margin-right: 20px; */
	margin: 10px 20px 0 0;
}

.info_box {
	/*background-color: #fff;
	opacity: .7;*/
	background-color: rgba(255, 255, 255, 0.9);
	/* border: 1px solid black; */
	border: 1px solid #dbdbdb;
	/* margin-top: 200px; */
	border-radius: 3px;
	padding: 10px;
	color: black;
	z-index: 1;
}

.info_box_title {
	font-size: 24px;
	font-weight: bold;
	display: grid;
	justify-items: center;
	color: #323232;
	text-align: center;
}

.info_box_date {
	font-size: 13px;
	/* font-weight: bold; */
	display: grid;
	font-style: italic;
	justify-items: left;
	color: #323232;
	margin-bottom: 20px;
}

.timeline-pace {
  position: absolute;
  transform: rotate(90deg);
  /* bottom: 0; */
  /* right: -100px; */
  top: 225px;
  /* top: 100; */
  width: 500px;
  left: -220px;
  height: 50px;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid #fff;
  /* padding-left: 40px; */
  padding-left: 100px;
}

.date{
  color: #fff;
  float: left;
  width: 50px; /* 150px */
  height: 50px;
  /*padding-left: 80px;*/
}

/* LINES GOING ACROSS*/
.date::before{
  content: '';
  position: absolute;
  height: 100vh;
  width: 1px;
  background: rgba(255,255,255,0.7);
  background: -webkit-linear-gradient(top,rgba(0,0,0,0.5),rgba(0,0,0,1)); /*Safari 5.1-6*/
  background: -o-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,1)); /*Opera 11.1-12*/
  background: -moz-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,1)); /*Fx 3.6-15*/
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(255,255,255,0.2)); /*Standard*/
  /* background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(255,255,255,1)); */ /*Standard*/
  margin-top: -100vh;
}
p.focus{
  position: absolute;
  top: 0;
  margin-left: -14px;
  padding-top: 10px;
}
p.focus::before{
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 3.5px;
}

p.focus::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: -5px;
  left: 9px;
}

.goal_wrap{
  position: absolute;
  box-shadow: 1px -1px 1px black;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  top:-100px;
  margin-left: -24px;
  font-size: 24px;
  transition: all 0.5s ease;
}

.goal_wrap:hover{
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-left: -30px;
  font-size: 30px;
  cursor: pointer;
}

.goal_wrap.active{
  top: -160px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin-left: -40px;
  font-size: 40px;
  cursor: pointer;
}

.bounce {
  animation: bounce 1s .5s;
  transform: scale(0.85);
}

@keyframes bounce {
  0% { transform: scale(0.85); opacity: 1; }
  50% { transform: scale(0.95); opacity: .7; }
  60% { transform: scale(0.6); opacity: 1; }
  80% { transform: scale(1.6) }
  100% { transform: scale(1.1) }
}


@media (min-width: 35em) {

	.timeline-pace {
		left: -210px;
	}

}


@media (min-width: 50em) {

	.timeline-pace {
		left: -200px;
	}

}