/**
 *	Hide body content until the paywall hits
 */
#container-main .article-body {
	/*display: none;*/
}

#paywall-footer {
	padding: 1em;
	position: fixed;
	bottom: 0;
	height: auto;
	background-color: #fcfcfc;
	-webkit-box-shadow: .1em 0 0.75em 0 #6B6B6B;
	box-shadow: .1em 0 0.75em 0 #6B6B6B;
	z-index: 20000;
	font-size: 12px;
	-webkit-transition: bottom 1s;
    transition: bottom 1s;
}
#paywall-footer.closed {
	bottom: -200px;
}
#paywall-footer .bn-close-paywall {
	width: 1em;
    height: auto;
    position: absolute;
    right: 1em;
    top: 1em;
    cursor: pointer;
    font-size: 1.22em;
    font-weight: bold;
    color: #000;
    text-align: center;
    cursor: pointer;
    z-index: 1;
}
#paywall-footer .bn-paywall-info .bn-logo-container img {
	width: 75px;
	height: auto;
}
#paywall-footer .bn-paywall-info .info-container {
	text-align: center;
}
#paywall-footer .bn-paywall-info .info-container .count-remaining {
	font-size: 1.5em;
	line-height: 1.5em;
	color: #0084B1;
}
#paywall-footer .bn-paywall-info .info-container .count-remaining .count{
	text-decoration: underline;
}
#paywall-footer .bn-paywall-info .info-container .continue-reading {
	font-size: 1.1em;
}
#paywall-footer .bn-paywall-info .button-container .subscribe-btn {
	text-align: center;
	margin-top: 0.65em;
	border-radius: 0.45em;
	height: 3em;
	line-height: 3em;
	border: 0.1em solid #0084B1;
}
#paywall-footer .bn-paywall-info .button-container .subscribe-btn a {
	display: block;
	height: 100%;
	width: 100%;
	text-decoration: none;
	color: #0084B1 !important;
}
#paywall-footer .bn-paywall-info .button-container .subscribe-btn#signup {
	background: #0084B1;
}
#paywall-footer .bn-paywall-info .button-container .subscribe-btn#signup a {
	color: #ffffff !important;
}

@media all and (max-width: 1199px) {
	.bn-logo-container {
		display: none;
	}
}

#paywall-footer .large-screen {
	display: block !important;
}
#paywall-footer .small-screen {
	display: none !important;
}

@media all and (max-width: 767px) {
	#paywall-footer .large-screen {
		display: none !important;
	}
	#paywall-footer .small-screen {
		display: block !important;
	}
	#paywall-footer .bn-close-paywall {
		right: 0.25em;
	}
	#paywall-footer .bn-paywall-info .info-container .count-remaining {
		font-size: 1.15em;
		line-height: 1.25em;
	}
	#paywall-footer {
		padding: 1em; 
	}
}