.afeb-hotspot-wrapper {
    display: inline-block;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.afeb-hotspot-image {
    display: inline-block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%
}

.afeb-hotspot-image>img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    width: 100%
}

.afeb-hotspot-item {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    height: 40px;
    left: 50px;
    top: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    transition: background-color .2s, box-shadow .2s, -webkit-box-shadow .2s;
    -webkit-transition: background-color .2s, box-shadow .2s;
    -o-transition: background-color .2s, box-shadow .2s;
    width: 40px;
    --afeb-hotspot-tooltip-top: 0;
    --afeb-hotspot-tooltip-right: 0;
    --afeb-hotspot-tooltip-bottom: 0;
    --afeb-hotspot-tooltip-left: 0;
    --afeb-hotspot-tooltip-transform-x: 0;
    --afeb-hotspot-tooltip-transform-y: 0;
    --afeb-hotspot-tooltip-margin: 0
}

.afeb-hotspot-item-wrap {
    align-items: center;
    border-radius: inherit;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    height: 100%;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    position: relative
}

.afeb-hotspot-tooltip-text {
    background-color: #000;
    bottom: var(--afeb-hotspot-tooltip-bottom);
    border-radius: 4px;
    color: #fff;
    opacity: 0;
    padding: 10px;
    top: var(--afeb-hotspot-tooltip-top);
    text-align: center;
    right: var(--afeb-hotspot-tooltip-right);
    left: var(--afeb-hotspot-tooltip-left);
    margin: var(--afeb-hotspot-tooltip-margin);
    position: absolute;
    transform: translate(var(--afeb-hotspot-tooltip-transform-x), var(--afeb-hotspot-tooltip-transform-y));
    -ms-transform: translate(var(--afeb-hotspot-tooltip-transform-x), var(--afeb-hotspot-tooltip-transform-y));
    -webkit-transform: translate(var(--afeb-hotspot-tooltip-transform-x), var(--afeb-hotspot-tooltip-transform-y));
    transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    visibility: hidden;
    width: 150px;
    z-index: 1
}

.afeb-hotspot-tooltip-text>* {
    transition: none;
    -o-transition: none;
    -webkit-transition: none
}

.afeb-hotspot-tooltip-text.afeb-active,
.afeb-hotspot-type-hover:hover .afeb-hotspot-tooltip-text {
    opacity: 1;
    visibility: visible
}

.afeb-hotspot-tooltip-text.active {
    opacity: 1;
    transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    visibility: visible
}

.afeb-hotspot-tooltip-text:before {
    background-color: #000;
    bottom: var(--afeb-hotspot-tooltip-before-bottom);
    content: "";
    height: 10px;
    position: absolute;
    top: var(--afeb-hotspot-tooltip-before-top);
    left: var(--afeb-hotspot-tooltip-before-left);
    right: var(--afeb-hotspot-tooltip-before-right);
    transform: translate(var(--afeb-hotspot-tooltip-before-transform-x), var(--afeb-hotspot-tooltip-before-transform-y)) rotate(45deg);
    --afeb-hotspot-tooltip-before-top: 0;
    --afeb-hotspot-tooltip-before-right: 0;
    --afeb-hotspot-tooltip-before-bottom: 0;
    --afeb-hotspot-tooltip-before-left: 0;
    --afeb-hotspot-tooltip-before-transform-x: 0;
    --afeb-hotspot-tooltip-before-transform-y: 0;
    -ms-transform: translate(var(--afeb-hotspot-tooltip-before-transform-x), var(--afeb-hotspot-tooltip-before-transform-y)) rotate(45deg);
    -webkit-transform: translate(var(--afeb-hotspot-tooltip-before-transform-x), var(--afeb-hotspot-tooltip-before-transform-y)) rotate(45deg);
    width: 10px
}

.afeb-hotspot-item-wrap>img {
    border-radius: 50%;
    display: block;
    height: 100%;
    max-width: 100%;
    width: 100%;
    z-index: 2
}

.afeb-hotspot-item-wrap>svg {
    fill: #000;
    vertical-align: middle;
    width: 22px
}

.afeb-hotspot-item-wrap:after {
    animation: 2s infinite afebShadowPulse;
    -webkit-animation: 2s infinite afebShadowPulse;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

@-webkit-keyframes afebShadowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .1)
    }

    to {
        box-shadow: 0 0 0 30px transparent;
        -webkit-box-shadow: 0 0 0 30px transparent
    }
}

@keyframes afebShadowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .1);
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .1)
    }

    to {
        box-shadow: 0 0 0 30px transparent;
        -webkit-box-shadow: 0 0 0 30px transparent
    }
}