html,body {
    padding: 0;
    margin: 0;
}
@media (min-width: 1400px){
html {font-size: 16px;}
}
@media (max-width: 1399px){
html {font-size: 14px;}
}
body {
    background-image: url(../images/general/background.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Spectral', serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    font-weight: 400;
    color: #706f6f;
    line-height: 1.7em;
    min-width: 220px;
}
h1, h2, h3, h4, h5 {
    font-weight: 400;
    line-height: 1em;
}
h1 {
    text-transform: uppercase;
    font-size: 2.6rem;
    text-align: center;
    -webkit-hyphens: auto;
    hyphens: auto;
    flex: 1 1 100%;
}
@media (max-width: 1399px){
h1 {
    font-size: 2.1rem;
}
}
@media (max-width: 450px){
h1 {
    font-size: 1.5rem;
}
}
h2 {
    color: #022662;
    font-size: 1.37rem;
    width: 100%;
    text-align: center;
    margin: 10px 0 55px;
    flex: 1 1 100%;
}
a {
    text-decoration: none;
    color: #022662;
}
/* FIRST VISIT STYLE */
header.firstvisit {
    min-height: 100vh;
    height: auto;
}
header.firstvisit > * {
    height: auto;
}
header.firstvisit .logo {
    height: calc(60vh - 130px);
}
header.firstvisit .logo a {
    width: 80%;
    min-width: 120px;
    max-width: 470px;
    max-height: calc(60vh - 130px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
header.firstvisit .slider {
    height: 40vh;
}
header.firstvisit .towebsite {
    max-height: 130px;
}


.towebsite p, .tovideo a {
    font-size: 2.4rem;
    color: #022662;
    text-transform: uppercase;
}
.towebsite, .tovideo {
    background-color: #fff;
    box-shadow: 0px 0px 5px #000;
    position: relative;
    z-index: 20;
    text-align: center;
    height: 130px !important;
    max-height: 0px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
@media (max-width: 450px){
header.firstvisit .logo {
    height: calc(60vh - 70px);
}
.towebsite p, .tovideo a {
    font-size: 1.5rem;
}
header.firstvisit .logo a {
    width: 60%;
    min-width: 120px;
    max-width: 470px;
}
.towebsite, .tovideo {
    height: 70px !important;
}
}
/* HEADER STYLE */
header, header > * {
    transition: height 0.5s ease-in, min-height 0.5s ease-in;
}
header {
    min-height: 0px;
    height: auto;
}
.logo {
    background-color: #fff;
    text-align: center;
    height: 265px;
    width: 100%;
    box-shadow: 0px 0px 5px #000;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tovideo {
    max-height: 130px;
}

@media (max-width: 1399px){
.logo {
    height: 180px;
}
}
@media (max-width: 450px){
.logo {
    height: 120px;
}
}
.logo a {
    width: 80%;
    max-width: 375px;
    transition: width 0.5s ease-in;
} 
@media (max-width: 1399px){
.logo a {
    max-width: 270px;
}
}
@media (max-width: 450px){
.logo a {
    max-width: 200px;
}
}
.logo a img {
    width: 100%;
}


/* SLIDER STYLE */
.sliderbox {
    background-color: #f5f0eb;
}
.slider {
    height: 435px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.sliderimgbox {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
}

.video {
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

@media (max-width: 1399px){
.slider {
    height: 300px;
}
}
@media (max-width: 450px){
.slider {
    height: 210px;
}
}
.slider ul {
    padding: 25px 0 0;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: 50px;
    box-sizing: border-box;
}
.slider ul li {
    display: inline-block;
    text-align: center;
    width: 30px;
    position: relative;
    cursor: pointer;
    margin: 0 2px;
}
.slider ul li .selector {
    margin: 0 auto;
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 100%;
    transition: background-color 0.3s ease-in;
}
.slider ul li.selected .selector {
    background-color: #022662;
    transition: background-color 0.3s ease-in;
}
.slider ul li .img {
    width: 30px;
    height: 20px;
    position: absolute;
    bottom: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    left: 0;
    right: 0;
    opacity: 0;
    transform: scale(1);
    transform-origin: bottom center;
    transition: all 0.3s ease-in;
    z-index: auto;
    box-shadow: 0px 0px 1px #000;
}
.slider ul:hover li .img {
    opacity: 1;
    transition: all 0.3s ease-in;
}
.slider ul li:hover .img {
    transform: scale(3);
    transition: all 0.3s ease-in;
    z-index: 100;
    box-shadow: 0px 0px 5px #000;
}
.slider .prev, .slider .next {
    position: absolute;
    height: 100%;
    width: 50px;
    top: 0;
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: opacity 0.3s ease-in;
}
.slider:hover .prev, .slider:hover .next {
    opacity: 0.55;
    transition: opacity 0.3s ease-in;
}
.slider .prev:hover, .slider .next:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.slider .prev {
    left: 0;
    background-image: url(../images/general/sliderpfeilprev.svg);
}
.slider .next {
    right: 0;
    background-image: url(../images/general/sliderpfeilnext.svg);
}	


/* NAVI STYLE */
nav {
    background-color: #fff;
    box-shadow: 0px 0px 5px #000;
    position: relative;
    z-index: 20;
    text-align: center;
    height: 80px;
}
nav.sticked {
    position: fixed;
    top: 0;
    width: 100%;
    height: 55px;
    z-index: 200;
}
nav ul {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    position: relative;
    padding: 0;
    text-transform: uppercase;
    font-size: 1.37rem;
    margin: 22.5px 0;
}
nav.sticked ul {
    margin: 10px 0px;
}
.socialmedia {
    font-size: 0px;
}
.socialmedia > div {
    height: 28px;
    display: inline-flex;
    align-items: center;
}
.socialmedia > div:last-child {
    padding: 0px 0px 0px 10px;
}
.socialbutton > div {
    overflow: hidden;
    width: auto !important;
    padding-left: 5px !important;
    box-sizing: border-box;
    max-width: 0px;
    transition: max-width 0.3s ease-in;
    height: 20px;
    display: flex;
}
.socialbutton.showbutton > div {
    max-width: 100px;
    transition: max-width 0.3s ease-in;
}
.menuitem {
    height: 35px;
}
.menuitem.active {
    font-weight: 700;
}
.menuitem p, .menuitem a {
    color: #022662;
    text-decoration: none;
    margin: 0;
    line-height: 36px;
}
.menuitem.socialmedia img {
    width: 28px;
}
@media (min-width: 1030px){
nav ul {
    flex-flow: row;
    width: calc(100% - 80px);
    max-width: /*1380px*/ 950px;
}
.navbutton {
    display: none;
} 
}
@media (max-width: 1029px){
nav ul {
    flex-flow: column;
    width: calc(100% - 80px);
    max-width: /*1380px*/ 950px;
}
.navbutton {
    display: block;
    cursor: pointer;
    margin-bottom: 13px;
    opacity: 1 !important;
}
nav {
    overflow: hidden;
    height: auto;
    max-height: 80px;
    transition: max-height 0.3s ease-in;
}
nav.sticked {
    height: auto;
    max-height: 55px;
}
nav.drop {
    max-height: 600px;
    transition: max-height 0.3s ease-in;
}
.menuitem {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.drop .menuitem {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.socialmedia {
    position: absolute;
    top: 1px;
    right: 14px;
    opacity: 1;
}
}
@media (max-width: 450px){
nav ul {
    width: 100%;
}
.socialmedia {
    right: 5px;
    transform: scale(0.7);
    transform-origin: center right;
}
}
/* CONTENT STYLE */
.content {
    padding: 60px 30px 70px;
    box-sizing: border-box;
    background-color: #fff;
    max-width: 1700px;
    margin: 0px auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
@media (min-width: 1400px){
.content {
    width: calc(100% - 200px);
}
}
@media (max-width: 1399px){
.content {
    width: calc(100% - 60px);
    padding: 60px 10px 70px;
}
}
@media (max-width: 450px){
.content {
    width: 100%;
    padding: 40px 10px 50px;
}
}
.content h3, .content p {
    margin: 0 0 1.7rem;
    line-height: 1.7rem;
}
.cflex {
    flex: 1 1 300px;
    padding: 0 20px;
}
.cflex.large {
    flex: 5 1 300px;
}
.cflex .textbox {
    -webkit-columns: 400px;
    -moz-columns: 400px;
    columns: 400px;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}
.cflex h2 {
    text-align: left;
}
.cflex img {
    width: 100%;
}

/* TEAM STYLE */

.bezeichnung {
	line-height: 12px !important;
	font-size: 0.9rem !important;
}
.membername {
	line-height: 20px !important;
}

@media (min-width: 600px){

.teambox {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    flex: 1 1 100%;
    margin-bottom: 20px;
}
.teambox .teamItem {
    width: 480px; 
    flex: 1 1 480px;
    width: 100%; 
    height: 245px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    display: flex;
    justify-content: stretch;
    margin: 0px 10px 20px;
}
div.is-empty{
    max-width: 320px;
    flex: 1 1 320px;
    width: 100%;
    margin: 0px 10px;
}
.teambox .teamItem .teamItemImgbox {
    width: 180px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.teambox .teamItem .teamItemImgbox img {
    width: 100%;
    max-width: 200px; 
}
.teambox .teamItem .teamItemImgbox div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.teambox .teamItem:hover .teamItemImgbox div {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.teambox .teamItem .teamItemImgbox div p {
    text-align: left;
    font-size: 1.1rem;
    color: #022662;
}
.teambox .teamItem .teamItemTextbox {
    width: 100%; 
    text-align: left;
    box-sizing: border-box;
    padding: 20px 10px;
    flex: 1 1 150px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: #706f6f;
}
.teambox .teamItem .teamItemTextbox h3 {
    font-size: 1.3rem; 
    margin: 0;
}
.teambox .teamItem .teamItemTextbox p {
    font-size: 1rem; 
    margin: 0;
}
.teambox .teamItem .teamItemTextbox .teamItemHighlight {
    color: #022662;
}
}

@media (max-width: 599px){
.teambox .teamItem .teamItemImgbox {
    flex-flow: column;
    text-align: center;
}

.teambox .teamItem .teamItemImgbox img {
    width: 100%;
    max-width: 150px;
}

.teambox .teamItem .teamItemImgbox div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.teambox .teamItem {
    width: 300px; 
    flex: 1 1 300px;
    width: 100%; 
    height: 370px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    display: flex;
    flex-flow: column;
    justify-content: stretch;
    margin: 0px 10px 20px;
}

.teambox .teamItem .teamItemTextbox {
    width: 100%; 
    text-align: left;
    box-sizing: border-box;
    padding: 20px 10px;
    flex: 1 1 150px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: #706f6f;
}
}

/* IMMO STYLE */
.immobox {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    flex: 1 1 100%;
    margin-bottom: 20px;
}
.immobox .immoItem {
    max-width: 320px; 
    flex: 1 1 320px;
    width: 100%; 
    height: 320px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    display: flex;
    flex-flow: column;
    justify-content: stretch;
    margin: 0px 10px 20px;
}
div.is-empty{
    max-width: 320px;
    flex: 1 1 320px;
    width: 100%;
    margin: 0px 10px;
}
.immobox .immoItem .immoItemImgbox {
    width: 100%; 
    flex: 1 1 150px;
    max-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.immobox .immoItem .immoItemImgbox img {
    width: 100%; 
}
.immobox .immoItem .immoItemImgbox div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.8);
    opacity: 0;
    transition: opacity 0.3s ease-in;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.immobox .immoItem:hover .immoItemImgbox div {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.immobox .immoItem .immoItemImgbox div p {
    text-align: center;
    font-size: 1.1rem;
    color: #022662;
}
.immobox .immoItem .immoItemTextbox {
    width: 100%; 
    text-align: center;
    box-sizing: border-box;
    padding: 20px 10px;
    flex: 1 1 150px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: #706f6f;
}
.immobox .immoItem .immoItemTextbox h3 {
    font-size: 1.3rem; 
    margin: 0;
}
.immobox .immoItem .immoItemTextbox p {
    font-size: 1rem; 
    margin: 0;
}
.immobox .immoItem .immoItemTextbox .immoItemHighlight {
    color: #022662;
}
/* EXPOSE STYLE */
.cimgbox {
    width: 100%;
}
.cimgbox ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.cimgbox ul li {
    width: 25%;
    height: 120px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    min-width: 120px;
}
.cprice {
    font-size: 2rem;
}
.ctext {
    display: flex;
    flex-flow: row wrap;
}
.cdatasheet {
    flex: 1 1 200px;
    padding-right: 20px;
}
.cdescription {
    flex: 5 1 200px;
}
.data {
    display: flex;
    flex-flow: row wrap;
}
.data > b {
    flex: 1 1 100%;
}
.data > span {
    flex: 1 1 50%;
}
.expimg {
    cursor: pointer;
    position: relative;
}
.expimg p {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in;
    background-color: rgba(2,38,98,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.expimg:hover p {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.expimg p img {
    width: 50%;
    min-width: 50px;
}
.cimg {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2000;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.cimg .cimgwrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-height: calc(100vh - 40px);
    max-width: calc(100vw - 140px);
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
}
.cimg img {
    max-height: calc(100vh - 40px);
    max-width: calc(100vw - 140px);
    display: block;
}
.cimg .imgtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 32px;
    margin-top: -32px;
}
.cimg .imgtitle p {
    background-color: #fff;
    margin: 0;
    padding: 10px;
    line-height: 1em;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.cimg:hover .imgtitle p {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.cimg .cimgcontrols {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.cimg .cimgcontrols:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.cimg .previmg, .cimg .nextimg, .cimg .close {
    position: absolute;
    opacity: 0.5;
    transition: opacity 0.3s ease-in;
    cursor: pointer;
}
.cimg .previmg:hover, .cimg .nextimg:hover, .cimg .close:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.cimg .previmg, .cimg .nextimg {
    height: 100%;
    top: 0;
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.cimg .previmg {
    left: 20px;
    background-image: url(../images/general/sliderpfeilprev.svg);
}
.cimg .nextimg {
    right: 20px;
    background-image: url(../images/general/sliderpfeilnext.svg);
}
.cimg .close {
    top: 20px;
    right: 20px;
    font-size: 40px;
}
/* WIDERSPRUCHSFORMULAR STYLE */
.musterformular {
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #c6c6c6;
}
.musterformular * {
    font-size: 1rem !important;
    margin: 0;
    line-height: 1.7rem;
}
.musterformular ul {
    list-style: none;
    padding: 0;
}
.musterformular ul li {
    display: inline-flex;
    width: 100%;
    align-items: end;
}
.musterformular ul li span {
    flex: 1 1 200px;
}
.musterformular ul li span:nth-child(even) {
    border-bottom: 1px solid #c6c6c6;

}
.printbutton {
    cursor: pointer;
}
.title {
    display: none;
}
/* FOOTER STYLE */
footer {
    width: 100%;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 5px #000;
    height: 65px;
    font-size: 0.86rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* COOKIE CONSENT STYLE */
.cc_banner-wrapper {
    position: absolute !important;
}
.cc_container {
    color: #706f6f !important;
    font-size: 1rem !important;
    font-family: "Spectral", serif !important;
    border: 0px solid #ccc !important;
}
.cc_container .cc_btn, .cc_container .cc_btn:visited {
    color: #fff !important;
    background-color: #022662 !important;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
    width: 70px !important;
}
.cc_container a, .cc_container a:visited {
    color: #022662 !important;
}
/* SEARCH FORM FIELDS */
.filter {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0px auto 40px;
    max-width: 800px;
}
.filter > * {
    margin: 10px;
    flex: 1 1 200px;
    max-width: calc(100% - 20px);
}
.selectlist { 
    list-style: none;
    height: 40px;
    background-color: #f3f3f3;
    display: inline-block;
    padding: 5px;
    position: relative;
    z-index: 100;
    box-sizing: border-box;
    max-height: 40px;
}
.selectlist:first-child {
    z-index: 110;
}
.selectlist#itemType {width: 240px;}
.selectlist#itemPay {width: 160px;}
.selectlist li { padding: 5px 10px; z-index: 2; display: block;position: absolute;height: 20px;transition:all 0.3s ease-in;cursor: pointer;line-height: 1.5em;}
.selectlist li:not(.init) { width: calc(100% - 20px); display: none; background: #f3f3f3;left: 0; }
.selectlist li:not(.init):hover, .selectlist li.selected:not(.init) { color:#fff;background: #022662; }
li.init { cursor: pointer;position: relative;white-space: nowrap;overflow: hidden;text-overflow: ellipsis; }

a#submit { z-index: 1; }

.searchbutton {
    height: 40px;
    width: 80px;
    color: #fff;
    display: inline-block;
    background: #022662;
    text-align: center;
    line-height: 43px;
    cursor: pointer;
}
.noresults {
    flex: 1 1 100%;
    text-align: center;
}
/* CONTACT STYLE */
.contactside {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.contactside > div {
    flex: 1 1 300px;
    padding-left: 20px;
    box-sizing: border-box;
}
.kontfeedbackbox {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    display: none;
}
.kontfeedbackbox iframe {
    border: none;
    pointer-events: none;
}
.kontakt.formular {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.kontakt.formular p {
    margin: 0;
}
.field {
    padding-right: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.fieldsmall {
    flex: 1 1 150px;
}
.fieldbig {
    flex: 1 1 100%;
}
.fieldbig.safety {
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
input, textarea, .touched:required:valid {
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    border: none;
    padding: 7px;
    transition: all .3s ease-in;
    -webkit-appearance: none;
    border-radius: 0;
    background-color: #f3f3f3;
    box-sizing: border-box;
}

input.input.hpt {
    display: none;
}

input[type="checkbox"]{
   width: 15px;
   height: 15px;
   padding: 0;
   appearance: checkbox;
   -moz-appearance: checkbox;
   -webkit-appearance: checkbox;
}

.textarea {
    max-width: 100%;
    min-width: 100%;
}
.hpt {
    opacity: 0;
    width: 0;
    height: 0;
}
@keyframes rel {
    0%   { transform: rotate(0deg);}
    100%   { transform: rotate(360deg);}
}
.button {
    height: 40px;
    color: #fff;
    background: #022662;
    text-align: center;
    cursor: pointer;
}
.cflex iframe.gmaps {
    box-sizing: border-box;
    padding-right: 20px;
}
/* LIGHTBOX STYLE */
.lightboxlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}
.lightboxlist li {
    width: 45%;
    max-width: 250px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px;
    min-width: 120px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    height: 150px;
    overflow: hidden;
    position: relative;
    background-color: #c6c6c6;
}
.lightboxlist li:after {
    content: url(../images/general/lupe.svg);
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in;
    background-color: rgba(2,38,98,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightboxlist li:hover:after {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.lightboxlist li img {
    cursor: pointer;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2000;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
.lightbox .lightboxwrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    max-height: calc(100vh - 40px);
    max-width: calc(100vw - 140px);
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
}
.lightbox img {
    max-height: calc(100vh - 40px);
    max-width: calc(100vw - 140px);
    display: block;
}
.lightbox .imgtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 32px;
    margin-top: -32px;
}
.lightbox .imgtitle p {
    background-color: #fff;
    margin: 0;
    padding: 10px;
    line-height: 1em;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.lightbox:hover .imgtitle p {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.lightbox .lightboxcontrols {
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}
.lightbox .lightboxcontrols:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.lightbox .lightboxprev, .lightbox .lightboxnext, .lightbox .lightboxclose {
    position: absolute;
    opacity: 0.5;
    transition: opacity 0.3s ease-in;
    cursor: pointer;
}
.lightbox .lightboxprev:hover, .lightbox .lightboxnext:hover, .lightbox .close:hover {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}
.lightbox .lightboxprev, .lightbox .lightboxnext {
    height: 100%;
    top: 0;
    width: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
.lightbox .lightboxprev {
    left: 20px;
    background-image: url(../images/general/sliderpfeilprev.svg);
}
.lightbox .lightboxnext {
    right: 20px;
    background-image: url(../images/general/sliderpfeilnext.svg);
}
.lightbox .lightboxclose {
    top: 20px;
    right: 20px;
    font-size: 40px;
}