#cookie-bar {
	background: #fff;
	text-align: left;
	width: 100%;
	padding: 5px 0;
	/*padding: 10px 0;*/
	overflow: hidden;
	font-size: 86%;
	/*font-size: 86%;*/
}	
	#cookie-bar p {
		margin: 0 auto;
		padding: 0 10px 40px 10px;
		color: #333;
		position: relative;
		max-width: 70rem;
		line-height: 150%;
	}
		#cookie-bar a {
			padding: 0;
			margin-left: 0;
			color: #333;
		}
		#cookie-bar a:hover {color: #ffe500; border-color: #ffe500;}
	
	#cookie-bar .cb-enable {
		position: absolute;
		bottom: 0; right: 10px;
		clear: both;
		background-color: #999;
		display: block;
		float: left;
		line-height: 30px;
		padding: 0 15px;
		color: #fff;
		border: none;
		text-transform: uppercase;
		font-weight:bold;
	}
		#cookie-bar .cb-enable:hover {background-color: #ffe500; color: #000;}
		
		#cookie-bar .cb-policy {
		position: absolute;
		bottom: 0; right: 130px;
		clear: both;
		background-color: #999;
		display: block;
		float: left;
		line-height: 30px;
		padding: 0 15px;
		color: #fff;
		border: none;
		text-transform: uppercase;
		font-weight:bold;
	}
		#cookie-bar .cb-policy:hover {background-color: #ffe500; color: #000;}

/* MEDIA QUERIES ===================================================================== */
/* SMALL - 480px up */
@media only screen and (min-width: 480px) { 
	#cookie-bar {
		font-size: 86%;
		/*font-size: 100%;*/
	}
	
	#cookie-bar .cb-policy {
		position: absolute;
		bottom: 0; right: 135px;
		clear: both;
		background-color: #999;
		display: block;
		float: left;
		line-height: 30px;
		padding: 0 15px;
		color: #fff;
		border: none;
		text-transform: uppercase;
		font-weight:bold;
	}
		#cookie-bar .cb-policy:hover {background-color: #ffe500; color: #000;}
}

/* MEDIUM - 768px up */
@media only screen and (min-width: 768px) {
	#cookie-bar p {
		/*background: url('../images/style/cookie_icon.png') left center no-repeat;*/
		padding: 10px 260px 10px 5px;
		/*padding: 25px 150px;*/
		/* Original*//*min-height: 50px;*/
		/*min-height: 100px;*/
	}
	#cookie-bar .cb-enable {
		bottom: auto; left: auto;
		top: 5px; right: 10px;
		float: none;
		background-color: #999999;
		/*background-color: transparent;*/
		/*background-image: url(../images/style/cookie_close.png);*/
		background-position: 0 0;
		background-repeat: no-repeat;
		line-height: 16px;
		padding: 5px 10px 5px 10px;
		/*padding: 0 0 0 21px;*/
		color: #fff;
		font-weight:bold;
	}
		#cookie-bar .cb-enable:hover {
			background-color: #666666;
			/*background-color: transparent;*/
			color: #ffe500;
			background-position: 0 -16px;
		}
		
		#cookie-bar .cb-policy {
		bottom: auto; left: auto;
		top: 5px; right: 105px;
		float: none;
		background-color: #999999;
		/*background-color: transparent;*/
		/*background-image: url(../images/style/cookie_close.png);*/
		background-position: 0 0;
		background-repeat: no-repeat;
		line-height: 16px;
		padding: 5px 10px 5px 10px;
		/*padding: 0 0 0 21px;*/
		color: #fff;
		font-weight:bold;
	}
		#cookie-bar .cb-policy:hover {
			background-color: #666666;
			/*background-color: transparent;*/
			color: #ffe500;
			background-position: 0 -16px;
		}
}

/* LARGE - 1024px up */
@media only screen and (min-width: 1024px) { 
	#cookie-bar .cb-enable {
		right: 0;
	}
	#cookie-bar .cb-policy {
		right: 50;
	}
}

/* BUTTONS =========================================================================== */
button, .button {
	font-weight: 400;
	padding: 10px;
	margin: 0;
	font-size: 100%;
	line-height: 145%;
	text-transform: uppercase;
	white-space: nowrap;
	
	background-color: #ffe600;
	color: #000000;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	
	-webkit-transition: background-color 300ms ease-out;
	-moz-transition: background-color 300ms ease-out;
	transition: background-color 300ms ease-out;
	
	-webkit-appearance: none;
}
	button.disabled, button[disabled], .button.disabled, .button[disabled],
	button.disabled:hover, button[disabled]:hover, .button.disabled:hover, .button[disabled]:hover {
		background-color: #B1B3B6;
	}
	
	button:hover, .button:hover {
		background-color: #fff59b;
		color: #000000;
	}
	
	button em, .button em { text-transform: lowercase; font-style: normal; }
	
	.button.active {
		background: #808285;
		color: #ffe600;
	}