/*
 * All files for this website are developed by William Buklis and licensed to Renaissance Knights
 * (c) 2020 Renaissance Knights, William Buklis
 * All Rights Reserved.
 */

.rkresults table
{
	width: 100%;
}

.waitanimation-container
{
/*	height: 200px;
	width: 100%;*/
	font-family: Helvetica;
}

.waitanimation
{
	height: 20px;
	width: 250px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.waitanimation--dot
{
	animation-name: waitanimation;
	animation-timing-function: ease-in-out;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	background-color: black;
	position: absolute;
	border: 2px solid white;
}
.waitanimation--dot:first-child
{
	background-color: #8cc759;
	animation-delay: 0.5s;
}
.waitanimation--dot:nth-child(2)
{
	background-color: #8c6daf;
	animation-delay: 0.4s;
}
.waitanimation--dot:nth-child(3)
{
	background-color: #ef5d74;
	animation-delay: 0.3s;
}
.waitanimation--dot:nth-child(4)
{
	background-color: #f9a74b;
	animation-delay: 0.2s;
}
.waitanimation--dot:nth-child(5)
{
	background-color: #60beeb;
	animation-delay: 0.1s;
}
.waitanimation--dot:nth-child(6)
{
	background-color: #fbef5a;
	animation-delay: 0s;
}
.waitanimation--text
{
	position: absolute;
	top: 200%;
	left: 0;
	right: 0;
	width: 4rem;
	margin: auto;
}
.waitanimation--text:after
{
	content: "Loading";
	font-weight: bold;
	animation-name: loading-text;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}

@keyframes waitanimation
{
	15%
	{
		transform: translateX(0);
	}
	45%
	{
		transform: translateX(230px);
	}
	65%
	{
		transform: translateX(230px);
	}
	95%
	{
		transform: translateX(0);
	}
}
@keyframes loading-text
{
	0%
	{
		content: "Loading";
	}
	25%
	{
		content: "Loading.";
	}
	50%
	{
		content: "Loading..";
	}
	75%
	{
		content: "Loading...";
	}
}