
@charset "UTF-8";

body 
{
	margin: 0;
}

.header 
{
	background-color: #f1f1f1;
	padding: 10px;
	text-align: center;
}

.fg-dark
{
	color: #293133;
}

.bg-dark
{
	background-color: #293133;
}

.fg-light
{
	color: #596266;
}

.bg-light
{
	background-color: #596266;
}

.sticky 
{
	position: fixed;
	top: 0;
	width: 100%;
}

.content
{
	display: flex;
	padding: 16px;
	padding-bottom: 70px;
	z-index: 0;
}

.sticky + .content
{
	padding-top: 70px;
}

.top-navigation
{
	height: 70px;
	background: #293133;
	z-index: 100;
	order: 100;
}

.bottom-navigation
{
	position: fixed;
	height: 70px;
	background: #293133;
	width: 100%;
	bottom: 0;
	z-index: 100;
	order: 100;
}

.brand 
{
	position: absolute;
	padding-left: 20px;
	float: left;
	line-height: 70px;
	text-transform: uppercase;
	font-size: 1.4em;
}

.brand img
{
	height: 65px;
}

.brand a, 
.brand a:visited 
{
	color: #ffffff;
	text-decoration: none;
}

.nav-container 
{
	max-width: 1000px;
	margin: 0 auto;
}

nav 
{
	float: right;
}
nav ul 
{
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li 
{
	float: left;
	position: relative;
}
nav ul li a,
nav ul li a:visited 
{
	display: block;
	padding: 0 10px;
	line-height: 70px;
	background: #293133;
	color: #ffffff;
	text-decoration: none;
	cursor:pointer;
}
nav ul li a:hover,
nav ul li a:visited:hover 
{
	background: #596266;
	color: #ffffff;
	cursor:pointer;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after 
{
	padding-left: 4px;
	content: ' ▾';
	cursor:pointer;
}
nav ul li ul li 
{
	min-width: 190px;
}
nav ul li ul li a 
{
	padding: 15px;
	line-height: 20px;
}

.nav-dropdown 
{
	position: absolute;
	display: none;
	right: 0;
	z-index: 100;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile 
{
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	background: #293133;
	height: 70px;
	width: 70px;
}

@media only screen and (max-width: 680px) 
{
	.nav-mobile 
	{
		display: block;
	}

	nav.nav-responsive
	{
		width: 100%;
		padding: 70px 0 15px;
	}
	nav.nav-responsive ul 
	{
		display: none;
	}
	nav.nav-responsive ul li 
	{
		float: none;
	}
	nav.nav-responsive ul li a 
	{
		padding: 15px;
		line-height: 20px;
	}
	nav.nav-responsive ul li ul li a 
	{
		padding-left: 30px;
	}

	.nav-dropdown 
	{
		position: static;
	}
}
@media screen and (min-width: 681px) 
{
	.nav-list 
	{
		display: block !important;
	}
}

#nav-toggle 
{
	position: absolute;
	left: 18px;
	top: 22px;
	cursor: pointer;
	padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after 
{
	cursor: pointer;
	border-radius: 1px;
	height: 5px;
	width: 35px;
	background: #ffffff;
	position: absolute;
	display: block;
	content: '';
	transition: all 300ms ease-in-out;
}
#nav-toggle span:before 
{
	top: -10px;
}
#nav-toggle span:after 
{
	bottom: -10px;
}
#nav-toggle.active span 
{
	background-color: transparent;
}
#nav-toggle.active span:before, 
#nav-toggle.active span:after 
{
	top: 0;
}
#nav-toggle.active span:before 
{
	transform: rotate(45deg);
}
#nav-toggle.active span:after 
{
	transform: rotate(-45deg);
}

@media screen and (max-height: 600px)
{
	.header
	{
		line-height: 2px;
	}
	
	.content
	{
		padding-bottom: 30px;
	}

	.sticky + .content
	{
		padding-top: 30px;
	}

	.top-navigation
	{
		height: 30px;
	}

	.bottom-navigation
	{
		height: 30px;
	}

	.brand 
	{
		line-height: 30px;
	}

	.brand img
	{
		height: 25px;
	}
	
	nav ul li a,
	nav ul li a:visited 
	{
		line-height: 30px;
	}

	nav ul li ul li a 
	{
		line-height: 10px;
	}

	.nav-mobile 
	{
		height: 30px;
		width: 30px;
	}
	
	#nav-toggle 
	{
		left: 5px;
		top: 5px;
		padding: 10px 35px 16px 0px;
	}
	
	#nav-toggle span,
	#nav-toggle span:before,
	#nav-toggle span:after 
	{
		height: 2px;
		width: 15px;
	}
	#nav-toggle span:before 
	{
		top: -5px;
	}
	#nav-toggle span:after 
	{
		bottom: -5px;
	}
	
	svg
	{
		width: 16px;
		height: 16px;
	}
}

.innercontent 
{
	padding: 16px;
	display: table;
	margin-left: auto;
	margin-right: auto;
}

.loader 
{
    display: block;
	margin-top: 100px;
    margin-left: auto;
    margin-right: auto;	
	padding: auto;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #293133;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
	z-index: 100;
}

@keyframes spin 
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.column 
{
	width: 100%;
	display: block;
	margin-bottom: 16px;
	padding: 0 8px;
}

@media screen and (min-width: 900px) 
{
	.column 
	{
		float: left;
		width: 48%;
		margin-bottom: 16px;
		padding: 0 8px;
	}
}

@media screen and (min-width: 1200px) 
{
	.column 
	{
		float: left;
		width: 23%;
		margin-bottom: 16px;
		padding: 0 8px;
	}
}

.bigcolumn 
{
    float: left;
    width: 31%;
    margin-bottom: 16px;
    padding: 0 8px;
}

@media screen and (max-width: 800px) 
{
    .bigcolumn 
	{
        width: 100%;
        display: block;
    }
}

@media screen and (orientation: landscape) and (max-width: 800px)
{
    .bigcolumn 
	{
		float: left;
		width: 31%;
		margin-bottom: 16px;
		padding: 0 8px;
	}
}

.card 
{
	position: relative;
	height: 100%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	margin-bottom: 32px;
}

.card-title
{
	font-size: x-large;
	font-weight: bold;
	min-height: 3em;
	display:inline-block;
	text-align:left;
}

.card-date
{
	color: #999999;
	font-size: smaller;
}

.container
{
    padding: 0 16px;
	text-align: justify;
}

.row
{
	display:flex;
	flex-wrap:wrap;
}

.container::after, .row::after 
{
    content: "";
    clear: both;
    display: table;
}

.title 
{
    color: grey;
}

.button 
{
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: #ffffff;
    background-color: #293133;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover 
{
    background-color: #555;
}

.nowrap
{
	white-space: nowrap;	
}

.error
{
	text-align: center;
	padding: 16px;
}

.image-container
{
    position: relative;
    text-align: center;
    color: white;
}

.text-bottomleft
{
    position: absolute;
    bottom: 8px;
    left: 8px;
	text-shadow: 0px 0px 25px #ffffff;
	color: #000000;
	padding: 0;
	margin: 0;
}

.text-bottomright
{
    position: absolute;
    bottom: 8px;
    right: 8px;
	text-shadow: 0px 0px 25px #ffffff;
	color: #000000;
	padding: 0;
	margin: 0;
}

.container-content
{
	min-height: 200px;
	color: #000000;
}

.justify
{
	text-align: justify;
}

.left
{
	text-align: left;
}

.pointer
{
	cursor: pointer;
}

.nomargin
{
	margin: 0;
}

.teaser
{
	min-height: 40px;
}

.trainer
{
	min-height: 40px;
}

.timetable
{
	min-height: 40px;
	display: block;
}

.overlay 
{
	position: fixed;
	display: none;
	overflow:auto;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 200;
	text-align:center;
	backdrop-filter: blur(5px);
}

.bigcontact 
{
	!max-width:40%;
}

@media screen and (max-width: 600px) 
{
    .bigcontact 
	{
		!max-width:80%;
    }
}

.outline
{
	color: white;
	-webkit-text-fill-color: black;
	-webkit-text-stroke-width: 0.3px;
	-webkit-text-stroke-color: white;
}