* {
	font-family: 'Roboto', sans-serif;
}

body {
	background-color: #FFFFFF;
	margin: 0;
	min-height: 100%;
}

.hidden {
	visibility: hidden;
}

.right {
	float: right;
}

.body a {
	color: #2196F3;
	text-decoration: none;
}


/*

	Keyframes

*/

@keyframes dropDownHover {
    0% {padding-left: 3px; background-color: white;}
	100% {padding-left: 10px; background-color: #03A9F4;}
}

@keyframes dropDownUnHover {
	0% {padding-left: 10px; background-color: #03A9F4;}
	100% {padding-left: 3px; background-color: white;}
}

@keyframes hoverNav {
	0% {color: white; background-color: #303F9F;}
	50% {color: white; background-color: #03A9F4}
	100% {color: #303F9F; background-color: #03A9F4;}
}


/*
	
	Navigation
	
*/

.navigation {
	width: 100%;
}

.navigation .titlebar {
	background-color: #3F51B5;
	height: 100px;
	color: #FFFFFF;
	padding-left: 30px;
}

.navigation .titlebar h1 {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.navigation #nav .nav a.active {
	border-bottom: 4px solid white;
}

.navigation #nav .nav.clickable:hover a {
	border-bottom: 4px solid #03A9F4;
	color: #303F9F;
	background-color: #03A9F4;
	
	animation-name: hoverNav;
    animation-duration: 0.75s;
}

.navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #303F9F;
	overflow: hidden;
	padding-left: 30px;
	padding-right: 30px;
}

.navigation li {
	float: left;
}

.navigation li * {
	display: block;
	padding: 8px;
	text-align: center;
	padding: 14px 16px;
	font-weight: bold;
	
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 18px;
	text-decoration: none;
}

.navigation #lang div .menu {
	padding: 0;
}

.navigation #profile, .navigation #lang {
	float: right;
}

.navigation #profile #login {
	border-radius: 100%;
}

.navigation li .dropdown .changed {
	padding: 0;
	margin: 0;
}

.navigation .dropdown {
	display: inline-block;
}

.navigation .dropdown .items * {
	padding: 3px;
	text-align: left;
	display: none;
	text-transform: none;
	color: black;
}

.navigation .dropdown .items {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 110px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	padding: 0px;
	
	max-height: 0;
    transition: max-height 0.1s ease-out;
}

.navigation .dropdown:hover .items {
	display: block;
	
	max-height: 500px;
    transition: max-height 1.5s ease-in;
	overflow: hidden;
}

.navigation .dropdown:hover .items * {
	display: block;
}

.navigation .dropdown .items *:hover {
	background-color: #03A9F4;
	padding-left: 10px;
	
	animation-name: dropDownHover;
    animation-duration: 0.4s;
}

.navigation .dropdown .items * {
	animation-name: dropDownUnHover;
    animation-duration: 0.4s;
}

.body {
	margin-right: 10%;
	margin-left: 10%;
}



/*

	Alert Box

*/

alert {
	display: block;
	width: 100%;
	background-color: #F44336;
	color: white;
	border: 1px solid #FF9800;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
	padding: 10px;
}

/*

	Form

*/


form input {
	color: black;
	font-weight: bold;
	font-size: 25px;
}

form table input {
	width: 100%;
}

form button {
	background-color: #3F51B5;
	padding: 10px 20px 10px 20px;
	border: 0px;
	width: 300px;
	height: 60px;
	color: white;
	font-weight: bold;
	font-size: 22px;
	text-align: center;
}

form button:hover {
	background-color: #03A9F4;
}

form button:disabled {
	background-color: #dddddd;
	color: black;
}

form textarea {
	height: 300px;
}

/*

	Checkbox

*/

.checkbox {
	width: 28px;
	height: 28px;
	position: relative;
	margin: 20px auto;
	background: #fcfff4;
	background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
	vertical-align: sub;
}

/*

	Full Iframe

*/

iframe.full {
	width: 100%;
	height: 100%;
}

/*

	Login Box

*/


.visible-loginbox {
	display: block;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.loginbox {
	display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.5);
}

.click {
	background-color: #FEFEFE;
    margin: 10% auto;
    padding: 5px;
    width: 80%;
	overflow: auto;
	
	background-color: #303F9F;
	
}

.click * {
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 22px;
	text-transform: uppercase;
}

.click form {
	display: inline-block;
	width: 49%;
}

.click input {
	text-transform: none;
	color: black;
}

.click button {
	background-color: #3F51B5;
	padding: 10px 20px 10px 20px;
	border: 0px;
	width: 300px;
	height: 60px;
	margin-right: 5px;
	margin-left: 5px;
}

.click button:hover {
	background-color: #03A9F4;
}

.click h1 {
	text-transform: none;
	text-decoration: underline;
	font-size: 26px;
}


/*

	Body

*/

.title {
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
}

.title h3 {
	font-size: 18px;
	color: #757575;
	margin: 0;
	margin-bottom: -20px;
}

.splitter {
	margin-top: 50px;
	margin-bottom: 50px;
	height: 1px;
	border-bottom: 1px solid #BDBDBD;
}

.block {
	margin-top: 50px;
	margin-bottom: 50px;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	min-height: 75px;
	border: 1px solid #BDBDBD;
	
	overflow-y: auto;
}

.flex {
	display: flex;
}

.full {
	width: 100%;
}

.article {
	font-size: 25px;
}

.padding {
	padding: 15px;
}


.text {
	display: inline-block;
	padding: 15px;
}

.block .article {
	padding: 0px;
}

.text h2 {
	font-size: 18px;
	color: #757575;
}

.block .article h1 {
	text-align: center;
	font-size: 40px;
	margin-top: 15px;
	border-top: 1px solid #BDBDBD;
	padding-top : 15px;
	
	margin-bottom: 15px;
	border-bottom: 1px solid #BDBDBD;
	padding-bottom: 15px;
	
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	
	color: white;
	background-color: #03A9F4;
}

.block .article h4 {
	color: black;
	background-color: white;
	
	margin-top: 15px;
	border-top: 1px solid #BDBDBD;
	padding-top : 15px;
	
	margin-bottom: 15px;
	border-bottom: 1px solid #BDBDBD;
	padding-bottom: 15px;
	
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	
	/*animation-name: hoverHeader;
    animation-duration: 0.4s;*/
}

h4 {
	text-align: center;
	margin-bottom: 8px;
	color: #03A9F4;
}

h5 {
	text-align: center;
	text-decoration: underline;
	margin-top: 5px;
	margin-bottom: 5px;
}

g {
	display: block;
	font-size: 20px;
	text-align: center;
}


/*

	Multi-Block Row

*/

.partwrapper {
	width: 100%;
}

.part {
	margin-top: 50px;
	margin-bottom: 50px;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	min-height: 100px;
	border: 1px solid #BDBDBD;
	display: inline-block;
}

.part.double {
	width: 40%;
	float: left;
	margin-left: 5%;
}

.part.double:nth-child(even) {
	float: right;
	margin-left: 0;
	margin-right: 5%;
}




/*

	Table

*/

table {
	width: 100%;
	display: table;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	font-size: 20px;
	text-align: left;
	max-width: 100%;
}

td {
	border-top: 1px solid #BDBDBD;
}

td, th {
	width: 20%;
	max-width: 20%;
	padding-top: 10px;
	padding-bottom: 10px;
}


/*

	Hidden Table

*/

.hiddentable {
	margin: auto;
	height: 100px;
}

.hiddentable tr {
	border: none;
}

.hiddentable td, .hiddentable th {
	border: none;
	text-align: center;
}

.hiddentable h3 {
	margin: auto;
}

/*

	Hover

*/

hovertext {
	position: relative;
    display: inline-block;
}

hovertext .hover {
	visibility: hidden;
	white-space: nowrap;
    background-color: white;
	color: black;
    text-align: center;
    padding: 4px;
    position: absolute;
    z-index: 1;
    bottom: 60%;
    left: 50%;
	border: 1px solid black;
	transform: translate(-50%, -50%);
}

hovertext:hover .hover {
	visibility: visible;
}

hovertext .hover p {
	margin: 0;
}

/*

	Preview Image

*/

.previewImage {
	height: 220px;
	overflow: hidden;
	max-width: 100%;
}

.padding .previewImage {
	border-radius: 35px 0px 70px 0px;
}

.previewImage img {
	margin: 0 auto;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	max-width: 100%;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.previewFrame {
	overflow: hidden;
	max-width: 100%;
}

.previewFrame iframe {
	margin: 0 auto;
	display: block;
	position: relative;
	max-width: 100%;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*

	Preview Image Text

*/

.previewText {
	text-align: center;
	color: #757575;
	font-size: 25px;
	margin-top: 50px;
	font-weight: bold;
	margin-right: 50px;
	margin-left: 50px;
}

/*

	Preview Icon

*/

.previewIcon {
	display: inline-block;
	width: 25%;
	overflow: hidden;
	max-height: 100%;
}

.previewIcon img {
	margin: 0 auto;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	max-height: 100%;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}





/*

	Stuff

*/

.center {
	text-align: center;
}

.fullwidth {
	width: 100%;
}


/*

	Cookie Confirm

*/

.cookieConfirm {
	display: block;
    background-color: #9E9E9E;
    color: white;
    font-size: 20px;
    height: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    position: fixed;
    right: 0px;
    padding: 5px;
}

.cookieConfirm p {
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.cookieConfirm button {
	background: #FFEA00;
  padding: 10px 20px 10px 20px;
  border: solid #ffeb3b 2px;
  text-decoration: none;
}