iframe#hapiiframe {
/* 	max-width: 700px; */
	margin: 0 auto;
	display: block;
	min-height: 300px;
}

.hapi-lightbox {
	height: 0px;
	width: 0px;
	position: fixed;
	top: 50%;
	left: 50%;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: .5s ease all;
	z-index: 800;
}

.hapi-lightbox[data-state="open"] {
	opacity: 1;
	pointer-events: all;	
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.75);
}

.hapi-lightbox .hapi-lightbox-picture {
	width: 95%;
	height: 90%;
	margin-top: 2.5%;
	margin-left: 2.5%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;

}

.hapi-lightbox .hapi-lightbox-close {
	position: absolute;
	color: white;
	line-height: 36px;
	height: 40px;
	width: 40px;
	background: black;
	cursor: pointer;
	text-align: center;
	font-size: 40px;
	right: 20px;
	top: 20px;
	z-index: 20;
}

.hapi-lightbox .hapi-lightbox-next,
.hapi-lightbox .hapi-lightbox-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	cursor: pointer;
}
.hapi-lightbox .hapi-lightbox-prev {
	left: 0px;
	right: auto;	
}

.hapi-lightbox .hapi-lightbox-next:before,
.hapi-lightbox .hapi-lightbox-prev:before {
	content: '>';
	display: block;
	background: black;
	width: 50px;
	line-height: 50px;
	height: 50px;
	cursor: pointer;
	color: white;
	text-align: center;
	font-size: 40px;	
}
.hapi-lightbox .hapi-lightbox-prev:before {
	content: '<';	
}

