@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Dosis:200,400,600);
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
  
body {
	background-color:#ececec;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: 'Source Sans Pro', sans-serif;
	font-size:1vw;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	cursor:default;
}

h1 { color:#c70c5b; font-size:1.4vw; } 
h2 { color:#c70c5b; font-size: 1.1vw; text-align: center;}
h3 { color:black; margin:auto; font-size:1vw; text-align: center;}

#navbar {
	margin:auto;
	width:50vw;
	top: 0;
	z-index:3;
	background-color:black;
	opacity: 0;
	-webkit-animation: fadein 2s; /* Safari and Chrome */
    -moz-animation: fadein 2s; /* Firefox */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera */
    animation: fadein 2s;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

#topBarL {
	float:left;
	width:50%;
	height:auto;
	margin:0;
	text-align:left;
	font-family:Dosis;
	color:White;
	align-items: baseline;
}

#topBarR {
	width:50%;
	height:auto;
	float:right;
	padding:0;
	margin:0;
}	

.navItem {
	height:100%;
	align-items: baseline;
	text-align: center;
	float:left;
	color:white;
	width:auto;
	padding: 3vw 0.5vw 0.5vw 0.5vw;
	vertical-align: bottom;
	}
	
.navItem:hover {
	color:white;
	background-color: rgba(199,12,91,0.5);
	cursor:pointer;
	}

#signetInv {
	width:50vw;
	opacity: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
	-webkit-animation: fadein 2s; /* Safari and Chrome */
    -moz-animation: fadein 2s; /* Firefox */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera */
    animation: fadein 2s;
	animation-fill-mode: forwards;
	background-color:#f8f8f8;
}

#welcometext {
	width:50vw;
	height:auto;
	text-align:center;
	line-height:1.5;
	margin:auto;
	opacity: 0;
	-webkit-animation: fadein 2s; /* Safari and Chrome */
    -moz-animation: fadein 2s; /* Firefox */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera */
    animation: fadein 2s;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
	padding:1vw;
}

#prices {
	color:black;
	height:auto;
	display:block;
	width:50vw;
	margin:auto;
	text-align: left;
	background-color:#f8f8f8;
}
#impressum {
	color:grey;
}

#topButton {
	position:fixed;
	bottom:3%;
	right:3%;
	height:50px;
	width:50px;
	background-image:url('img/upbutton.png');
	opacity:0.5;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:top left;
	cursor:pointer;
}
#topButton:hover {opacity: 1;}

.content {
	width:50vw;
	height:auto;
	margin:auto;
	background-color:#f8f8f8;
	padding:1vw;
}
.priceCL {
	width:100%;
	padding:5pt 0 5pt 0;
}
.priceDSC {
	text-align:left;
	width:70%;
	float:left;
	padding-left:10pt;
}
.priceVA {
	vertical-align: middle;
	width:30%;
	float:left;
	text-align: right;
	display:inline;
}
.priceCL:hover {
	background-color:#dbdbdb;
}


.ImgWide {
	width:50vw;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding:0;
	background-position: center left;
	background-repeat:repeat-x;
	background-size:cover;
	visibility: visible !important;
	opacity: 0;
	-webkit-animation: fadein 2s; /* Safari and Chrome */
    -moz-animation: fadein 2s; /* Firefox */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera */
    animation: fadein 2s;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

#gmap {
	margin:auto;
	width:50vw;
	height:30vw;
	visibility: visible !important;
}
#comsg {
	width:50vw;
	height:100%;
	padding:1vw;
	margin-left: auto;
	margin-right: auto;
	background-color:#00a54e;
	color:#ececec;
	line-height:1.5;
	opacity: 0;
	-webkit-animation: fadein 2s; /* Safari and Chrome */
    -moz-animation: fadein 2s; /* Firefox */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera */
    animation: fadein 2s;
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
}

#contact { float:left; width:50%; }
#hours { float:left; width:50%; }
#time { padding-left: 1vw; }





        @keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Firefox */
        @-moz-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Safari and Chrome */
        @-webkit-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Internet Explorer */
        @-ms-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }​

        /* Opera */
        @-o-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }​