/**
 * image hotspot
 */
.wfe-image-hotspots {
    position: relative;
}

.wfe-hot-spot-wrap {
    cursor: pointer;
    position: absolute;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 50%;
    font-size: 14px;
    display: inline-flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
}

.wfe-hot-spot-image {
    position: relative;
}

.wfe-hotspot-text {
    z-index: 5;
}

.wfe-hot-spot-inner {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: inherit ;
}

.wfe-hot-spot-inner.hotspot-animation:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    animation: pulse 2s infinite;
    left: 0;
    top: 0;
}

.wfe-hot-spot-inner.hotspot-animation:hover:before {
    animation: none;
}

/* Glow Effects */

/*------------------------------------------------*\
  sq
\*------------------------------------------------*/
@-webkit-keyframes sq {
    from {
        box-shadow: 0 0 0 0 white, 0 0 0 0 white;
    }
    to {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 12px rgba(255, 255, 255, 0);
    }
}
@keyframes sq {
    from {
        box-shadow: 0 0 0 0 white, 0 0 0 0 white;
    }
    to {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

.wfe-hot-spot-inner.sq:before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-animation: sq 4000ms infinite;
    animation: sq 4000ms infinite;
}


/*------------------------------------------------*\
  Morph
\*------------------------------------------------*/
@-webkit-keyframes morph {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
        border-radius: 20%;
    }
    50% {
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        border-radius: 50%;
    }
    100% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
        border-radius: 20%;
    }
}
@keyframes morph {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
        border-radius: 20%;
    }
    50% {
        -webkit-transform: rotateZ(45deg);
        transform: rotateZ(45deg);
        border-radius: 50%;
    }
    100% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg);
        border-radius: 20%;
    }
}
.wfe-hot-spot-inner.morph {
    /*width: 36px;*/
    /*height: 36px;*/
    /*position: relative;*/
    /*box-shadow: 0 0 6px 4px rgba(247, 45, 65, 0.4);*/
    -webkit-animation: morph 1s linear infinite;
    animation: morph 1s linear infinite;
}
.wfe-hot-spot-inner.morph, .wfe-hot-spot-inner.morph:before {
    /*background-color: rgba(247, 45, 65, 0.6);*/
}
.wfe-hot-spot-inner.morph:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /*width: 18px;*/
    /*height: 18px;*/
    border-radius: 50%;
    content: "";
    display: block;
}


/*------------------------------------------------*\
  Sonar
\*------------------------------------------------*/
@-webkit-keyframes sonar {
    from {
        box-shadow: 0 0 0 0 #000, 0 0 4px 2px rgba(0, 0, 0, 0.4);
    }
    to {
        box-shadow: 0 0 0 10px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
    }
}
@keyframes sonar {
    from {
        box-shadow: 0 0 0 0 #000, 0 0 4px 2px rgba(0, 0, 0, 0.4);
    }
    to {
        box-shadow: 0 0 0 10px rgba(255, 147, 223, 0), 0 0 4px 2px rgba(0, 0, 0, 0.4);
    }
}
.wfe-hot-spot-inner.sonar {
   /*width: 20px;*/
    /*height: 20px;*/
    border-radius: 50%;
    /*background-color: #000;*/
    /*border: 2px solid #ff60d0;*/
    -webkit-animation: sonar 5000ms ease-out infinite;
    animation: sonar 4000ms ease-out infinite;
}


/*------------------------------------------------*\
  Slack
\*------------------------------------------------*/
@-webkit-keyframes slack {
    from {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
    }
}
@keyframes slack {
    from {
        -webkit-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        -webkit-transform: translate(-50%, -50%) scale(1.5);
        transform: translate(-50%, -50%) scale(1.5);
    }
}
.wfe-hot-spot-inner.slack {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: relative;
    /*background-color: #fff;*/
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.2);
}
.wfe-hot-spot-inner.slack:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    content: "";
    display: block;
    /*border: 4px solid #fff;*/
    box-shadow: inset 0 0 4px 2px rgba(0, 0, 0, 0.2), 0 0 4px 2px rgba(0, 0, 0, 0.2);
    -webkit-animation: slack 2000ms linear infinite;
    animation: slack 2000ms linear infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

/* Glow Effects */

.wfe-hot-spot-inner,
.wfe-hot-spot-inner:before {
    /*background-color: #000;*/
    border-radius: 50%;
    color: #fff;
    height: 100%;
    /*position: absolute;*/
    width: 100%;
}

.wfe-hotspot-icon {
    position: relative;
	/*opacity: 1!important;*/
}

.wfe-hotspot-icon-wrap {
    display: inline-flex;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.8);
    }
    100% {
        transform: scale(1.5);
        box-shadow: inset 0 0 1px 1px transparent;
    }
}

.tipso_content p:last-child {
    margin-bottom: 0;
}

/* Tipso Bubble Styles */
.tipso_bubble, .tipso_bubble > .tipso_arrow {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.tipso_bubble {
    position: absolute;
    text-align: center;
    border-radius: 6px;
    z-index: 9999;
}

.tipso_style {
    cursor: help;
    border-bottom: 1px dotted;
}

.tipso_title {
    border-radius: 6px 6px 0 0;
}

.tipso_content {
    word-wrap: break-word;
    padding: 0.5em;
}

/* Tipso Bubble size classes - Similar to Foundation's syntax*/
.tipso_bubble.tiny {
    font-size: 0.6rem;
}

.tipso_bubble.small {
    font-size: 0.8rem;
}

.tipso_bubble.default {
    font-size: 1rem;
}

.tipso_bubble.large {
    font-size: 1.2rem;
    width: 100%;
}

/* Tipso Bubble Div */
.tipso_bubble > .tipso_arrow {
    position: absolute;
    width: 0;
    height: 0;
    border: 8px solid;
    pointer-events: none;
}

.tipso_bubble.top > .tipso_arrow {
    border-top-color: #000;
    border-right-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    top: 100%;
    left: 50%;
    margin-left: -8px;
}

.tipso_bubble.bottom > .tipso_arrow {
    border-bottom-color: #000;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
}

.tipso_bubble.left > .tipso_arrow {
    border-left-color: #000;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
    top: 50%;
    left: 100%;
    margin-top: -8px;
}

.tipso_bubble.right > .tipso_arrow {
    border-right-color: #000;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    top: 50%;
    right: 100%;
    margin-top: -8px;
}

.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
    border-bottom-left-radius: 0;
}

.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
    border-top-left-radius: 0;
}

.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
    border-bottom-right-radius: 0;
}

.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
    border-top-right-radius: 0;
}