/* Image Hotspot */
.image-hotspot {
    position: relative;
    margin: 30px 0;
}

img {
    max-width: 100%;
    height: auto;
}

.image-hotspot .point {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: green;
    border-radius: 50%;
    height: 25px;
    width: 25px;
}

.image-hotspot .point:before {
    content: '\f055';
    font-family: FontAwesome;
    color: #fff;
}

/* Tooltip Styles */
.tooltip {
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    font-size: 14px;
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.tooltip:before {
    content: '';
    border: 6px solid transparent;
    background: transparent;
    border-top-color: #000;
    bottom: calc(100% + 10px);
    left: 50%;
    position: absolute;
    margin-left: -6px;
    margin-bottom: -12px;
    visibility: hidden;
}
.tooltip .tooltiptext:after {
    width: 100%;
    padding: 10px 0 0;
    bottom: -10px;
    left: 0;
    position: absolute;
}

.tooltip .tooltiptext p:last-of-type {
    margin-bottom: 0;
}

/* Show the tooltip text when you mouse over the tooltip container */
.point:hover .tooltiptext,
.point:hover .tooltip:before {
    visibility: visible;
}

@media only screen and (max-width: 992px) {
    .image-hotspot .point {
        display: none;
    }
}