/* Fonts */
/* pt-sans-regular - latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local("PT Sans"), local("PTSans-Regular"), url("../fnt/pt-sans-v11-latin-regular.woff2") format("woff2"), url("../fnt/pt-sans-v11-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* pt-sans-700 - latin */
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local("PT Sans Bold"), local("PTSans-Bold"), url("../fnt/pt-sans-v11-latin-700.woff2") format("woff2"), url("../fnt/pt-sans-v11-latin-700.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* caveat-brush-regular - latin */
@font-face {
  font-family: 'Caveat Brush';
  font-style: normal;
  font-weight: 400;
  src: local("Caveat Brush"), local("CaveatBrush-Regular"), url("../fnt/caveat-brush-v5-latin-regular.woff2") format("woff2"), url("../fnt/caveat-brush-v5-latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'PT Sans';
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  image-rendering: auto;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Variables */
@-webkit-keyframes popup-backdrop-diagnoal-gradient-anim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes popup-backdrop-diagnoal-gradient-anim {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.popup-backdrop {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.popup-backdrop.pink {
  background-color: rgba(251, 0, 128, 0.8);
}

.popup-backdrop.brown {
  background-color: rgba(246, 151, 3, 0.8);
}

.popup-backdrop.yellow {
  background-color: rgba(255, 206, 0, 0.8);
}

.popup-backdrop.red {
  background-color: rgba(246, 3, 3, 0.8);
}

.popup-backdrop.green {
  background-color: rgba(194, 221, 90, 0.8);
}

.popup-backdrop.pftp {
  background-color: rgba(109, 139, 31, 0.8);
  background: linear-gradient(-45deg, #6d8b1f, rgba(109, 139, 31, 0.8), rgba(194, 221, 90, 0.8), #6d8b1f, #6d8b1f);
  background-size: 400% 400%;
  -webkit-animation: popup-backdrop-diagnoal-gradient-anim 60s ease-in-out infinite;
          animation: popup-backdrop-diagnoal-gradient-anim 60s ease-in-out infinite;
}

.popup-backdrop.white {
  background-color: rgba(255, 255, 255, 0.8);
}

.popup-backdrop.sky {
  background-color: rgba(163, 202, 233, 0.8);
}

.popup-backdrop.promotionblue {
  background-color: rgba(66, 133, 172, 0.8);
}

.popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 52;
  overflow: hiden;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: calc(100vw - 120px);
  /*

    border: 10px #00F solid;
    height: 200px;
    max-height: 200px;
    overflow: auto;
    */
}

.popup.pink {
  background-color: rgba(251, 0, 128, 0.8);
}

.popup.brown {
  background-color: rgba(246, 151, 3, 0.8);
}

.popup.green {
  background-color: rgba(194, 221, 90, 0.8);
}

.popup.yellow {
  background-color: rgba(255, 206, 0, 0.8);
}

.popup.red {
  background-color: rgba(246, 3, 3, 0.8);
}

.popup.white {
  background-color: rgba(255, 255, 255, 0.8);
}

.popup.sky {
  background-color: rgba(163, 202, 233, 0.8);
}

.popup.promotionblue {
  background-color: rgba(66, 133, 172, 0.8);
}

.popup.unsupported-browser, .popup.screenresolution, .popup.orientation, .popup.start {
  color: #223161;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  text-align: center;
  max-height: 600px;
  width: 1162px;
  height: 80%;
}

.popup.unsupported-browser h1, .popup.screenresolution h1, .popup.orientation h1, .popup.start h1 {
  font-size: 55px;
  display: block;
  max-width: 900px;
  line-height: 55px;
  margin-bottom: 20px;
}

.popup.unsupported-browser p, .popup.screenresolution p, .popup.orientation p, .popup.start p {
  font-size: 18px;
  display: block;
  max-width: 830px;
  padding-bottom: 10px;
}

.popup.flex-column {
  background: transparent;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup.flex-column .skip-btn {
  background-color: #223161;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  width: 120px;
  margin-top: 10px;
  display: block;
  text-align: center;
  cursor: pointer;
}

.popup-inner {
  position: relative;
  max-width: 1162px;
  width: 80vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #223161;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.popup-inner:not(.popup-video) {
  background-color: #fff;
}

.popup-inner .scroll-wrapper {
  width: 100%;
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-height: 500px;
  /* INFO: Modal MAX-Height hier einstellen */
  max-height: calc(100vh - 250px);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.popup-inner .video-wrapper {
  height: calc(100vh - 250px);
  height: calc(100vh - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-inner .video-wrapper video {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: auto;
  width: 100%;
  max-height: calc(100vh - 250px);
  max-height: calc(100vh - 50px);
}

.popup-inner .video-wrapper.video-16-9 {
  height: 56.25%;
}

.popup-inner .popup__close_video {
  background: transparent;
  margin-top: 30px;
  z-index: 9999999;
}

.popup-inner .popup__close_video:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.popup-video {
  width: auto;
}

.popup__head {
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  margin-bottom: 20px;
}

.popup__head a:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.popup__head .theme-name {
  font-family: 'Caveat Brush';
  font-size: 50px;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup__head .theme {
  font-size: 10px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5px;
}

.popup__head .brown {
  color: #F69703;
}

.popup__col1 {
  -webkit-box-flex: 1;
      -ms-flex: 1 33%;
          flex: 1 33%;
  margin-bottom: 50px;
}

.popup__col1 img {
  width: 100%;
  height: auto;
}

.popup__col2 {
  -webkit-box-flex: 2;
      -ms-flex: 2 60%;
          flex: 2 60%;
  margin-left: 4%;
  margin-top: 20px;
}

.popup__col2 .col2_content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 50px;
}

.popup__col2 .title1 {
  font-size: 18px;
  font-weight: 700;
}

.popup__col2 .title2 {
  font-size: 24px;
  font-weight: 700;
  color: #294426;
  line-height: normal;
}

.popup__col2 .copy {
  padding-top: 20px;
}

.popup__col2 .copy .infobox {
  background-color: #FB0080;
  padding: 16px 20px 16px 76px;
  font-size: 14px;
  color: #FFFFFF;
  margin-top: 38px;
  background-image: url(../img/icon.info.svg);
  background-repeat: no-repeat;
  background-position-x: 14px;
  background-position-y: center;
}

.popup__col2 .trenner {
  width: 30%;
  border-bottom: 1px solid #707070;
  margin-top: 30px;
  margin-bottom: 25px;
}

.popup__col2 .two-columns {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
          column-gap: 20px;
}

.popup__col2 .two-columns > ul {
  padding-left: 0;
  margin-left: -12px;
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.popup__col2 .two-columns > ul > li {
  padding-left: 35px;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 14px 9px;
  font-weight: bold;
}

.popup__col2 .two-columns > ul > li > ul > li {
  font-weight: normal;
  margin-left: -20px;
  list-style: disc;
}

.popup__col2 .arrows > ul {
  padding-left: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.popup__col2 .arrows > ul > li {
  list-style-type: none;
  padding-left: 35px;
  margin-bottom: 10px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 14px 9px;
  font-weight: bold;
}

.popup__ .popup__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  height: 100%;
  padding: 4rem;
}

.popup__ .popup__text h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #0A0A0A;
}

.popup__ .popup__text p {
  font-size: .875rem;
  color: #686868;
  line-height: 1.5;
}

.popup.show {
  visibility: visible;
  -webkit-transition: visibility 0s linear 0s, opacity 300ms;
  transition: visibility 0s linear 0s, opacity 300ms;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.popup.show .popup-inner {
  bottom: 0;
  right: 0;
}

.popup__close {
  margin-left: auto;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  position: absolute;
  right: 35px;
}

.popup.brown .theme-name,
.popup.brown .title1 {
  color: #F69703;
}

.popup.pink .theme-name,
.popup.pink .title1 {
  color: #FB0080;
}

.popup.sky .theme-name,
.popup.sky .title1 {
  color: #A3CAE9;
}

.popup.promotionblue .theme-name,
.popup.promotionblue .title1 {
  color: #4285AC;
}

.popup.blue .theme-name,
.popup.blue .title1 {
  color: #223161;
}

.popup.white .theme-name,
.popup.white .title1 {
  color: #FFFFFF;
}

.popup.yellow .theme-name,
.popup.yellow .title1 {
  color: #FFCE00;
}

.popup.green .theme-name,
.popup.green .title1 {
  color: #C2DD5A;
}

.popup.pftp .theme-name,
.popup.pftp .title1 {
  color: #6D8B1F;
}

.popup.grey .theme-name,
.popup.grey .title1 {
  color: #707070;
}

.popup.red .theme-name,
.popup.red .title1 {
  color: #F60303;
}

.popup.pink .download-button a {
  background-image: url(../img/btn.dnl.pink.svg);
}

.popup.pink .download-button a:first-of-type.flyer-pink, .popup.pink .download-button a:nth-of-type(2).flyer-pink {
  background-image: url(../img/btn.flyer.pink.svg);
}

.popup.brown .download-button a {
  background-image: url(../img/btn.dnl.brown.svg);
}

.popup.brown .download-button a:first-of-type.flyer-brown, .popup.brown .download-button a:nth-of-type(2).flyer-brown {
  background-image: url(../img/btn.flyer.brown.svg);
}

.popup.blue .download-button a {
  background-image: url(../img/btn.dnl.blue.svg);
}

.popup.blue .download-button a:first-of-type.flyer-blue, .popup.blue .download-button a:nth-of-type(2).flyer-blue {
  background-image: url(../img/btn.flyer.blue.svg);
}

.popup.green .download-button a {
  background-image: url(../img/btn.dnl.green.svg);
}

.popup.green .download-button a:first-of-type.flyer-green, .popup.green .download-button a:nth-of-type(2).flyer-green {
  background-image: url(../img/btn.flyer.green.svg);
}

.popup.red .download-button a {
  background-image: url(../img/btn.dnl.red.svg);
}

.popup.red .download-button a:first-of-type.flyer-red, .popup.red .download-button a:nth-of-type(2).flyer-red {
  background-image: url(../img/btn.flyer.red.svg);
}

.popup.sky .download-button a {
  background-image: url(../img/btn.dnl.sky.svg);
}

.popup.sky .download-button a:first-of-type.flyer-sky, .popup.sky .download-button a:nth-of-type(2).flyer-sky {
  background-image: url(../img/btn.flyer.sky.svg);
}

.popup.promotionblue .download-button a {
  background-image: url(../img/btn.dnl.promotionblue.svg);
}

.popup.promotionblue .download-button a:first-of-type.flyer-promotionblue, .popup.promotionblue .download-button a:nth-of-type(2).flyer-promotionblue {
  background-image: url(../img/btn.flyer.promotionblue.svg);
}

.popup.yellow .download-button a {
  background-image: url(../img/btn.dnl.yellow.svg);
}

.popup.yellow .download-button a:first-of-type.flyer-yellow, .popup.yellow .download-button a:nth-of-type(2).flyer-yellow {
  background-image: url(../img/btn.flyer.yellow.svg);
}

.popup.blue .arrows > ul > li,
.popup.blue .two-columns > ul > li {
  background-image: url(../img/arrow.blue.svg);
}

.popup.brown .arrows > ul > li,
.popup.brown .two-columns > ul > li {
  background-image: url(../img/arrow.brown.svg);
}

.popup.green .arrows > ul > li,
.popup.green .two-columns > ul > li {
  background-image: url(../img/arrow.green.svg);
}

.popup.pink .arrows > ul > li,
.popup.pink .two-columns > ul > li {
  background-image: url(../img/arrow.pink.svg);
}

.popup.red .arrows > ul > li,
.popup.red .two-columns > ul > li {
  background-image: url(../img/arrow.red.svg);
}

.popup.sky .arrows > ul > li,
.popup.sky .two-columns > ul > li {
  background-image: url(../img/arrow.sky.svg);
}

.popup.promotionblue .arrows > ul > li,
.popup.promotionblue .two-columns > ul > li {
  background-image: url(../img/arrow.promotionblue.svg);
}

.popup.yellow .arrows > ul > li,
.popup.yellow .two-columns > ul > li {
  background-image: url(../img/arrow.yellow.svg);
}

.popup.pftp {
  background-color: rgba(109, 139, 31, 0.8);
}

.popup.pftp .popup-inner {
  background-color: #F0E9E2;
}

.popup.pftp .popup-inner .theme {
  display: none;
}

.popup.pftp .popup-inner .popup__col1 img {
  margin-bottom: 15px;
}

.popup.pftp .popup-inner .popup__col2 .section1,
.popup.pftp .popup-inner .popup__col2 .section2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
}

.popup.pftp .popup-inner .popup__col2 .section1 > div:first-of-type,
.popup.pftp .popup-inner .popup__col2 .section2 > div:first-of-type {
  display: block;
  min-width: 115px;
}

.popup.pftp .popup-inner .popup__col2 .section1 img,
.popup.pftp .popup-inner .popup__col2 .section2 img {
  width: auto;
}

.popup.pftp .popup-inner .popup__col2 .section3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}

.popup.pftp .popup-inner .popup__col2 .section3 > div:last-of-type {
  display: block;
  min-width: 270px;
}

.popup.pftp .popup-inner .popup__col2 .section3 img {
  width: auto;
}

.popup.pftp .popup-inner .trenner {
  width: 100%;
}

.popup.pftp .popup-inner .btn {
  background: #294426;
  color: #FFF;
  padding: 7px 15px 9px 15px;
  padding: 8px 35px 10px 15px;
  display: inline-block;
  font-size: 12px;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-image: url("../img/btn.arr.right.white.svg");
  background-repeat: no-repeat;
  background-position: top 8px right 10px;
  text-decoration: none;
}

.popup.pftp .popup-inner .section3 .btn {
  background-color: #7D9948;
}

.popup.white .theme-name,
.popup.white .title1 {
  color: #223161;
}

#pftp .arrow.arrow-prev,
#pftp .arrow.arrow-next {
  display: none !important;
  background: #F00 !important;
}

#contact .theme {
  display: none;
}

#contact a {
  color: #223161;
}

#contact_form {
  width: 100%;
  margin-left: 100px;
  margin-right: 100px;
  padding-bottom: 30px;
}

#contact_form .popup__col2 {
  margin: 0 0 20px 0;
}

#contact_form .title2 {
  color: #223161;
}

#contact_form > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contact_form > form > div {
  padding: 5px 0;
}

#contact_form > form > div.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#contact_form > form > div.row > div {
  width: 50%;
}

#contact_form > form > div.row > div:first-of-type {
  padding-right: 10px;
}

#contact_form > form > div.row > div:last-of-type {
  padding-left: 10px;
}

#contact_form > form select,
#contact_form > form input:not([type=submit]),
#contact_form > form textarea {
  border: 0;
  border-bottom: 1px #223161 solid;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 5px;
}

#contact_form > form .btn {
  display: inline-block;
  float: right;
  border: 0;
  background: #F2F2F2;
  color: #223161;
  padding: 7px 15px 9px 15px;
  padding: 8px 35px 10px 15px;
  display: inline-block;
  font-size: 14px;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-image: url("../img/btn.arr.right.blue.svg");
  background-repeat: no-repeat;
  background-position: top 9px right 10px;
  cursor: pointer;
}

#contact_success {
  display: none;
  padding-bottom: 200px;
}

#infostand .theme {
  display: none;
}

#infostand .title1,
#infostand .title2 {
  color: #223161;
  font-size: 18px;
}

#infostand .title2 {
  margin-top: 0;
  font-size: 24px;
}

#infostand p {
  margin-top: 20px;
}

#infostand .btn {
  background: #F2F2F2;
  color: #223161;
  padding: 7px 15px 9px 15px;
  padding: 8px 35px 10px 15px;
  display: inline-block;
  font-size: 12px;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-image: url("../img/btn.arr.right.blue.svg");
  background-repeat: no-repeat;
  background-position: top 8px right 10px;
}

#infostand .arrow.arrow-prev,
#infostand .arrow.arrow-next {
  display: none;
}

.download-button {
  background-color: #F2F2F2;
  height: 40px;
  background-repeat: no-repeat;
  background-position-x: 15px;
  background-position-y: 7px;
  font-weight: 700;
  font-size: 12px;
  line-height: 40px;
  text-indent: 60px;
  margin-top: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  outline: 0;
  position: relative;
}

.download-button a,
.download-button a:hover,
.download-button a.link,
.download-button a:active,
.download-button a:focus,
.download-button a:visited {
  text-decoration: none;
  color: #223161;
  display: block;
  background-repeat: no-repeat;
  background-position: left 16px top 6px;
  outline: 0;
}

.download-button a:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-left: 3px #F2F2F2 solid;
  -webkit-box-shadow: inset 1px 0 0 0 #FFF;
          box-shadow: inset 1px 0 0 0 #FFF;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  background-color: #F2F2F2;
  background-repeat: no-repeat;
  background-position: center;
}

.download-button a.flyer {
  background-size: 30px;
  background-position: left 10px top 6px;
  background-repeat: no-repeat;
}

.download-button a:nth-of-type(2).flyer {
  background-position: center;
  background-size: 30px;
}

.popup__col1 .download-button {
  display: inline-block;
  padding-right: 20px;
}

.popup__col1 .download-button:after {
  display: block;
  content: " ";
  clear: both;
}

.popup__col1 .download-link {
  padding-top: 5px;
  padding-bottom: 20px;
}

.popup__col1 .download-link a {
  text-decoration: none;
  color: #223161;
  font-size: 13px;
}

.popup__col1 .download-link a:after {
  content: ">";
  padding-left: 5px;
  position: relative;
  top: 1px;
}

.download-list .download-button {
  width: 45%;
  display: inline-block;
  margin-top: 15px;
}

.download-list .download-button:nth-child(odd) {
  margin-right: 9%;
}

.close-x {
  stroke: black;
  fill: transparent;
  stroke-linecap: round;
  stroke-width: 3;
}

.text-brown {
  color: #F69703;
}

.text-blue {
  color: #223161;
}

.text-grey {
  color: #707070;
}

.text-pink {
  color: #FB0080;
}

.arrow {
  display: inline-block;
  padding: 22px;
}

.arrow:before {
  display: block;
  content: "";
  overflow: hidden;
  width: 30px;
  height: 30px;
  border: solid white;
  border-width: 0 3px 3px 0;
}

.arrow-prev,
.arrow-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transition: 150ms ease-in-out;
  transition: 150ms ease-in-out;
}

.arrow-prev {
  left: -60px;
}

.arrow-prev:hover {
  left: -65px;
}

.arrow-prev:before {
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.arrow-next {
  right: -60px;
}

.arrow-next:hover {
  right: -65px;
}

.arrow-next:before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.popup-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: none;
  z-index: 10001;
}

.popup-container * {
  pointer-events: all;
}

.popup-container.pink {
  background-color: rgba(251, 0, 128, 0.8);
  background-color: transparent;
}

.popup-container.brown {
  background-color: rgba(246, 151, 3, 0.8);
}

.popup-container.green {
  background-color: rgba(251, 0, 128, 0.8);
}

.popup-container.pftp {
  background-color: rgba(109, 139, 31, 0.8);
}

.popup-container.yellow {
  background-color: rgba(255, 206, 0, 0.8);
}

.popup-container.red {
  background-color: rgba(246, 3, 3, 0.8);
}

.popup-container.white {
  background-color: rgba(255, 255, 255, 0.8);
}

.popup-container.sky {
  background-color: rgba(163, 202, 233, 0.8);
}

.popup-container.promotionblue {
  background-color: rgba(66, 133, 172, 0.8);
}

.popup-container.popup {
  -webkit-transition: 0s;
  transition: 0s;
}

.popup-container.move-left-out-anim .popup {
  margin-left: -300px;
  opacity: 0;
  -webkit-transition: 250ms;
  transition: 250ms;
}

.popup-container.move-left-out-anim .popup a.arrow {
  display: none;
}

.popup-container.move-left-in-prepare {
  display: block !important;
}

.popup-container.move-left-in-prepare .popup {
  margin-left: 300px;
  opacity: 0;
  -webkit-transition: 250ms;
  transition: 250ms;
}

.popup-container.move-left-in-anim .popup {
  margin-left: 0;
  opacity: 1;
}

.popup-container.move-left-in-anim .popup a.arrow {
  display: none;
}

.popup-container.move-right-out-anim .popup {
  margin-left: 300px;
  opacity: 0;
  -webkit-transition: 250ms;
  transition: 250ms;
}

.popup-container.move-right-out-anim .popup a.arrow {
  display: none;
}

.popup-container.move-right-in-prepare {
  display: block !important;
}

.popup-container.move-right-in-prepare .popup {
  margin-left: -300px;
  opacity: 0;
  -webkit-transition: 250ms;
  transition: 250ms;
}

.popup-container.move-right-in-anim .popup {
  margin-left: 0;
  opacity: 1;
}

.popup-container.move-right-in-anim .popup a.arrow {
  display: none;
}

.popup-container .screenresolution,
.popup-container .orientation,
.popup-container .unsupported-browser {
  color: #FFF;
}

.popup-container .screenresolution-backdrop,
.popup-container .orientation-backdrop,
.popup-container .unsupported-browser-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 49, 97, 0.8);
}

.popup-container#screenresolution, .popup-container#orientation {
  z-index: 10002;
}

.popup-container#unsupported-browser {
  z-index: 10003;
}

#intro-video {
  height: auto;
}

#intro-video .popup {
  max-width: 100vw;
}

#intro-video .popup-inner {
  max-width: 100vw;
}

#intro-video video {
  width: auto;
  height: auto;
  max-height: calc(100vh - 250px);
  max-height: calc(100vh - 50px);
}

#intro-video.video-16-9 {
  height: 56.25%;
}

@-webkit-keyframes pulse-green {
  0% {
    /* transform: scale(0.95); */
    -webkit-box-shadow: 0 0 0 0 #c2dd5a;
            box-shadow: 0 0 0 0 #c2dd5a;
  }
  90% {
    /* transform: scale(1); */
    -webkit-box-shadow: 0 0 0 15px rgba(194, 221, 90, 0);
            box-shadow: 0 0 0 15px rgba(194, 221, 90, 0);
  }
  100% {
    /* transform: scale(0.95); */
    -webkit-box-shadow: 0 0 0 0 rgba(194, 221, 90, 0);
            box-shadow: 0 0 0 0 rgba(194, 221, 90, 0);
  }
}

@keyframes pulse-green {
  0% {
    /* transform: scale(0.95); */
    -webkit-box-shadow: 0 0 0 0 #c2dd5a;
            box-shadow: 0 0 0 0 #c2dd5a;
  }
  90% {
    /* transform: scale(1); */
    -webkit-box-shadow: 0 0 0 15px rgba(194, 221, 90, 0);
            box-shadow: 0 0 0 15px rgba(194, 221, 90, 0);
  }
  100% {
    /* transform: scale(0.95); */
    -webkit-box-shadow: 0 0 0 0 rgba(194, 221, 90, 0);
            box-shadow: 0 0 0 0 rgba(194, 221, 90, 0);
  }
}

@-webkit-keyframes pulse-pink {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fb0080;
            box-shadow: 0 0 0 0 #fb0080;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(251, 0, 128, 0);
            box-shadow: 0 0 0 15px rgba(251, 0, 128, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(251, 0, 128, 0);
            box-shadow: 0 0 0 0 rgba(251, 0, 128, 0);
  }
}

@keyframes pulse-pink {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fb0080;
            box-shadow: 0 0 0 0 #fb0080;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(251, 0, 128, 0);
            box-shadow: 0 0 0 15px rgba(251, 0, 128, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(251, 0, 128, 0);
            box-shadow: 0 0 0 0 rgba(251, 0, 128, 0);
  }
}

@-webkit-keyframes pulse-yellow {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ffce00;
            box-shadow: 0 0 0 0 #ffce00;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 206, 0, 0);
            box-shadow: 0 0 0 15px rgba(255, 206, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 206, 0, 0);
            box-shadow: 0 0 0 0 rgba(255, 206, 0, 0);
  }
}

@keyframes pulse-yellow {
  0% {
    -webkit-box-shadow: 0 0 0 0 #ffce00;
            box-shadow: 0 0 0 0 #ffce00;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 206, 0, 0);
            box-shadow: 0 0 0 15px rgba(255, 206, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 206, 0, 0);
            box-shadow: 0 0 0 0 rgba(255, 206, 0, 0);
  }
}

@-webkit-keyframes pulse-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f60303;
            box-shadow: 0 0 0 0 #f60303;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(246, 3, 3, 0);
            box-shadow: 0 0 0 15px rgba(246, 3, 3, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(246, 3, 3, 0);
            box-shadow: 0 0 0 0 rgba(246, 3, 3, 0);
  }
}

@keyframes pulse-red {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f60303;
            box-shadow: 0 0 0 0 #f60303;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(246, 3, 3, 0);
            box-shadow: 0 0 0 15px rgba(246, 3, 3, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(246, 3, 3, 0);
            box-shadow: 0 0 0 0 rgba(246, 3, 3, 0);
  }
}

@-webkit-keyframes pulse-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 #223161;
            box-shadow: 0 0 0 0 #223161;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(34, 49, 97, 0);
            box-shadow: 0 0 0 15px rgba(34, 49, 97, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 49, 97, 0);
            box-shadow: 0 0 0 0 rgba(34, 49, 97, 0);
  }
}

@keyframes pulse-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 #223161;
            box-shadow: 0 0 0 0 #223161;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(34, 49, 97, 0);
            box-shadow: 0 0 0 15px rgba(34, 49, 97, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(34, 49, 97, 0);
            box-shadow: 0 0 0 0 rgba(34, 49, 97, 0);
  }
}

@-webkit-keyframes pulse-brown {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f69703;
            box-shadow: 0 0 0 0 #f69703;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(246, 151, 3, 0);
            box-shadow: 0 0 0 15px rgba(246, 151, 3, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(246, 151, 3, 0);
            box-shadow: 0 0 0 0 rgba(246, 151, 3, 0);
  }
}

@keyframes pulse-brown {
  0% {
    -webkit-box-shadow: 0 0 0 0 #f69703;
            box-shadow: 0 0 0 0 #f69703;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(246, 151, 3, 0);
            box-shadow: 0 0 0 15px rgba(246, 151, 3, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(246, 151, 3, 0);
            box-shadow: 0 0 0 0 rgba(246, 151, 3, 0);
  }
}

@-webkit-keyframes pulse-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 white;
            box-shadow: 0 0 0 0 white;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse-white {
  0% {
    -webkit-box-shadow: 0 0 0 0 white;
            box-shadow: 0 0 0 0 white;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes pulse-sky {
  0% {
    -webkit-box-shadow: 0 0 0 0 #a3cae9;
            box-shadow: 0 0 0 0 #a3cae9;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(163, 202, 233, 0);
            box-shadow: 0 0 0 15px rgba(163, 202, 233, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(163, 202, 233, 0);
            box-shadow: 0 0 0 0 rgba(163, 202, 233, 0);
  }
}

@keyframes pulse-sky {
  0% {
    -webkit-box-shadow: 0 0 0 0 #a3cae9;
            box-shadow: 0 0 0 0 #a3cae9;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(163, 202, 233, 0);
            box-shadow: 0 0 0 15px rgba(163, 202, 233, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(163, 202, 233, 0);
            box-shadow: 0 0 0 0 rgba(163, 202, 233, 0);
  }
}

@-webkit-keyframes pulse-promotionblue {
  0% {
    -webkit-box-shadow: 0 0 0 0 #4285ac;
            box-shadow: 0 0 0 0 #4285ac;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(66, 133, 172, 0);
            box-shadow: 0 0 0 15px rgba(66, 133, 172, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(66, 133, 172, 0);
            box-shadow: 0 0 0 0 rgba(66, 133, 172, 0);
  }
}

@keyframes pulse-promotionblue {
  0% {
    -webkit-box-shadow: 0 0 0 0 #4285ac;
            box-shadow: 0 0 0 0 #4285ac;
  }
  90% {
    -webkit-box-shadow: 0 0 0 15px rgba(66, 133, 172, 0);
            box-shadow: 0 0 0 15px rgba(66, 133, 172, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(66, 133, 172, 0);
            box-shadow: 0 0 0 0 rgba(66, 133, 172, 0);
  }
}

body {
  overflow: hidden;
}

main, header, section, footer {
  margin: 0;
  padding: 0;
  /* border: 1px solid #000000; */
  color: #FFFFFF;
}

a {
  outline: 0;
}

main {
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: calc(100vh - 74px - 46px);
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  top: 74px;
  top: 64px;
  top: 54px;
  left: 0;
  right: 0;
}

header {
  height: 74px;
  height: 64px;
  height: 54px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 9999;
  color: #223161;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(199, 111, 111, 0.25);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.25);
}

p.small {
  font-size: small;
}

#logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#logo div {
  margin-left: 10px;
}

#logo img {
  max-width: 80%;
  max-width: 70%;
}

#logo a {
  outline: 0;
}

.head-text {
  margin-top: -10px;
  left: -50px;
  font-family: 'PT Sans';
  font-weight: 700;
  font-size: 24px;
  font-size: 20px;
  line-height: 24px;
  line-height: 20px;
  position: relative;
}

.head-text span {
  position: absolute;
  top: 18px;
}

.hero {
  max-width: 1920px;
  position: relative;
  border-bottom: 1px solid grey;
}

.hero .stand {
  position: absolute;
  left: 0;
  width: 100vw;
  margin: auto;
  display: none;
}

.hero .stand .stand_container {
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.hero .stand .stand_container:after {
  display: block;
  pointer-events: none;
  content: "";
  height: 80px;
  margin-top: -80px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10000;
}

.hero .stand.show {
  display: block;
}

.hero .stand:not(#messe) {
  z-index: 1;
}

.hero .stand#messe.init .stand_container {
  background-position: top;
  background-size: 80%;
}

#contact-btn {
  display: none;
}

.start-btn {
  background-color: #223161;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  width: 120px;
  margin-top: 20px;
}

.back-to {
  position: absolute;
  display: block;
  background-color: #223161;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 4px;
}

.back-to a, .back-to a:hover, .back-to a.link, .back-to a:active, .back-to a:focus, .back-to a:visited {
  display: block;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
}

.back-to a:hover:before {
  padding-right: 10px;
}

.back-to a:before {
  content: "\2039";
  padding-right: 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.back-to[data-link="back-to-start"] {
  top: 100px;
  right: 50px;
}

.back-to[data-link="back-to-top"] {
  top: 140px;
  right: 50px;
}

.hero img {
  width: 100%;
}

.hero img.nostretch {
  width: auto;
  margin: auto;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  background: #223161;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 1;
  min-height: 46px;
  color: #223161;
  font-size: 12px;
}

footer ul {
  margin: 0;
}

footer ul li {
  display: inline-block;
  margin-right: 40px;
}

footer a, footer a:hover, footer a.link, footer a:active, footer a:focus, footer a:visited {
  text-decoration: none;
  color: #FFFFFF;
  color: #223161;
}

.wrapper {
  margin: auto;
  max-width: 1200px;
}

.point {
  width: 3vw;
  max-width: 60px;
  height: 3vw;
  max-height: 60px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  opacity: 0;
  margin-top: 30px;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
}

.point.green {
  -webkit-box-shadow: 0 0 0 0 #c2dd5a;
          box-shadow: 0 0 0 0 #c2dd5a;
  -webkit-animation: pulse-green 3s infinite;
          animation: pulse-green 3s infinite;
  background-color: rgba(194, 221, 90, 0.8);
}

.point.yellow {
  -webkit-box-shadow: 0 0 0 0 #ffce00;
          box-shadow: 0 0 0 0 #ffce00;
  -webkit-animation: pulse-yellow 3s infinite;
          animation: pulse-yellow 3s infinite;
  background-color: rgba(255, 206, 0, 0.8);
}

.point.red {
  -webkit-box-shadow: 0 0 0 0 #f60303;
          box-shadow: 0 0 0 0 #f60303;
  -webkit-animation: pulse-red 3s infinite;
          animation: pulse-red 3s infinite;
  background-color: rgba(246, 3, 3, 0.8);
}

.point.brown {
  -webkit-box-shadow: 0 0 0 0 #f69703;
          box-shadow: 0 0 0 0 #f69703;
  -webkit-animation: pulse-brown 3s infinite;
          animation: pulse-brown 3s infinite;
  background-color: rgba(246, 151, 3, 0.8);
}

.point.pink {
  -webkit-box-shadow: 0 0 0 0 #fb0080;
          box-shadow: 0 0 0 0 #fb0080;
  -webkit-animation: pulse-pink 3s infinite;
          animation: pulse-pink 3s infinite;
  background-color: rgba(251, 0, 128, 0.8);
}

.point.pftp {
  -webkit-box-shadow: 0 0 0 0 white;
          box-shadow: 0 0 0 0 white;
  -webkit-animation: pulse-white 3s infinite;
          animation: pulse-white 3s infinite;
  background-color: rgba(255, 255, 255, 0.8);
}

.point.white {
  -webkit-box-shadow: 0 0 0 0 white;
          box-shadow: 0 0 0 0 white;
  -webkit-animation: pulse-white 3s infinite;
          animation: pulse-white 3s infinite;
  background-color: rgba(255, 255, 255, 0.8);
}

.point.sky {
  -webkit-box-shadow: 0 0 0 0 #a3cae9;
          box-shadow: 0 0 0 0 #a3cae9;
  -webkit-animation: pulse-sky 3s infinite;
          animation: pulse-sky 3s infinite;
  background-color: rgba(163, 202, 233, 0.8);
}

.point.promotionblue {
  -webkit-box-shadow: 0 0 0 0 #4285ac;
          box-shadow: 0 0 0 0 #4285ac;
  -webkit-animation: pulse-promotionblue 3s infinite;
          animation: pulse-promotionblue 3s infinite;
  background-color: rgba(66, 133, 172, 0.8);
}

.point.show {
  margin-top: 0;
  opacity: 1;
}

.point.show:hover {
  display: block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.point:hover {
  z-index: 1000;
}

.point .tooltip {
  opacity: 0;
  position: absolute;
  white-space: nowrap;
  padding: 1px 8px;
  padding: 1px 6px;
  color: #223261;
  color: #FFF;
  height: 0;
  overflow: hidden;
  font-size: 12px;
  font-size: 10px;
  min-width: 85px;
}

.point:hover .tooltip.pink {
  background: #FB0080;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #FB0080;
          box-shadow: inset 0 -2px 0 0 #FB0080;
}

.point:hover .tooltip.brown {
  background: #F69703;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #F69703;
          box-shadow: inset 0 -2px 0 0 #F69703;
}

.point:hover .tooltip.green {
  background: #C2DD5A;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #C2DD5A;
          box-shadow: inset 0 -2px 0 0 #C2DD5A;
}

.point:hover .tooltip.yellow {
  background: #FFCE00;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #FFCE00;
          box-shadow: inset 0 -2px 0 0 #FFCE00;
}

.point:hover .tooltip.red {
  background: #F60303;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #F60303;
          box-shadow: inset 0 -2px 0 0 #F60303;
}

.point:hover .tooltip.pftp {
  background: #FFFFFF;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #FFFFFF;
          box-shadow: inset 0 -2px 0 0 #FFFFFF;
}

.point:hover .tooltip.white {
  background: #FFFFFF;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #FFFFFF;
          box-shadow: inset 0 -2px 0 0 #FFFFFF;
}

.point:hover .tooltip.sky {
  background: #A3CAE9;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #A3CAE9;
          box-shadow: inset 0 -2px 0 0 #A3CAE9;
}

.point:hover .tooltip.promotionblue {
  background: #4285AC;
  background: #223261;
  -webkit-box-shadow: inset 0 -2px 0 0 #4285AC;
          box-shadow: inset 0 -2px 0 0 #4285AC;
}

.point:hover .tooltip {
  height: 23px;
  height: 19px;
  opacity: .9;
  left: 20px;
  top: -20px;
  -webkit-transition: 250ms;
  transition: 250ms;
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-animation: tooltip_pulse 2s infinite;
          animation: tooltip_pulse 2s infinite;
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}

@-webkit-keyframes tooltip_pulse {
  0%, 100% {
    opacity: .6;
  }
  1%, 25%, 80% {
    opacity: .9;
  }
}

@keyframes tooltip_pulse {
  0%, 100% {
    opacity: .6;
  }
  1%, 25%, 80% {
    opacity: .9;
  }
}

.point a {
  outline: 0;
}

/* Points Exibition */
.point[data-link="cats-poesie"] {
  top: 73%;
  left: 45%;
}

.point[data-link="cats-snacks"] {
  top: 49%;
  left: 30%;
}

.point[data-link="rodent"] {
  top: 19%;
  left: 61%;
}

.point[data-link="birds"] {
  top: 31%;
  left: 49%;
}

.point[data-link="dogs"] {
  top: 36%;
  left: 70%;
}

.point[data-link="info"] {
  top: 66%;
  left: 59%;
}

/* Points Cats snacks */
.point[data-link="cats_to_birds"] {
  top: 60%;
  left: 17.5%;
}

.point[data-link="cats_snacks_to_poesie"] {
  top: 43%;
  left: 80.5%;
}

.point[data-link="cats_snacks_download"] {
  top: 61%;
  left: 49%;
}

.point[data-link="cats_snacks_regal"] {
  top: 56%;
  left: 69.5%;
}

/* Points Cats Poesie */
.point[data-link="cats_snacks"] {
  top: 56%;
  left: 21%;
}

.point[data-link="poesie_cats_download"] {
  top: 58%;
  left: 44%;
}

.point[data-link="cats_poesie_regal"] {
  top: 53%;
  left: 60.7%;
}

.point[data-link="stand_cats_info"] {
  left: 71%;
  top: 65%;
}

/* Points Snacks Cats Regal */
.point[data-link="cat-stick"] {
  left: 40%;
  top: 25%;
}

.point[data-link="yums"] {
  left: 47%;
  top: 47%;
}

.point[data-link="liquid-snack"] {
  left: 45%;
  top: 83%;
}

.point[data-link="choupette"] {
  left: 39%;
  top: 64%;
}

.point[data-link="jelly"] {
  left: 58%;
  top: 82%;
}

.point[data-link="pure-sticks"] {
  left: 58%;
  top: 30%;
}

/* Points Poesie Cats Regal */
.point[data-link="delice"] {
  left: 51%;
  top: 21%;
}

.point[data-link="delice-pack"] {
  left: 42%;
  top: 88%;
}

.point[data-link="creation"] {
  left: 51%;
  top: 57%;
}

.point[data-link="creation-pack"] {
  left: 62%;
  top: 85%;
}

.point[data-link="intro-video"] {
  display: none !important;
}

.point[data-link="infostand-video"] {
  display: none !important;
}

.point[data-link="pftp-video"] {
  display: none !important;
}

.m-fadeOut {
  visibility: hidden !important;
  opacity: 0 !important;
  -webkit-transition: visibility 0s linear 300ms, opacity 300ms;
  transition: visibility 0s linear 300ms, opacity 300ms;
}

.m-fadeIn {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s linear 0s, opacity 300ms;
  transition: visibility 0s linear 0s, opacity 300ms;
}

.show-item {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.show-info {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.smoll {
  font-size: 10px;
}

.videowall_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.wall {
  position: absolute;
  overflow: hidden;
  left: 46.5vw;
  top: 16.39vw;
  width: 12.5vw;
  height: 8.4vw;
  /*background: rgba(255,0,0,.5);*/
}

.wall .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/stand.videowall.overlay.png);
  background-size: 100%;
}

.mouse {
  display: none;
  position: absolute;
  left: 400px;
  top: 300px;
  width: 7px;
  height: 13px;
  border-radius: 50%;
  background: #666;
}

.mouse .head {
  border: 1px rgba(255, 255, 255, 0.1) solid;
  position: absolute;
  background-color: #888;
  display: inline-block;
  height: 5px;
  margin: 7px 1px;
  position: relative;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 5px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.mouse .head:before, .mouse .head:after {
  border: 1px rgba(255, 255, 255, 0.25) solid;
  position: absolute;
  background: #777;
  width: 5px;
  height: 5px;
  content: "";
  display: block;
  border-radius: 50%;
}

.mouse .head:before {
  left: -3px;
  top: 0px;
}

.mouse .head:after {
  left: 0px;
  top: -3px;
}

.mouse .head .whiskers {
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mouse .head .whiskers:before, .mouse .head .whiskers:after {
  position: absolute;
  display: block;
  width: 4px;
  height: 1px;
  content: "";
  background: #666;
  left: -2px;
  top: 6px;
}

.mouse .head .whiskers:before {
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}

.mouse .head .whiskers:after {
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}

.mouse .caudal {
  position: absolute;
  display: block;
  width: 1px;
  height: 6px;
  content: "";
  background: #666;
  left: 3px;
  top: -5px;
}

.mouse.big {
  width: 15px;
  height: 20px;
}

.mouse.big .head {
  display: inline-block;
  height: 11px;
  margin: 12px 2px;
  width: 11px;
  border-bottom-left-radius: 50%;
}

.mouse.big .head:before, .mouse.big .head:after {
  background: #777;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mouse.big .head:before {
  left: -5px;
  top: 3px;
}

.mouse.big .head:after {
  left: 3px;
  top: -5px;
}

.mouse.big .head .whiskers:before, .mouse.big .head .whiskers:after {
  width: 10px;
  left: -5px;
  top: 12px;
}

.mouse.big .caudal {
  height: 10px;
  left: 7px;
  top: -9px;
}

.mouse.left {
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
}

.mouse.right {
  -webkit-transform: rotate(245deg);
          transform: rotate(245deg);
}

.mouse.down {
  -webkit-transform: rotate(335deg);
          transform: rotate(335deg);
}

.mouse.up {
  -webkit-transform: rotate(155deg);
          transform: rotate(155deg);
}

/* Screeninfos wenn zu klein oder Portrait */
#start,
#orientation,
#screenresolution {
  display: none;
}

#start .popup,
#orientation .popup,
#screenresolution .popup {
  width: 90%;
  max-width: 90%;
}

#orientation,
#screenresolution {
  display: none !important;
}

@media (orientation: portrait) {
  #start {
    display: none !important;
  }
  #preloader,
  #orientation {
    display: block !important;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  #start {
    display: none !important;
  }
  #preloader,
  #screenresolution {
    display: block !important;
  }
}

@media (orientation: landscape) and (min-width: 768px) {
  #start {
    display: block;
  }
}

#unsupported-browser {
  display: none;
}

#unsupported-browser .popup-container {
  display: block;
}

/* preloader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#preloader .lds-ring {
  display: inline-block;
  display: none;
  position: relative;
  width: 80px;
  height: 80px;
}

#preloader .lds-ring div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #223161;
  border-radius: 50%;
  -webkit-animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
          animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #223161 transparent transparent transparent;
}

#preloader .lds-ring div:nth-child(1) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}

#preloader .lds-ring div:nth-child(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}

#preloader .lds-ring div:nth-child(3) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}

@-webkit-keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes lds-ring {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#preloader .moment {
  padding-bottom: 5px;
}

#preloader .file {
  padding-top: 5px;
  font-size: 12px;
  color: #444;
  white-space: nowrap;
}

#preloader .progress {
  background-color: #f5f5f5;
  background-color: #FFF;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px #FFF solid;
  -webkit-box-shadow: 0 0 0 1px #999;
          box-shadow: 0 0 0 1px #999;
  width: 200px;
  overflow: hidden;
}

#preloader .progress.progress-xs {
  height: 5px;
  margin-top: 5px;
}

#preloader .progress.progress-sm {
  height: 10px;
  margin-top: 5px;
}

#preloader .progress.progress-lg {
  height: 25px;
}

#preloader .progress.vertical {
  position: relative;
  width: 20px;
  height: 200px;
  display: inline-block;
  margin-right: 10px;
}

#preloader .progress.vertical > .progress-bar {
  width: 100% !important;
  position: absolute;
  bottom: 0;
}

#preloader .progress.vertical.progress-xs {
  width: 5px;
  margin-top: 5px;
}

#preloader .progress.vertical.progress-sm {
  width: 10px;
  margin-top: 5px;
}

#preloader .progress.vertical.progress-lg {
  width: 30px;
}

#preloader .progress-bar {
  background-color: #2196F3;
  background-color: #283665;
  -webkit-box-shadow: none;
          box-shadow: none;
}

#preloader .progress-bar span {
  display: block;
  height: 20px;
}

#preloader .progress-bar.text-left {
  text-align: left;
}

#preloader .progress-bar.text-left span {
  margin-left: 10px;
}

#preloader .progress-bar.text-right {
  text-align: right;
}

#preloader .progress-bar.text-right span {
  margin-right: 10px;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

#preloader .progress.active .progress-bar,
#preloader .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

#preloader .progress-striped .progress-bar,
#preloader .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

#preloader .progress-bar-secondary {
  background-color: #323a45;
}

#preloader .progress-bar-default {
  background-color: #B0BEC5;
}

#preloader .progress-bar-success {
  background-color: #64DD17;
}

#preloader .progress-bar-info {
  background-color: #29B6F6;
}

#preloader .progress-bar-warning {
  background-color: #FFD600;
}

#preloader .progress-bar-danger {
  background-color: #ef1c1c;
}

/* Footer nicht Sticky; Wird zusammen mit JS footer_adjust(); unten ausgerichtet */
footer {
  position: absolute;
  bottom: initial;
}

footer .point {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25) !important;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  opacity: 1;
}

footer .point:hover {
  display: block;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  z-index: 1000;
}

main {
  min-height: calc(100vh - 54px);
}
/*# sourceMappingURL=style.css.map */