/*==========================================================================================================*/
/*=== Agnes Neun Style Sheet === für Version 4 === T.Höh ===================================================*/
/*==========================================================================================================*/
   
/*** Bildschirm Darstellung *********************************/

/*
    <meta name="viewport"     content="width=device-width, initial-scale=0.4">
*/

/*
@viewport{
        width: device-width;
        zoom: 0.4;
}
*/

/*
@viewport{
	zoom: 1.0;
	width: extend-to-zoom;
}
*/

/*** Druckbereich festlegen *********************************/

@page {
  size: A4;
}

/*
@media print {
  @page {
    size: A4 portait;
  }
}
*/

@media print {
  header, nav, footer, .ticker_wrapper, .do_not_print {
    background-image: none !important;
    display:          none !important;
  }
}

@media print {
  details {
    page-break-inside: avoid;
  }
}

.zeilenumbruch {
  page-break-before: always;
}

/*** Globale Variablen **************************************/

:root {
  --farbe0:     black;
  --farbe1:     blue;
  --farbe2:     azure;
  --farbe3:     brown;
  --farbe4:     beige;
  --farbe9:     white;
  --font1:      "Amaranth", "Arial", "Helvetica", "sans-serif";
  --font2:      "DancingScript-Regular";
  --font3:      "NotCourierSans-Bold";
  --breite:     1000px;
  --radius:     12px;
  --opacity1:   1.0;
  --opacity0:   0.8;
  --border:     1px;
  /* ausgelagert nach ticker.css: 
  --ticker:     "⌖";
  */
}

/*** Lokale Fonts *******************************************/

/*** DancingScript ***/

@font-face {
  font-family:  'DancingScript-Regular';
  src:           url('fonts/DancingScript-Regular.woff2') format('woff2'),
                 url('fonts/DancingScript-Regular.woff')  format('woff'),
                 url('fonts/DancingScript-Regular.ttf')   format('truetype');
  font-weight:   400;
  font-display:  swap;
  font-style:    normal;
}

@font-face {
  font-family : 'DancingScript-Bold';
  src:           url('fonts/DancingScript-Bold.woff2') format('woff2'),
                 url('fonts/DancingScript-Bold.woff')  format('woff'),
                 url('fonts/DancingScript-Bold.ttf')   format('truetype');
  font-weight :  700;
  font-display:  swap;
  font-style:    normal;
}
/*
 * This is a variable font
 * You can control variable axes as shown below:
 * font-variation-settings: wght 400.0;
 * available axes: 'wght' (range from 400.0 to 700.0
 */

@font-face {
  font-family:   'DancingScript-Variable';
  src:           url('fonts/DancingScript-Variable.woff2') format('woff2'),
                 url('fonts/DancingScript-Variable.woff')  format('woff'),
                 url('fonts/DancingScript-Variable.ttf')   format('truetype');
  font-weight:   400 700;
  font-display:  swap;
  font-style:    normal;
}

/*** NotCourierSans ***/

@font-face {
  font-family:   "NotCourierSans";
  src:           local("NotCourierSans"), url("fonts/NotCourierSans.otf") format("opentype");
  font-display:  swap;
}

@font-face {
  font-family:   "NotCourierSans-Bold";
  src:           local("NotCourierSans-Bold"), url("fonts/NotCourierSans-Bold.otf") format("opentype");
  font-display:  swap;
}

/*** Amaranth ***/

@font-face {
  font-family:   "Amaranth";
  src:           url("fonts/Amaranth-Bold.otf") format("opentype");
  font-weight:   bold;
  font-style:    normal;
  font-display:  swap;
}

@font-face {
  font-family:   "Amaranth";
  src:           url("fonts/Amaranth-BoldItalic.otf") format("opentype");
  font-weight:   bold;
  font-style:    italic;
  font-display:  swap;
}

@font-face {
  font-family:   "Amaranth";
  src:           url("fonts/Amaranth-Italic.otf") format("opentype");
  font-weight:   normal;
  font-style:    italic;
  font-display:  swap;
}

@font-face {
  font-family:   "Amaranth";
  src:           url("fonts/Amaranth-Regular.otf") format("opentype");
  font-weight:   normal;
  font-style:    normal;
  font-display:  swap;
}

/*** html ***************************************************/

html {
  margin:                0;
  padding:               0;
/* TEST
@media screen and (1200px <= width <= 2200px) { background-color: #ffee00; }
@media screen and ( 800px <= width <= 1200px) { background-color: #ffcc00; }
@media screen and ( 700px <= width <=  800px) { background-color: #ffbb00; }
@media screen and ( 600px <= width <=  700px) { background-color: brown; }
@media screen and ( 500px <= width <=  600px) { background-color: #ff8800; }
@media screen and ( 400px <= width <=  500px) { background-color: blue; }
@media screen and ( 300px <= width <=  400px) { background-color: #ff4400; }
@media screen and ( 200px <= width <=  300px) { background-color: green; }
@media screen and (   1px <= width <=  200px) { background-color: #ff0000; }
*/
}

/*** body ***************************************************/

body {
  max-width:             1024px;
  width:                 100%;
  margin:                0px 0px 0px 0px;
  padding:               0px 0px;
  background-image:      url(images/background/background4.jpg);
  background-size:       100%;
  background-color:      var(--farbe2);
  background-attachment: fixed;
  font-family:           var(--font1);
  margin-left:           auto;
  margin-right:          auto;
}

/*** header *************************************************/

header {
  background-image:      linear-gradient(var(--farbe2), var(--farbe4));
  height:                250px;
  width:                 var(--breite);
  border-top-style:      solid;
  border-top-width:      var(--border);
  border-top-color:      var(--farbe3);
  border-top-left-radius:var(--radius);
  border-top-right-radius:var(--radius);
  border-left-style:     solid;
  border-left-width:     var(--border);
  border-left-color:     var(--farbe3);
  border-right-style:    solid;
  border-right-width:    var(--border);
  border-right-color:    var(--farbe3);
  padding-top:           20px;
  padding-bottom:        0px;
  padding-left:          10px;
  padding-right:         10px;
  opacity:               var(--opacity0);
  margin-top:            10px;
  margin-bottom:         0px;
  margin-left:           auto;
  margin-right:          auto;
  display:               block;
}

header p {
  font-family:           var(--font0);
  font-size:             15px;
  font-weight:           bold;
  color:                 var(--farbe0);
  text-align:            center;
  margin-top:            0px;
}

header h1 {
  font-family:           var(--font2);
  color:                 var(--farbe1);
  text-shadow:           6px 6px 4px var(--farbe2);
  font-size:             80px;
  font-weight:           bold;
  text-align:            center;
  margin-top:            0px;
}

header h2 {
  font-family:           var(--font2);
  text-shadow:           2px 2px 4px var(--farbe4);
  font-size:             36px;
  font-weight:           bold;
  color:                 var(--farbe3);
  text-align:            center;
  text-shadow:           4px 4px 16px var(--farbe2);
}

/*** nav ****************************************************/

nav {
  background-color:      var(--farbe4);
  position:              sticky;
  top:                   0;
  height:                22px;
  width:                 var(--breite);
  border-bottom-style:   solid;
  border-bottom-width:   var(--border);
  border-bottom-color:   var(--farbe3);
  border-top-style:      solid;
  border-top-width:      var(--border);
  border-top-color:      var(--farbe3);
  border-left-style:     solid;
  border-left-width:     var(--border);
  border-left-color:     var(--farbe3);
  border-right-style:    solid;
  border-right-width:    var(--border);
  border-right-color:    var(--farbe3);
  padding-top:           15px;
  padding-bottom:        15px;
  padding-left:          10px;
  padding-right:         10px;
  opacity:               var(--opacity0);
  margin-top:            0px;
  margin-bottom:         0px;
  margin-left:           auto;
  margin-right:          auto;
  display:               block;
  text-align:            center;
  z-index:               99;
}

nav ul {
  margin:                0px;
  padding:               0px;
}

nav li {
  font-size:             18px;
  font-weight:           normal;
  list-style-type:       none;
  display:               inline-block;
  text-align:            left;
  text-indent:           10px;
  margin-left:           2px;
  margin-right:          2px;
}

nav a {
  font-size:             18px;
  border:                var(--border) solid var(--farbe0);
  border-radius:         var(--radius);
  padding:               5px;
  margin:                5px;
  box-shadow:            2px 2px 4px 0px var(--farbe0);
  transition:            all 0.5s ease-out;
}

nav a, nav a:link, nav a:visited, nav a:focus {
  color:                 var(--farbe2);
  background-color:      var(--farbe3);
  text-decoration:       none;
}

nav a:active, nav a:hover {
  color:                 var(--farbe1);
  background-color:      var(--farbe2);
  text-decoration:       none;
  text-shadow:           1px 1px 4px var(--farbe3);
}

/*** ticker *************************************************/

.ticker_wrapper {
  width:                 var(--breite);
  height:                35px;
  padding-top:           15px;
  padding-bottom:        0px;
  padding-left:          10px;
  padding-right:         10px;
  overflow:              hidden;
  margin-left:           auto;
  margin-right:          auto;
  background-color:      var(--farbe4);
  opacity:               var(--opacity0);

  border-left-style:     solid;
  border-left-width:     var(--border);
  border-left-color:     var(--farbe3);
  border-right-style:    solid;
  border-right-width:    var(--border);
  border-right-color:    var(--farbe3);

}

.ticker_wrapper a {
  text-decoration:       none;
}

.ticker {
  position:              relative;
  font-family:           var(--font3);
  font-size:             18px;
  text-shadow:           1px 1px 2px var(--farbe4);
  color:                 var(--farbe0);
  padding:               0px 0px;
  white-space:           nowrap;
  animation:             moveTicker 30s linear infinite;
}

.ticker::before {
  content:               var(--ticker);
}

@keyframes moveTicker {
  from {
    transform:           translate3d( 100%, 0%, 0px);
  }
  to {
    transform:           translate3d(-100%, 0%, 0px);
  }
}

/*** article ************************************************/

article {
  background-image:      linear-gradient(var(--farbe4), var(--farbe2));
  width:                 var(--breite);

  border-style:          solid;
  border-width:          var(--border);
  border-color:          var(--farbe3);
/*
  border-bottom-style:   solid;
  border-bottom-width:   var(--border);
  border-bottom-color:   var(--farbe3);
  border-left-style:     solid;
  border-left-width:     var(--border);
  border-left-color:     var(--farbe3);
  border-right-style:    solid;
  border-right-width:    var(--border);
  border-right-color:    var(--farbe3);
*/
  padding-top:           10px;
  padding-bottom:        0px;
  padding-left:          10px;
  padding-right:         10px;
  margin-top:            0px;
  margin-bottom:         0px;
  margin-left:           auto;
  margin-right:          auto;
  display:               block;
  opacity:               var(--opacity1);
}

article h3 {
  font-family:           var(--font2);
  font-size:             32px;
  font-weight:           bold;
  color:                 var(--farbe1);
  text-align:            center;
}

article p {
  font-family:           var(--font1);
  font-size:             18px;
  font-weight:           normal;
  color:                 var(--farbe0);
  padding-left:          20px;
  padding-right:         20px;
}

/*** footer *************************************************/

footer {
  background-image:      linear-gradient(var(--farbe2), var(--farbe4));
  height:                350px;
  width:                 var(--breite);
  border-bottom-style:   solid;
  border-bottom-width:   var(--border);
  border-bottom-color:   var(--farbe3);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border-left-style:     solid;
  border-left-width:     var(--border);
  border-left-color:     var(--farbe3);
  border-right-style:    solid;
  border-right-width:    var(--border);
  border-right-color:    var(--farbe3);
  padding-top:           1px;
  padding-bottom:        14px;
  padding-left:          10px;
  padding-right:         10px;
  opacity:               var(--opacity0);
  margin-top:            0px;
  margin-bottom:         20px;
  margin-left:           auto;
  margin-right:          auto;
  display:               block;
}

footer p {
  font-family:           var(--font1);
  font-size:             19px;
  font-weight:           bold;
  color:                 var(--farbe0);
  text-align:            left;
  padding-left:          40px;
}

footer a, footer a:link, footer a:visited, footer a:focus {
  color:                 var(--farbe0);
  text-decoration:       none;
}

footer a:active, footer a:hover {
  color:                 var(--farbe1);
  text-decoration:       none;
  text-shadow:           1px 1px 2px var(--farbe2);
}

.footer_left {
/*background-color: red;*/
  float:                 left;
  height:                250px;
  padding-left:          10px;
  padding-right:         10px;
}

.footer_left h3 {
  font-family:           var(--font1);
  font-size:             19px;
  font-weight:           bold;
  color:                 var(--farbe0);
  text-align:            left;
  padding-left:          40px;
}

.footer_left li {
  font-size:             19px;
  list-style-type:       none;
}

.footer_right {
/*background-color: blue;*/
  float:                 right;
  height:                250px;
  padding-left:          10px;
  padding-right:         10px;
}

.footer_right h3 {
  font-family:           var(--font1);
  font-size:             19px;
  font-weight:           bold;
  color:                 var(--farbe0);
  text-align:            left;
  padding-left:          40px;
}

.footer_right li {
  font-size:             19px;
  list-style-type:       none;
  margin-bottom:         7px;
}

.footer_down {
/*background-color: yellow;*/
  float:                 none;
  height:                80px;
  margin-top:            250px;
  padding-top:           15px;
}

.footer_down h4 {
  font-family:           var(--font1);
  font-size:             19px;
  font-weight:           bold;
  color:                 var(--farbe0);
/*text-align:            left; */
/*padding-left:          40px; */
  text-align:            center;
}

/*** Global Classes *****************************************/

/* Titelbild */

.top_picture {
  width:                 600px !important;
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
  background-size:       cover;
  top:                   0;
  bottom:                0;
  left:                  0;
  right:                 0;
  margin-top:            40px !important;
  margin-bottom:         60px !important;
}

/* Schrägschrift */

.ital {
  font-style:            italic;
}

/* Abstand vertikal */

.space50 {
  height:                50px;
}

/* Zitat */

p.zitat {
  font-size:             16px;
  font-style:            italic;
  font-weight:           normal;
  margin-left:           20px;
  margin-right:          20px;
}

p.zitat::before {
  content:               "\""
}

p.zitat::after {
  content:               "\""
}

/* Tooltip */

.tt {
  position:              relative;
  display:               inline-block;
  color:                 var(--farbe3);
/*border-bottom:         1px dotted var(--farbe0);*/
}

.tt::before {
  content:               "➪ ";
}
  
.tt .ttt {
  font-size:             14px;
  visibility:            hidden;
  width:                 320px;
  background-color:      var(--farbe1);
  color:                 var(--farbe9);
  text-align:            center;
  border-radius:         var(--radius);
  padding:               15px 10px;
  position:              absolute;
  z-index:               1;
  bottom:                125%;
  left:                  50%;
  margin-left:           -160px;
  opacity:               0;
  transition:            opacity 0.3s;
}

.ttt a {
  color:                 var(--farbe9) !important;
}

.tt .ttt::after {
  content:               "";
  position:              absolute;
  top:                   100%;
  left:                  50%;
  margin-left:           -5px;
  border-width:          5px;
  border-style:          solid;
  border-color:          var(--farbe1) transparent transparent transparent;
}

.tt:hover .ttt {
  visibility:            visible;
  opacity:               var(--opacity1);
}

/*** impressum **********************************************/

.impressum {
  margin-bottom:         40px;
}

.impressum ul {
  text-align:            center;
  list-style-type:       none;
}

.impressum h4 {
  margin-left:           40px;
  text-align:            center;
}

.impressum h5 {
  margin-left:           40px;
  text-align:            center;
}

/*** Overlay 70 ***/

span.wrapper70 {
  position:              relative;
  display:               block;
}

span.wrapper70 img.img71 {
  display:               block;
}

span.wrapper70 img.img72 {
  position:              absolute;
  top:                   210px;
  right:                 280px;
}
 
img.img71 {
  z-index:               1;
}

img.img72 {
  height:                150px;
  width:                 150px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move70 8s linear 2;
  animation-direction:   alternate;
  animation-fill-mode:   forwards;
}

@keyframes move70 {
  from {
          opacity:   0;
          transform: translateX(0);
  }
  to {
          opacity:   1;  
          transform: translate(150px,-120px);
  }
}

/*** datenschutz ********************************************/

.datenschutz {
  margin-bottom:         40px;
}

.datenschutz h4 {
  margin-left:           20px;
}

/*** Overlay 90 ***/

span.wrapper90 {
  position:              relative;
  display:               block;
}

span.wrapper90 img.img91 {
  display:               block;
}

span.wrapper90 img.img92 {
  position:              absolute;
  top:                   -80px;
  right:                 200px;
}

img.img91 {
  z-index:               1;
}

img.img92 {
  height:                150px;
  width:                 184px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move90 8s ease-in-out 1;
  animation-fill-mode:   forwards;
}

@keyframes move90 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translateX(0) scale(0.6);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(60px,120px) scale(0.9);
  }
}

/* 
span.wrapper90 {
  position:              relative;
  display:               block;
}

span.wrapper90 img.img91 {
  display:               block;
} 
  
span.wrapper90 img.img92 {
  position:              absolute;
  top:                   -110px;
  right:                 80px;
}

img.img91 {
  z-index:               1;
}

img.img92 {
  height:                250px;
  width:                 250px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move90 8s linear 2;
  animation-direction:   alternate;
}

@keyframes move90 {30% { transform: translate(20px,20px)}
                   70% { transform: scale(2,2);}
                  100% { transform: rotate(25deg);}
                  }
*/

/*** kohlfahrt **********************************************/

.kohlfahrt {
  position:              relative;
}

.kohlfahrt:before {
  position:              absolute;
  z-index:               1;
  opacity:               0.2;
  content:               "";
  background-image:      url("images/background/IMG_0555.jpeg");
  background-size:       cover;
  border:                var(--border) solid var(--farbe0);
  border-radius:         var(--radius);
  top:                   0;
  bottom:                0;
  left:                  0;
  right:                 0;
}

.kohlfahrt_content {
  position:              relative; 
  z-index:               2;
  opacity:               1.0;
  padding-top:           40px;
  padding-bottom:        80px;
  margin-bottom:         80px;
}

.kohlfahrt p {
  color:                 var(--farbe0);
}

.kohlfahrt h4 {
  font-size:             22px;
  margin-left:           20px;
  margin-top:            40px;
  margin-bottom:         40px;
}

/*** Overlay 120 ***/
  
span.wrapper120 {
  position:              relative;
  display:               block;
}

span.wrapper120 img.img121 {
  display:               block;
} 
  
span.wrapper120 img.img122 {
  position:              absolute;
  top:                   80px;
  right:                 700px;
}

img.img121 {
  z-index:               1;
}

img.img122 {
  height:                150px;
  width:                 200px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move120 8s linear 1;
  animation-fill-mode:   forwards;
}

@keyframes move120 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translateX(0) scale(0.7);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(560px,-160px) scale(1.2);
  }
}

/*
@keyframes move140 {30% { transform: translate(20px,20px)}
                    70% { transform: scale(2,2);}
                   100% { transform: rotate(25deg);}
                 }
*/

/*** news ***************************************************/

.news {
  margin-bottom:         40px;
}

.news img {
  height:                250px;
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin-left:           40px !important;
  margin-right:          40px !important;
  float:                 right;
}

.news video {
  height:                250px;
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin-left:           40px !important;
  margin-right:          40px !important;
  float:                 right;
}

.news_l {
  height:                270px;
}

.news details {
/*height:                310px; */
}

.news details > summary {
  color:                 var(--farbe9);
  background-color:      var(--farbe1);
  font-size:             12px;
  padding:               5px;
  border-radius:         var(--radius);
}

.news span {
  font-family:           var(--font3);
  font-size:             12px;
  margin-right:          8px;
  margin-top:            2px;
  text-align:            right;                             
  float:                 right;
  color:                 var(--farbe9);;
}

/*** Overlay 50 ***/

span.wrapper50 {
  position:              relative;
  display:               block;
} 

span.wrapper50 img.img51 {
  display:               block;
}

span.wrapper50 img.img52 {
  position:              absolute;
  top:                   -20px;
  right:                 180px;
} 
  
img.img51 {     
  z-index:               1;
} 
  
img.img52 {     
  height:                150px;
  width:                 150px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move50 8s linear 1;
  animation-direction:   alternate;
}

@keyframes move50 {   0% { transform: scale(1,1);}
                     40% { transform: scale(2,2);}
                     80% { transform: scale(1.5,1.5);}
                    100% { transform: scale(1,1);}
                  }

/*** Newsletter button **************************************/
    
div.button {
  animation:             blinker 3.5s linear infinite;
  background-color:      var(--farbe9);
  color:                 var(--farbe1);
  border:                3px solid var(--farbe1);;
  border-color:          var(--farbe1);
  font-size:             14px;
  font-weight:           bold;
  padding:               5px 10px;
  border-radius:         var(--radius);
  width:                 120px;
  text-align:            center;
  box-shadow:            8px 8px 8px 8px rgba(0,0,0,0.1) inset;
  margin-left:           auto;
  margin-right:          auto;
  margin-bottom:         30px;
}   

a.button {
  text-decoration:       none;
}

@keyframes blinker {
  50% {
    opacity: 0.4;
  } 
}

/*** pulsierender Text **************************************/

span.puls {
  animation:             puls 2.0s ease-out infinite;
}

@keyframes puls {
  50% {
    opacity: 0.1;
  } 
}

/*** fehler *************************************************/

.fehler {
  margin-bottom:         60px;
}

.fehler p {
  color:                 var(--farbe0);
  text-align:            center;
  margin-top:            30px;
  margin-bottom:         30px;
}

/*** Overlay 100 ***/

span.wrapper100 {
  position:              relative;
  display:               block;
}

span.wrapper100 img.img101 {
  display:               block;
}

span.wrapper100 img.img102 {
  position:              absolute;
  top:                   -80px;
  right:                 150px;
}
 
img.img101 {
  background-color:      var(--farbe2);
  z-index:               1;
}

img.img102 {
  height:                150px;
  width:                 147px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move100 8s linear 2;
  animation-direction:   alternate;
}

@keyframes move100 {30% { transform: translate(10px,10px)}
                    70% { transform: scale(1.7,1.7);}
                   100% { transform: rotate(25deg);}
                 }

/*** ueber **************************************************/

.ueber {
  margin-bottom:         40px;
}

.ueber img {
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
}

.ueber video {
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
}

.ueber iframe {
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
}

.ueber_r {
  float:                 right;
  margin-left:           20px !important;
  margin-right:          20px !important;
  margin-bottom:         20px !important;
}

.ueber_l {
  float:                 left;
  margin-left:           20px !important;
  margin-right:          20px !important;
  margin-bottom:         20px !important;
}

.ueber h4 {
  text-align:            center;
  font-size:             22px;
  margin-top:            60px;
  margin-bottom:         40px;
}

.ueber h5 {
  text-align:            center;
  padding-top:           20px;
}

/*** Overlay 20 ***/

span.wrapper20 {
  position:              relative;
  display:               block;
}

span.wrapper20 img.img21 {
  display:               block;
}

span.wrapper20 img.img22 {
  position:              absolute;
  top:                   100px;
  right:                 300px;
}

img.img21 {
  z-index:               1;
}

img.img22 {
  width:                 150px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move20 8s linear 1;
  animation-fill-mode:   forwards;
}

@keyframes move20 {
  from {
          opacity:   0;
          transform: translateX(0) scale(0.8);
  }
  to {
          opacity:   1;
          transform: translate(150px,-120px) scale(1.2);
  }
}

/*** reservierung *******************************************/

.reservierung {
  margin-bottom:         40px;
}

.reservierung p {
  margin-left:           20px;
}

.reservierung h4 {
  margin-left:           40px;
}

.reservierung span {
  color:                 var(--farbe3);
}

.reservierung img {
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
  width:                 50%;
  padding:               20px;
  margin-top:            60px;
}

.reservierung table {
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
  width:                 50%;
  padding:               20px;
  margin-top:            60px;
}

/*** Overlay 150 ***/

span.wrapper150 {
  position:              relative;
  display:               block;
}

span.wrapper150 img.img151 {
  display:               block;
}

span.wrapper150 img.img152 {
  position:              absolute;
  top:                   100px;
  right:                 400px;
}

img.img151 {
  z-index:               1;
}

img.img152 {
  height:                244px;
  width:                 243px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move150 8s ease-in-out 1;
  animation-fill-mode:   forwards;
}

@keyframes move150 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translateX(0) scale(0.5);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(260px,-180px) scale(0.7);
  }
}

/*** newsletter *********************************************/

.newsletter {
  margin-bottom:         40px;
}

.newsletter h4 {
  text-align:            center;
  font-size:             22px;
}

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

.newsletter img {
  border:                var(--border) solid var(--farbe2);
  border-radius:         50%; /*var(--radius);*/
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
}

/*** Overlay 140 ***/
  
span.wrapper140 {
  position:              relative;
  display:               block;
}

span.wrapper140 img.img141 {
  display:               block;
} 
  
span.wrapper140 img.img142 {
  position:              absolute;
  top:                   100px;
  right:                 400px;
}

img.img141 {
  z-index:               1;
}

img.img142 {
  height:                141px;
  width:                 150px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move140 8s ease-in-out 1;
  animation-fill-mode:   forwards;
}

@keyframes move140 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translateX(0) scale(0.7);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(230px,-170px) scale(1.2);
  }
}

/*
@keyframes move140 {30% { transform: translate(20px,20px)}
                    70% { transform: scale(2,2);}
                   100% { transform: rotate(25deg);}
                 }
*/

/*** index **************************************************/

.index {
}

.index p {
  text-align:            center;
}

.index_bg {
  position:              relative;
} 
  
.index_bg:before {
  position:              absolute;
  z-index:               0;
  opacity:               0.3; 
  content:               ""; 
  background-image:      url("images/background/IMG_6502.jpeg");
  background-size:       cover;
  border:                var(--border) solid var(--farbe0);
  border-radius:         var(--radius);
  top:                   0;
  bottom:                0;
  left:                  0;
  right:                 0;
}

.index_content {     
  position:              relative; 
  z-index:               2;
  opacity:               1.0;
  padding-top:           40px;
  padding-bottom:        40px;
  margin-bottom:         40px;
}

/*
  background-image:      url("images/background/IMG_0466.jpeg");
  background-image:      url("images/background/IMG_2982.JPG");
  background-image:      url("images/background/IMG_6737.jpeg");
  background-image:      url("images/background/IMG_7621.jpeg");
  background-image:      url("images/background/IMG_8001.jpeg");
  background-image:      url("images/background/IMG_8282.jpeg");
  background-image:      url("images/background/IMG_9113.jpeg");
*/

/*** Overlay 10 ***/

span.wrapper10 {
  position:              relative;
  display:               block;
}

span.wrapper10 img.img11 {
  display:               block;
}

span.wrapper10 img.img12 {
  position:              absolute;
  top:                   30px;
  right:                 130px;
}

img.img11 {
  width:                 600px;
  height:                386px;
  border:                var(--border) solid var(--farbe2);
  border-radius:         50%;
  box-shadow:            0px 5px 15px var(--farbe0);
  margin:                auto;
  display:               block;
  background-size:       cover;
  top:                   0;
  bottom:                0;
  left:                  0;
  right:                 0;
  z-index:               1;
  margin-top:            40px;
  margin-bottom:         60px;
}

img.img12 {
  height:                150px;
  width:                 150px;
  z-index:               2;
  animation:             move10 15s linear infinite;
}

@keyframes move10 { 100% { transform:rotate(360deg); } }

/*
.image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin:-60px 0 0 -60px;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}
*/

/*** anfahrt ************************************************/

.anfahrt {
}

.anfahrt img {
  width:                 600px;
  border:                var(--border) solid var(--farbe2);
  border-radius:         var(--radius);
  box-shadow:            0px 5px 15px var(--farbe0);
  margin-left:           auto;
  margin-right:          auto;
  display:               block;
  margin-top:            60px;
  margin-bottom:         60px;
}

/*** Overlay 110 ***/

span.wrapper110 {
  position:              relative;
  display:               block;
} 
  
span.wrapper110 img.img111 {
  display:               block;
}

span.wrapper110 img.img112 {
  position:              absolute;
  top:                   -50px;
  right:                 700px;
} 
  
img.img111 {
  z-index:               1;
} 

img.img112 {
  height:                180px;
  width:                 90px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move110 8s ease-in-out 1;
  animation-fill-mode:   forwards;
} 

@keyframes move110 {
  from {
          filter:    blur(5.0px);
          opacity:   0;  
          transform: translateX(0) scale(0.8);
  }
  to {
          filter:    blur(0);
          opacity:   1;  
          transform: translate(550px,-30px) scale(1.2);
  }
}

/*** zusatzstoffe *******************************************/

.zusatzstoffe {
}

.zusatzstoffe table {
  margin-left:           auto;
  margin-right:          auto;
  margin-bottom:         40px;
}

/*** Overlay 130 ***/

span.wrapper130 {
  position:              relative;
  display:               block;
}

span.wrapper130 img.img131 {
  display:               block;
}

span.wrapper130 img.img132 {
  position:              absolute;
  top:                   0px;
  right:                 700px;
}

img.img131 {
  z-index:               1;
}

img.img132 {
  height:                150px;
  width:                 241px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move130 8s ease-in-out 1;
  animation-fill-mode:   forwards;
}

@keyframes move130 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translate(0px,0px) scale(0.7);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(560px,110px) scale(1.2);
  }
}

/*** Overlay 130 ***/

/*  
span.wrapper130 {
  position:              relative;
  display:               block;
}

span.wrapper130 img.img131 {
  display:               block;
} 
  
span.wrapper130 img.img132 {
  position:              absolute;
  top:                   -110px;
  right:                 80px;
}

img.img131 {
  z-index:               1;
}

img.img132 {
  height:                250px;
  width:                 250px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move130 8s linear 2;
  animation-direction:   alternate;
}

@keyframes move130 {30% { transform: translate(20px,20px)}
                    70% { transform: scale(2,2);}
                   100% { transform: rotate(25deg);}
                 }
*/

/*** speisekarte ********************************************/

.speisekarte {
}

.speisekarte p {
  text-align:            center;
}

.speisekarte table {
  margin-left:           auto;
  margin-right:          auto;
  margin-bottom:         60px;
}

.speisekarte table td:nth-child(3) {
  text-align:            right;
}

.speisekarte .zusatz {
  font-size:             60%;
  vertical-align:        super;
}

.speisekarte a {
  text-decoration:       none;
  color:                 var(--farbe0);
}

.speisekarte th {
  padding-bottom:        10px;
}

/*** Overlay 30 ***/

span.wrapper30 {
  position:              relative;
  display:               block;
}

span.wrapper30 img.img31 {
  display:               block;
}

span.wrapper30 img.img32 {
  position:              absolute;
  top:                   -20px;
  right:                 180px;
}
  
img.img31 {
  z-index:               1;
} 
  
img.img32 {
  height:                120px;
  width:                 120px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move30 8s linear 2;
  animation-direction:   alternate;
} 

@keyframes move30 {  30% { transform: translate(20px,20px)}
                     70% { transform: scale(1.5,1.5);}
                    100% { transform: rotate(25deg);}
                  }

/*** getraenkekarte *****************************************/

.getraenkekarte {
}

.getraenkekarte p {
  text-align:            center;
}

.getraenkekarte table {
  margin-left:           auto;
  margin-right:          auto;
  margin-bottom:         60px;
}

.getraenkekarte table td:nth-child(3) {
  text-align:            right;
} 

.getraenkekarte .zusatz {
  font-size:             60%;
  vertical-align:        super;
}

.getraenkekarte a {
  text-decoration:       none;
  color:                 var(--farbe0);
}

.getraenkekarte th {
  padding-bottom:        10px;
}

/*** Overlay 40 ***/

span.wrapper40 {
  position:              relative;
  display:               block;
}

span.wrapper40 img.img41 {
  display:               block;
}

span.wrapper40 img.img42 {
  position:              absolute;
  top:                   -50px;
  right:                 700px;
}
 
img.img41 {
  z-index:               1;
}

img.img42 {
  height:                150px;
  width:                 150px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move40 8s ease-in-out 1; 
  animation-fill-mode:   forwards;
}

@keyframes move40 {
  from {
          filter:    blur(5.0px);
          opacity:   0;
          transform: translateX(0) scale(0.7);
  }
  to {
          filter:    blur(0);
          opacity:   1;
          transform: translate(560px,10px) scale(1.2);
  }
}

/*** wochenkarte ********************************************/

.wochenkarte {
  margin-bottom:         30px;
}

.wochenkarte p {
  text-align:            center;
}

.wochenkarte table {
  margin-left:           auto;
  margin-right:          auto;
  margin-bottom:         30px;
}

.wochenkarte table td:nth-child(3) {
  text-align:            right;
}

.wochenkarte .zusatz {
  font-size:             60%;
  vertical-align:        super;
}

.wochenkarte a {
  text-decoration:       none;
  color:                 var(--farbe0);
}

.wochenkarte img {
  width:                 500px;
  margin:                auto;
  display:               block;
}

/*** Overlay 80 ***/        

span.wrapper80 {
  position:              relative;
  display:               block;
} 

span.wrapper80 img.img81 {
  display:               block;
} 
  
span.wrapper80 img.img82 {
  position:              absolute;
  top:                   -40px;
  right:                 180px;
}
 
img.img81 {
  z-index:               1;
} 
  
img.img82 {
  height:                150px;
  width:                 127px;
  box-shadow:            none;
  border:                none;
  z-index:               3;
  animation:             move80 8s linear 2;
  animation-direction:   alternate;
  animation-fill-mode:   forwards;
} 

@keyframes move80 {  30% { transform: translate(20px,20px)}
                     70% { transform: scale(0.5,0.5);}
                    100% { transform: rotate(25deg);}
                  }
/*
@keyframes move80 {
  from {
          opacity:   0;
          transform: translate (0px,0px);
  }
  to {
          opacity:   1;
          transform: translate(150px,-120px);
  }
}
*/

/*** galerie ************************************************/

.galerie {
/*background:            var(--farbe9);*/
  opacity:               1.0;
  margin-left:           0px;
  margin-right:          0px;
  margin-bottom:         40px;
/*margin-top:            40px;*/
/*padding:               20px;*/
  text-align:            left;
  font-size:             12px;
/*box-shadow:            2px 2px 3px 2px var(--farbe0);*/
}

.gtop {
  vertical-align:        top;
} 

.galerie2 {
  background-color:      var(--farbe4);
  box-sizing:            border-box;
  border-radius:         var(--radius);
  width:                 700px;
  box-shadow:            0px 5px 15px var(--farbe0);
}

.galerie2 figure {
  background-color:      var(--farbe9);
  width:                 190px;
  margin:                15px 10px;                          /* Aussenabstand */
  padding:               10px 10px 10px 10px;
  box-shadow:            0px 0px 3px 2px var(--farbe0);
  display:               inline-block;                       /* Anordnung nebeneinander */
  transform:             rotate(-2deg);                      /* Vorschaubilder leicht verwackelt */
  transition:            all 0.4s ease-in;                   /* ease-in: langsamer start */
}

.galerie2 figure:nth-child(2n) {
  transform:             rotate(2deg);                       /* Vorschaubilder leicht verwackelt */
}

.galerie2 figure img {
  width:                 190px;
}

.galerie2 figure:hover {
  background-color:      var(--farbe9);
  box-shadow:            2px 2px 5px 2px var(--farbe0);      /* offset-x | offset-y | blur-radius | spread-radius | color */
  padding:               5px 5px 5px 5px;
  position:              relative;
  z-index:               2;
  transform:             rotate(0deg) scale(3);              /* Drehung, Vergrösserung */
}

.galerie2 figcaption {                                       /* Bildunterschrift */
  color:                 var(--farbe1);
  font-size:             8pt;
  font-family:           var(--font3);
  position:              relative;
  text-align:            center;
  width:                 190px;
}

.galerie2 figcaption div {                                   /* Bildunterschrift */
  font-size:             4pt;
  color:                 var(--farbe0);
  text-align:            center;
}

.bf {
  box-shadow:	         5px 5px 15px 0px var(--farbe0);
  margin-left:           5px;
  margin-right:	         5px;
  margin-bottom:         5px;
  margin-top:            5px;
  opacity:               0.5;
  border-radius:         var(--radius);
}

.bf:hover {
  opacity:		 1.0;  
}

.bbf {
  box-shadow:		 5px 5px 6px 0px var(--farbe0);
  margin-left:		 5px;
  margin-right:		 5px;
  margin-bottom:	 5px;
  margin-top:		 5px;
  opacity:		 1.0;  
  border-radius:         var(--radius);
}

.tf {
  color:                 var(--farbe0);
  opacity:		 1.0;
}

.ttf {
  color:                 var(--farbe0);
  opacity:		 1.0;
  text-shadow:           2px 2px 12px var(--farbe1);
}

/*** Overlay 60 ***/        

span.wrapper60 {
  position:              relative;
  display:               block;
} 
  
span.wrapper60 img.img61 {
  display:               block;
} 
  
span.wrapper60 img.img62 {
  position:              absolute;
  top:                   -140px;
  right:                 40px;
}

img.img61 {
  z-index:               1;
} 
  
img.img62 {
  height:                332px;
  width:                 393px;
  box-shadow:            none;
  border:                none;
  z-index:               2;
  animation:             move60 8s linear 1;
  animation-fill-mode:   forwards;
} 

@keyframes move60 {
  from {
          opacity:   0;  
          transform: scale(0.4);
  }
  to {
          opacity:   1;
          transform: scale(0.5);
  }
}

