.elegant-image-hotspot-wrapper {
    position: relative;
    display: inline-block;
}

.eleganthotspot_child, .eleganthotspot_child .et_pb_module_inner {
    position: unset !important;
}

.eleganthotspot_child, .eleganthotspot_child .elegant-image-hotspot-main-spot {
    line-height: 1em !important;
}

.eleganthotspot_icon {
    font-family: ETmodules;
    margin: 0.4em;
}

.eleganthotspot_child {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.elegant-image-hotspot-main-spot {
    position: absolute;
    top: 0;
    left: 0;
}

.eleganthotspot_title {
    padding: 0.3em 0.4em 0.4em;
}

.elegant-image-hotspot-opacity {

    opacity: 0;
}



/* PULSE EFFECT */

.eleganthotspot-pulse-effect {
	box-shadow: 0 0 0 0 rgb(255, 255, 255);
	transform: scale(1);
	animation: eleganthotspot-pulse-effect 2s infinite;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@keyframes eleganthotspot-pulse-effect {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}