/* standing points */
.kreis {
  width: 20px;
  height: 20px;
  background: #00a5db;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  cursor: pointer;
	outline: none;
}
.kreis::before, .kreis::after {
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 2px solid #00a5db;
  border-radius:100%;
  animation: kringel linear 1.5s infinite;	
}
.kreis::after {
  animation-delay: -0.7s;
}

@keyframes kringel {
  0% { width:20px; height:20px; border:2px solid #00a5db; }
  100% { width:70px; height:70px; border:2px solid transparent; }
}
/* Small devices (landscape phones, 576px and up) */
@media (max-width: 599px) {
.kreis {
	transform: scale(0.4);
}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991px) and (min-width: 600px) {
.kreis {
	transform: scale(0.7);
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.kreis {
	transform: scale(1);
}	
}

/* white */
#button_white_hygienic1A { 
    position: absolute;
    left: 30.2%;
    top: 60%;
}
#white_hygienic1A {
	display: none;
	position: absolute;
	left: 30.2%;
	top: 65%;
} 

#button_white_hygienic1B { 
    position: absolute;
    left: 50.2%;
    top: 70%;
}
#white_hygienic1B {
	display: none;
	position: absolute;
	left: 50.2%;
	top: 75%;
}

#button_white_hygienic2A { 
    position: absolute;
    left: 50.2%;
    top: 80%;
}
#white_hygienic2A {
	display: none;
	position: absolute;
	left: 50.2%;
	top: 85%;
}

#button_white_hygienic2B { 
    position: absolute;
    left: 40.2%;
    top: 60%;
}
#white_hygienic2B {
	display: none;
	position: absolute;
	left: 40.2%;
	top: 65%;
}
/* white */

/* dark */
#button_dark_hygienic1A { 
    position: absolute;
    left: 30.2%;
    top: 60%;
}
#dark_hygienic1A {
	display: none;
	position: absolute;
	left: 30.2%;
	top: 65%;
} 

#button_dark_hygienic1B { 
    position: absolute;
    left: 50.2%;
    top: 70%;
}
#dark_hygienic1B {
	display: none;
	position: absolute;
	left: 50.2%;
	top: 75%;
}

#button_dark_hygienic2A { 
    position: absolute;
    left: 50.2%;
    top: 80%;
}
#dark_hygienic2A {
	display: none;
	position: absolute;
	left: 50.2%;
	top: 85%;
}

#button_dark_hygienic2B { 
    position: absolute;
    left: 40.2%;
    top: 60%;
}
#dark_hygienic2B {
	display: none;
	position: absolute;
	left: 40.2%;
	top: 65%;
}
/* dark */


.standingpoint_hg {
	background-color: #144734;
	opacity: 0.7;
	padding: 1%;
	width: 25%;
	border: 1px solid rgba(255, 255, 255, 0.7);
	z-index: 2;
}
.text {
    color: #FFF;
    font-size: 1.4vw;
    font-family: 'Panton',sans-serif;
    line-height: 1.5;
}
.white_hygienic1A:focus ~ #white_hygienic1A, .white_hygienic1A:hover ~ #white_hygienic1A, .white_hygienic1B:focus ~ #white_hygienic1B, .white_hygienic1B:hover ~ #white_hygienic1B,
.white_hygienic2A:focus ~ #white_hygienic2A, .white_hygienic2A:hover ~ #white_hygienic2A, .white_hygienic2B:focus ~ #white_hygienic2B, .white_hygienic2B:hover ~ #white_hygienic2B,
.dark_hygienic1A:focus ~ #dark_hygienic1A, .dark_hygienic1A:hover ~ #dark_hygienic1A, .dark_hygienic1B:focus ~ #dark_hygienic1B, .dark_hygienic1B:hover ~ #dark_hygienic1B,
.dark_hygienic2A:focus ~ #dark_hygienic2A, .dark_hygienic2A:hover ~ #dark_hygienic2A, .dark_hygienic2B:focus ~ #dark_hygienic2B, .dark_hygienic2B:hover ~ #dark_hygienic2B {
	display: block;
}
/* end standing points */
.logo img {
	width: 17%;
	height: auto;
	position: absolute;
	left: 3.3%;
	top: 3.3%;
}

@-webkit-keyframes fadeInRight {
 from {
  opacity:0;
  -webkit-transform:translate3d(100%,0,0);
  transform:translate3d(100%,0,0);
 }
 to {
  opacity:1;
  -webkit-transform:none;
  transform:none;
 }
}
@keyframes fadeInRight {
 from {
  opacity:0;
  -webkit-transform:translate3d(100%,0,0);
  transform:translate3d(100%,0,0);
 }
 to {
  opacity:1;
  -webkit-transform:none;
  transform:none;
 }
}
.fadeInRight{
    animation-name: fadeInRight;
	-webkit-animation-name: fadeInRight;
    animation-duration: 1s;
	-webkit-animation-duration: 1s;
    animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
}
@-webkit-keyframes fadeOutRight {
 from {
  opacity:1;
	 visibility: visible;
 }
 to {
  opacity:0;
	 visibility: hidden;
  -webkit-transform:translate3d(100%,0,0);
  transform:translate3d(100%,0,0);
 }
}
@keyframes fadeOutRight {
 from {
  opacity:1;
	 visibility: visible;
 }
 to {
  opacity:0;
	  visibility: hidden;
  -webkit-transform:translate3d(100%,0,0);
  transform:translate3d(100%,0,0);
 }
}
.fadeOutRight {
 animation-name: fadeOutRight;
	-webkit-animation-name: fadeOutRight;
    animation-duration: 1s;
	-webkit-animation-duration: 1s;
    animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
}
* {
	margin:0;
	padding:0;
}
a img {
	border:0;
	outline: none;
}
a, a:link, a:visited {
	text-decoration: none;
	border: none;
	outline: none;
	color: #FFF;
}
.video-container {
  position: relative;
}
video {
  height: auto;
  vertical-align: middle;
  width: 100%;
}
.overlay {
  background: rgba(0,0,0,0);
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  display: flex;
  align-items: left;
  justify-content: left;
  overflow:hidden;
}
/*.pulse {
	visibility:hidden;
}*/
.pulsate1, .pulsate2, .pulsate3, .pulsate4, .pulsate5, .pulsate6, .pulsate7, .pulsate8, .pulsate9, .pulsate10, .pulsate11 {
    border: 1px solid #FFF;
    opacity: 1;
    z-index: 1;
	position:relative;
	cursor:pointer;
}
.link {
	height: 100%;
	width: 100%;
	color: #FFF;
	font-size: 1.4vw;
	font-family: 'Panton',sans-serif;
	line-height: 1.5;
}
