 .cd-container ol, .cd-container ul {
  list-style: none;
}

.cd-img-replace {
  /* replace text with background images */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.cd-product {
  text-align: center;
}

.cd-product-wrapper {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1292px;

}
.cd-product-wrapper > img {
  display: block;
}

.cd-single-point {
  position: absolute;
  border-radius: 50%;
}
.cd-single-point > a {
  position: relative;
  z-index: 2;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: inherit;
  background: #fab735;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-single-point > a::after, .cd-single-point > a:before {
  /* rotation plus icon */
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: white;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.cd-single-point > a::after {
  height: 2px;
  width: 12px;
}
.cd-single-point > a::before {
  height: 12px;
  width: 2px;
}
.cd-single-point::after {
  /* pulse animation */
  content: '';
  position: absolute;
  z-index: 1;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  border-radius: inherit;
  background-color: transparent;
  -webkit-animation: cd-pulse 2s infinite;
  -moz-animation: cd-pulse 2s infinite;
  animation: cd-pulse 2s infinite;
}
.cd-single-point:first-child {
/* Jugend */
  top: 30%;
  right: 15%;
}
.cd-single-point:nth-child(2) {
  /* Wetterauische Magazin */
  bottom: 20%;
  left: 13%;
}
.cd-single-point:nth-child(3) {
  /* Verwaltung */
  bottom: 20%;
  left: 19.5%;
}
.cd-single-point:nth-child(4) {
  /* Portal */
  bottom: 20%;
  left: 22.5%;
}
.cd-single-point:nth-child(5) {
  /* Kaffe/Bar */
  bottom: 20%;
  left: 28.5%;
}
.cd-single-point:nth-child(6) {
   /* Kinderbibliothek */
  bottom: 20%;
  left: 31.5%;
}
.cd-single-point:nth-child(7) {
  /* Stadtarchiv */
  bottom: 20%;
  left: 39.5%;
}
.cd-single-point:nth-child(8) {
  /* Landeskundliche */
  bottom: 20%;
  left: 47.5%;
}
.cd-single-point:nth-child(9) {
  /* Medienzentrum */
  bottom: 43.5%;
  left: 19.5%;
}
.cd-single-point:nth-child(10) {
  /* Ausleihe */
  bottom: 43.5%;
  left: 22.5%;
}

.cd-single-point:nth-child(11) {
  /* Ausleihe */
  bottom: 43.5%;
  left: 28.5%;
}

.cd-single-point:nth-child(12) {
  /* KEKZ */
  bottom: 43.5%;
  left: 31.5%;
}
.cd-single-point:nth-child(13) {
  /* 12 */
  bottom: 43.5%;
  left: 39.5%;
}

.cd-single-point:nth-child(14) {
  /* E */
  bottom: 43.5%;
  left: 46.5%;
}

.cd-single-point:nth-child(15) {
  /* 7 */
  top: 20.5%;
  left: 28.5%;
}

.cd-single-point:nth-child(16) {
  /* 6 */
  top: 20.5%;
  left: 35.5%;
}

.cd-single-point:nth-child(17) {
  /* 1 */
  top: 19.2%;
  right: 45.2%;
}

.cd-single-point:nth-child(18) {
  /* 2 */
  top: 25.2%;
  right: 47.2%;
}

.cd-single-point:nth-child(19) {
  /* 3 */
  top: 30%;
  right: 47.2%;
}

.cd-single-point:nth-child(20) {
  /* 4 */
  top: 38.5%;
  right: 46%;
}

.cd-single-point:nth-child(21) {
  /* 5 */
  bottom: 39%;
  right: 37%;
}



.cd-single-point.is-open > a {
  background-color: #19ae9a;
}
.cd-single-point.is-open > a::after, .cd-single-point.is-open > a::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.cd-single-point.is-open::after {
  /* remove pulse effect */
  display: none;
}
.cd-single-point.is-open .cd-more-info,.cd-single-point.is-open .cd-more-info2 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  z-index: 1000;
}
.cd-single-point.visited > a {
  background-color: #19ae9a; /* 475f74*/
}
.cd-single-point.visited::after {
  /* pulse effect no more active on visited elements */
  display: none;
}
@media only screen and (min-width: 600px) {
  .cd-single-point.is-open .cd-more-info.cd-left,.cd-single-point.is-open .cd-more-info2.cd-left {
    right: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-right,.cd-single-point.is-open .cd-more-info2.cd-right {
    left: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-top,.cd-single-point.is-open .cd-more-info2.cd-top {
    bottom: 140%;
  }
  .cd-single-point.is-open .cd-more-info.cd-bottom,.cd-single-point.is-open .cd-more-info2.cd-bottom {
    top: 140%;
  }
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  100% {
    -webkit-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0);
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  100% {
    -moz-transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0);
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  50% {
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0.8);
  }

  100% {
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    transform: scale(1.6);
    box-shadow: inset 0 0 1px 1px rgba(250, 183, 53, 0);
  }
}
.cd-single-point .cd-more-info,.cd-single-point .cd-more-info2 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  text-align: left;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2em 1em 1em;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s, top 0.3s 0s, bottom 0.3s 0s, left 0.3s 0s, right 0.3s 0s;
}
.cd-single-point .cd-more-info::before,.cd-single-point .cd-more-info2::before {
  /* triangle next to the interest point description - hidden on mobile */
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  display: none;
  border: 8px solid transparent;
}
.cd-single-point .cd-more-info h2, .cd-single-point .cd-more-info2 h2 {
  font-size: 20px;
  font-size: 1.375rem;
  margin-bottom: .6em;
}
.cd-single-point .cd-more-info p, .cd-single-point .cd-more-info2 p {
  color: #000;
  margin-top: 10px;
}
@media only screen and (min-width: 600px) {
  .cd-single-point .cd-more-info {
    position: absolute;
/* hier die größe des Popup einstellen */
    width: 320px;
    height: 400px;
    padding: 1em;
    overflow-y: auto;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .cd-single-point .cd-more-info2 {
    position: absolute;
/* hier die größe des Popup einstellen */
    width: 300px;
    height: 400px;
    padding: 1em;
    overflow-y: visible;
    line-height: 1.4;
    border-radius: 0.25em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .cd-single-point .cd-more-info::before,.cd-single-point .cd-more-info2::before {
    display: block;
  }
  .cd-single-point .cd-more-info.cd-left, .cd-single-point .cd-more-info.cd-right, .cd-single-point .cd-more-info2.cd-left, .cd-single-point .cd-more-info2.cd-right {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-single-point .cd-more-info.cd-left::before, .cd-single-point .cd-more-info.cd-right::before  .cd-single-point .cd-more-info2.cd-left::before, .cd-single-point .cd-more-info2.cd-right::before {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-single-point .cd-more-info.cd-left, .cd-single-point .cd-more-info2.cd-left {
    right: 160%;
    left: auto;
  }
  .cd-single-point .cd-more-info.cd-left::before, .cd-single-point .cd-more-info2.cd-left::before {
    border-left-color: rgba(255, 255, 255, 0.95);
    left: 100%;
  }
  .cd-single-point .cd-more-info.cd-right,  .cd-single-point .cd-more-info2.cd-right {
    left: 160%;
  }
  .cd-single-point .cd-more-info.cd-right::before, .cd-single-point .cd-more-info2.cd-right::before {
    border-right-color: rgba(255, 255, 255, 0.95);
    right: 100%;
  }
  .cd-single-point .cd-more-info.cd-top, .cd-single-point .cd-more-info.cd-bottom,.cd-single-point .cd-more-info2.cd-top, .cd-single-point .cd-more-info2.cd-bottom {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cd-single-point .cd-more-info.cd-top::before, .cd-single-point .cd-more-info.cd-bottom::before, .cd-single-point .cd-more-info2.cd-top::before, .cd-single-point .cd-more-info2.cd-bottom::before {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .cd-single-point .cd-more-info.cd-top,.cd-single-point .cd-more-info2.cd-top {
    bottom: 160%;
    top: auto;
  }
  .cd-single-point .cd-more-info.cd-top::before,  .cd-single-point .cd-more-info2.cd-top::before {
    border-top-color: rgba(255, 255, 255, 0.95);
    top: 100%;
  }
  .cd-single-point .cd-more-info.cd-bottom, .cd-single-point .cd-more-info2.cd-bottom {
    top: 160%;
  }
  .cd-single-point .cd-more-info.cd-bottom::before, .cd-single-point .cd-more-info2.cd-bottom::before {
    border-bottom-color: rgba(255, 255, 255, 0.95);
    bottom: 100%;
  }
  .cd-single-point .cd-more-info h2,.cd-single-point .cd-more-info2 h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 0;
  }
  .cd-single-point .cd-more-info p,.cd-single-point .cd-more-info2 p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* close the interest point description - only on mobile */
.cd-close-info {
  position: fixed;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  z-index: 1001;
}
.cd-close-info::after, .cd-close-info:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background-color: #475f74;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.cd-close-info::after {
  height: 2px;
  width: 16px;
}
.cd-close-info::before {
  height: 16px;
  width: 2px;
}
@media only screen and (min-width: 600px) {
  .cd-close-info {display: none;  }
}

  #float {
  right: 10%;
  margin-top:15%;
    position: absolute;
    -webkit-animation: floatBubble 20s infinite  normal ease-out;
    animation: floatBubble 20s infinite  normal ease-out;
  }
#float2 {
  margin-top:50%;  
  margin-left:70.5%;
    position: absolute;
    -webkit-animation: rudern 4s infinite  normal ease-out;
    animation: rudern 4s infinite  normal ease-out;
  }
#float3 {
  margin-top:53%;  
  margin-left:15%;
    position: absolute;
    -webkit-animation: kreisen 2s infinite  normal ease-out;
    animation: kreisen 2s infinite  normal ease-out;
  }
#float4 {
  margin-top:35.5%;  
  margin-left:66.5%;
    position: absolute;
    -webkit-animation: fliegen 5s infinite  normal ease-out;
    animation: fliegen 5s infinite  normal ease-out;
  }

@media only screen and (max-width: 780px) {
   #rest,#float,#float2,#float3,#float4,.loading,.loading1 {display:none;}
}
   
@-webkit-keyframes floatBubble {
    0% {top: 100px;}
   50% {top: 300px;}
  100% {top: 500px;}
}
@keyframes floatBubble {
    0% {bottom: 100px;}
   50% {bottom: 300px;}
  100% {bottom: 500px;}
}
@-webkit-keyframes rudern {
    0% {top:0px;}
   50% {top: 10px;}
  100% {top: 0px;}
}
@keyframes rudern {
    0% {top:0px;}
   50% {top: 10px;}
  100% {top: 0px;}
}
@-webkit-keyframes kreisen {
   0% {top:0px;}
  50% {top: 6px;}
 100% {top: 0px;}
}
@keyframes kreisen {
   0% {top:0px;}
  50% {top: 6px;}
 100% {top: 0px;}
}
@-webkit-keyframes fliegen {
   0% {top:0px;}
  50% {top: 10px;}
 100% {top: 0px;}
}
@keyframes fliegen {
   0% {top:0px;}
  50% {top: 10px;}
 100% {top: 0px;}
}