#c87216 .image-hotspot * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#c87216 .container {
    max-width: 100%;
    padding: 20px;
    margin: auto;
}

#c87216 h1 {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;   
}

#c87216 .image-hotspot {
    max-width: 1260px;
    margin: 50px auto 0 auto;
    position: relative;
}

#c87216 .image-hotspot img {
    max-width: 100%;
}

#c87216 .icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 100%;
    border: 3px solid lightgreen;
    background-color: transparent;
    cursor: pointer;
}

#c87216 .icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%) scale(1,1);
    pointer-events: none;
    content: "";
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 100%;
    border: 1px solid green;
    transition: border-color 1px linear;
    animation: icon-pulse 4s linear infinite;
}

@keyframes icon-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1,1);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -50%) scale(1.5,1.5);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(2,2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2,2);
        opacity: 0;
    }
}

#c87216 .item {
    position: absolute;
    transform: translate(-50%, -50%);
}

#c87216 .tooltip {
    position: absolute;
    padding: 15px;
    width: 13em;
    height: 7em;
    background-color: white;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.5em;
    z-index: -1;
    pointer-events: none;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.1s linear;
}

#c87216 .item:hover {
    z-index: 2;
}

#c87216 .item:hover .icon::after {
    animation: none;
    display: none;
}

#c87216 .item:hover .tooltip,
#c87216 .tooltip:hover {
    opacity: 1;
}

#c87216 .mit .tooltip {
    left: calc(50% - 6.5em);
    top: 40px; /* bottom for tooltip above hotspot */
}

#c87216 .mit .tooltip::after {
    color: white;
    position: absolute;
    content: "";
    top: -13px; /* bottom for tooltip above hotspot */
    border-bottom: 13px solid; /* border-top for tooltip above hotspot */
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    left: calc(50% - 13px);
}

#c87216 .btz .tooltip {
    left: calc(50% - 6.5em);
    top: 40px; /* bottom for tooltip above hotspot */
}

#c87216 .btz .tooltip::after {
    color: white;
    position: absolute;
    content: "";
    top: -13px; /* bottom for tooltip above hotspot */
    border-bottom: 13px solid; /* border-top for tooltip above hotspot */
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    left: calc(50% - 13px);
}

#c87216 .hasTooltip {
    position: absolute;
}
#c87216 .hasTooltip:after {
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    background-color: green;
    opacity: 0.5;
}
#c87216 .newTooltip {
    display: none;
    position: absolute;
    top: 40px;
    /*height: 45px;*/
    background-color: #fff;
    padding: 10px;
    overflow: hidden;
}
#c87216 .newTooltip a {
  text-decoration: underline;
}
#c87216 .hasTooltip:hover .newTooltip,
.newTooltip:hover {
    display: block;
}
#c87216 .bibliothek.hasTooltip {
  top: 15.9%;
  left: 59.9%;
}
#c87216 .bibliothek.hasTooltip:after {
  width: 38px;
  height: 38px;
}
#c87216 .bibliothek .newTooltip {
    width: 12rem;
    left: calc(-12rem + 40px);
    overflow: hidden;
}