.bbukUnderlay{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1000000;
}
.bbukUnderlay:not(.bbukHidden){
	display: block !important;
}
.bbukHidden{
	display: none;
}
.bbukInner{
	width: calc(100% - 40px);
	max-width: 900px;
	display: block;
	margin: auto;
	position: relative;
	height: 100vh;
}
.bbukUnderlay iframe{
	display: block;
	outline: none;
	border: none;
	
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	width: 100%;
	height: 100%;
}
.bbukIframeWrapper{
	display: block;
	width: 100%;
	position: relative;
	padding-bottom: calc(100vh - 200px );
	top: 60px;
	/*top: 50%;*/
	/*transform: translateY(-50%);*/
	box-shadow: 0 6px 16px rgba(0,0,0,.1);
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.bbukUnderlay .bbukIframeWrapper::before{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	content: '';
	z-index: -10;
	position: absolute;
	transition: ease all .3s;
	background-color: rgba(255, 255, 255, 0);
}
.bbukUnderlay .bbukIframeWrapper.bbukLoading::before{
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: 9001;
	position: absolute;
	background-size: 48px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255, 255, 255, .8);
	background-image: url(https://api.broadbandavailability.uk/assets/bbuk-loading.gif);
}
.bbukDisplayWrapperClose {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	z-index: 1;
}
.bbukDisplayWrapperClose:before, .bbukDisplayWrapperClose:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 20px;
	width: 2px;
	background-color: #333;
}
.bbukDisplayWrapperClose:before {
	transform: rotate(45deg);
}
.bbukDisplayWrapperClose:after {
	transform: rotate(-45deg);
}




/* ======================================================================= */
@media only screen and (max-height: 660px){
	.bbukIframeWrapper{
		padding-bottom: calc(100vh - 40px );
		top: 20px;
	}
}

/* ======================================================================= */
@media only screen and (max-width: 400px){
	@supports (-webkit-touch-callout: none) {
		.bbukIframeWrapper{
			padding-bottom: calc(100vh - 80px );
		}
	}
}