/*badges*/
.badges div, .sk-badges {
  position: absolute;
  cursor: pointer;
}

.motives {
  margin-bottom: .75rem;
}

.red-dot {
  display: inline-block;
  background-color: #E2061B;
  border-radius: 50%;
  color: #fff;
  padding: 0.5em 0.75em;
  position: relative;
  width: 32px;
  height: 32px;
  box-shadow: 0 0 0 rgba(226,6,27, 0.4);
  animation: pulse 2s infinite;
}
/* pulse */
.red-dot:hover {
  animation: none;
}

.red-dot.small {
  width: 18px;
  height: 26px;

}

.tippy-tooltip h4 {
  font-size: 1rem; font-weight: bold; color: white;
  background: #232323; padding: .25rem .35rem;
  display: inline-block; text-transform: uppercase;
  margin-bottom: .75rem;
}

.tippy-tooltip h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
}

.tippy-tooltip p {
  font-size: 1rem; line-height: 1.4;
}

/* sichere kiste */
.sk {
  position: relative; width: 100%;
  display: inline-block;
  margin-top: 2.5rem; margin-bottom: 2.5rem;
}

.deckel {
    top: 0%;
    left: 69%;
}
.deckung {
    top: 32%;
    left: 6%;
}
.gehause {
    top: 37%;
    left: 96%;
}

/* If `animateFill: true` (default) */
.tippy-tooltip.sichere-kiste-theme .tippy-backdrop {
  background-color: white;
  font-weight: 300;
  color: #232323;
}
/* If `animateFill: false` */
.tippy-tooltip.sichere-kiste-theme {
  background-color: #eee;
  border: none;
  font-weight: 300;
  color: #232323;
  text-align: left;
  padding: 1.75rem 1.25rem;
}
/* Default (sharp) arrow */
.tippy-popper[x-placement^='top'] .tippy-tooltip.sichere-kiste-theme .tippy-arrow {
  border-top-color: #eee;
}
.tippy-popper[x-placement^='bottom'] .tippy-tooltip.sichere-kiste-theme .tippy-arrow {
  border-bottom-color: #eee;
}
.tippy-popper[x-placement^='left'] .tippy-tooltip.sichere-kiste-theme .tippy-arrow {
  border-left-color: #eee;
}
.tippy-popper[x-placement^='right'] .tippy-tooltip.sichere-kiste-theme .tippy-arrow {
  border-right-color: #eee;
}
.tippy-tooltip.sichere-kiste-theme .tippy-roundarrow {
  fill: #eee;
}
.tippy-tooltip hr {
  margin: 0 0 .75rem 0 !important;
}

/* If `animateFill: true` (default) */
.tippy-tooltip.betop-white-theme .tippy-backdrop {
  background-color: white;
  font-weight: 300;
  color: #232323;
}
/* If `animateFill: false` */
.tippy-tooltip.betop-white-theme {
  background-color: #fff;
  border: none;
  font-weight: 300;
  color: #202020;
  text-align: left;
  padding: 1.25rem;
}
/* Default (sharp) arrow */
.tippy-popper[x-placement^='top'] .tippy-tooltip.betop-white-theme .tippy-arrow {
  border-top-color: #fff;
}
.tippy-popper[x-placement^='bottom'] .tippy-tooltip.betop-white-theme .tippy-arrow {
  border-bottom-color: #fff;
}
.tippy-popper[x-placement^='left'] .tippy-tooltip.betop-white-theme .tippy-arrow {
  border-left-color: #fff;
}
.tippy-popper[x-placement^='right'] .tippy-tooltip.betop-white-theme .tippy-arrow {
  border-right-color: #fff;
}
.tippy-tooltip.betop-white-theme .tippy-roundarrow {
  fill: #fff;
}

/* weltweit */
.weltweit {
  position: relative; width: 100%;
  display: inline-block;
}

/* weltweit 18_02 */
.kan {
  top: 28%;
  left: 13%;
}
.usa {
  top: 36%;
  left: 20%;
}
.gbr {
  top: 28%;
  left: 45%;
}
.lux {
  top: 33%;
  left: 47%;
}
.ger {
  top: 30%;
  left: 49%;
}
.chn {
  top: 42%;
  left: 75%;
}

/* eplan engineering */
.eplan-engineering {
  position: relative; width: 100%;
  display: inline-block; margin: 2.5rem 0 4rem 0;
}
.upload {
  top: 96%;
  left: 16%;
}
.download {
  top: 40.6%;
  left: 26.5%;
}
.feedback {
  top: 96%;
  left: 84%;
}
.sicherheit {
  top: 30%;
  left: 82%;
}
.black-square {
  display: inline-block;
  background-color: black;
  border-radius: 0;
  color: #fff;
  text-align: center;
  position: relative;
  font-weight: bold;
  width: 32px;
  height: 32px;
  line-height: 32px;
  box-shadow: 0 0 0 rgba(226,6,27, 0.4);
  animation: pulseAlt 2s infinite;
}
/* pulse */
.black-square:hover {
  animation: none;
}

/* pulse animations */

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(226,6,27, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(226,6,27, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(226,6,27, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(226,6,27, 0.4);
    box-shadow: 0 0 0 0 rgba(226,6,27, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(226,6,27, 0);
      box-shadow: 0 0 0 10px rgba(226,6,27, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(226,6,27, 0);
      box-shadow: 0 0 0 0 rgba(226,6,27, 0);
  }
}

@-webkit-keyframes pulseAlt {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(0,0,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}
@keyframes pulseAlt {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
    box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(0,0,0, 0);
      box-shadow: 0 0 0 10px rgba(0,0,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
      box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}

.copyIcon:focus {
  outline: 0 none !important;
}

/*kai*/
.copyIcon {
  position: absolute;
  display: block;
  bottom: 0;
  right: 5px;
  color: white;
  opacity: .4;
  transition: 150ms;
  cursor: pointer;
}

.copyIcon:hover {
  opacity: 1;
}

/* If `animateFill: false` */
.tippy-tooltip.image-copy-theme {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  border: none;
  font-weight: 500;
  font-size: 11px;
  color: #232323;
  text-align: left;
  padding: .25rem .5rem;
}

.copyIcon i.fa.fa-copyright {
  font-size: 14px;
}

.tippy-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.tippy-wrapper-zitatbox, .tippy-wrapper-no-height {
  position: relative;
  width: 100%;
}


.tippy-wrapper-zitatbox .copyIcon, .tippy-wrapper-no-height .copyIcon {
  bottom: 4px;
}

.accordion .tippy-wrapper-no-height {
    bottom: 0px;
}

/*kai use js */
/*img[src*="Web_1839x1209px_artikel_quer3"] > .tippy-wrapper-no-height > .copyIcon {
    bottom: 25px !important;
}*/

.tippy-wrapper-artikel-header-bild-gross {
  height: 800px;
}

@media screen and (max-width: 1023px) {
  .tippy-wrapper-artikel-header-bild-gross  {
    height: 640px;
  }
}

@media screen and (max-width: 639px) {
  .tippy-wrapper-artikel-header-bild-gross  {
    height: 460px;
  }
}


.bg-is-white .copyIcon {
  color: inherit;
}

/*kai neu only for small zitatbox image */
/*@media screen and (max-width: 639px) {
  .copyIcon {
    top: -5px;
  }
}*/

.tippy-tooltip.image-copy-theme p {
  font-size: .875rem;
}

/* Default (sharp) arrow */
.tippy-popper[x-placement^='top'] .tippy-tooltip.image-copy-theme .tippy-arrow {
  border-top-color: #eee;
}
.tippy-popper[x-placement^='bottom'] .tippy-tooltip.image-copy-theme .tippy-arrow {
  border-bottom-color: #eee;
}
.tippy-popper[x-placement^='left'] .tippy-tooltip.image-copy-theme .tippy-arrow {
  border-left-color: #eee;
}

/* kai fix article sidebar quote https://betop.friedhelm-loh-group.de/innovation/18-1-innovation/der-weg-zum-perfekten-schaltschrank.html */

@media screen and (min-width: 1024px) {

}

h3 span.linie {
    font-weight: 300;
}

/* red search results*/
strong.tx-indexedsearch-redMarkup {
  color: #E2061B;
}
