/*#eight-left {
	width: 100px;
	height: auto;
	position: fixed;
	right: calc(50% - 15.5px);
	top: 45vh;
	z-index: 101;
}
#eight-right {
	width: 100px;
	height: auto;
	position: fixed;
	left: calc(50% - 15.5px);
	top: 45vh;
	z-index: 101;
}

#pred-l {
	background-color: steelblue;
	border-right: 3px solid dimgrey;
	height: 100%;
	width: 50%;
	position: fixed;
	left: 0;
	top: 0;
}

#pred-r {
	background-color: steelblue;
	border-left: 3px solid dimgrey;
	height: 100%;
	width: 50%;
	position: fixed;
	right: 0;
	top: 0;
}*/

.pop-up {
	border-radius: 25px;
	background-color: white;
	padding: 15px;
	width: 40vw;
	height: 20vh;
	opacity: 75%;
	margin: 10vh auto 0;
	z-index: 100;
	pointer-events: none;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	
	animation-name: pop-up;
	animation-duration: 7s;
	animation-delay: 0.25s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: both;
}

.pop-up > .pri {
	font-size: 1.5em;
}

.pop-up > p {
	color: black;
}

@media screen and (max-width: 480px) {
	.pop-up {
		width: 60vw;
		height: 20vh;
		padding: 5px;
		line-height: 1.5;
	}
	.pop-up > .pri {
		font-size: 1em;
	}
}

@keyframes pop-up {
	0% {
		opacity: 25%;
		transform: translateY(-200%);
	}
	15% {
		opacity: 85%;
		transform: translateY(0);
	}
	80% {
		opacity: 85%;
		transform: translateY(0);
	}
	100% {
		opacity: 25%;
		transform: translateY(-200%);
	}
}

.ani-cont {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	pointer-events: none;
}
#ani-tl, #ani-tr, #ani-br, #ani-bl {
	position: fixed;
	width: 50%;
	height: 50%;
	background-color: steelblue;
	animation-fill-mode: forwards;
	border: 5px solid dimgrey;
}
@keyframes tl {
	50% {
		background-color: limegreen;
		transform: translate(0, 0);
	}
	100% {
		background-color: limegreen;
		transform: translate(-100%, -100%);
		display: none;
	}
}
@keyframes tr {
	50% {
		background-color: limegreen;
		transform: translate(0, 0);
	}
	100% {
		background-color: limegreen;
		transform: translate(100%, -100%);
		display: none;
	}
}
@keyframes br {
	50% {
		background-color: limegreen;
		transform: translate(0, 0);
	}
	100% {
		background-color: limegreen;
		transform: translate(100%, 100%);
		display: none;
	}
}
@keyframes bl {
	50% {
		background-color: limegreen;
		transform: translate(0, 0);
	}
	100% {
		background-color: limegreen;
		transform: translate(-100%, 100%);
		display: none;
	}
}
#ani-tl {
	top: 0;
	left: 0;
	animation-name: tl;
	animation-duration: 2s;
	animation-delay: 0.75s;
	animation-timing-function: ease-in-out;
}
#ani-tr {
	top: 0;
	right: 0;
	animation-name: tr;
	animation-duration: 2s;
	animation-delay: 1s;
	animation-timing-function: ease-in-out;
}
#ani-br {
	bottom: 0;
	right: 0;
	animation-name: br;
	animation-duration: 2s;
	animation-delay: 1.25s;
	animation-timing-function: ease-in-out;
}
#ani-bl {
	bottom: 0;
	left: 0;
	animation-name: bl;
	animation-duration: 2s;
	animation-delay: 1.5s;
	animation-timing-function: ease-in-out;
}
@keyframes img {
	100% {
		transform: translate(-50%, -350%);
		display: none;
	}
}
#ani-img {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10%;
	height: auto;
	z-index: 101;
	animation-name: img;
	animation-duration: 0.75s;
	animation-delay: 0.25s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
}