/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@font-face {
	font-family: 'advanced-popups-icons';
	src: url("../../fonts/advanced-popups-icons.woff") format("woff"), url("../../fonts/advanced-popups-icons.ttf") format("truetype"), url("../../fonts/advanced-popups-icons.svg") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

[class^="adp-icon-"],
[class*=" adp-icon-"] {
	font-family: 'advanced-popups-icons' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.adp-icon-x:before {
	content: "\e913";
}

/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
.adp-popup {
	--adp-popup-wrap-scrollbar-width: 0.625rem;
	--adp-popup-wrap-scrollbar-track-background: #f1f1f1;
	--adp-popup-wrap-scrollbar-thumb-background: #888;
	--adp-popup-wrap-scrollbar-thumb-hover-background: #555;
	--adp-popup-wrap-box-shadow: 0 0 40px 0 rgba(0,0,0,.075);
	--adp-popup-container-background: #FFFFFF;
	--adp-popup-close-font-size: 1.25rem;
	--adp-popup-close-color: #000;
	--adp-popup-close-hover-color: #777;
	--adp-popup-close-light-color: #FFFF;
	--adp-popup-close-light-hover-color: rgba(255,255,255,0.75);
	--adp-popup-type-content-close-font-size: 1.5rem;
	--adp-popup-type-notification-text-font-size: 90%;
	--adp-popup-type-notification-text-color: #777777;
	--adp-popup-type-notification-text-link-color: #000000;
	--adp-popup-type-notification-button-background: #282828;
	--adp-popup-type-notification-button-color: #FFF;
	--adp-popup-type-notification-button-border-radius: 0;
}

.adp-popup-overlay {
	--adp-popup-overlay-background: rgba(0,0,0,0.25);
}

/*--------------------------------------------------------------*/
.adp-popup-scroll-hidden {
	overflow: hidden;
	width: 100%;
}

.adp-popup-animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	overflow: hidden  !important;
}

@-webkit-keyframes popupOpenFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes popupOpenFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-webkit-keyframes popupExitFade {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes popupExitFade {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes popupOpenSlide {
	from {
		transform: translate3d(0, 100vh, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes popupOpenSlide {
	from {
		transform: translate3d(0, 100vh, 0);
		visibility: visible;
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes popupExitSlide {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100vh, 0);
	}
}

@keyframes popupExitSlide {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100vh, 0);
	}
}

@-webkit-keyframes popupOpenZoom {
	from {
		opacity: 0;
		transform: scale(1.1);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes popupOpenZoom {
	from {
		opacity: 0;
		transform: scale(1.1);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@-webkit-keyframes popupExitZoom {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(1.1);
	}
}

@keyframes popupExitZoom {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(1.1);
	}
}

@-webkit-keyframes popupOpenSlideFade {
	from {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
		visibility: visible;
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes popupOpenSlideFade {
	from {
		opacity: 0;
		transform: translate3d(0, 40px, 0);
		visibility: visible;
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes popupExitSlideFade {
	from {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
	to {
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, 40px, 0);
	}
}

@keyframes popupExitSlideFade {
	from {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
	to {
		opacity: 0;
		visibility: hidden;
		transform: translate3d(0, 40px, 0);
	}
}

.popupOpenFade {
	-webkit-animation-name: popupOpenFade;
	animation-name: popupOpenFade;
}

.popupExitFade {
	-webkit-animation-name: popupExitFade;
	animation-name: popupExitFade;
}

.popupOpenSlide {
	-webkit-animation-name: popupOpenSlide;
	animation-name: popupOpenSlide;
}

.popupExitSlide {
	-webkit-animation-name: popupExitSlide;
	animation-name: popupExitSlide;
}

.popupOpenZoom {
	-webkit-animation-name: popupOpenZoom;
	animation-name: popupOpenZoom;
}

.popupExitZoom {
	-webkit-animation-name: popupExitZoom;
	animation-name: popupExitZoom;
}

.popupOpenSlideFade {
	-webkit-animation-name: popupOpenSlideFade;
	animation-name: popupOpenSlideFade;
}

.popupExitSlideFade {
	-webkit-animation-name: popupExitSlideFade;
	animation-name: popupExitSlideFade;
}

.adp-popup {
	display: none;
	position: fixed;
	z-index: 999999;
	max-width: calc(100vw - 1.5rem);
	max-height: calc(100vh - 1.5rem);
	-webkit-backface-visibility: hidden;
}

@media (min-width: 720px) {
	.adp-popup {
		max-width: calc(100vw - 6rem);
		max-height: calc(100vh - 6rem);
	}
}

.adp-popup.adp-popup-location-top {
	top: 20px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
}

.adp-popup.adp-popup-location-top-left {
	top: 20px;
	left: 20px;
}

.adp-popup.adp-popup-location-top-right {
	top: 20px;
	right: 20px;
}

.adp-popup.adp-popup-location-bottom {
	bottom: 20px;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
}

.adp-popup.adp-popup-location-bottom-left {
	left: 20px;
	bottom: 20px;
}

.adp-popup.adp-popup-location-bottom-right {
	right: 20px;
	bottom: 20px;
}

.adp-popup.adp-popup-location-left {
	top: 50%;
	left: 20px;
	transform: translate3d(0, -50%, 0);
}

.adp-popup.adp-popup-location-right {
	top: 50%;
	right: 20px;
	transform: translate3d(0, -50%, 0);
}

.adp-popup.adp-popup-location-center {
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}

.adp-popup .adp-popup-wrap {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	width: 100%;
	box-shadow: var(--adp-popup-wrap-box-shadow);
}

.adp-popup .adp-popup-wrap::-webkit-scrollbar {
	width: var(--adp-popup-wrap-scrollbar-width);
}

.adp-popup .adp-popup-wrap::-webkit-scrollbar-track {
	background: var(--adp-popup-wrap-scrollbar-track-background);
}

.adp-popup .adp-popup-wrap::-webkit-scrollbar-thumb {
	background: var(--adp-popup-wrap-scrollbar-thumb-background);
}

.adp-popup .adp-popup-wrap::-webkit-scrollbar-thumb:hover {
	background: var(--adp-popup-wrap-scrollbar-thumb-hover-background);
}

.adp-popup .adp-popup-container {
	background: var(--adp-popup-container-background);
	width: 100%;
}

.adp-popup .adp-popup-outer {
	position: relative;
	display: flex;
	flex-direction: column;
}

.adp-popup .adp-popup-thumbnail img {
	width: 100%;
}

.adp-popup .adp-popup-close {
	position: absolute;
	background: transparent;
	color: var(--adp-popup-close-color);
	padding: 0;
	line-height: 1;
	font-size: var(--adp-popup-close-font-size);
	top: 20px;
	right: 20px;
	z-index: 2;
}

.adp-popup .adp-popup-close:before {
	font-family: 'advanced-popups-icons';
	transition: color 0.25s ease;
	content: "\e913";
}

.adp-popup .adp-popup-close:hover:before {
	color: var(--adp-popup-close-hover-color);
}

.adp-popup.adp-popup-open[data-light-close="true"] .adp-popup-close {
	color: var(--adp-popup-close-light-color);
}

.adp-popup.adp-popup-open[data-light-close="true"] .adp-popup-close:hover:before {
	color: var(--adp-popup-close-light-hover-color);
}

.adp-popup.adp-popup-open {
	display: flex;
}

@media (max-width: 720px) {
	.adp-popup.adp-popup-open[data-mobile-disable="true"] {
		display: none;
	}
}

.adp-popup-overlay {
	background: var(--adp-popup-overlay-background);
	position: fixed;
	display: none;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999998;
}

.adp-popup-overlay .adp-popup-wrap {
	box-shadow: none;
}

.adp-popup-open + .adp-popup-overlay {
	display: block;
}

@media (max-width: 719.98px) {
	.adp-popup-type-content {
		max-width: 100vw;
		max-height: 100vh;
	}
}

.adp-popup-type-content .adp-popup-content {
	padding: 40px;
}

.adp-popup-type-content .adp-popup-close {
	font-size: var(--adp-popup-type-content-close-font-size);
}

.adp-popup-type-content .wp-block-cover:first-child:last-child {
	margin: -40px;
	width: initial;
}

.adp-popup-type-content.adp-preview-image-yes .adp-popup-close {
	color: var(--adp-popup-close-light-color);
}

.adp-popup-type-content.adp-preview-image-yes .adp-popup-close:hover:before {
	color: var(--adp-popup-close-light-hover-color);
}

@media (min-width: 1024px) {
	.adp-popup-type-content .adp-popup-outer {
		flex-direction: row;
	}
	.adp-popup-type-content.adp-preview-image-left .adp-popup-close, .adp-popup-type-content.adp-preview-image-bottom .adp-popup-close {
		color: var(--adp-popup-close-color);
	}
	.adp-popup-type-content.adp-preview-image-left .adp-popup-close:hover:before, .adp-popup-type-content.adp-preview-image-bottom .adp-popup-close:hover:before {
		color: var(--adp-popup-close-hover-color);
	}
	.adp-popup-type-content.adp-preview-image-left .adp-popup-thumbnail {
		order: 1;
	}
	.adp-popup-type-content.adp-preview-image-right .adp-popup-thumbnail {
		order: 3;
	}
	.adp-popup-type-content.adp-preview-image-top .adp-popup-outer {
		flex-direction: column;
	}
	.adp-popup-type-content.adp-preview-image-top .adp-popup-thumbnail img {
		position: relative;
		top: initial;
		bottom: initial;
		right: initial;
		left: initial;
		width: initial;
		height: initial;
	}
	.adp-popup-type-content.adp-preview-image-bottom .adp-popup-outer {
		flex-direction: column;
	}
	.adp-popup-type-content.adp-preview-image-bottom .adp-popup-thumbnail {
		order: 3;
	}
	.adp-popup-type-content.adp-preview-image-bottom .adp-popup-thumbnail img {
		position: relative;
		top: initial;
		bottom: initial;
		right: initial;
		left: initial;
		width: initial;
		height: initial;
	}
	.adp-popup-type-content .adp-popup-thumbnail {
		position: relative;
		flex: 1 0 50%;
		order: 1;
	}
	.adp-popup-type-content .adp-popup-thumbnail img {
		position: absolute;
		display: block;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.adp-popup-type-content .adp-popup-content {
		padding: 80px;
		flex: 1 0 50%;
		order: 2;
	}
	.adp-popup-type-content .adp-popup-content:first-child:last-child {
		flex: 1 0 100%;
	}
	.adp-popup-type-content .wp-block-cover:first-child:last-child {
		margin: -80px;
	}
}

.adp-popup-type-notification-box .adp-popup-outer,
.adp-popup-type-notification-bar .adp-popup-outer {
	padding: 30px;
}

.adp-popup-type-notification-box .adp-popup-text,
.adp-popup-type-notification-bar .adp-popup-text {
	padding-right: 10px;
	font-size: var(--adp-popup-type-notification-text-font-size);
	color: var(--adp-popup-type-notification-text-color);
}

.adp-popup-type-notification-box .adp-popup-text a,
.adp-popup-type-notification-bar .adp-popup-text a {
	color: var(--adp-popup-type-notification-text-link-color);
	text-decoration: underline;
}

.adp-popup-type-notification-box .adp-popup-text a:hover,
.adp-popup-type-notification-bar .adp-popup-text a:hover {
	text-decoration: none;
}

.adp-popup-type-notification-box .adp-popup-button,
.adp-popup-type-notification-bar .adp-popup-button {
	background: var(--adp-popup-type-notification-button-background);
	margin-top: 1.5rem;
	width: 100%;
	color: var(--adp-popup-type-notification-button-color);
	border-radius: var(--adp-popup-type-notification-button-border-radius);
}

.adp-popup-type-notification-box .adp-popup-close {
	top: 15px;
	right: 15px;
}

.adp-popup-type-notification-bar.adp-popup-location-top {
	width: 100%;
	max-width: 100%;
	top: 0;
	left: 0;
	bottom: auto;
	transform: none;
}

.adp-popup-type-notification-bar.adp-popup-location-bottom {
	width: 100%;
	max-width: 100%;
	top: auto;
	left: 0;
	bottom: 0;
	transform: none;
}

.adp-popup-type-notification-bar .adp-popup-outer {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 60px;
	padding-right: 60px;
}

@media (min-width: 720px) {
	.adp-popup-type-notification-bar .adp-popup-outer {
		justify-content: center;
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		margin: 0 auto;
		padding-left: 40px;
		padding-right: 40px;
	}
	.adp-popup-type-notification-bar .adp-popup-close {
		top: 50%;
		transform: translateY(-50%);
	}
	.adp-popup-type-notification-bar .adp-button {
		margin-left: 1rem;
		margin-top: 0;
		width: auto;
	}
}
#powerTip{cursor:default;background-color:#333;background-color:rgba(0,0,0,.8);border-radius:6px;color:#fff;display:none;padding:10px;position:absolute;white-space:nowrap;z-index:2147483647}#powerTip:before{content:"";position:absolute}#powerTip.n:before,#powerTip.s:before{border-right:5px solid transparent;border-left:5px solid transparent;left:50%;margin-left:-5px}#powerTip.e:before,#powerTip.w:before{border-bottom:5px solid transparent;border-top:5px solid transparent;margin-top:-5px;top:50%}#powerTip.n:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.e:before{border-right:10px solid #333;border-right:10px solid rgba(0,0,0,.8);left:-10px}#powerTip.s:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.w:before{border-left:10px solid #333;border-left:10px solid rgba(0,0,0,.8);right:-10px}#powerTip.ne:before,#powerTip.se:before{border-right:10px solid transparent;border-left:0;left:10px}#powerTip.nw:before,#powerTip.sw:before{border-left:10px solid transparent;border-right:0;right:10px}#powerTip.ne:before,#powerTip.nw:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.se:before,#powerTip.sw:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.ne-alt:before,#powerTip.nw-alt:before,#powerTip.se-alt:before,#powerTip.sw-alt:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;left:10px}#powerTip.ne-alt:before,#powerTip.se-alt:before{left:auto;right:10px}#powerTip.se-alt:before,#powerTip.sw-alt:before{border-top:none;border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);bottom:auto;top:-10px}body{
    position: inherit !important;
}
@-moz-keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255,255,255,0);
        border: 1px solid rgba(255,255,255,0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255,255,255,0);
        border: 0 solid rgba(255,255,255,0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}
@-webkit-keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255,255,255,0);
        border: 1px solid rgba(255,255,255,0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255,255,255,0);
        border: 0 solid rgba(255,255,255,0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

@keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255,255,255,0);
        border: 1px solid rgba(255,255,255,0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255,255,255,0);
        border: 0 solid rgba(255,255,255,0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}
#powerTip {
    background-color: #000;
}
#powerTip.n:before {
    border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.s:before {
    border-bottom: 10px solid #000;
}
#powerTip.e:before {
    border-right: 10px solid #000;
}
#powerTip.w:before {
    border-left: 10px solid #000;
    right: -10px
}
#powerTip.ne:before,#powerTip.nw:before {
    border-top: 10px solid #000;
    border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.se:before,#powerTip.sw:before {
    border-bottom: 10px solid #000;
    border-bottom: 10px solid rgba(0,0,0,1);
}
#powerTip.nw-alt:before,#powerTip.ne-alt:before,#powerTip.sw-alt:before,#powerTip.se-alt:before {
    border-top: 10px solid #000;
    border-top: 10px solid rgba(0,0,0,1);
}
#powerTip.sw-alt:before,#powerTip.se-alt:before {
    border-bottom: 10px solid #000;
    border-bottom: 10px solid rgba(0,0,0,1);
}
.wrap_svl {
    position: relative;
    float: left;
    margin: 0 auto;    
    max-width: 100%;
}
.wrap_svl:after{
	content: "";
	display: table;
	clear: both;
}
.images_wrap img {
    width: 100%;
    height: auto;
    display: block;
}
.drag_element {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 1px;
    min-height: 1px;
}
.point_style{
	position: relative;
    z-index: 10;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    box-sizing: border-box;
    text-align: center;
}
.point_style img{
	position: absolute;
	top: 0;
	left: 0;
	width: inherit;
    max-width: inherit;
}
body .wrap_svl img.pins_image_hover,
body .wrap_svl .point_style.has-hover:hover img.pins_image {
    display: none !important;
}
body .wrap_svl .point_style.has-hover:hover img.pins_image_hover {
    display: block !important;
}
.tolltip_points{
	text-align: center;
}
.tolltip_points img{
	width: 130px;
	height: 130px;
	border: 1px solid #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}
.tolltip_points .points_name{
	display: block;
	font-size: 16px;
}
.tolltip_points .points_desc{
	display: block;
	font-size: 14px;
}
.mobile_points_wrap{
	display: none;
}
.mobile_points_box {
    width: 50%;
    float: left;
    padding: 0 5px 15px 5px;
    text-align: center;
}
.img_points_box {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #fff;
}
.img_points_box img {
    width: 100%;
    height: 100%;
}
.mobile_points_box:nth-child(2n+1) {
    clear: both;
}
ul.list_content_point {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}
ul.list_content_point li {
    position: relative;
    padding: 3px 0 0 20px;
    margin: 0 0 5px 0;
}
ul.list_content_point li:before {
    content: "";
    font-family: FontAwesome;  
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;  
}
ul.list_content_point li.address_point:before {
    content: "\f041";    
}
ul.list_content_point li.person_point:before {
    content: "\f183";    
}
ul.list_content_point li.tel_point:before {
    content: "\f095";    
}
ul.list_content_point li.fax_point:before {
    content: "\f1ac";    
    font-size: 15px;
    top: 4px;
}
ul.list_content_point li.mail_point:before {
    content: "\f0e0";    
    font-size: 15px;
    top: 4px;
}
.box_view_html {
    color: #fff;
    font-weight: 300;
    max-width: 530px;
    white-space: normal;
    overflow: hidden;
    position: relative;
}
.thumb_point {
    float: left;
    width: 30%;
}
.has-thumb .content_point {
    width: 70%;
    float: left;
    padding: 0 0 0 15px;
}
.has-thumb .content_point h3 {
    font-size: 19px;
}
.linkto_point {
    text-align: right;
    margin: 20px 0 0 0;
}
.wrap_svl_center {
    text-align: center;
}
.wrap_svl_center_box {
    display: inline-block;
}
body .point_style a img,
body .point_style img {
    max-width: inherit !important;
    vertical-align: inherit;
    border-radius: 0 !important;;
    -moz-border-radius: 0 !important;;
    -webkit-border-radius: 0 !important;;
    box-shadow: none !important;;
    -moz-box-shadow: none !important;;
    -webkit-box-shadow: none !important;;
}
.pins_animation{
	border: 3px solid rgba(255,255,255,.5);
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,.5);
    pointer-events: none;
}
.pins_animation.ihotspot_pulse{
    -moz-animation: Ani 2s infinite;
    -webkit-animation: Ani 2s infinite;
    animation: Ani 2s infinite;
}
span.close_ihp {
    display: none;
}
body .point_style a:hover img {
    background: transparent !important;
}
span.close_ihp svg {
    width: 25px;
    height: 25px;
}

@media (max-width: 500px){
    .ihp_popup_full div#powerTip {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .ihp_popup_full span.close_ihp {
        display: block;
        float: right;
        width: 25px;
        height: 25px;
    }
    .ihp_popup_full span.close_ihp svg {
        fill: #fff;
    }
}