@charset "utf-8";
/* CSS Document */

#modal{	
	background:#ffffff;
	height: 100%;
	position: fixed;	
	bottom: -100%;	
	right: 0;
	left: 0;	
	z-index: 10;
	overflow: auto;
}
#modal .modal-close{
	background: url(../_images/bt-close.svg) no-repeat center;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 10;
}
#modal .modal-content{	
	height: auto;	
	margin:0;	
}
#modal .modal-content iframe{
	width: 100%;
	height: 500px;
	border: none;
}
@media handheld, only screen and (max-width: 1000px) {
	#modal{
	}
	#modal .modal-close{
		background: url(../_images/bt-close-mobile.svg) no-repeat center;
		top: 0;
		right: 0;
	}
	#modal .modal-content{
	}
	#modal .modal-content iframe{
		height: 250px;
	}
}