/* BANNER */

#ad-banner {
	background-color: #d7992d;
	position: fixed;
	display: block;
	width: 100%;
	z-index: 99999;
	display: none;
}

#height-fix {
	height: 80px;
}

#ad-banner .container {
	width: 100%;
	max-width: 1280px;
	padding: 5px 25px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.banner-logo {
	padding: 0;
	margin: 0 10px;
}

.banner-logo img {
	width: 160px;
}

.banner-text {
	font-size: 1.2em;
	line-height: 1.1;
	font-family: 'sofia_pro_lightregular', sans-serif;
	color: #fff;
	padding: 0 10px;
	border-left: 1px dotted #fff;
	margin: 0 0 0 10px;
	flex-grow: 2;
}

.banner-text span {
	font-weight: 900;
	color: #252525;
	text-transform: uppercase;
}

.banner-close {
	margin-left: auto;
}

.banner-close a {
	background: #f6ae30;
	color: #fff;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	display: block;
	line-height: 2.1;
	text-align: center;
	font-size: 0.7em;
	cursor: pointer;
	font-weight: 900;
}

.banner-close a:hover {
	background: #fff;
	color: #252525;
	text-decoration: none;
}

.banner-timer {
	padding: 0 10px;
	margin: 0 10px;
	text-align: center;
	line-height: 1;
	color: #fff;
	font-family: 'sofia_pro_lightregular', sans-serif;
	flex-grow: 2;
	font-size: 1.2em;
	position: relative;
	top: -4px;
}

.banner-timer p {
	margin: 7px auto;
}

.banner-button {
	margin-left: auto;
	margin-right: 20px;
}

.banner-button a {
	color: #fff;
	display: block;
	text-align: center;
	font-family: 'sofia_pro_lightregular', sans-serif;
	padding: 13px 15px;
	background: #0d6f62;
	font-size: 1em;
	text-decoration: none;
}

.banner-button a:hover {
	background-color:#fff !important;
	color: #252525 !important;
	text-decoration:none;
}

@media only screen and (max-width: 768px) {
	
	#ad-banner .container {
		flex-direction: column;
		align-items: center;
	}

	.banner-logo {
		padding: 0;
		margin: 10px 0 0 0;
	}

	.banner-text {
		text-align: center;
		padding: 10px;
		border-left: none;
	}

	.banner-button {
		margin: 15px auto ;
	}

	.banner-close {
		position: absolute;
		right: 10px;
		top: 10px;
	}

}