@font-face {
	font-family: 'gotham_black';
	src: url('../fonts/gotham_black.eot');
	src: url('../fonts/gotham_black.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham_black.woff') format('woff'), url('../fonts/gotham_black.ttf') format('truetype'), url('../fonts/gotham_black.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'gotham_medium';
	src: url('../fonts/gotham_medium.eot');
	src: url('../fonts/gotham_medium.eot?#iefix') format('embedded-opentype'), url('../fonts/gotham_medium.woff') format('woff'), url('../fonts/gotham_medium.ttf') format('truetype'), url('../fonts/gotham_medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

#popupMessage {
	position: absolute;
	z-index: 100;
	left: 0;
	bottom: 4.4%;
	width: 100%;
	max-width: 500px;
	transform: translate(-110%,0);
	-webkit-transform: translate(-110%,0);
	-moz-transform: translate(-110%,0);
	-ms-transform: translate(-110%,0);
	-o-transform: translate(-110%,0);
	transition: transform 1s;
	-webkit-transition: transform 1s;
	-moz-transition: transform 1s;
	-o-transition: transform 1s;
}
#popupMessage.active {
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	-moz-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);	
}
#popupMessage .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .9;
	-webkit-opacity: .9;
	-moz-opacity: .9;
}
#popupMessage .content {
	position: relative;
	z-index: 10;
	padding: 18px 22px;
	text-align: center;
	color: #fff;
}
#popupMessage .content.left {
	float: left;
	width: calc(100% - 150px);
	width: -webkit-calc(100% - 150px);
	width: -moz-calc(100% - 150px);
}
#popupMessage .content .popupTitle {
	font: 24px 'gotham_black';
	color: #f17e3d;
}
#popupMessage .content .popupSubtitle {
	font: 18px 'gotham_medium';
	margin-top: 6px;
}
#popupMessage .content .popupSep {
	width: 60%;
	height: 2px;
	background: #fff;
	margin: 12px auto;
}
#popupMessage .content .message {
	font: 18px 'gotham_black';
	line-height: 1.4em;
}
#popupMessage .content a.moreDetails {
	margin-top: 12px;
	background: #f17e3d;
	padding: 5px 7px;
	display: inline-block;
	font: 14px 'gotham_medium';
	color: #fff;
}
#popupMessage .content a.moreDetails:hover {
	background: #c35618;
}
#popupMessage a.closePopup {
	position: absolute;
	z-index: 20;
	top: 10px;
	right: 10px;
	width: 15px;
	height: 15px;
	background: url(../images/popup_close_btn.png);
}
#popupMessage .popupImg {
	position: absolute;
	z-index: 10;
	right: 0;
	top: 0;
	width: 150px;
	height: 100%;
	background-position: center;
	background-size: cover;
}

@media screen and (max-width:1024px) {
	#popupMessage .content .popupTitle {
		font-size: 18px;
	}
	#popupMessage .content .popupSubtitle {
		font-size: 13px;
	}
	#popupMessage .content .message {
		font-size: 13px;
	}
	#popupMessage .content a.moreDetails {
		font-size: 11px;
	}
}

@media screen and (max-width:600px) {
	#popupMessage {
		bottom: 0;
	}
}