@charset "UTF-8";

.zp_hotspot_element {
    width: 40px;
    height: 40px
}
.zp_hotspot_element>.pin {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
	color: #000000;
	transition: transform 0.2s ease-out;
	-webkit-transition: transform 0.2s ease-out;
	-o-transition: transform 0.2s ease-out;
	-ms-transition: transform 0.2s ease-out;
	-moz-transition: transform 0.2s ease-out;
}
.zp_hotspot_element>.pin:hover {
	z-index: 100;
}

.zp_hotspot_element>.pin::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    content: '';
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    -webkit-transition: scale .3s ease-out;
    -o-transition: scale .3s ease-out;
    transition: scale .3s ease-out;
    -webkit-animation: zp_hotspot_animation 2s infinite;
    -o-animation: zp_hotspot_animation 2s infinite;
    animation: zp_hotspot_animation 2s infinite
}

.zp_hotspot.standard.white .zp_hotspot_element>.pin::before {
	background: rgba(255, 255, 255, 0.9);
}

.zp_hotspot_element>.pin::after {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    content: '\f101';
    left: 50%;
    top: 50%;
	text-align: center;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    background: #fff;
    font-family: "Flaticon";
    text-align: center;
    font-size: .7em;
    line-height: 1.9em;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
border: 1px solid #000000;
}
.zp_hotspot_element.open>.pin::before {
    -webkit-animation: none;
    -o-animation: none;
    animation: none;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}
.zp_hotspot_element.open>.pin::after {
    content: '\f10e'
}

.zp_hotspot_element > .pin.link:after {
	content: '\f100';
}

.zp_hotspot.flags .zp_hotspot_element >.pin::after {
	content: '';
	width: 40px;
	height: 40px;
	left: 39px;
	top: 4px;
	background: url(../../img/flag-normal.png);
	background-size: contain !important;
	background-repeat: no-repeat !important;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-o-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
}

.zp_hotspot.flags .zp_hotspot_element.inactive >.pin::after {
	background: url(../../img/flag-inactive.png);
}

.zp_hotspot.flags .zp_hotspot_element >.pin::before {
	background: #ffffff !important;
}

#powerTip[data-source="hotspot"]>.inner {
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    padding: 0.5em 1em;
    -webkit-box-shadow: 10px 10px 36px 0 rgba(0, 0, 0, 0.22);
    box-shadow: 10px 10px 36px 0 rgba(0, 0, 0, 0.22);
}

.zp_hotspot_element>.pin:hover {
	 transform: scale(1.2);	
	 -webkit-transform: scale(1.2);	
	 -o-transform: scale(1.2);	
	 -mz-transform: scale(1.2);	
	 -ms-transform: scale(1.2);	
}

#powerTip[data-source='hotspot'] .zp_element {
	padding: 0em !important;
	line-height: 0em !important;
}

@-webkit-keyframes zp_hotspot_animation {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0
    }
    80% {
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0
    }
}
@-o-keyframes zp_hotspot_animation {
    0% {
        -o-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0
    }
    80% {
        opacity: 1
    }
    100% {
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0
    }
}
@keyframes zp_hotspot_animation {
    0% {
        -webkit-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0
    }
    80% {
        opacity: 1
    }
    100% {
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0
    }
}
