.cbf-vh {
  position: relative;
  display: block;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
}
.cbf-vh__zoom-container {
  transition: transform 1.3s;
  position: relative;
  width: 100%;
  max-height: 1009px;
  height: calc( ( 1026 / 1920 ) * ( 100vw - 30px ) );
}
.cbf-vh__zoom-container.dragged {
  cursor: grabbing;
  transition: none;
}
.cbf-vh__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}
.cbf-vh__layer.active {
  opacity: 1;
  pointer-events: auto;
}
.cbf-vh__hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .cbf-vh__hotspot {
    width: 48px;
    height: 48px;
  }
}
.cbf-vh__hotspot:hover {
  z-index: 10;
}
.cbf-vh__hotspot .hover-tab {
  display: none;
  position: absolute;
  top: -36px;
  white-space: nowrap;
  width: auto;
  height: 36px;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  line-height: 36px;
  padding: 0 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s;
  color: #404040;
}
@media screen and (min-width: 768px) {
  .cbf-vh__hotspot .hover-tab {
    display: inherit;
  }
}
.cbf-vh__hotspot .hover-tab:before {
  content: "";
  border: 10px solid #fff;
  font-size: 0;
  line-height: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.cbf-vh__hotspot__cube {
  position: relative;
  width: 18px;
  height: 18px;
  background: #009879;
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  padding: 0;
  z-index: 55;
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .cbf-vh__hotspot__cube {
    width: 48px;
    height: 48px;
  }
}
.cbf-vh__hotspot__cube img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .cbf-vh__hotspot__cube img {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
.cbf-vh__hotspot[data-action="1"] .cbf-vh__hotspot__cube {
  background: #f07d00;
}
.cbf-vh__hotspot[data-action="2"] .cbf-vh__hotspot__cube {
  background: #464646;
}
.cbf-vh__hotspot .cbf-vh__hotspot__cube:hover {
  background: #A0C30F;
}
.cbf-vh__hotspot .cbf-vh__hotspot__cube:hover .hover-tab {
  opacity: 1;
  pointer-events: auto;
}
.cbf-vh__hotspot.active {
  opacity: 1;
}
.cbf-vh__hotspot.active .cbf-vh__hotspot__cube {
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.cbf-vh__hotspot .infowindow {
  position: relative;
  top: -24px;
  width: calc( 100vw - 62px );
  background: #FFF;
  left: 50%;
  color: #404040;
  transform: translateY(15px) translateX(-50%);
  transition: all 0.4s;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  text-align: left;
  float: left;
  padding: 48px 24px;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.cbf-vh__hotspot .infowindow ul li:before {
  background-color: #404040;
}
@media screen and (min-width: 768px) {
  .cbf-vh__hotspot .infowindow {
    position: relative;
    top: -48px;
    left: 50%;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
    width: 400px;
    height: auto;
  }
}
.cbf-vh__hotspot .infowindow span[data-action=close-infowindow] {
  position: absolute;
  right: 16px;
  top: 16px;
  transition: transform 0.4s;
  cursor: pointer;
}
.cbf-vh__hotspot .infowindow span[data-action=close-infowindow] svg {
  fill: #b2babe;
  width: 32px;
  height: 32px;
}
.cbf-vh__hotspot .infowindow span[data-action=close-infowindow]:hover {
  transform: rotate(180deg);
}
.cbf-vh__hotspot .infowindow h3 {
  font-size: 24px;
  color: #009879;
  font-weight: bold;
  margin-bottom: 16px;
}
.cbf-vh__hotspot .infowindow p {
  margin-bottom: 16px;
}
.cbf-vh__hotspot .infowindow p:last-child {
  margin-bottom: 0;
}
.cbf-vh__hotspot .infowindow a {
  color: #009879;
}
.cbf-vh__hotspot .infowindow a:before {
  content: url(/typo3conf/ext/cbf_starterkit/Resources/Public/assets/svg/_separate/sprite/arrow-right.svg);
  width: 16px;
  height: 16px;
  vertical-align: sub;
  margin-right: 8px;
}
.cbf-vh__hotspot.open-infowindow {
  z-index: 900;
}
.cbf-vh__hotspot.open-infowindow .cbf-vh__hotspot__cube {
  background: #A0C30F;
  cursor: default;
  z-index: 1000;
}
.cbf-vh__hotspot.open-infowindow .infowindow {
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  pointer-events: auto;
  cursor: default;
  z-index: 950;
}
.cbf-vh__layer-navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .cbf-vh__layer-navigation {
    bottom: 50%;
    transform: translateY(50%);
    right: 24px;
  }
}
.cbf-vh__layer-navigation li {
  background: #404040;
  width: 48px;
  height: 48px;
  margin: 8px 0;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbf-vh__layer-navigation li:hover, .cbf-vh__layer-navigation li.active {
  background: #b2babe;
}
.cbf-vh__layer-navigation li img {
  height: auto;
  width: 24px;
}
.cbf-vh__zoom-navigation {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .cbf-vh__zoom-navigation {
    top: 50%;
    bottom: auto;
    left: 48px;
    transform: translate3d(0, -50%, 0);
    margin-top: 56px;
  }
}
.cbf-vh__zoom-navigation li {
  background: #404040;
  width: 48px;
  height: 48px;
  margin: 8px 0;
  border-radius: 50%;
  line-height: 48px;
  color: #fff;
  text-align: center;
  font-size: 48px;
  cursor: pointer;
  transition: all 0.4s;
  user-select: none;
}
.cbf-vh__zoom-navigation li:hover, .cbf-vh__zoom-navigation li.disabled {
  background: #b2babe;
}
.cbf-vh__zoom-navigation li.disabled {
  cursor: not-allowed;
}
.cbf-vh .mobile-infowindow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  color: #404040;
  padding: 48px 24px;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.cbf-vh .mobile-infowindow h3 {
  font-size: 24px;
  color: #009879;
  font-weight: bold;
  margin-bottom: 16px;
}
.cbf-vh .mobile-infowindow p {
  margin-bottom: 16px;
}
.cbf-vh .mobile-infowindow p:last-child {
  margin-bottom: 0;
}
.cbf-vh .mobile-infowindow a {
  color: #009879;
}
.cbf-vh .mobile-infowindow a:before {
  content: url(/typo3conf/ext/cbf_starterkit/Resources/Public/assets/svg/_separate/sprite/arrow-right.svg);
  width: 16px;
  height: 16px;
  vertical-align: sub;
  margin-right: 8px;
}
.cbf-vh .mobile-infowindow ul li:before {
  background-color: #404040;
}
@media screen and (min-width: 768px) {
  .cbf-vh .mobile-infowindow {
    display: none;
  }
}
.cbf-vh .mobile-infowindow span[data-action=close-mobileinfowindow] {
  position: absolute;
  right: 16px;
  top: 16px;
  transition: transform 0.4s;
  cursor: pointer;
}
.cbf-vh .mobile-infowindow span[data-action=close-mobileinfowindow] svg {
  fill: #b2babe;
  width: 32px;
  height: 32px;
}
.cbf-vh .mobile-infowindow span[data-action=close-mobileinfowindow]:hover {
  transform: rotate(180deg);
}
.cbf-vh.open-mobileinfowindow .mobile-infowindow {
  pointer-events: auto;
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
