body.global-modal-open {
	padding-right: 17px;
	overflow: hidden;
}
.acqua-global-popup .global-popup-overlay {
	display: none;
	position: fixed;
	z-index: 1050;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,.5);
}
.acqua-global-popup .global-modal {
	display: none;
	position: fixed;
	z-index: 1060;	
	top: 0;
	left: 0;	
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	pointer-events: none;
}
.acqua-global-popup .global-modal-dialog {
	position: relative;
	width: auto;
	max-width: 720px;
	margin: 15px auto;
	padding: 0 15px;
	pointer-events: none;
	display: flex;
	align-items: center;
	height: calc(100% - 30px);
	min-height: calc(100% - 30px);
}
/*.acqua-global-popup .global-modal.demo {
	width: 720px;
}*/
.acqua-global-popup .global-modal-mask {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.35);
}
.acqua-global-popup .global-modal-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-height: 100%;
	padding-top: 40px;
	color: #000;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	pointer-events: auto;
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,.75);
	   -moz-box-shadow: 0 2px 10px rgba(0,0,0,.75);
			box-shadow: 0 2px 10px rgba(0,0,0,.75);
	outline: 0;
	overflow: hidden;
}
.acqua-global-popup .global-modal-header {
	position: relative;
	z-index: 2;
	padding: 15px;
}
.acqua-global-popup .global-modal-title {
	font-weight: 600;
	font-size: 26px;
}
.acqua-global-popup .global-close-modal {
	position: absolute;
	z-index: 10;
	top: 10px;
	right: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	font-weight: 600;
	font-size: 28px;
	color: #fff;
	line-height: 1;
	background-color: rgba(0,0,0,.35);
	border-radius: 4px;
	transition: all .25s ease;
	opacity: 1;
	cursor: pointer;
}
.acqua-global-popup .global-close-modal em {
	font-style: normal;
}
.acqua-global-popup .global-close-modal:hover {
	background-color: #cc0000;
}
.acqua-global-popup .global-close-modal:focus {
	opacity: .85;
}
.acqua-global-popup .global-modal-body {
	position: relative;
	z-index: 2;
	/*flex: 1 1 auto;*/
	padding: 16px;
	font-size: 16px;
	overflow-y: auto;
}
.acqua-global-popup .global-modal-footer {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	padding: 15px 15px 30px 15px;
}
.acqua-global-popup .global-popup-button {
	padding: 10px 16px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
	line-height: 1.4;
	border-radius: 4px;
}
.acqua-global-popup .demo,
.acqua-global-popup .show-text-shadow .global-modal-title,
.acqua-global-popup .show-text-shadow .global-modal-body {
	text-shadow: 0 1px 3px rgba(0,0,0,.75);
}
.acqua-global-popup .demo .global-modal-content {
	background-image: url('/assets/img/wallpaper/wallpaper-exotic-beach.jpg');
}

@media screen and (max-width: 575px){
	.acqua-global-popup .global-modal-dialog {
		margin: 15px;
		padding: 0;
	}
}