﻿
@charset "UTF-8";

/*
	Name: index.css
	Description: CSS file for index.html
	Author: Trent Lam
	Date Created: April 19, 2022
	Date Modified: April 25, 2022
*/

#mainHeader *:not(#h1Header, #h2Header), main, footer {
	opacity: 0;
	pointer-events: none;
}

#h1Header, #h2Header {
	width: 0;
	margin-left: 50%;
	word-break: break-word;
}

#loading {
	opacity: 100% !important;
	position: fixed;
	z-index: 100;
	top: 50%;
	left: 0;
	height: auto;
	width: 100%;
	align-content: center;
	text-align: center;
	font-size: 0;
}

.loadingDash {
	position: relative;
	display: inline-block;
	background-color: white;
	width: 30px;
	height: 4px;
	margin: 0 3px;
	top: 0;
	-webkit-transform: skew(-45deg);
	-ms-transform: skew(-45deg);
	transform: skew(-45deg);
}

#loadingDash1 {
	opacity: 0;
	-webkit-animation: loadingDash1 1.5s ease-in-out infinite;
	-webkit-animation-delay: 1s;
	animation: loadingDash1 1.5s ease-in-out infinite;
	animation-delay: 1s;
}

#loadingDash2 {
	opacity: 0;
	-webkit-animation: loadingDash2 1.5s ease-in-out infinite;
	-webkit-animation-delay: 1s;
	animation: loadingDash2 1.5s ease-in-out infinite;
	animation-delay: 1s;
}

#loadingDash3 {
	opacity: 0;
	-webkit-animation: loadingDash3 1.5s ease-in-out infinite;
	-webkit-animation-delay: 1s;
	animation: loadingDash3 1.5s ease-in-out infinite;
	animation-delay: 1s;
}

@-webkit-keyframes loadingDash1 {
	0% { opacity: 0; }
	33.33% { opacity: 100%; }
	100% { opacity: 100%; }
}
@-webkit-keyframes loadingDash2 {
	0% { opacity: 0; }
	33.33% { opacity: 0; }
	66.67% { opacity: 100%; }
	100% { opacity: 100%; }
}
@-webkit-keyframes loadingDash3 {
	0% { opacity: 0; }
	66.67% { opacity: 0; }
	100% { opacity: 100%; }
}
@keyframes loadingDash1 {
	0% { opacity: 0; }
	33.33% { opacity: 100%; }
	100% { opacity: 100%; }
}
@keyframes loadingDash2 {
	0% { opacity: 0; }
	33.33% { opacity: 0; }
	66.67% { opacity: 100%; }
	100% { opacity: 100%; }
}
@keyframes loadingDash3 {
	0% { opacity: 0; }
	66.67% { opacity: 0; }
	100% { opacity: 100%; }
}