currentdiv,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;					
}

/*****************************/
/* elements */
/*****************************/

* {
	box-sizing: border-box;
}

html {
	color: #434343;
	background-color: #fff;
	height: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Source Sans Pro';
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
	font-size: 18px;
	line-height: 1.4;
	min-height: 100%;
}

@media (max-width: 900px) {
	body {
		font-size: 17px;
		line-height: 1.3;
	}
}

img {
	border: 0px;
	display: block;
	max-width: 100%;
}

/* header home link */
h1 {
	font-size: 100%;
	font-weight: 400;
}

/* page / post header */
h2 {
	font-size: 240%;
	font-weight: 300;
	text-align: center;
	padding: 1.3em 1em 0.8em;
	margin: 0em;
}

h3 {
	font-size: 170%;
    font-weight: 300;
	text-align: center;
	margin-bottom: 0.7em;
}

h6 {
	font-size: 170%;
    font-weight: 400;
	text-align: center;
	margin-bottom: 0.7em;
}

h4 {
	font-size: 135%;
	font-weight: 400;
}

h5 {
	font-size: 120%;
	font-weight: 400;
}

.link-h5 {
	font-size: 115%;
	text-align: center;
	margin-bottom: 15px;	
}

.link-h5 a {
	padding: 0px 7px;
	border-radius: 5px;
}

p {
	margin: 0px;
	padding: 0px;
}

.xtra-p p {
	margin-bottom: .7em;	
}

strong {
	font-weight: 600;
}

b {
	font-weight: 400;
}

i {
	font-style: italic;
}

small {
	font-size: 85%;
}

figcaption {
	font-weight: 400;
	font-style: italic;
	text-align: center;
	padding: 5px 8px;
}

figcaption span {
	font-weight: 300;
}

ol {
	list-style-type: none;
	counter-reset: item;
	margin: 1em 0em 0em 1.3em;
}

ol li {
	margin: 0em 0em 0.5em 0em;
}

ol li ol {
	margin: 0em 0em 0em 1.5em;
}

ol li ol li {
	margin: 0em 0em 0em 0.5em;
}

li::before {
	counter-increment: item;
	content:  "." counters(item, ".");
	display: inline-block;
	width: 1em;
	margin-left: -1.5em;
	margin-right: 0.5em;
	text-align: right;
	direction: rtl;
}

ol .fett::before {
	font-weight: 400;
}

ul {
	list-style: none inside;
	margin: 1em 0em 1em 1em;
}

.narrow-ul {
	margin: .5em 0em .5em 1em;
}

ul li {
	margin: 0.2em 0em 0.2em 0em;
}

.narrow-ul li {
margin: 0em 0em 0em 0em;
}

ul li::before {
	content: "·";
	display: inline-block;
/* 	width: .8em; */
/* 	margin: 0 0 0 -0.8em; */
	font-weight: 600;
}

iframe {
	max-width: 100%;
	width: 100%;
}

a {
	color: #0f3671;
	text-decoration: none;
	outline: none;
	font-weight: 400;
}

a:focus {
	color: #3D79C0;
	text-decoration: none;
	outline: 1px solid #3D79C0;
}

a:link {
	color: #0f3671;
	/* background-color: inherit;	 */
	text-decoration: none;
	outline: none;
	transition: color .2s ease, background-color .2s ease;
}

a:visited {
	color: #0f3671;
	text-decoration: none;
	outline: none;
}

a:hover {
	color: #fff;
	background-color: #113056;
	text-decoration: none;
	outline: none;
	transition: color .2s ease, background-color .2s ease;
}

a:active {
	color: #fff;
	text-decoration: none;
	outline: none;
	background-color: #64779a;
}

a img {
	opacity: 1;
	transition: opacity, .1s ease;
}

a img:hover {
	opacity: 0.5;
	transition: opacity .1s ease;
}

/* --------- link button ----------- */

.invert-link {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #0f3671;
	background-color: #d7dee9;
	border: 1px solid #b3bdcc;
	border-radius: 5px;
	padding: 0 5px 0 5px;
}

.invert-link:visited {
	color: #0f3671;
	background-color: #d7dee9;
	border: 1px solid #b3bdcc;
	text-decoration: none;
	outline: none;
}

.invert-link:focus {
	color: #0f3671;
	background-color: #d7dee9;
	border: 1px solid #b3bdcc;
	text-decoration: none;
	outline: none;
}

.invert-link:hover {
	color: #fff;
	text-decoration: none;
	outline: none;
	background-color: #1e3250;
	border: 1px solid #1e3250;
}

.invert-link:active {
	color: #fff;
	background-color: #64779a;
	border: 1px solid #516080;
	text-decoration: none;
	outline: none;
}

/*****************************/
/* !top-nav */
/*****************************/

#nav-container {
	position: sticky;
	top: 0px;
	z-index: 3;
}

#menu ul {
	margin: 0;
	padding: 0;
}

#menu ul li {
	margin: 0;
}

#menu ul li::before {
	content: none;
	margin: 0;
}

#menu .main-menu {
	display: none;
}

#mm:checked ~ .main-menu {
	display: block;
}

#menu input[type="checkbox"] {
	display: none;
}

#menu li, #toggle-menu, #menu a {
	position: relative;
	display: block;
	color: white;
}

#menu {
	background-color: #2f2f2f;
	letter-spacing: 0.03em;
}

#toggle-menu {
	/* background-color: #222; */
	letter-spacing: 0.03em;
}

.main-menu li {
	border-top: 1px solid #444;
}

#toggle-menu, #menu a, #menu p {
	padding: 0em 0em;
	line-height: 36px;
}

#menu a, #menu p {
	color: #fff;
	/* background-color: inherit; */
	text-align: center;
	width: 100%;
	padding-left: 0;
	display: inline-block;
	font-weight: 400;
	transition: color .2s ease, background-color .2s ease;
}

#menu a:hover {
	color: #333;
	background-color: white;
	transition: color .2s ease, background-color .2s ease;
}

/* ------ top-nav buttons ------- */

.dd-main-on-icon {
	display: none;
}

#mm:checked ~ label .dd-main-on-icon {
	display: inline-block;
	width: 100%;
	height: 36px;
	margin: auto;
	background: url("images/dd-on.png") no-repeat;
	background-position: 50% 50%;
	float: right;
	transition: background-color .2s ease;
}

#mm:checked ~ label .dd-main-on-icon:hover {
	background-color: #ccc;
	transition: background-color .2s ease;
}

#mm:checked ~ label .dd-main-off-icon {
	display: none;
}

.dd-main-off-icon {
	display: inline-block;
	width: 100%;
	height: 36px;
	margin: auto;
	background: url("images/dd-off.png") no-repeat;
	background-position: 50% 50%;
	float: right;
	transition: background-color .2s ease;
}

.dd-main-off-icon:hover {
	background-color: #ccc;
	transition: background-color .2s ease;
}

/* ------ top-nav @media styles ------- */

@media only screen and (min-width: 600px) and (max-width:700px) {
	#menu .sub-menu a {
	font-size: 90%;
	}
}

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

#menu {
	background-color: #2f2f2f;
}

#menu .main-menu {
	display: block;
	/* border-bottom: 1px solid #000; */
	max-width: 1030px;
	margin: auto;
	}

#toggle-menu {
	display: none;
	}

#menu li {
	float: left;
	width: 16.6%;
	}

#menu ul > li {
	/* border-right: 1px solid #444; */
	border-top: none;
	background-color: #2f2f2f;
	}

#menu ul > li:last-child {
	border-right: none;
	}
	
#menu input[type="checkbox"]:checked ~ .dd-on-icon {
	display: none;
	width: 20%;
	}

.dd-off-icon {
    /* width: 20%; */
	display: none;
	}
}

/* ------ top-nav current links ------- */

#main-current p {
	background-color: #777;
	/* background-color: #3c6dac; */
	cursor: default;
}

#main-current a {
	background-color: #777;
	/* background-color: #3c6dac; */
	cursor: pointer;
}

/* ------ secondary navi ------- */

#sec-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 15px 0px;
	/* background: rgba(255, 255, 255, 0.8 ); */
	/* background: linear-gradient( rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)); */
	background: #fff;
}

#sec-nav a, #sec-nav p {
	width: max-content;
	font-weight: 400;
	line-height: 120%;
	border-radius: 5px;
	text-align: center;
	padding: 3px 14px;
	margin: 0px 10px 10px 10px;
	color: #666;
	background-color: #ddd;
	transition: color .2s ease, background-color .2s ease;
}

#sec-nav a:hover, #sec-nav p:hover {
	color: #fff;
	background-color: #2f2f2f;
	transition: color .2s ease, background-color .2s ease;
}

#sec-nav .sec-nav-current, #sec-nav .sec-nav-current:hover {
	color: #fff;
	background-color: #6f6e6e;
	/* background-color: #3c6dac; */
	transition: none;
	cursor: default;
}

#sec-nav .sec-nav-current-link {
	color: #fff;
	background-color: #6f6e6e;
	/* background-color: #3c6dac; */
	transition: color .2s ease, background-color .2s ease;
}

#sec-nav .sec-nav-current-link:hover {
	background-color: #2f2f2f;
	transition: color .2s ease, background-color .2s ease;
}

/*****************************/
/* !wrapper */
/*****************************/

#wrapper {
	height: auto;
	z-index: 1;
	position: relative;
	min-height: 360px;	
}

@media (max-width: 1024px) {
	#wrapper {
		width: 100%;
	}
}

@media (min-width: 1024px) {
	#wrapper {
		width: 1024px;
		margin: 0px auto;
	}
}

/*****************************/
/* !header */
/*****************************/

#header {
	width: 100%;
	padding: 0px 0px;
	margin: 0em auto 0em auto;
}

#header a {
	height: 90px;
	background: rgba(255, 255, 255, 1) url("images/header-logotype-s.png") no-repeat center center;
	width: 100%;
	position: relative;
	text-decoration: none;
	outline: medium none;
	border: none;
	color: transparent;
	text-indent: -200%;
	z-index: 2;
	display: block;
}

@media (min-width: 400px) {	
#header a {
	background: rgba(255, 255, 255, 1) url("images/header-logotype-s.png") no-repeat center center;
	}
}

@media (min-width: 600px) {	
#header a {
	height: 170px;
	background: rgba(255, 255, 255, 1) url("images/header-logotype.png") no-repeat center center;
	}
}

/*****************************/
/* !footer */
/*****************************/

#footer-a {
	display: flex;
	width: max-content;
	margin: 1.5em auto 0 auto;
	padding-bottom: 1em;
	border-bottom: 1px solid #999;
}

#footer-a div {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: .7em;
}

#footer-a>div:first-child, #footer-a>div:last-child {
	width: 4em;
}

#footer-a div div {
	flex-direction: row;
	margin: 3px;
}

#footer-a a {
	margin: 0px 2px;
}

#footer-b {
	margin: auto;
	text-align: center;
	margin: .5em 0 2em 0;
	padding: 5px;
}

#footer-b a {
	margin: 0 7px;
}

/***********************/
/* grids */
/***********************/

.grid {
    display: grid;
    grid-gap: 30px;
	padding: 25px 10px;
	align-items: start;
}

.grid-m {
    display: grid;
    grid-gap: 25px 15px;
	padding: 20px 10px;
}

.grid-s {
    display: grid;
    grid-gap: 15px;
	padding: 20px 10px;
}

.grid-xs {
    display: grid;
    grid-gap: 5px;
	padding: 20px 10px;
}

.grid-img {
    display: grid;
    grid-gap: 0px;
	padding: 20px 10px;
}

.grid-img img {
	border: 1px solid #ddd;
	}

.grid-se {
	display: grid;
	grid-gap: 60px 20px;
	padding: 15px 30px;
}

@media (max-width: 600px) {.grid-se {grid-gap: 20px 20px;}}

.grid p, .grid-s p, .grid-m p, .grid-xs p, .grid-se p {
	padding: 3px;
}

.hi {
	background-color: #fff;
	transition: background-color .2s ease;		
}

.meta {
	text-align: center;
	color: #72511e;
	font-weight: 300;
	font-size: 95%;
	display: block;
	margin-bottom: 5px;
	transition: color .2s ease;	
}

.hi a {
	text-align: center;	
	color:#113056;
	background-color: transparent;
	transition: color .2s ease, background-color .2s ease;	
}

.hi img {
	opacity: 1;
	transition: opacity .2s ease;
}

.hi p {
	/* font-style: italic; */
	padding: 3px 5px;
	text-align: center;
	transition: color .2s ease, background-color .2s ease;	
	cursor: pointer;
}

.hi caption {
	font-weight: 400;
}

.hi:hover {
	color: #fff;
	background-color: #a5aebd;
	transition: background-color .2s ease;	
}

.hi:hover a, .hi:hover p, .hi:hover h5 {
	color: #fff;
	/* background-color: #fff; */
	transition: color .2s ease, background-color .2s ease;
	cursor: pointer;
}

.hi:hover img {
	opacity: .5;
	transition: opacity .2s ease;
}

.hi:hover .meta {
	color: #fff;
	transition: color .2s ease;
}

.hi h5, .hi-non-link h5 {
	padding: 10px;
	text-align: center;
	color: #113056;
}

.blog h5 {
	padding-bottom: 0;
}

.pre, .hi-non-link {
	/* display: flex;
	align-content: center;
	flex-direction: column; */
	width: max-content;
	margin: auto;
	margin-bottom: 1em;
	border-radius: 10px;
}

.hi-non-link {
	cursor: default;
	color: #434343;
	padding: 10px;
}

.pre img {
	width: 220px;
	margin: auto;
}

.grid-review h5 {
	font-size: 100%;
	margin-left: -7px;
	text-align: left;
}

.hip p {
	margin-top: .5em;
}

.ip p {
	margin-top: .5em;
	margin-bottom: 2em;
}

.sub-grid {
    display: grid;
    grid-gap: 5px;
	padding: 0;
	align-content: start;
}

.g-1-1 {grid-template-columns: 1fr 1fr;}
@media (max-width: 600px) {.g-1-1 {grid-template-columns: 1fr;}}

.g-1-1-1 {grid-template-columns: 1fr 1fr 1fr;}
@media (max-width: 800px) {.g-1-1-1 {grid-template-columns: 1fr 1fr;}}
@media (max-width: 500px) {.g-1-1-1 {grid-template-columns: 1fr;}}

.g-1-1-1 {line-height: 130%;}

.g-2-1 {grid-template-columns: 2fr 1fr;}
@media (max-width: 600px) {.g-2-1 {grid-template-columns: 1fr;}}

.g-1-2 {grid-template-columns: 1fr 2fr;}
@media (max-width: 600px) {.g-1-2 {grid-template-columns: 1fr;}}



/***********************/
/* rows */
/***********************/

.w-100 {width: 100%; padding: 15px 0px;}
.w-100-no-top {width: 100%;}


.w-66-m {width: 66.66%; margin: 0 auto; padding: 15px 20px;}
.w-66-m-s {width: 66.66%; margin: 0 auto; padding: 5px 5px;}
@media (max-width: 800px) {.w-66-m, .w-66-m-s {width: 75%;}}
@media (max-width: 600px) {.w-66-m, .w-66-m-s {width: 100%;}}

.w-66-l {width: 66.66%; margin: 0 0; padding: 15px 20px;}
.w-66-l-s {width: 66.66%; margin: 0 0; padding: 5px 5px;}
/* @media (max-width: 800px) {.w-66-l, .w-66-l-s {width: 75%; margin: 0 auto;}} */
@media (max-width: 600px) {.w-66-l, .w-66-l-s {width: 100%; margin: 0 auto;}}

.w-50-m {width: 50%; margin: 0 auto; padding: 15px 20px;}
.w-50-m-s {width: 50%; margin: 0 auto; padding: 5px 5px;}
@media (max-width: 800px) {.w-50-m, .w-50-m-s {width: 75%;}}
@media (max-width: 600px) {.w-50-m, .w-50-m-s {width: 100%;}}

@media (max-width: 800px) {.media-alt {grid-template-columns: 1fr; width: 75%; margin: auto;}}
@media (max-width: 600px) {.media-alt {grid-template-columns: 1fr; width: 100%; margin: auto;}}


/**************************/
/* boxes - video + audio */
/**************************/

.box-1 {
	/* background-color: #fff; */
	border-radius: 5px;
	overflow: hidden;
}

.box-head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background-color: #333;	
	color: #eee;
}

.box-1 h3, .box-dl-h3 {
	font-weight: 400;
	font-size: 100%;
	text-align: center;
	color: #fff;
	background-color: #333;
	padding: 3px 0 3px 0px;
	margin-bottom: 0;
	width: 100%;
}

.box-dl-h3 {
	padding-left: 34px;
}

.box-bot-1 {
	padding: .5em 3px;
	font-size: 95%;
}

/*****************************/
/* gridtabelle */
/*****************************/

.gt-header {
	display: contents;
}

.gt-header > div {
	font-weight: 300;
	font-style: italic;
}

.gridtabelle, .gridtabelle-b {
	text-align: right;
	display: grid;
	grid-template-columns: 5fr 1.2fr 2fr 1fr;
    grid-gap: 2px 2px;
}

.gridtabelle-c {
	margin: 30px 0px 10px 0px;
	text-align: center;
	display: grid;
	grid-template-columns: 1.7fr 0.4fr 0.8fr 1.7fr;
    grid-gap: 2px 2px;
	clear: both;
}

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

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

.gridtabelle > div {
	background-color: #eee;
	border: 1px solid #eee;
	padding: 3px 8px;
}

.gridtabelle-c > div {
	background-color: #eee;
	border: 1px solid #eee;
	padding: 3px 8px;
}

.gridtabelle-b > div {
	color: #1e3250;
	background-color: #d7dce1;
	/* padding: 5px 8px; */
	/* line-height: 1.2em; */
}

div .dark-cell {
	background-color: #d7dce1;	
}

.bank-intro {
	display: inline-block; 
	width: 100%;
}

.bank-intro p {
	padding-right: 5px;
}

.bank-intro img {
	width: 160px;
	margin-right: 12px;
	margin-top: 6px;
	float: left;
}

@media (max-width: 500px) {.bank-intro {grid-template-columns: 1fr;}}
@media (max-width: 500px) {.bank-intro img {max-width: 200px;}}

.bank-intro-list-wrapper {
	display: table;
}

.bank-intro ul li {
	margin: 0;
}

.banktabelle {
	grid-template-columns: 1.2fr 0.5fr 0.8fr 1.2fr;
	background-color: #e9e9e9;
	padding: 5px 0px;
	text-align: center;
	clear: both;
}

.banktabelle .gt-header > div {
	background-color: #777;
	color: #fff;
	padding: .2em;
}

.new-preset::after {
	content: "＊";
	font-size: 80%;
	font-weight: 600;
	line-height: 1px;
	margin-left: .2em;
	color: #0f3671;
}

.single-preset {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-gap: 20px;
	width: 210px;
	margin: auto;
	text-align: center;
}

.single-preset a {
	padding: 4px;
	width: 100%;
}

/*****************************/
/* !blog-header */
/*****************************/

.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #d4d4d4;
	border-bottom: 1px solid #d4d4d4;
	padding: 10px 10px;
}

.blog-header-mid {
	display: flex;
	flex-direction: column;
	margin: 0px 10px;
	text-align: center;
}

.blog-prev {
	background: url("images/left.png") no-repeat 0px 0px;
	width: 48px;
	height: 48px;
}

.blog-next {
	background: url("images/right.png") no-repeat 0px 0px;
	width: 48px;
	height: 48px;
}

.blog-prev:hover, .blog-next:hover {
	background-color: transparent;	
	background-position: 0px -48px;
}

.blog-prev:active, .blog-next:active {
	background-color: transparent;	
	background-position: 0px -96px;
}

.non-next-prev {
	width: 48px;
	height: 48px;
}

.blog-header h2 {
	font-size: 140%;
	font-weight: 400;
	margin: 0;
	padding: 0;
}

.blog-header p {
	line-height: 100%;
}

@media (max-width: 600px) {
	.blog-header h2 {font-size: 125%;}
	.blog-header-mid p {font-size: 95%;}
	.next, .prev {display: none;}
	.blog-header a {line-height: 210%;}
}

/* .meta {
	margin-bottom: 8px;
	font-size: 90%;
	color: #72511e;
	background-color: #fff;
} */

.tri {
	font-size: 75%;
	vertical-align: 10%;
}

/*****************************/
/* !audio video */
/*****************************/

audio, video {
	display: block;
	width: 100%;
	margin: 0em auto;
	outline: none;
}

audio {
	height: 30px;
}

video {
	background-color: #333;
}

.download {background: url("images/download.png") no-repeat;}
.hd {background: url("images/hd.png") no-repeat;}

.download, .hd {
	width: 34px;
	height: 24px;
	margin-right: 5px;
	background-position: 50% -24px;
	border-radius: 3px;
}

.download:hover, .hd:hover {
	background-color: #ddd;
	background-position: 50% 0px;
}

.download:active, .hd:active {
	background-color: #a7bbda;
	background-position: 50% 0px;
}

/*****************************/
/* !to top */
/*****************************/

#totop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 5;
	width: 48px;
	height: 48px;
	background: url("images/up.png") no-repeat;
	background-position: 0px 0px;
    cursor: pointer; /* Add a mouse pointer on hover */
}

#totop:hover {
	background-position: 0px -48px;
}

#totop:active {
	background-position: 0px -96px;
}

/*****************************/
/* !lightbox */
/*****************************/

.lb-tmb-list, .lb-tmb-list, .lb-tmb-list {
	margin: 0;
}

.lb-tmb-list img { 
	margin: 0;
	border: 1px solid #d4d4d4;
	/* padding: 4px; */
	background-color: #fff;
}

.lb-tmb-list-b img { 
	margin: 5px;
	padding: 0px;
	background-color: transparent;
/* 	border: 1px solid #d4d4d4; */
	border: none;
}

.lb {
    display: none;
    position: fixed;
	overflow: auto;
    z-index: 5;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
}

.lb img {
	margin: 0 auto;
}

.lb:target  {
    outline: none;
    display: block;
}

.lb input[type="checkbox"] {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 13;
}

.lb input[type="checkbox"]:checked ~ .fit {
	display: none;
}

.lb input[type="checkbox"]:checked ~ .fit-icon {
	position: fixed;
	display: block;
	top: 5%;
	right: 90px;
	width: 48px;
	height: 48px;
	/* box-shadow:0px 0px 8px 0px #000; */
	z-index: 12;
}

.fit {
	display: block;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px;
	max-height: 85%;
	max-width: 85%;
}

.fit-icon {
	display: none;
	background: url("images/fit.png") no-repeat 0px 0px;
}

.full {
	display: none;	
}

.lb input[type="checkbox"]:checked ~ .full {
	display: block;
	margin: 0 auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	padding: 30px;
	max-width: none;
	overflow: auto;
	box-sizing: content-box;
}

.full-icon {
	position: fixed;
	display: block;
	top: 5%;
	right: 90px;
	width: 48px;
	height: 48px;
	background: url("images/full.png") no-repeat 0px 0px;
	z-index: 22;
}

.lb input[type="checkbox"]:checked ~ .full-icon {
	display: none;	
}

.lb-prev {
	position: fixed;
	top: 50%;
	left: 30px;
	height: 48px;
	margin-top: -22px;	
	width: 48px;
	background: url("images/left.png") no-repeat;
	z-index: 11;
}

.lb-next {
	position: fixed;
	top: 50%;
	right: 30px;
	height: 48px;
	margin-top: -22px;
	width: 48px;
	background: url("images/right.png") no-repeat;
	background-color: transparent;
	z-index: 11;
}

.lb-next:hover, .lb-prev:hover { 
	background-position: 0px -48px;
	background-color: transparent;
}

.lb-next:active, .lb-prev:active { 
	background-position: 0px -96px;
	background-color: transparent;
}

.lb-close {
	position: fixed;
	top: 5%;
	right: 30px;
	width: 48px;
	height: 48px;
	background: url("images/close.png") no-repeat 0px 0px;
	z-index: 12;
}

.lb-close:hover, .full-icon:hover, .fit-icon:hover { 
	background-position: 0px -48px;
	background-color: transparent;
}

.lb-close:active, .full-icon:active, .fit-icon:active { 
	background-position: 0px -96px;
	background-color: transparent;	
}

.lb-caption {
	position: fixed;
	bottom: 2%;
	left: 50%;
	transform: translateX(-50%);
	min-height: 34px;
    color: #fff;
	text-shadow: 0px 0px 2px #000;
	font-size: 100%;
	background: rgba(0, 0, 0, 0.6);
	box-shadow:0px 0px 8px 0px #000;
	border: 2px solid #555;
	padding: 0.2em 0.8em;
}

.lb-caption h3 {
	font-size: 100%;
	text-align: center;
	font-weight: 400;
	margin: 0.1em;
}

.lb-caption p {
	font-size: 90%;
}

.lb-caption a {
	color: #8BBAF2;
	text-decoration: none;
	outline: none;
/* 	border-bottom: none; */
}

.lb-caption a:focus {
	color: #8BBAF2;
	text-decoration: none;
	outline: 1px solid #3D79C0;
}

.lb-caption a:link {
	color: #8BBAF2;
	text-decoration: none;
	outline: none;
/* 	border-bottom: none; */
}

.lb-caption a:visited {
	color: #8BBAF2;
	text-decoration: none;
	outline: none;
	background: transparent;
/* 	border-bottom: none; */
}

.lb-caption a:hover {
	color: #3C88E1;
	text-decoration: none;
	outline: none;
	background: transparent;
}

.lb-caption a:active {
	color: #7EAFE9;
	text-decoration: none;
	outline: none;
	background: transparent;
}

/*****************************/
/* !homepage - img slider */
/*****************************/

.slider {
	position: relative;
	background-color: #000;
	overflow: hidden;
}

.slider-pic {
	width: 100%;
	position: relative;
	top: 0;
	visibility: hidden;
	display: block;
	height: 0;
	opacity: 0;
	transition: opacity .2s ease;
	background-color: #000;
}

.slider-bullet:checked + .slider-pic {
	visibility: visible;
	height: auto;
	opacity: 1;
}

.slider-nav-previous {
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, 0) url("images/slider-left.png") no-repeat 60% 98%;
	position: absolute;
	top: 0;
	left: 0;
}

.slider-nav-next {
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, 0) url("images/slider-right.png") no-repeat 40% 98%;
	position: absolute;
	top: 0;
	right: 0;
}

.slider-bullet {
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	z-index: 1;
	appearance: none;
	background: #fff;
	border-radius: 1em;
	opacity: 0.5;
	border: 1px solid #999;
	transition: .3s ease-out background,
}

.slider-bullet:checked {
	opacity: 0.8;
	outline: none;
	transform: scale(1.3);
}

.sb-1 {
	bottom: 20px;
	left: 43%;
}

.sb-2 {
	bottom: 20px;
	left: 47%;
}

.sb-3 {
	bottom: 20px;
	left: 51%;
}

.sb-4 {
	bottom: 20px;
	left: 55%;
}

/* ---------- specs (tech-data) box ---------- */

.specs {
	margin: 0em auto 2em auto;
	/* border: 1px solid #ddd; */
	border-radius: 5px;
	/* background-color: #eee; */
	overflow: hidden;
	/* box-shadow: #ccc 0px 0px 5px; */
	position: relative;
	width: 88%;
}

.specs h2 {
	display: block;
	color: #eee;
	font-size: 115%;
	font-weight: 400;
	text-align: center;
	background-color: #1e3250;
	padding: 5px 0em;
	box-shadow: #ccc 0px 0px 5px;
}

.specs ul {
	margin: 0.9em 0em 0.7em 1.5em;
	padding-right: 0.5em;
	font-size: 95%;
	line-height: 1.3;
	position: relative;
}

.specs ul li ul {
	margin-left: 1em;
	margin-bottom: 0;
	margin-top: 0.2em;
	padding-right: 0.5em;
}

.specs ul li ul li::before {
	content: "–";
	display: inline-block;
	font-weight: 300;
}

.spec-icon {
	width: 200px;
	margin: 50px auto 0;
	display: flex;
	justify-content: center;
}

/*****************************/
/* !diverse */
/*****************************/

@media (max-width: 600px) {.se-txt-block {
	padding-bottom: 1em;
	border-bottom: 1px solid #999;	
	}
}

.rev-box {
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #fff;	
	overflow: hidden;
	font-size: 93%;
	/* box-shadow: #ccc 0px 0px 5px; */
}

.rev-box div {
	border-top: 1px solid #ccc;
	padding: 10px;
}

.blue-back {
	font-weight: 400;
	font-size: 110%;
	color: #fff;
	background-color: #576780;
	border-radius: 5px;
	padding: 6px 8px;
	text-align: center;
}

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

.caption {
	font-style: italic;
	font-weight: 400;
	text-align: left;
	font-weight: 300;
	line-height: 120%;
 	margin: 0 7px 0 7px;
 	margin-top: 2px;
	color: #444;
}

.caption-in-w, .caption-in-s {
	position: absolute;
	right: 32px;
	bottom: 20px;
	font-style: italic;
	font-weight: 300;
	color: #fff;
}

.caption-in-s {
	color: #000;
}

.img-frame {
	border: 1px solid #d4d4d4;
	/* padding: 4px; */
	background-color: #fff;
}

.openstreetmap {
	float: left;
	overflow: hidden;
	width: 100%;
	height: 350px;
	border: 1px solid #2f2f2f;
}

.logo-comp {
	margin: -15px auto 0px auto;	
	max-width: 78%;
} 

@media (max-width: 800px) {
	.logo-comp {
		max-width: 40%;
		margin: auto;
	} 
}

.overlay-cs {
	position: absolute;
	top: 9em;
	left: 0;
	width: 100%;
	height: 100%;	
	background: rgba(232, 232, 232, 0.77) url("images/overlay-cs.png") repeat 70px 0px;
}

.cs-text {
	font-size: 130%;
	font-weight: 400;
	text-align: center;
	margin-top: 2em;
	color: #888;
}

.xtra-c-a {
	cursor: url("images/xtracursor-a.png") 50 20, auto;
}

.xtra-c-b {
	cursor: url("images/xtracursor-b.png") 50 20, auto;
}

/*****************************/
/* !helpers */
/*****************************/

.disp-flex {display: flex;}
.flex-al-c {align-items: center;}
.flex-ju-c {justify-content: center;}

.hide {visibility: hidden;}

.clearfix:before, .row:before {
	display: table;
	content: " ";
}

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

/* lightbox */
/* .no-bg {background-color: transparent !important; border: none !important;} */
.hf {top: 0 !important; transform: translateY(0%) !important;}

.center {
	margin: auto; 
	display: block; 
	float: none;
}

.line {
	width: 100%; 
	height: 1px;
	background-color: #bbb;	
	clear: both;
}

.cachetest {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #0f0;
	margin: 2em auto;
}


/********** alignment **********/

.left-txt {text-align: left;}
.right-txt {text-align: right;}
.center-txt {text-align: center;}

/********** spacer **********/

.m03 {margin: 0.3em;}
.m05 {margin: 0.5em;}

.mt0 {margin-top: 0;}
.mt03 {margin-top: 0.3em;}
.mt05 {margin-top: 0.5em;}
.mt1 {margin-top: 1em;}
.mt2 {margin-top: 2em;}
.mt3 {margin-top: 3em;}
.mt5 {margin-top: 5em;}
.mt6p {margin-top: 6px;}

.mb0 {margin-bottom: 0em;}
.mb05 {margin-bottom: 0.5em;}
.mb1 {margin-bottom: 1em;}
.mb2 {margin-bottom: 2em;}
.mb3 {margin-bottom: 3em;}
.mb4 {margin-bottom: 4em;}
.mb5 {margin-bottom: 5em;}
.mb3p {margin-bottom: 3px;}

.pt0 {padding-top: 0;}
.pt03 {padding-top: 0.3em;}
.pt08 {padding-top: 0.8em;}
.pt1 {padding-top: 1em;}
.pt2 {padding-top: 2em;}
.pt3 {padding-top: 3em;}
.pt5 {padding-top: 5em;}

.pb0 {padding-bottom: 0em;}
.pb03 {padding-bottom: 0.3em;}
.pb1 {padding-bottom: 1em;}
.pb3 {padding-bottom: 3em;}
.pb2 {padding-bottom: 2em;}
.pb5 {padding-bottom: 5em;}

/********** fontsize **********/

.fs-90 {font-size: 90%;}
.fs-95 {font-size: 95%;}
.fs-100 {font-size: 100%;}
.fw-300 {font-weight: 300;}