html
{
	height: 100%;
}
body
{
	margin: 0px;
	padding: 0px;
	height: 100%;
}

.C_APP
{
	height: 100%;
	position: relative;
}

.C_MASTER_PAGE
{
	min-height: 100%;
	position: relative;
}
.C_MASTER_PAGE > .C_MASTER_HEAD
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
	background-color: #FFFFFF;
	border-bottom: 8px solid var(--master-background-color);
}
.C_MASTER_PAGE > .C_MASTER_HEAD *
{
	color: var(--master-background-color);
}
.C_MASTER_PAGE > .C_MASTER_HEAD > a
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
}
.C_MASTER_PAGE > .C_MASTER_HEAD > a > span
{
	display: inline-block;
	margin: 0px 0px 0px 10px;
	background-image: url("/images/logos/qreck-logo-64x64.png");
	background-size: cover;
	width: 64px;
	height: 64px;
}

.C_MASTER_PAGE > .C_MASTER_HEAD > a > font
{
	margin: 0px 0px 0px 16px;
	font-size: 60px;
	font-family: Rubik;
}
.C_MASTER_PAGE > .C_MASTER_HEAD > div.C_CORNER
{
}
.C_MASTER_PAGE > .C_MASTER_HEAD > div.C_CORNER > span
{
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	cursor: pointer;
}
.C_MASTER_PAGE > .C_MASTER_HEAD > div.C_CORNER > span:hover
{
	background-color: #F0F5FD;
}
.C_MASTER_PAGE > .C_MASTER_HEAD > div.C_CORNER > span > i.fa
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
}

.C_MASTER_PAGE > .C_MASTER_BODY
{
	padding: 0px;	
}
.C_MASTER_PAGE > .C_MASTER_BODY > .C_MASTER_CONTENT
{
	width: 1024px;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
}
.C_MASTER_PAGE > .C_MASTER_FOOT
{
	display: none;
}
.C_MASTER_PAGE > .C_MASTER_FOOT[show="1"]
{
	display: block;
}
.C_MASTER_PAGE > .C_MASTER_FOOT > .C_LINKS
{
	text-align: center;
	padding: 16px;
}
.C_MASTER_PAGE > .C_MASTER_FOOT > .C_LINKS > a
{
	cursor: pointer;
}

@media screen and (max-width: 1024px)
{
	.C_MASTER_PAGE > .C_MASTER_BODY > .C_MASTER_CONTENT
	{
		width: 100%;
	}
}
@media screen and (max-width: 640px)
{
	.C_MASTER_PAGE > .C_MASTER_HEAD > a > font
	{
		margin: 0px 0px 0px 20px;
		font-size: 70px;
		position: relative;
		top: -1.2vw;
	}
	.C_MASTER_PAGE > .C_MASTER_FOOT > .C_LINKS > a
	{
		font-size: 6vw;
	}
}
@media screen and (max-width: 480px)
{
	.C_MASTER_PAGE > .C_MASTER_HEAD > div.C_CORNER > span
	{
		width: 22vw;
	}
	.C_MASTER_PAGE > .C_MASTER_HEAD > a > font
	{
		margin: 0px 0px 0px 5.5vw;
		font-size: 15vw;
		position: relative;
		top: -1.2vw;
	}
}
@media screen and (max-width: 360px)
{
	.C_MASTER_PAGE > .C_MASTER_HEAD > a > span
	{
		margin: 0px 0px 0px 2.7vw;
		width: 17.7vw;
		height: 17.7vw;
	}
	.C_MASTER_PAGE > .C_MASTER_HEAD > a > font
	{
		xfont-size: 19.4vw;
		top: -1.2vw;
	}
}