.hotspots-container {
  position: relative;

  --hotspot-mobile: 15px;
  --hotspot-desktop: 36px;
  --hotspot-border: 5px;
  --tooltip-bg: rgba(255, 255, 255, 0.97);
}

.orange {
  color: var(--e-global-color-accent);
}

.hotspot {
  z-index: 0;
}

.hotspot-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: var(--hotspot-border);
  background: var(--e-global-color-accent);
}

.hotspot-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--hotspot-mobile);
  height: var(--hotspot-mobile);
  border-radius: 50%;
  background: var(--e-global-color-accent);
  color: white;
}

.hotspot-hover {
  display: none;
  padding: 0 15px;
  color: white;
}

.hotspot-label:hover {
  background: var(--e-global-color-accent);
  border-radius: 50px;
}

.hotspot.active {
  z-index: 2 !important;
}

.hotspot.active .hotspot-number,
.hotspot-label:hover .hotspot-number {
  background: white;
  color: black;
}

@media screen and (max-width: 1025px) {
  .hotspot-number {
    font-size: 13px;
  }
  #hotspot-slider .swiper-slide {
    height: auto;
  }
  .hotspot.active .hotspot-label,
  .hotspot-label:hover,
  .hotspot.active .hotspot-number,
  .hotspot-label:hover .hotspot-number {
    background: #272727 !important;
    color: white;
  }
}

@media screen and (min-width: 1025px) {
  .hotspot-number {
    width: var(--hotspot-desktop);
    height: var(--hotspot-desktop);
  }
}

.hotspot-tooltip {
  display: none;
  position: absolute;
  background: var(--tooltip-bg);
  width: 400px;
  z-index: 10;
  padding: 20px;
}
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  .hotspot-tooltip {
    padding: 15px;
    width: 500px;
  }
  .hotspot-tooltip h5 {
    font-size: 1.1rem;
  }
  .hotspot-tooltip p {
    font-size: 0.9rem;
  }
  .hotspot-tooltip ul {
    margin-bottom: 0;
  }
}
.wide-content .hotspot-tooltip {
  width: 800px;
}

#hotspot-slider .swiper-slide {
  padding: 0 50px 20px;
}
#hotspot-slider .swiper-slide {
  background-color: white;
  padding-top: 15px;
}

#hotspot-slider .swiper-slide .custom-title-6 {
  color: var(--e-global-color-accent);
}

#hotspot-slider .swiper-slide ul,
#hotspot-slider .hotspot-tooltip ul {
  margin: 1rem 0 0;
  padding: 0 0 0 1rem;
}

.hotspot-tooltip:before {
  content: "";
  display: block;
  height: 50px;
  width: 50px;
  background: white;
  position: absolute;
  background: linear-gradient(135deg, var(--tooltip-bg) 50%, transparent 50%);
  top: -24px;
  left: calc(50% - 25px);
  transform: rotate(45deg);
}

@media screen and (min-width: 1025px) {
  .hotspot.active .hotspot-tooltip {
    display: block;
  }
  .hotspot:not(.active) .hotspot-label:hover .hotspot-hover {
    display: flex;
    line-height: 0;
  }
  span.hotspot-hover:after {
    content: "+";
    padding-left: 5px;
    font-size: 1.5em;
  }
}

.hotspots-container,
.hotspots-container img {
  width: 100%;
}

.hotspots-container img {
  max-height: calc(100vh - 150px);
}

.hotspot-tooltip {
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.hotspot[data-direction="left"] .hotspot-tooltip {
  right: 90px;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
}

.hotspot[data-direction="left"] .hotspot-tooltip::before {
  right: -24px;
  top: calc(50% - 25px);
  left: auto;
  transform: rotate(135deg);
}

.hotspot[data-direction="top"] .hotspot-tooltip {
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
}

.hotspot[data-direction="top"] .hotspot-tooltip::before {
  bottom: -24px;
  top: auto;
  transform: rotate(225deg);
}

.hotspot[data-direction="right"] .hotspot-tooltip {
  left: 90px;
  top: 50%;
  transform: translateY(-50%);
}

.hotspot[data-direction="right"] .hotspot-tooltip::before {
  left: -24px;
  top: calc(50% - 25px);
  transform: rotate(-45deg);
}

@media screen and (min-width: 1366px) and (max-width: 1600px) {
  .hotspot[data-laptop-direction="bottom"] .hotspot-tooltip {
    top: 90px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hotspot[data-laptop-direction="bottom"] .hotspot-tooltip::before {
    top: -24px;
    left: calc(50% - 25px);
    transform: rotate(45deg);
  }

  .hotspot[data-laptop-direction="left"] .hotspot-tooltip {
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
  }

  .hotspot[data-laptop-direction="left"] .hotspot-tooltip::before {
    right: -24px;
    top: calc(50% - 25px);
    left: auto;
    transform: rotate(135deg);
  }

  .hotspot[data-laptop-direction="top"] .hotspot-tooltip {
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
  }

  .hotspot[data-laptop-direction="top"] .hotspot-tooltip::before {
    bottom: -24px;
    top: auto;
    transform: rotate(225deg);
  }

  .hotspot[data-laptop-direction="right"] .hotspot-tooltip {
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
	bottom: auto;
  }

  .hotspot[data-laptop-direction="right"] .hotspot-tooltip::before {
    left: -24px;
    top: calc(50% - 25px);
    transform: rotate(-45deg);
  }
}

@media screen and (min-width: 1025px) {
  #hotspot-slider {
    display: none;
  }
}

#hotspot-slider .swiper-button-next,
#hotspot-slider .swiper-button-prev {
  background-image: none;
  background-color: var(--e-global-color-accent);
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#hotspot-slider .swiper-button-next svg path,
#hotspot-slider .swiper-button-prev svg path {
  fill: white;
}

.fullpage-breadcrumbs a,
.fullpage-breadcrumbs span,
.fullpage-breadcrumbs p {
  font-size: 14px;
}

/* Footer and header */
.fullpage-footer {
  height: 240px !important;
}

.fullpage-footer .fp-overflow {
  width: 100%;
}

/* we don't want sticky header on mobile as we have the floating bar at the bottom */
@media screen and (max-width: 1365px) {
  .fullpage-header {
    position: relative !important;
  }
}

@media screen and (min-width: 1366px) {
  .fullpage-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}

/* RWD Improvements, especially to fix elements too big on fullpagejs */
.grid-applications > .fp-overflow > .e-grid > .e-con-inner {
  height: calc(100vh - 150px);
  padding-top: 75px;
}

@media screen and (min-width: 1366px) and (max-width: 1600px) {
  .full-section.hero {
    justify-content: flex-start !important;
  }
  .hotspots-container {
    transform: scale(0.9);
  }
}



/* Old CSS from the DM III page */

.img-text-box:hover .elementor-heading-title {
  color: #ff6600 !important;
}

.elementor-widget-hotspot img:first-of-type {
  width: 100%;
}

.more-text {
  width: 300px;
  color: black;
  padding: 15px;
  white-space: normal !important;
}
.toggle-text {
  padding: 15px;
}

a.reveal-link {
  display: flex;
  justify-content: space-around;
}
a.reveal-link svg path {
  stroke: white;
}

a.reveal-link span {
  display: flex;
  background-color: #585757;
  padding: 5px;
  border-radius: 100%;
  margin-left: 15px;
  pointer-events: none;
}

.e-hotspot__button:hover {
  /*background-color: black!important;*/
  border-radius: 25px !important;
}

.e-hotspot__tooltip p {
  margin: 0;
}

span.hover-only {
  width: 0;
  opacity: 0;
  display: block;
  line-height: 0;
  transition: opacity 0.3s;
}

.e-hotspot__button:hover .hover-only {
  padding: 15px;
  opacity: 1;
  width: auto;
}

.e-hotspot__button:hover .k-number,
.e-hotspot--active .k-number {
  background: white;
  color: black;
}
.e-hotspot__button .k-number {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.e-hotspot__tooltip .v2 {
  width: 400px;
  max-width: 90vw;
  display: block;
  white-space: normal;
  padding: 20px;
}

.e-hotspot__tooltip {
  background: linear-gradient(180deg, #ffffffeb 9%, transparent 75%);
}

.e-hotspot__tooltip:after {
  content: "";
  display: block;
  height: 50px;
  width: 50px;
  background: white;
  position: absolute;
  /*background: linear-gradient(135deg, #ffffffeb 50%, transparent 50%);*/
  top: -25px;
  left: calc(50% - 25px);
  transform: rotate(45deg);
}

.e-hotspot--position-top .e-hotspot--tooltip-position {
  top: calc(100% + 41px) !important;
}

.e-hotspot--active .e-hotspot__button:hover .hover-only {
  display: none !important;
}

.orange {
  color: #ff6600;
}

@media screen and (min-width: 1025px) {
	.fp-overflow, .hotspots-container{
		overflow: visible!important;
	}
}
