@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: 'Lato-Medium', Helvetica, Arial, sans-serif;
}

html {
	height: 100%;
}

a:link,
a:visited,
a:hover,
a:active {
	outline: 0;
}

/*********
Allgemeine Responsive Klassen für Geräte
*********/
/* Desktop */
@media 
only screen and (min-width : 880px) {
	.desktop-off, 
	.tablet-on,
	.phone-on {
		display: none;
	}
	.desktop-on, 
	.tablet-off, 
	.phone-off {
		display: block;
	}
}
/* Tablets */
@media 
only screen and (min-width : 600px) and (max-width : 879.9px) {
	.tablet-off,
	.desktop-on, 
	.phone-on {
		display: none;
	}
	.tablet-on,
	.desktop-off, 
	.phone-off {
		display: block;
	}
}
/* Mobile */
@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	.phone-off,
	.desktop-on, 
	.tablet-on
	 {
		display: none;
	}
	.phone-on, 
	.desktop-off, 
	.tablet-off {
		display: block;
	}
}

/*********
Allgemeine Content Styles
*********/
h1, h2, h3, p {
	margin: 0;
	padding: 0;
}

h1 {
	font-size: 2.5rem; /* 40px 40/16 = 2.5 */
	font-weight: normal;
/*	color: #000;*/
	margin-bottom: 30px;
}

h2 {
	font-size: 2rem; /* 30px 32/16 = 2 */
	font-weight: normal;
	color: #333;
	margin-bottom: 30px;
/*	margin-top: 40px;*/
}

section.blau h1,
section.blau h2 {
    color: #52bed7;
}

section.rot h1,
section.rot h2 {
    color: #1e2846;
}

.news h2 {
    margin-top: 25px;
    margin-bottom: 5px;
}

h3 {
	font-size: 1.25rem; /* 20px 20/16 = 1.25 */
    color: #fff;
	margin-bottom: 10px;
	margin-top: 30px;
}

.details-site h3 {
    color: #1e2846;
    margin-top: 20px;
}

h1, h2, h3 {
    font-family: 'zwodrei-Bold';
    text-transform: uppercase;
}

h4 {
	font-size: 1rem; /* 20px 20/16 = 1.25 */
	color: #fff;
	margin-bottom: 5px;
	margin-top: 15px;
}

h2:first-child, 
h3:first-child {
	margin-top: 0 !important;	
} 

p {
	font-size: 1rem; /* 12px 12/16 = 0.75 */
	margin-bottom: 15px;
    font-family: 'Lato-Medium';
    line-height: 1.7;
}

p:last-child {
	margin-bottom: 0;
}

div.date {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

p.lead {
	font-size: 1.125rem;
	font-weight: 700;
}

p.date {
	font-size: 0.8rem;
}

.details-site p.date {
    margin-bottom: 0;
}

address {
	font-style: normal;
}

#vl {
    border-left: 1px solid #fff;
    height: 70px;
    margin-left: 30px;
    margin-right: 30px;
}

.noscroll {
    position: fixed;
}

@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	h1 {
		font-size: 2rem; /* 30px 32/16 = 2 */
	}
}

img {
	border: 0;
}

img.full {
	width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
} 

li {
	padding-bottom: 10px;
	padding-left: 8px;
	margin-left: 15px;
	list-style-type: disc;
	font-size: 1rem; /* 12px 12/16 = 0.75 */
}

ol li {
	list-style-type: decimal;
}

/*Links*/
a {
	color: #fff;
	text-decoration: underline;
    font-family: 'Lato-Medium';
}

a:hover {
	color: #fff;
	text-decoration: none;
}

a[href^="mailto:"],
a[href^="tel"] {
	color: #fff;
}

/* Buttons */
a.btn {
    display: inline-block;
    text-decoration: none;
    padding-left: 7px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.list li a.btn {
    display: inline-block;
}

a.btn p {
    padding: 10px 25px;
    padding-top: 13px;
    padding-right: 28px;
    position: relative;
    color: #e6325a;
    z-index: 1;
    text-transform: uppercase;
    transition: 0.2s;
}

a.btn p::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 5px;
    right: 5px;
    border: 1px solid #e6325a;
    z-index: 0;
    transition: transform .2s ease-in-out;
}

a.btn p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #52bed7;
    z-index: 1;
    transition: 0.2s;
}

section.rot a.btn p {
    color: #1e2846;
}

section.rot a.btn p::before {
    border-color: #1e2846;
}

section.rot a.btn p::after {
    border-color: #52bed7;
}

a.btn p:hover,
section.rot a.btn p:hover {
    color: #fff;
}

a.btn p:hover::after,
section.rot a.btn p:hover::after {
    border-color: #fff;
}

a.btn p:hover::before,
section.rot a.btn p:hover::before {
    transform: translate(7px, -5px);
    border-color: #fff;
}

/*
.btn a {
	display: block;
	padding: 15px;
	background: #000;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.btn a:hover {
	background: #333;
}

.btn.inline a {
	display: inline-block;
}

.btn.inline.right {
	text-align: right;
}
*/

a.btn-txt {
    margin-top: 10px;
}

a.btn-txt p {
    color: #e6325a;
    text-transform: uppercase;
}

a.btn-txt p:hover {
    color: #fff;
}


/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1rem */
	height: 100%;
    background-color: #1e2846;
}

body, img, p, tr, td {
	color: #fff;
}

.content-block-center {
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.content {

}

.margin-bottom {
    margin-bottom: 40px;
}

.video-full {
    border: 0px solid #fff;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 37.5%; /* bei 16 zu 6 -> 6/16*100*/
	padding-top: 0px;
	height: 0;
	overflow: hidden;
}

.video-full-stillbild {
	background-image: url(../img/content/videoheader-stillbild.jpg);
    background-size: 100%;
	background-repeat: no-repeat;
}

.video {
	position: relative;
	padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio => bei 16 zu 9 -> 9/16*100*/
	padding-top: 0px;
	height: 0;
	overflow: hidden;
}

.video-stillbild {
	background-image: url(../img/content/videothumbnail-stillbild.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
}

.video-full iframe,
.video iframe {
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*
#logo img {
	width: 25VW;
}
*/

@media 
only screen and (min-width : 600px) and (max-width : 1390px) {
	.content-block-center {
		margin-left: 45px;
		margin-right: 45px;
		width: auto;
	}
/*
	#logo img {
		width: 35VW;
	}
*/
}

@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	body {
		font-size: 90%; 
	}
	.content-block-center {
		margin-left: 20px;
		margin-right: 20px;
		width: auto;
	}
/*
	#logo img {
		width: 45VW;
	}
*/
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
}



footer {
	position: relative;
	background: #1e2846;
	padding-top: 20px;
    width: 100%;
}

footer p {
	color: #fff;
}

footer a {
	color: #e6325a;
}

footer a[href^="mailto:"],
footer a[href^="tel"] {
	color: #fff;
	text-decoration: none;
}

.skipp {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.skipp img {
	display: block;
	
	/* IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	/* IE 5-7 */
	filter: alpha(opacity=70);
	/* Netscape/FireFox */
	-moz-opacity: 0.7;
	/* Safari 1.x */
	-khtml-opacity: 0.7;
	/* aktuelle Browser */
	opacity: 0.7;
}
@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	.skipp {
		display: none;
	}
}

/*********
Tools & spezifische Content-Styles
*********/
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
	background-color: #1d2845;
	background-image: url('../img/layout/loading.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100px;
}
@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	.intro-container {
		display: none;
	}
}

@media 
only screen and (orientation : landscape) {
    #intro-animation source,
    #intro-animation {
        min-width: 100%;
        height: auto;
    }
}

@media 
only screen and (orientation : portrait) {
    #intro-animation source,
    #intro-animation {
        width: auto;
        min-height: 100%;
    }
}

.index-background {
    width: 100%;
    height: 100%;
	overflow: hidden;
	position: relative;
}

.index-background video#index-animation {
	/*
    width: 100%;
    height: 100%;
    object-fit: cover;
    bottom: 0;
    position: absolute;
    z-index: 0;
	*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (max-aspect-ratio: 16/9) {
	.index-background video#index-animation {
		height: 100%;
		width: auto;
	}
}
@media (min-aspect-ratio: 16/9) {
	.index-background video#index-animation {
		height: auto;
		width: 100%;
	}
}

.index-background img.vr-room {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

div.top-container {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    z-index: 1;
}



/*
WEITERER EFFEKT AUF INDEX-KREIS, FALLS GELÖSCHT WIRD AUCH KLASSE AUF ELMENTEN LÖSCHEN

.kreisr,
.kreisb {
    transform: scale(0.95);
    transition: 0.2s;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.vr-brille-container:hover .kreisr {
    right: 20px;
    bottom: 10px;
    transform: scale(1);
}

.vr-brille-container:hover .kreisb {
    right: -20px;
    bottom: -10px;
    transform: scale(1);
}
*/

/*
WEITERER EFFEKT AUF INDEX-KREIS
.kreis {
    
}

.vr-brille-container:hover .kreis {
    animation: bob ease 3s infinite;
}

@-webkit-keyframes bob {
    0% {
        -webkit-transform:translateY(0px);
    }
    50% {
        -webkit-transform:translateY(-10px);
    }
    100% {
        -webkit-transform:translateY(0px);
    }
}

@-moz-keyframes bob {
    0% {
        -moz-transform:translateY(0px);
    }
    50% {
        -moz-transform:translateY(-10px);
    }
    100% {
        -moz-transform:translateY(0px);
    }
}

@keyframes bob {
    0% {
        transform:translateY(0px);
    }
    50% {
        transform:translateY(-10px);
    }
    100% {
        transform:translateY(0px);
    }
}
*/

.scroll-down {
    position: absolute;
    bottom: 0;
    width: 30px;
    height: auto;
    margin-left: calc(50% - 15px);
    margin-bottom: 40px;
    z-index: 10;
    
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-animation-name: grow;
    -webkit-animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: grow;
    -moz-animation-duration: 8s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
}


@-webkit-keyframes grow {
    20% {
        -webkit-transform:scale(1);
    }
    30% {
        -webkit-transform:scale(1.2);
    }
    40% {
        -webkit-transform:scale(1);
    }
    50% {
        -webkit-transform:scale(1.2);
    }
    60% {
        -webkit-transform:scale(1);
    }
}

@-moz-keyframes grow {
    20% {
        -moz-transform:scale(1);
    }
    30% {
        -moz-transform:scale(1.2);
    }
    40% {
        -moz-transform:scale(1);
    }
    50% {
        -moz-transform:scale(1.2);
    }
    60% {
        -moz-transform:scale(1);
    }
}

@keyframes grow {
    20% {
        transform:scale(1);
    }
    30% {
        transform:scale(1.2);
    }
    40% {
        transform:scale(1);
    }
    50% {
        transform:scale(1.2);
    }
    60% {
        transform:scale(1);
    }
}



section.header div.content-block-center {
    height: 100%;
    position: relative;
    float: right;
}

.vr-brille-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    margin-right: 20%;
    margin-bottom: 20%;
}

.vr-brille-container img {
    position: absolute;
    bottom: 0;
}

img.vr-brille {
    width: 70%;
    position: absolute;
    margin-left: 15%;
    bottom: 150px;
    transition: 0.5s;
}

.vr-brille-container:hover img.vr-brille {
    width: 74%;
    margin-left: 13%;
    bottom: 160px;
}

.vr-brille-container h3 {
    width: 50%;
    position: absolute;
    bottom: -20px;
/*    margin-left: 28%;*/
    margin-left: 27%;
/*    margin-bottom: 80px;*/
    margin-bottom: 92px;
/*    font-size: 1.6rem;*/
    font-size: 2rem;
    color: #1e2846;
    transition: 0.5s;
}

.vr-brille-container:hover h3 {
    margin-left: 33%;
/*    margin-bottom: 60px;*/
}

p#pink-arrow {
    font-family: 'Lato-Black';
    font-size: 3.5rem;
    color: #e6325a;
    width: 88%;
    position: absolute;
    bottom: -20px;
    margin-left: 15%;
    margin-bottom: 80px;
    transition: 0.5s;
}

.vr-brille-container:hover p#pink-arrow {
    font-size: 4.5rem;
    bottom: -40px;
    margin-left: 15%;
}

header {
    position: absolute;
    width: 100%;
    height: 150px;
}

header div.top-section {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    margin-left: 40px;
}

header div.top-section a {
    margin-top: 10px;
    margin-bottom: 10px;
}

header div.top-section img {
    width: auto;
    height: 40px;
}

header div.top-nav {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    height: 60px;
    padding: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
	z-index: 10;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

section.header {
/*
    background-image: url(../img/layout/index-header.jpg);
    background-size: cover;
    background-position: center center;
    top: 0;
    width: 100%;
*/
    height: 100vh;
    padding: 0;
}

section.blau {
    background-color: #1e2846;
}

section.rot {
    background-color: #e6325a;
}

section#willkommen {
    padding-top: 0;
}

section#willkommen > div {
    background-image: url(../img/layout/side-glitch-animation.png), url(../img/layout/willkommen-blau.png);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 100px;
}

section#covid-info {
    z-index: 1;
}

section#covid-info h2 {
    margin-bottom: 20px;
}

section.sub-header {
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 200px;
}

.erlebnis-site section.sub-header,
.wissenschaft-site section.sub-header,
.glacier-experience-trail-site section.sub-header,
.anreise-site section.sub-header,
.reservation-site section.sub-header,
.partner-site section.sub-header,
.news-site section.sub-header,
.kontakt-site section.sub-header {
    background-image: url(../img/layout/willkommen-rot.png);
}

section.sub-header div.grid-2 {
    margin-bottom: 0;
}

/*
.wissenschaft-site section.sub-header {
    background: 
    linear-gradient(
        to left,
        rgba(255, 0, 0, 0), 
        rgba(230, 50, 90, 1),
        rgba(230, 50, 90, 1)
    ),
    url(../img/content/platzhalterfotos/vr-og-stationen2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
*/

section div.grid-container:not(:first-child) {
    margin-top: 100px;
}

.reservation-site section div.grid-container:not(:first-child) {
    margin-top: 50px;
}

.impressum-datenschutz-site section div.grid-container {
    margin-top: 0;
}

p.news-date {
    margin-bottom: 0;
    color: #9d9d9c;
}

p.image-description {
    font-style: italic;
    margin-top: 10px;
}

.half-left {
    width: 45%;
    margin-right: 10%;
    float: left;
}

.half-right {
    width: 45%;
    float: right;
}

footer {
    padding-top: 50px;
    padding-bottom: 70px;
}

footer div.grid-4.partner {
    margin-bottom: 40px;
}

footer div.partner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

footer div.partner:first-of-type {
    justify-content: flex-start;
}

footer div.partner a {
    margin-left: 10px;
    margin-right: 10px;
    height: 25px;
}

footer div.partner:first-of-type a {
    height: 35px;
    margin-left: 30px;
    margin-right: 30px;
}

footer div.partner a:first-of-type {
    margin-left: 0;
}

footer div.partner a:last-of-type {
    margin-right: 0;
}

footer div.partner:first-of-type a.logo-medium {
    height: 40px;
}

footer div.partner a.logo-medium {
    height: 35px;
}

footer div.partner:first-of-type a.logo-big {
    height: 50px;
}

footer div.partner a.logo-big {
    height: 45px;
}

footer div.partner a img {
    width: auto;
    height: 100%;
}

footer div.footer-impressum {
    margin-top: 70px;
}

footer div.footer-impressum a {
    text-decoration: none;
}

footer div.footer-impressum a:hover {
    color: #fff;
}

footer div.footer-impressum a {
    margin-right: 15px;
}

footer div.footer-impressum a:last-of-type {
    margin-right: 0;
}

div.partner-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

div.partner-container img {
    max-width: 100%;
	width: 100%;
    height: 100px;
}

div.partner-container a {
	display: inline-block;
}

div.partner-container img.big {
    height: 110px;
}

div.partner-container img.small {
    height: 90px;
}

.details-site section,
.impressum-datenschutz-site section,
.gesendet-site section {
    padding-top: 200px;
}

.details-site .yt-movie {
    margin-bottom: 20px;
}

.details-site ul.list li {
    margin-bottom: 10px;
}

.details-site ul.list li a {
    text-decoration: underline;
}

.details-site ul.list li a:hover {
    text-decoration: none;
}

h2#datenschutz {
    margin-top: 70px;
}

.geltungsbereich {
    margin-top: 0;
}

form p.val-error {
    margin-bottom: 0;
}

.logos-testanlage {
    width: 50%;
}

.partner-testanlage {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-testanlage a, .partner-testanlage p {
    margin-bottom: 50px;
}

.partner-testanlage a:last-child {
    margin-bottom: 0;
}

.partner-testanlage a img {
    width: 50%;
}

.partner-testanlage img#logo-glaciersalive {
    width: 25%;
}

.stationen-uebersicht h2 {
    margin-bottom: 5px;
}

.stationen-uebersicht h3,
.stationen-uebersicht h3.not-first {
    margin-top: 5px;
}

.glacier-experience-trail-site h3 {
    margin-top: 30px;
    margin-bottom: 5px;
}


ul.list {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.list li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	margin-right: 0%;
	margin-bottom: 3.5%;
}

.list li a {
	text-decoration: none;
	display: block;
}

.list.vier-spalten li {
	width: 22.375%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.drei-spalten li {
	width: 31%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.drei-spalten li:last-child {
    margin-bottom: 0 !important;
}

.list.zwei-spalten li, 
.list.zwei-spalten.news.front li {
	width: 48.25%;
	margin-right: 3.5%;
	margin-bottom: 3.5%;
	float: left;
}

.list.vier-spalten li:nth-child(4n),
.list.drei-spalten li:nth-child(3n), 
.list.zwei-spalten li:nth-child(2n), 
.list.zwei-spalten.news.front li:nth-child(2n) {
	margin-right: 0;
}

@media 
only screen and (min-width : 600px) and (max-width : 879.9px) {
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n) {
		width: 48.25%;
		margin-right: 3.5%;
	}
	.list.vier-spalten li:nth-child(2n), 
	.list.drei-spalten li:nth-child(2n) {
		margin-right: 0;
	}
	
}

@media 
only screen and (min-width : 220px) and (max-width : 599.9px) {
	.list.zwei-spalten li, 
	.list.zwei-spalten.news.front li, 
	.list.zwei-spalten li:nth-child(2n), 
	.list.zwei-spalten.news.front li:nth-child(2n),
	.list.drei-spalten li, 
	.list.drei-spalten li:nth-child(3n), 
	.list.drei-spalten li:nth-child(2n), 
	.list.vier-spalten li, 
	.list.vier-spalten li:nth-child(4n), 
	.list.vier-spalten li:nth-child(2n) {
		width: 100%;
		margin-right: 0%;
		float: none;
		display: block
	}
    
    .list.drei-spalten li {
        margin-bottom: 50px;
    }
}



/*
@media 
only screen and (min-width : 1000px) and (max-width : 1200px) {
    img.vr-brille {
        width: 60%;
        margin-left: 20%;
    }
    
    .vr-brille-container h3 {
        font-size: 1.4rem;
    }    
    
    .vr-brille-container:hover img.vr-brille {
        width: 64%;
        margin-left: 18%;
    }
    
}

@media 
only screen and (min-width : 800px) and (max-width : 999.9px) {
    img.vr-brille {
        width: 50%;
        margin-left: 25%;
    }
    
    .vr-brille-container h3 {
        font-size: 1.2rem;
    }    
}
*/

@media 
only screen and (min-width : 1000px) and (max-width : 1400px) {      
    section.header div.content-block-center {
        position: absolute;
        width: 100%;
        margin: 0;
    }

    .vr-brille-container {
        width: 400px;
        margin-right: 100px;
        margin-bottom: 200px;
    }
}

@media
    only screen and (max-width : 1200px) {
        section.sub-header {
            padding-top: 150px;
        }
        
        .details-site section,
        .impressum-datenschutz-site section,
        .gesendet-site section {
            padding-top: 150px;
        }
}

@media 
only screen and (min-width : 600px) and (max-width : 999.9px) {      
    section.header div.content-block-center {
        position: absolute;
        width: 100%;
        margin: 0;
    }

    .vr-brille-container {
        width: 300px;
        margin-right: 60px;
        margin-bottom: 200px;
    }
    
    .vr-brille-container img.vr-brille {
        width: 60%;
        margin-left: 20%;
        bottom: 150px;
    }
    
    .vr-brille-container:hover img.vr-brille {
        width: 64%;
        margin-left: 17%;
        bottom: 160px;
    }
    
    .vr-brille-container:hover p#pink-arrow {
        bottom: -35px;
    }
    
    .vr-brille-container h3 {
/*        margin-bottom: 75px;*/
        margin-bottom: 100px;
        font-size: 1.6rem;
    }
}

@media 
only screen and (min-width : 599.9px) { 
    div.news-container {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

@media 
only screen and (max-width : 599.9px) {   
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    section#willkommen > div {
        padding-top: 50px;
    }
    
    section div.grid-container:not(:first-child) {
        margin-top: 50px;
    }
    
    section.header div.content-block-center {
        position: absolute;
        width: 100%;
        margin: 0;
    }

    .vr-brille-container {
        width: 50%;
        min-width: 200px;
        margin-right: 40px;
        margin-bottom: 180px;
    }
    
    .vr-brille-container img.vr-brille {
        width: 60%;
        margin-left: 20%;
        bottom: 110px;
    }
    
    .vr-brille-container:hover img.vr-brille {
        width: 64%;
        margin-left: 17%;
        bottom: 120px;
    }
    
    .vr-brille-container p#pink-arrow {
        font-size: 3rem;
        margin-bottom: 60px;
        margin-left: 10%;
    }
    
    .vr-brille-container:hover p#pink-arrow {
        bottom: -35px;
        font-size: 4rem;
    }
    
    .vr-brille-container h3 {
/*        margin-bottom: 60px;*/
        margin-bottom: 80px;
        font-size: 1.2rem;
    }
    
    footer {
        padding-bottom: 50px;
    }
    
    footer div.grid-4.partner {
        margin-bottom: 25px;
    }

    footer div.partner {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    footer div.partner a {
        margin-left: 0px;
        margin-right: 20px;
        margin-bottom: 10px;
        height: 15px;
    }

    footer div.partner:first-of-type a {
        height: 20px;
        margin-left: 25px;
        margin-right: 25px;
    }

    footer div.partner a:first-of-type {
        margin-left: 0;
        margin-right: 20px;
    }

    footer div.partner a:last-of-type {
        margin-left: 0;
        margin-right: 0;
    }

    footer div.partner:first-of-type a.logo-medium {
        height: 20px;
    }

    footer div.partner a.logo-medium {
        height: 20px;
    }

    footer div.partner:first-of-type a.logo-big {
        height: 25px;
    }

    footer div.partner a.logo-big {
        height: 25px;
    }

    footer div.partner a img {
        width: auto;
        height: 100%;
    }
    
    footer div.footer-impressum {
        margin-top: 30px;
    }
    
    div.partner-container {
        display: block;
    }
}

@media 
only screen and (min-width : 660px) and (max-width : 1200px) {    
    header div.top-section {
        height: 30px;
    }
    
    header div.top-section img {
        height: 20px;
    }
    
    #vl {
        height: 35px;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    section div.grid-container:not(:first-child) {
        margin-top: 50px;
    }
}

@media 
only screen and (min-width : 500px) and (max-width : 1000px) { 
    footer div.partner {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    footer div.partner a {
        margin-bottom: 20px;
        margin-right: 20px;
    }
}

@media 
only screen and (max-width : 659.9px) {  
    header div.top-section {
        height: 25px;
        margin-left: 25px;
    }
    
    header div.top-section a:last-child {
        display: none;
    }
    
    header div.top-section img {
        height: 25px;
    }
    
    #vl {
        display: none;
    }    
}


/*********
Accordion und Tab/Register
*********/
.ui-corner-all, 
.ui-corner-top, 
.ui-corner-left, 
.ui-corner-tl,
.ui-corner-bottom {
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover,
.ui-state-active:focus {
	border:none;
	background:#C00003;
	font-weight:normal;
	color:#fff;
	outline: none;
}

.ui-tabs {
    padding: 0;
}

.ui-tabs .ui-tabs-nav {
    border: none;
	border-bottom: 1px solid #ddd;
}


.accordion {
	margin-bottom: 20px;
}

.accordion h3 {
	outline: none;
}

.accordion .ui-icon, 
.accordion .ui-widget-header .ui-icon, 
.accordion .ui-state-hover .ui-icon, 
.accordion .ui-state-focus .ui-icon, 
.accordion .ui-button:hover .ui-icon, 
.accordion .ui-button:focus .ui-icon, 
.accordion .ui-state-highlight .ui-icon, 
.accordion .ui-button .ui-state-highlight.ui-icon, 
.accordion .ui-state-error .ui-icon, 
.accordion .ui-state-error-text .ui-icon, 
.accordion .ui-button .ui-icon, 
.accordion .ui-icon, 
.accordion .ui-widget-header .ui-icon, 
.accordion .ui-state-hover .ui-icon, 
.accordion .ui-state-focus .ui-icon, 
.accordion .ui-button:hover .ui-icon, 
.accordion .ui-button:focus .ui-icon, 
.accordion .ui-state-highlight .ui-icon, 
.accordion.service .ui-button .ui-state-highlight.ui-icon, 
.accordion.service .ui-state-error .ui-icon, 
.accordion.service .ui-state-error-text .ui-icon, 
.accordion.service .ui-button .ui-icon {
	/*background-image: url(../img/layout/skipp-anker.svg);
	background-size: 10px;
	background-position: 0px 3px;*/
	outline: none;
}

.accordion .ui-state-active .ui-icon, 
.accordion .ui-button:active .ui-icon, 
.accordion .ui-state-active .ui-icon, 
.accordion .ui-button:active .ui-icon {
	/*background-image: url(../img/layout/skipp-anker-weiss.svg);*/
	outline: none;
}

/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 15px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

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

tr:hover {
	background-color: #A4A4A4;
}

th {
	padding: 8px;
	border-bottom: 1px solid #000;
	vertical-align: top;
	text-align: left;
	color: #fff;
	font-weight: bold;
	background-color: #333;
}


td {
	margin: 0;
	padding: 8px;
	border-bottom: 1px dotted #000;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
form {
	overflow: hidden;
}

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

form p {
    padding: 2px;
	padding-bottom: 10px;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 7px;
	font-size: 1rem;
	text-transform: uppercase;
}

label {
	display: block;	
	margin-bottom: 5px;
}

label.inline {
	display: inline;
}

input, 
select, 
textarea {
	background-color: #A4A4A4;
	color: #000;
	border: 0;
	padding: 8px;
	width: 100%;
	margin-bottom: 8px;
}

/* Autocomplete Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
input:-webkit-autofill, 
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 0 #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

input, 
textarea {
	width: 90%;
	width: calc(100% - 16px);
}

textarea {
	height: 120px;
}

input:focus {
	/*border-color: #2A8E01;*/
}

input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
}

input[type="checkbox"] {
	border: 0;
	background: #fff;
	padding: 0px;
}

input[type="submit"], 
button[type="submit"] {
	width: 100%;
	background: #52bed7;
	color: #1e2846;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

input[type="submit"]:hover {
    cursor: pointer;
}

input.pflicht, 
textarea.pflicht {
	/*border-right: 3px solid #000;*/
}

.validationerror {
/*	background: #CB0003;*/
	background: #e6325a;
	color: #fff;
	padding: 8px;
	margin-bottom: 1px;
	width: 100%;	
}

@media 
only screen and (min-width : 220px) and (max-width : 879.9px) {
	input,
	textarea,
	input[type="submit"],
	button[type="submit"],
	input[type="submit"]:hover, 
	.validationerror
	 {
		width: 90%;
		width: calc(100% - 16px);
	}
 
	select {
		width: 100%;
	}
}

/*********
Masonry Box-System
*********/
.masonry-box {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.masonry-box .box-item {
	margin-bottom: 35px;
	
}

/* Salvattore - Masonry */
/* These are the classes that are going to be applied: */
.masonry-box .column { 
	float: left;
}

.masonry-box .size-1of4, 
.masonry-box .size-1of3, 
.masonry-box .size-1of2 { 
	margin: 0;
	padding: 0;
	float: left;
	width: 22.375%;
	margin-right: 3.5%;
}

.masonry-box .size-1of3 { 
	width: 31%;
}

.masonry-box .size-1of2 {
	width: 48%;
	margin-right: 4%;
}

.masonry-box .size-1of1 {
	width: 100%;
	margin-right: 0;
}

.masonry-box .size-1of4:nth-child(4n), 
.masonry-box .size-1of3:nth-child(3n), 
.masonry-box .size-1of2:nth-child(2n) {
	margin-right: 0;
}

@media screen and (min-width: 880px) and (max-width: 5000px) {
	.masonry-box[data-columns]::before {
		content: '2 .column.size-1of2';
	}
}
@media screen and (max-width: 879.9px){
	.masonry-box[data-columns]::before {
		content: '1 .column.size-1of1';
	}
}

/* Google Map */
.gm-style-iw * {
	color: #000000;
}








