/* Image Hotspots*/

.sa-el-image-hotspots {
    position: relative;
}

.sa-el-hot-spot-wrap {
    cursor: pointer;
    position: absolute;
    width: 14px;
    height: 14px;
    background: #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    font-size: 14px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 15px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 4;
}

.sa-el-hot-spot-image {
    position: relative;
}

.sa-el-hotspot-text {
    z-index: 10;
}

.sa-el-hot-spot-inner {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.sa-el-hot-spot-inner.hotspot-animation:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    left: 0;
    top: 0;
}

.sa-el-hot-spot-inner.hotspot-animation:hover:before {
    -webkit-animation: none;
    animation: none;
}

.sa-el-hot-spot-inner,
.sa-el-hot-spot-inner:before {
    background-color: #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    height: 100%;
    position: absolute;
    width: 100%;
}

.sa-el-hotspot-icon {
    position: relative;
}

.sa-el-hotspot-icon.tooltip {
    opacity: 1;
}

.sa-el-hotspot-icon-wrap {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.sa-el-single-tooltip p {
    margin: 0;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.8);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-box-shadow: inset 0 0 1px 1px transparent;
        box-shadow: inset 0 0 1px 1px transparent;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.8);
        box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.8);
    }
    100% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        -webkit-box-shadow: inset 0 0 1px 1px transparent;
        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;
    box-sizing: border-box;
}

.tipso_bubble {
    position: absolute;
    text-align: center;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    z-index: 9999;
}

.tipso_style {
    cursor: help;
    border-bottom: 1px dotted;
}

.tipso_title {
    -webkit-border-radius: 6px 6px 0 0;
    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 {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
    -webkit-border-top-left-radius: 0;
    border-top-left-radius: 0;
}

.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
    -webkit-border-top-right-radius: 0;
    border-top-right-radius: 0;
}