/* Style for winner pop-up */

#winner{
	position: fixed;
	right: 0;
	bottom: 0;
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	max-width: 25em;
	padding: 1em;
	padding-top: 1.5em;
	border-top: .5em solid #006161;
	animation: slideIn 1.5s ease .0s 1 normal;
	-webkit-animation: slideIn 1.5s ease .0s 1 normal;

	-webkit-transition: all 1.5s;
    transition: all 1.5s;
}

#winner #close{
	text-align: center;
	font-size: 1.2em;
	width: 1.5em;
	line-height: 1.5em;
	position: absolute;
	top: .5em;
	left: .5em;
}

#winner #close:hover{
	cursor: pointer;
	color: #FF0000;
}

#winner h2{
	font-size: 1.8em;
	text-transform: uppercase;
}

#winner h3{
	font-size: 1.5em;
	margin: 0;
	padding: 0 0 .5em 0;
	color: #006161;
	font-weight: bold;
}

.fadedOut{
	color: white;
	margin-bottom: -20em;
}

@keyframes slideIn{
	0%{
		color: white;
		margin-bottom: -20em;
	}

	100%{
		color: inherit;
		margin-bottom: 0;
	}
}

@-webkit-keyframes slideIn{
	0%{
		color: white;
		margin-bottom: -20em;
	}

	100%{
		color: inherit;
		margin-bottom: 0;
	}
}
