#dialog{
	width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.ui-dialog{
	width: 60% !important;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
	outline: none !important;
	cursor: pointer;
}
.ui-dialog-titlebar{
	display: none;
}
#dialog img{
	width: 600px;
}
#dialog .top{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}
#dialog .closeDialog{
	color: #fff;
	background-color: transparent;
	border: none;
}
#dialog .closeDialog img{
	width: 30px;
    position: absolute;
    top: 10px;
    right: -40px;
    cursor: pointer;
}
#dialog p{
	padding-left: 20%;
	    width: 63%;
}

body{
	margin: 0;
	padding: 0;
}
.container{
	background: black;

}
.background_image{
	background: url('../images/spiaggia.jpg') top center no-repeat fixed;
	width: 100vw;
	height: 100vh;
	background-size: cover;

	
}
.header_img{
	width: 300px;
	position: absolute;
	top: 5%;
	left: 5%;
	transform: translate(-5%, -5%);
}
.buttons{
	position: absolute;
	top: 22%;
	left: 50%;
	transform: translate(-50%, -22%);
	padding: 0;
}
.btn{
	transition: all 0.5s;
	display: block;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	background-image: linear-gradient( to top, #286ffc, #7993fc );
	border: none;
	outline: none;
	margin: 5px;
	padding: 11px 10px;
	line-height: 16px;
	font-size: 13px;
	text-decoration: none;
	font-weight: 700;
	text-transform: uppercase;
	color: white;
	float: left;
	border-radius: 4px;
	-webkit-filter: drop-shadow(5px 5px 5px #222);
		filter: drop-shadow(0px 1px 1px #222);
	min-width: 150px;
	text-align: center;
	width: 200px;
	height: 70px;
}
.btn:hover{
	background-image: -webkit-gradient( linear, left bottom, left top, from( #ffffff ), to( #b0bffc ) );
	color: #286ffc;
}
.btn:active{
	
}
.btn-is-active{
	background-image: -webkit-gradient( linear, left bottom, left top, from( #ffffff ), to( #b0bffc ) );
	color: #286ffc;
}
iframe{
	display: none;
	position: absolute;
	left: 50%;
	top: 90%;
	transform: translate(-50%, -90%);
	width: 80%;
	height:450px;
	border: none;
	background: transparent !important;
	-webkit-filter: drop-shadow(5px 5px 5px #222);
		filter: drop-shadow(0px 1px 1px #222);
		-webkit-animation-name: ianimatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: ianimatetop;
	animation-duration: 0.4s
}

@-webkit-keyframes ianimatetop {
	from {top: -90%; opacity: 0} 
	to {top: 90%; opacity: 1}
}

.show-frame{
 display: block;
}

.btn img{
 width: auto;
 height: 40px;
}
.disable{
 pointer-events: none;
	cursor: not-allowed;
}

.cross{
display: none;
z-index: 999;
font-size: 40px;
position: absolute;
left: 87%;
margin-top: -350px;
transition: all 0.5s;
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
background-image: linear-gradient( to top, #286ffc, #7993fc );
border: none;
outline: none;
padding: 11px 10px;
line-height: 16px;
font-size: 20px;
text-decoration: none;
font-weight: 700;
text-transform: uppercase;
color: white;
border-radius: 4px;
cursor: pointer;
-webkit-filter: drop-shadow(5px 5px 5px #222);
	filter: drop-shadow(0px 1px 1px #222);
transform: translate(-38%, -87%);
-webkit-animation-name: canimatetop;
-webkit-animation-duration: 0.4s;
animation-name: canimatetop;
animation-duration: 0.4s
}
@-webkit-keyframes canimatetop {
	from {top: -38%; opacity: 0} 
	to {top: 38%; opacity: 1}
}
.cross:hover{
	background-image: -webkit-gradient( linear, left bottom, left top, from( #ffffff ), to( #b0bffc ) );
	color: #286ffc;
}
.cross_x{
	display: block;
}
.content{
	position: absolute;
	top: 90%;
	left: 50%;
	transform: translate(-50%, -90%);
	width: 100%;
}
@media screen and (max-width: 860px) {
	.header_img{
		width: 260px;
	}
	.buttons{
		margin: auto;
	}
	.btn{
		width: 70vw;
		float: none;
		left: 50%;
	}
	.cross{
		left: 92%;
	}
}

@media screen and (max-width: 600px) {
	#dialog img {
    width: 340px;
}
}