/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 
 .mobile-ad-container{
	
	position: fixed;
    border: none;
    /* background: grey; */
    color: #fff;
    height: 250px;
    width: 100%;
	/*
    top: 50%;
    margin-top: -150px;
	*/
    display: none;
    text-align: center;
    transition:all 0.4s;
	left: 0;
 }
 
  .mobile-ad-container.show{
	display:block;
 }
 
 .mobile-ad-viewport{
	/*border: 1px solid #000;*/
    color: #000;
    height: 350px;
    position: relative;
    z-index: 1;
	pointer-events:none;
	display:none;
 }
 
 .mobile-ad-viewport.show{
	display:block;
 }
 

.mobile-ad-header{
    background: #000;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0;
    color: #fff;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
    padding: 4px 0;
}

.mobile-ad-footer{
	background: #000;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;	
	color: #fff;
	font-family:Arial, Helvetica, sans-serif;
	font-size: 11px;
    padding: 4px 0;
}

.mobile-ad-main-content-wrapper{
	position:relative;
	display:inline; /*Inline at first else messes up floated objects - switch to block for mobile*/
	overflow: hidden; /* Makes floats work ok within the element*/
}


.mobile-ad-main-content-wrapper.on{
	padding-top: 20px;
	display:block;
	z-index: 1;
	background:#fff;
	border: 1px solid #fff; /*Needed to stop background being transparent*/
	padding-top: 0px;
}
