/* ************************************************************************
* File: general.css
*
* Purpose: Project spesific css
*
* This file is part of a software by Jens Gienau.
* (c)1999 - 2021 Jens Gienau / www.gienau.com / mail@gienau.com
************************************************************************ */

/* ========================================================================
DOCUMENTATION
======================================================================== */

/*
 * Color (intensive): #2B7AAB;
 * Color fonts: 	  #333333;
 * Color nav hover:   #f2f2f2;
 * Color nav active:  #f6f6f6;
 */

/* ========================================================================
COMMON
======================================================================== */
* {
	margin:0;
	padding:0;
	list-style:none;
	box-sizing:border-box;
	scroll-behavior: smooth;
}

*[rel="tooltip"] {
	cursor: help;
}

abbr[title], acronym[title] {
	cursor: help !important;
	border-bottom: 1px dotted #777 !important;
	text-decoration: none !important;
}

html,
body {
	height:100%;
}

body {
	background-color: #fff;
	margin-top:71px; /* Navigation offset */
	font-family: 'satoshiregular', sans-serif;
	font-size: 1.1rem;
	color:#333;
	line-height: 145%;
}

/* ========================================================================
TAGS
======================================================================== */
h1 {
	margin: 2.34em 0;
	text-align: center;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	text-transform: uppercase;
	color:#999;
	font-size: .8rem;
	line-height: 1rem;
}

h2 {
  	margin: 1.5rem 0;
  	line-height: 1.8rem;
  	font-family: 'satoshimedium', sans-serif;
	font-weight: normal;
  	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

h3 {
  	margin: 1.5rem 0;
  	line-height: 1.7rem;
  	font-family: 'satoshimedium', sans-serif;
	font-weight: normal;
  	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

a,
a:link,
a:visited { /* Remove dotted border */
	outline:none;
}

a {
	color:#2B7AAB;
	text-decoration: none;
}

a:hover {
	color:#2B7AAB;
	text-decoration: underline;
}


a[name] { /* Anchor with navigation offset */
	top:-71px;
	display: block; /* required for webkit browsers */
	height:0px;
	visibility: hidden;
	position: relative;
}

ul,ol {
	list-style-position: inside;
	padding:0 0 0 2rem;
	display: block;

}

ul li {
	list-style-type: square;
	padding:.25rem 0;
	line-height: 1.4em;
	font-size: 1.1rem;
}

ol li {
	list-style-type: lower-latin;
	padding:.25rem 0;
	line-height: 1.4em;
	font-size: 1.1rem;
}

p {
	margin: 0 0 0.67em 0;
	line-height: 145%;
	font-size: 1.1rem;
}

strong, b {
	font-family: 'satoshimedium', sans-serif;
	font-weight: normal;
}

img {
	width: 100%;
	height: auto;
	border-radius: 2px;
}

hr {
    background-color: #c70202;
    border: 0 none;
    color: #c70202;
    height: 1px;
    min-width: 100px;
    margin: 3.5rem auto 3rem auto;
    width: 20%;
}

/* ========================================================================
NAVIGATION - MOBILE + BRAND
Hint:  	https://codepen.io/taniarascia/pen/dYvvYv/;
		https://www.taniarascia.com/responsive-dropdown-navigation-bar/
======================================================================== */
.navigation-top {
	height: 71px;
	background: #fff;
	border-bottom: 1px solid #f2f2f2;
	font-size: .8rem;
	position: fixed;
	width: 100%;
	top: 0;
	padding: 0;
	z-index: 8998;
}

.navigation-top .brand {
	position: absolute;
	padding-left: 1rem;
	float: left;
	height: 70px;
	text-transform: uppercase;
	font-size: 1.4em;
	margin: 0;
}
.navigation-top .brand img {
	height: 70px;
	width: auto;
	padding: 18px 0;
}
.navigation-top .brand a,
.navigation-top .brand a:visited {
	color: #333;
	text-decoration: none;
}

.navigation-top .container-inside {
	height: 70px;
}

.navigation-top nav {
	float: right;
	width: 100%;
	padding: 71px 0 15px;
}
.navigation-top nav ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #fff;

}
.navigation-top nav ul li {
	float: none;
	border-bottom: 1px solid #f2f2f2;
	line-height: 1rem;
	list-style: none;
	padding: 0;
	font-size: .8rem; /* Effective font-size for navigation */
	text-transform: uppercase;
}

.navigation-top nav ul li ul li:last-of-type {
	border-bottom: none;
}

.navigation-top nav ul li a,
.navigation-top nav ul li a:visited {
	display: block;
	margin: 0;
	color: #333;
	text-decoration: none;
}

.navigation-top nav ul li a {
	padding: .5rem 1rem;
}

.navigation-top nav ul li a:hover,
.navigation-top nav ul li a:visited:hover,
.navigation-top nav ul li a.active  {
	color: #2B7AAB;
}


.navigation-top nav ul li a:not(:only-child):after,
.navigation-top nav ul li a:visited:not(:only-child):after {
	padding-left: 4px;
	content: " ▾";
}
.navigation-top nav ul li ul li {
	min-width: 250px;
	line-height: 1rem;
	text-transform: none;

}

.navigation-top nav ul li a.navigation-active,
.navigation-top nav ul li ul li a.navigation-active {
	color: #2B7AAB;
}

.navigation-top nav ul li ul li a {
	padding: .5rem 1rem .5rem 2rem ;
	line-height: 1rem;
}

.navigation-top .nav-dropdown {
	position: static;
	display: none;
	z-index: 8999;
	-moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.navigation-top nav a i {
	display: none !important;
}

.navigation-top nav a span.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: auto;
	margin: auto;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: auto;
}

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

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

/* ========================================================================
FORM
======================================================================== */

/* ------------------------------------------------------------------------
Form defaults
------------------------------------------------------------------------ */
form {
	display: block;
	padding: 0;
	font-size: 1.1rem;
}
form .form-group,
form .form-check,
form .form-radio {
	margin-bottom:1rem;
}

form .form-group label {
	display: block;
	color:gray;
	font-size: .8rem;
	line-height: 1rem;
	margin-bottom: .3rem;
	min-height: 1.2rem;
	padding-left: .3rem;
}

form .form-radio{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: top;
    -webkit-align-items: top;
    -ms-flex-align: top;
	align-items: top;
}
form .form-check {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

form input[type="text"], form input[type="url"], form input[type="password"], form textarea, form select {
	width:100%;
	border:none;
	border-radius: 0;
	border: 1px solid #B8B8B8;
	padding:.3rem;
	font-size: 1.1rem;
	line-height: 1.5rem;
	margin: 0;
}

form textarea {
	line-height: 1.3rem;
}

form input[type="text"]:focus, form input[type="url"]:focus, form input[type="password"]:focus, form textarea:focus, form select:focus {
	border-color: #2B7AAB;
  	outline: 0;
}

form input[readonly], form input[readonly="readonly"] {
	color: gray;
}

form input.flatpickr-input[readonly], form input.flatpickr-input[readonly="readonly"] {
	color: #000;
}

form input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance:none;
	appearance: none;
    width: 1.3rem;
    height: 1.3rem;
    display: inline-block;
    background: #FFFFFF;
	border: 1px solid #333;
	margin-right: .5rem;
}

form input[type="checkbox"]:focus {
	border-color: #333;
  	outline: 0;
}

form input[type=checkbox]:after {
	content: "";
	display: inline-block;
	position: relative;
	top: -1px;
	left: 6px;
	width: 5px;
	height: 12px;
	border-bottom: 1px solid #fff;
	border-right: 1px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
input[type=checkbox]:checked   {
    background: #333;
    outline: none;
    border: 1px solid #333;
}

/* Radio button Hint:  https://kulturbanause.de/blog/formular-styling-mit-css-select-listen-radio-buttons-und-checkboxen-individuell-gestalten/ */
/* remove standard-styles */

/* graceful degradation for ie8 */

.radio-btn-wrapper {
	margin-top: 0;
	margin-right: 1rem;
	padding-top: .4rem;
}

.radio-btn {
  background-color: #FFFFFF;
  border: 2px solid #4A4A4A;
  color: #4A5362;
  background-color: #f2f2f2;

  outline: none;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  padding-top: 1rem;
}

.radio-btn-selected {
  border: 2px solid #4A4A4A;
  color: #4A5362;
  background-color: #3dc2d3;
  outline: none;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  padding-top: 1rem;
}

.radio-btn-label {
	padding-top: .3rem;
}

/* Select styling: https://codepen.io/vkjgr/pen/VYMeXp */
select {

  /* styling */
  background-color: white;
  border: 1px solid #B8B8B8;
  display: inline-block;
  font: inherit;
  line-height: 1.5rem;
  font-size: 1.1rem;
  padding-right: 45px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 37px;

  /* reset */

  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}


select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(.9rem + 0px),
    calc(100% - 15px) calc(.9rem + 0px),
    calc(100% - 2.5rem) 0.3rem;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5rem;
  background-repeat: no-repeat;
}

select:focus {
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) .9rem,
    calc(100% - 20px) .9rem,
    calc(100% - 2.5rem) 0.3rem;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5rem;
  background-repeat: no-repeat;
  outline: 0;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}


form .btn {
	margin-top: 1rem;
}

form label.required:after {
	color: #e32;
	content: " *";
	font-size: 1rem;
}

form label abbr {
	margin-left:.5rem;
	cursor: pointer;
}

form .required-hint {
	text-align: right;
	line-height: 1rem;
	font-size: .85rem;
}

form .required-hint span:before {
	color: #e32;
	content: "* ";
}

form .form-error {
	margin:.2rem 0;
	width:100%;
	font-size: .8rem;
	color:#fff;
	background-color: #e32;
	padding:.1rem;
	border-radius: 2px;
	line-height: 1rem;
}

form code {
	font-size: 1.1rem;
	padding:0 .2rem;
	color:#333;
	font-family: 'satoshimedium', sans-serif;
	font-weight: normal;
}

.form-box {
	margin-bottom: 2rem;
	-moz-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
	-webkit-box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
	padding:1rem;
}

form input.invalid,
form select.invalid,
form label.invalid,
form textarea.invalid,
form div.form-check.invalid {
	background-color: #ffdddd !important;
}

form .output {
	width:100%;
	border:none;
	border-radius: 0;
	border: 1px solid #B8B8B8;
	padding:.3rem;
	font-size: 1.1rem;
	line-height: 1.5rem;
	margin: 0;
	background-color: #EDEDED;
}

/* ········································································
 Preview of uploades data
········································································ */

.file-command-container {
  position: relative;
  display: inline-block;
  padding: 0;
  background-color: #333;
  overflow: hidden;
}
.file-command-container img {
  display: block;
  width:100%;
}
.file-command-container > span.command {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	color: #fff;
	text-align: right;
	background-color: rgba(0, 0, 0, 0.6);
	padding:.25rem .5rem;
}

.file-command-container > span.legend {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.6);
	padding:.05rem .5rem;
	font-size: .8rem
}

.file-command-container span i {
	cursor: pointer;
}

/* ········································································
Form upload / preview
········································································ */

form .form-group.upload .container-border .upload-text-input span label {
    display: block;
    padding: 8px 12px;
    cursor: pointer;
    background-color: #fff;
    font-size: 1.1rem;
    width:100%;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 0;
    background-image: url('./../img/icon-upload-cloud.png');
    background-size: 30px 30px;
	background-repeat: no-repeat;
	background-position: 6px;
	border: 1px solid #B8B8B8;
	padding:.4rem;
	color: #333;
	line-height: 1.3rem;
	position: relative;
}

form .trash {
	color: #333;
	position: absolute;
	right: 6px;
	top: 6px;
	cursor: pointer;
}
form .trash:hover {
	color: #e32;
}

form .form-group.upload .container-border .upload-text-input input[type="file"] {
  position: absolute;
  z-index: -1;
  top: 6px;
  left: 0;
  font-size: 1rem;
  color: rgb(153,153,153);
}

form .form-group.upload input[type="hidden"] {
	border:none;
}

form .form-group.upload .container-border .upload-text-input > span {
	position: relative;
	display: block;
}


/* ------------------------------------------------------------------------
Form Ajax
------------------------------------------------------------------------ */
form fieldset {
	border:none;
	margin:0;
	padding:0;
}

form .notification ul {
	margin:0;
	padding: 0 0 0 16px;
	list-style-position: outside;
}

form .notification ul li {
	list-style-type: none;
	text-indent: -16px;

}
form .notification ul li:before {
	content: "\25BA\00A0";
	width:16px;
	display: inline-block;
	text-align: right;
}

form #progressbar {
	width:40px;
	height:40px;
	color:#fff;
	margin: 0 auto;
}

form #progressbar img {
	width:40px;
	height:40px;
}


/* ------------------------------------------------------------------------
Form multiple pages
------------------------------------------------------------------------ */
/* Hide all steps by default: */
form.multi-steps .tab {
  display: none;
}

/* Make circles that indicate the steps of the form: */
form.multi-steps .step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

/* Mark the active step: */
form.multi-steps .step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
form.multi-steps .step.finish {
  background-color: #4CAF50;
}

form.multi-steps table {
	border-collapse: collapse;
}

form.multi-steps table tr td {
	line-height: 1.5rem;
	vertical-align: middle;
}
form.multi-steps table tr td:first-of-type input[type=radio] {
	width: 1rem;
    height: 1rem;
}

form.multi-steps table tr.disabled td {
	color:silver;
}

form.multi-steps .btn-section {
	float: right;
}

form.multi-steps .step-indicator-section {
	text-align: center;
	margin: 6rem auto 0 auto;
	width: 100%;
}


/* ========================================================================
TABLE
======================================================================== */

table {
	width:100%;
	text-align: left;
}

table td, table th {
	padding: .5rem .25rem;
	white-space: normal;
  	overflow: hidden;
  	text-overflow:ellipsis;

}
table tbody tr:nth-child(even){
	background-color: #f2f2f2;
}
table th {
	background-color: silver;
	color:#fff;
	font-size: .9rem;
	padding: .25rem;
	white-space: nowrap;
}
table th:first-of-type {
	border-top-left-radius: 2px;
}
table th:last-of-type {
	border-top-right-radius: 2px;
}
table p {
	margin-top:0;
}

td {
	vertical-align: top;
}

.table-scrollable {
	width: 100%;
	overflow-y: auto;
	margin: 0 0 1em;
}

.table-scrollable::-webkit-scrollbar {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
}

.table-scrollable::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}

/* ========================================================================
BLOCKQUOTE
======================================================================== */
blockquote {
	font-family: 'satoshiregular', sans-serif;
	font-size: 1.2rem;
	margin: 0.25rem 0;
	padding: 1rem 30px;
	line-height:1.7em;
	position: relative;
	color: #383838;
	hyphens: auto; /* <html lang="de"> in HTML document required */
}

blockquote:before {
	display: block;
	content: "\201C";
	font-size: 60px;
	position: absolute;
	left: -0px;
	top: 16px;
	color: #7a7a7a;
	font-family: Georgia, serif;
}

blockquote > span {
	display: block;
}

blockquote cite {
	color: #999;
	font-size: 1rem;
	display: block;
	margin-top: 5px;
	text-align: right;
}

blockquote cite > span {
	margin-left: 1rem;
}

blockquote cite:before {
	content: "\2014 \2009";
}


/* ========================================================================
USEFUL CLASSES
======================================================================== */
.auto-cut {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 200px;
}

.container-outside {

}

.container-inside {
	max-width: 1140px;
	margin:0 auto;
}

.share-btn {
	cursor: pointer;
}

.share-btn span:hover{
	text-decoration: underline;
}

.wrapper {
	padding: 1rem;
}

.text-section {
	margin-bottom: 1rem;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-small {
	font-size: .8rem;
	line-height: 1rem;
}

.text-nowrap {
	white-space:nowrap;
	word-wrap: normal;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

.text-nohyphenate {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

.text-overflow {
	overflow: hidden;
}

.text-hyphenate {
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}

.mobile-block {
	display:block;
}

.mobile-inline-block {
	display:inline-block;
}

.mobile-inline {
	display:inline;
}

.desktop-block {
	display:none;
}

.desktop-inline-block {
	display:none;
}

.desktop-inline {
	display:none;
}

.hide {
	display:none;
}

.width-100 {
	width:100%;
}

.btn {
	display: inline-block;
	font-family: 'satoshimedium', sans-serif;
	text-transform: uppercase;
	color:#fff;
	background-color: #2B7AAB;
	padding:.5rem 1rem;
	border: 1px #2B7AAB solid;
	border-radius: 2px;
	cursor: pointer;
	margin-top: 2rem;
	margin-bottom: 2rem;
	text-decoration: none;
	font-size: .9rem;
}

.info {
	display: block;
	background-color: #f2f2f2;
	padding:1rem 2rem;
	border-radius: 2px;
}

.info-block {
	display: block;
	background-color: #f2f2f2;
	padding:1rem 2rem;
	border-radius: 2px;
	margin:2rem 0 ;
}

.info-inline-block {
	display: inline-block;
	background-color: #f2f2f2;
	padding:1rem 2rem;
	border-radius: 2px;
	margin:2rem 0 ;
}

.btn:hover {
	background-color:#333;
	color:#fff;
	text-decoration: none;
	border: 1px #333 solid;
}

button:disabled,
button[disabled]{
	background-color:gray;
	cursor: not-allowed;
}

.btn i {
	margin-right:.5rem;
}

.image-credits {
	font-size: .8rem;
	line-height: 1rem;
	text-align: left;
	color: gray;
}

/* ------------------------------------------------------------------------
clearfix
------------------------------------------------------------------------ */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clearfix {
  *zoom: 1; /* Für den IE6 und IE7 */
}


/* ========================================================================
ELEMENTS
======================================================================== */

/* ------------------------------------------------------------------------
Paging
------------------------------------------------------------------------ */
.paging {
	margin-top:2rem;
	text-align: center;
}
.paging .btn {
	display: inline-block;
	padding: 0 .5rem;
	border-radius: 2px;
	border: 0;
	text-transform: uppercase;
	font-size: .9rem;
	line-height: 2rem;
	margin: 0 .5rem .5rem .5rem;
}

.paging .btn.btn-disabled {
  color: #f4f4f4;
  background-color: silver;
  cursor: not-allowed;
}

.paging .btn i {
  margin:0;
}

.paging .record-counter {
  display: block;
  font-size: 80%;
  margin: 1rem 0;
  color: #929292;
  text-align: center;
}


/* ------------------------------------------------------------------------
VIDEO CONTAINER
------------------------------------------------------------------------ */
.video {
	display:none;
}

.video .wrapper {
	padding-left:0;
	padding-right:0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    background-image: url('../img/youtube-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------------------------------------------------
Banner (cookie notifiaction and JS note)
------------------------------------------------------------------------ */
.banner {
	position: fixed;
	bottom:0;
	right:0;
	background-color: #fbfccd;
	width:100%;
	line-height: 1.5rem;
}

.banner .wrapper {
	padding: 1rem;
	display : -ms-flexbox;
	display: flex;
	-ms-flex-pack : justify;
	justify-content: space-between;
	-ms-flex-align : start;
	align-items : flex-start;
}

.banner .btn {
	margin:0 0 0 1rem;
	padding:0 1.5rem;
	line-height: 1.5rem;
}

.banner.javascript {
	background-color: #e32;
	color:#fff;
	z-index:9999;
}

.banner.javascript .wrapper {
	display: block;
	text-align: center;
}

.banner.cookie {
	z-index:9998;
}

/* ------------------------------------------------------------------------
Notification
------------------------------------------------------------------------ */
.notification {
	border-radius: 2px;
	padding: 1rem !important;
	color: #fff;
	line-height: 1.4em;
	margin:2rem 0;
}

.notification a,
.notification a:link,
.notification a:hover {
	color:#fff;
	text-decoration: underline;
}
.notification p:first-of-type {
	margin-top: 0;
}

.notification p:last-of-type {
	margin-bottom: 0;
}

.notification ul li {
	line-height: 1.6em;
}

.notification.notification-danger {
	color:#fff;
	background-color: #e32;
}

.notification.notification-success {
	color:#fff;
	background-color: #3CB371;
}

.notification.notification-info {
	color:#fff;
	background-color:#0174DF;
}

.notification {
	border-radius: 2px;
	padding:1rem;
}

/* ------------------------------------------------------------------------
toggle
------------------------------------------------------------------------ */
.cmd-toggle {
	cursor: pointer;
	color:#2B7AAB;
}
.close-toggle {
	cursor: pointer;
	color:#2B7AAB;
}
.cmd-toggle:hover {
	color:#000;
}
.close-toggle:hover {
	color:#000;
}
.to-toggle {
	display: none;
}



/* ========================================================================
SECTIONS
======================================================================== */

/* ------------------------------------------------------------------------
preloader
------------------------------------------------------------------------ */
#preloader {
	display: none;
}

/* ------------------------------------------------------------------------
main
------------------------------------------------------------------------ */
main {
	background-color: #fff;
	padding-bottom: 4rem;
}

main > div.container-outside:first-of-type {
	min-height: calc(100vh - 71px);
}


/* ------------------------------------------------------------------------
footer
------------------------------------------------------------------------ */
footer {
	min-height:99px;
	font-size: 1.1rem;
}

footer .flex-col-3, footer .flex-col-2 {
	padding:.5rem 0;
	text-align: center;
}

footer .flex-container {

}
footer .copyright {
	padding:1rem 0;
	text-align: center;
	font-size: .8rem;
}

footer .copyright hr {
    background-color: #eee;
    border: 0 none;
    color: #eee;
    height: 1px;
    max-width: 200px;
    margin: 0 auto;
    width: 20%;
}

footer img {
	padding:1rem 0;
}

footer a {
	text-decoration: none;
}

footer .container-outside:first-of-type {
		background-color: #f2f2f2;
}


/* ------------------------------------------------------------------------
partner (spnsors)
------------------------------------------------------------------------ */
.container-outside.partner {
	padding-top:0;
	padding-bottom:2rem;
	background-color: #f2f2f2;
}

.partner img {
	margin: .3rem 0;
}

.partner h2 {
	text-align: center;
	font-size:.9rem;
	color:gray;
}

.partner .flex-col-2 {
	position: relative;
	padding: 0;
}

.partner .overlay {
	padding: 0;
	position: absolute;
	top: .5rem;
	right: .2rem;
	font-size: .6rem;
	text-transform: uppercase;
	color: #000;
	line-height: .6rem;
}

.partner .overlay.bright {
	color: #fff;
}

/* ------------------------------------------------------------------------
share-block
------------------------------------------------------------------------ */
.container-outside.share-block {
	margin: 2rem 0;
}
.share-block {
	text-align: center;
}
.share-block .emoji {
	font-size: 2rem;
}

/* ------------------------------------------------------------------------
Block: page-image-class (page content)
------------------------------------------------------------------------ */
.page-image-class {
  opacity: 0;
  transition: all 600ms ease-in-out;
  transform: translateY(100px) scale(1.05) translate3d(0, 0, 0);
}

.page-image-class-show-block {
  opacity: 1;
  transform: translateY(0) scale(1) translate3d(0, 0, 0);
}

.page-image-left, .page-image-right {
	display: none;
	margin-bottom:1rem;
}

.page-image-bottom {
	display: block;
	margin-bottom:0;
}

/* ------------------------------------------------------------------------
Block: page-section (page content)
------------------------------------------------------------------------ */
.page-section .text-section .btn {
	margin-top: 1rem;
	margin-bottom: 1rem;
}


/* ========================================================================
MEDIA QUERY: DESKTOP SMALL
======================================================================== */

@media only screen and (min-width: 1100px) {

	/* ========================================================================
	MQ: TAGS
	======================================================================== */


	/* ========================================================================
	MQ: USEFUL CLASSES
	======================================================================== */
	.mobile-block {
		display:none;
	}

	.mobile-inline-block {
		display:none;
	}

	.mobile-inline {
		display:none;
	}

	.desktop-block {
		display:block;
	}

	.desktop-inline-block {
		display:inline-block;
	}

	.desktop-inline {
		display:inline;
	}

	img.headline-adjust {
		margin-top: 1.1rem;
	}


	/* ========================================================================
	MQ: FLEXBOX
	======================================================================== */
	.flex-container {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}

	.flex-col-2 {
		width:50%;
		margin: 0 .5rem;
	}
	.flex-col-2:first-of-type {
		margin-left:0;
	}
	.flex-col-2:last-of-type {
		margin-right:0;
	}

	.flex-col-3 {
		width:33.3%;
		margin:0 .5rem;
	}
	.flex-col-3:first-of-type {
		margin-left:0;
	}
	.flex-col-3:last-of-type {
		margin-right:0;
	}

	.flex-col-4 {
		width:25%;
		margin:0 .5rem;
	}
	.flex-col-4:first-of-type {
		margin-left:0;
	}
	.flex-col-4:last-of-type {
		margin-right:0;
	}

	.flex-container.flex-col-mirrored .flex-col-2:first-of-type {
		-ms-flex-order: 2;  /* IE 10 */
		order: 2;
		margin-left:.5rem;
		margin-right:0rem;
	}

	.flex-container.flex-col-mirrored .flex-col-2:last-of-type {
		-ms-flex-order: 1;  /* IE 10 */
		order: 1;
		margin-right:.5rem;
		margin-left:0;
	}

	/* ========================================================================
	MQ: SECTIONS
	======================================================================== */

	/* ------------------------------------------------------------------------
	MQ: navigation top
	------------------------------------------------------------------------ */

	.navigation-top .nav-mobile {
		display: none;
	}
	.navigation-top .nav-list {
		display: block !important;
	}

	.navigation-top .brand img {
		padding: 15px 0;
	}

	.navigation-top nav {
		float: right;
		width: auto;
		padding: 0;
		height: 70px;
		padding: 0;
		margin: 0;
	}

	.navigation-top nav ul {
		display: block;
	}

	.navigation-top nav ul li {
		float: left;
		position: relative;
		border-bottom: none;
		position: relative;
	}

	.navigation-top nav ul li a {
		padding: 0 .5rem; /* Effective distance of nav items */
		line-height: 70px;
	}
	.navigation-top nav ul li a:last-of-type {
		padding-right: 1rem;
	}

	.navigation-top nav ul li ul li a {
		padding: .5rem .5rem;
	}

	.navigation-top .nav-dropdown {
		position: absolute;
	}

	.navigation-top nav a i {
		display: inline !important;
	}

	.navigation-top nav a span.sr-only {
		border: 0;
		clip: rect(0, 0, 0, 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	/* ------------------------------------------------------------------------
	MQ: page-image-class (page content)
	------------------------------------------------------------------------ */
	.page-image-left {
		display: block;
		float:left;
		width:50%; 
		margin-right:1rem; 
	}
	
	.page-image-right {
		display: block;
		float:right;
		width:50%; 
		margin-left:1rem; 
	}
	
	.page-image-bottom {
		display: none;
	}
	
	/* ------------------------------------------------------------------------
	MQ: footer
	------------------------------------------------------------------------ */
	footer .flex-col-3 {
		text-align: center;
	}

}


