body
{
	background: #cccccc;
	font-family: K2D;
	font-weight: 400;
	padding-bottom: 100px;
	padding: 0;
	margin: 0;
}

body *
{
	box-sizing: border-box;
}

a
{
	color: #1b2b6b;
	text-decoration: none;
}

hr
{
	background-color: #a0a0a0;
	border: 0;
	height: 1px;
}

button
{
	border-radius: 20px;
	padding: 5px 10px;
	border: 1px solid #c0c0c0;
	background-color: #161C33;
	color: white;
	cursor: pointer;
}

input
{
	font-family: K2D;
}

.Search
{
	max-width: 600px;
	margin: 100px auto;
}

.Search img
{
	display: block;
	margin: auto;
	max-width: 250px;
	height: auto;
	opacity: 0;
	transition: opacity 0.6s;
}

.Search img.Showing
{
	opacity: 1;
}

.TjillRed
{
	color: #a02c43;
}

.PayOff
{
	opacity: 0;
	display: block;
	margin: 30px auto;
	transition: opacity 1s;
	color: #161c33;
	font-size: 1.1em;
	text-align: center;
}

.SubmitBar
{
	margin-top: 30px;
	opacity: 0;
	transition: opacity 0.25s;
	text-align: center;
}

.PayOff.Showing, .SubmitBar.Showing
{
	opacity: 1;
}

.SearchBox, .Results
{
	position: relative;
	opacity: 0;
	transition: opacity 1s;
}

.Results
{
    background: #eeeeee;
    padding: 20px;
    border-radius: 5px;
    margin: 40px 0 0 0;
    opacity: 0;
}

.SearchBox.Showing, .Results.Showing
{
	opacity: 1;
}

.SearchBox input
{
	width: 480px;
	height: 48px;
	border: 1px solid #3e404c;
	border-radius: 5px;
	line-height: 46px;
	padding: 10px;
	background: white;
	margin: auto;
	display: block;
	outline: none;
	font-family: K2D;
}

.SearchBox input:focus
{
	outline: none;
}

.SearchBox span
{
	position: absolute;
	right: 65px;
	top: 7px;
	width: 32px;
	height: 32px;
	background: url(gfx/search.png) no-repeat center center;
	opacity: 0.7;
	transition: opacity 0.15s;
	cursor: pointer;
}

.SearchBox span:hover
{
	opacity: 1;
}

.Bottom
{
	position: fixed;
	bottom: 0px;
	height: 65px;
	left: 0;
	width: 100%;
	text-align: center;
	background-color: #cccccc;
}

.Bottom > div
{
	display: block;
	margin: auto;
}

.Bottom:before
{
	display: block;
	content: " ";
	border-top: 1px solid #c0c0c0;
	margin: 0 0 20px 0;
}


@media (max-width: 600px)
{
	.Search
	{ 
		max-width: 100%;
		min-width: 100%; 
		margin: 40px auto;
	}
	.SearchBox input
	{
		width: 100%;
	}
	.SearchBox span
	{
		right: 10px;
	}
}

/* Supages */

.Top > p > a > img 
{
    max-width: 128px;
    height: auto;
    margin: 0;
}

.Top
{
	padding: 0 20px 0 20px;
    height: 77px;
    overflow: hidden;
    border-bottom: 1px solid #a0a0a0;
}

/* Signup */

.SignupForm
{
	margin: auto;
	max-width: 600px;
}

.ColumnBlock
{
	display: flex;
	gap: 20px;
}

.ColumnBlock p:first-child
{
	width: 200px;
}

.ColumnBlock p + p
{
	width: calc(100% - 200px)
}

.ColumnBlock p input
{
	width: 100%;
	border-radius: 20px;
	border-width: 1px;
	padding: 5px 10px 5px 10px;
}

.ColumnBlock p input:focus
{
	outline: 0;
}

.FormReceiver
{
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.Error
{
	transition: color,height 0.15s,0.15s;
	overflow: hidden;
	width: 100%;
	height: 0px;
	color: rgba(0,0,0,0.0);
}

.Error.Showing
{
	height: 25px;
	color: #a02c43;
}

/* Login */

.LoginContainer, .SubmitLink
{
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.6);
	opacity: 0;
	pointer-events: 0;
	transition: opacity 0.25s;
}

.SubmitLink input
{
	width: 100%;
}

.SubmitLink textarea
{
	width: 100%;
	height: 120px;
}

.LoginContainer.Showing, .SubmitLink.Showing
{
	opacity: 1;
	pointer-events: all;
}

.LoginContainer .Login, .SubmitLink .Dialog
{
	position: absolute;
	width: 480px;
	height: 480px;
	top: calc(50% - 240px);
	left: calc(50% - 240px);
	background: white;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
}

.LoginContainer .Login .Close,
.SubmitLink .Dialog .Close
{
	position: absolute;
	right: 20px;
	top: 20px;
	border: 0;
	background-color: black;
	border-radius: 100%;
	color: white;
	cursor: pointer;
	font-weight: 600;
}

/* About */

.About.Content
{
	max-width: 600px;
	margin: auto;
}
