.kata-hotspot {
    position: relative;
}

.kata-hotspot-icon {
    position: absolute;
}

.kata-hotspot-icon .kata-icon {
    border-radius: 50%;
    background: #5d5d5d;
    font-size: 30px;
    fill: #ffffff;
    padding: 10px;
    cursor: pointer;
    display: block;
}

.kata-hotspot .kata-hotspot-icon.cc {
    top: 50%;
    left: calc( 50% );     
}

.kata-hotspot .kata-hotspot-icon.tr {
    top: 20%;
    right: 20%;    
}

.kata-hotspot .kata-hotspot-icon.tl {
    top: 20%;
    left: 20%;
}

.kata-hotspot .kata-hotspot-icon.bc {
    left: calc( 50% );
    bottom: 20%;
}

.kata-hotspot .kata-hotspot-icon.rc {
    top: 50%;
    right: 20%;
}

.kata-hotspot .kata-hotspot-icon.bl {
    bottom: 20%;
    left: 20%;
}

.kata-hotspot .kata-hotspot-icon.tc {
    left: calc( 50% );
    top: 20%;
}

.kata-hotspot .kata-hotspot-icon.br {
    right: 20%;
    bottom: 20%;
}

.kata-hotspot .kata-hotspot-icon.lc {
    left: 20%;
    top: 50%;
}

span.description-tooltip {
    position: absolute;
    top: -35px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 6px 8px;
    background-color: #fff;
    border: 1px solid #d0d2da;
    border-radius: 3px;
    color: #717a82;        
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.3px;
    z-index: 9999;
    box-shadow: 0 2px 11px rgba(43, 51, 60, 0.2);
    visibility: hidden;
}

span.description-tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    z-index: 9999;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    bottom: -10px;
    visibility: hidden;
}

.kata-hotspot-icon:hover .description-tooltip, .kata-hotspot-icon:hover .description-tooltip:after  {
    visibility: visible;
}