/*Hotspot Style Sectio*/
.wttd-hotspot-section {
    position: relative;
}

.wttd-hotspot-section img:first-child {
    width: 100%;
}

.wttd-hotspot-section .wttd-hotspot-icon,
.wttd-hotspot-section .wttd-hotspot-image {
    position: absolute;
    left: 0%;
    top: 0%;
}

.wttd-hotspot-image img {
    width: 20px;
}

.wttd-each-spot-content,
.wttd-each-spot-content.center-center {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility .8s ease-in-out, opacity .9s ease-in-out;
    -o-transition: visibility .8s ease-in-out, opacity .9s ease-in-out;
    transition: visibility .8s ease-in-out, opacity .9s ease-in-out;
    position: absolute;
    padding: 10px;
    width: 500px;
    background: #f1f0e4;
    z-index: 1;
}

.wttd-each-spot-content.bottom-left {
    top: 110%;
    right: 110%;
}
.wttd-each-spot-content.bottom-middle {
    top: 110%;
}
.wttd-each-spot-content.bottom-right {
    top: 110%;
    left: 110%;
}
.wttd-each-spot-content.top-left {
    bottom: 110%;
    right: 110%;
}
.wttd-each-spot-content.top-middle {
    bottom: 110%;
}
.wttd-each-spot-content.top-right {
    bottom: 110%;
    left: 110%;
}
.wttd-each-spot-content.left-middle {
    right: 110%;
}
.wttd-each-spot-content.right-middle {
    left: 110%;
}

.wttd-hotspot-section .wttd-hotspot-icon .wttd-each-spot-content:hover,
.wttd-hotspot-section .wttd-hotspot-item a.active .wttd-each-spot-content {
    visibility: visible;
    opacity: 1;
}

.wttd-hotspot-section .wttd-hotspot-icon a,
.wttd-hotspot-section .wttd-hotspot-image a {
    padding: 15px;
    background: #333;
    border-radius: 50%;
    height: 25px;
    width: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.wttd-hotspot-section .wttd-hotspot-image a {
    padding: unset;
    background: transparent;
}
.wttd-hotspot-section .wttd-hotspot-image a img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wttd-hotspot-section a i {
    font-size: 12px;
    color: #fff;
}

.wttd-hotspot-section a > img,
.wttd-hotspot-section a > i,
.wttd-hotspot-section a > .wttd-each-spot-content{
    z-index: 2;
}

.wttd-hotspot-section .wttd-hotspot-icon a .pulse,
.wttd-hotspot-section .wttd-hotspot-image a .pulse {
    content: '';
    width: 100%;
    height: 100%;
    border: 5px solid #333;
    border-radius: 50%;
    position: absolute;
    -webkit-animation: pulsate infinite 2s;
    animation: pulsate infinite 2s;
    z-index: 1;
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1.4);
        opacity: 0;
    }
}

.wttd-hotspot-section .wttd-each-spot-content.wttd-align-left {
    text-align: left;
}
.wttd-hotspot-section .wttd-each-spot-content.wttd-align-center {
    text-align: center;
}
.wttd-hotspot-section .wttd-each-spot-content.wttd-align-right {
    text-align: right;
}