div#cookie-bar
{
	width				: 	100%;
	min-height				: 	25px;
	position			: 	fixed;
	bottom				: 	0px;
	left				: 	0px;
	z-index				:	1000000;
	background: rgba(0,0,0,0.5);
}


div#cookie-bar-content
{
	position			:	relative;
	line-height			: 	25px;
	font-weight			: 	bold;
	text-align			: 	center;
	width				:	100%;
	z-index				:	1000001;
}

span#cookie-bar-close, span#cookie-bar-refuse, span#cookie-bar-accept
{
	cursor				: pointer;
	text-decoration		: underline !important;
}

div#cookie-bar a, div#cookie-bar a:hover
{
	text-decoration		: 	underline !important;
}

div#bodyfill
{
	height				:	25px;
}

/****** COOKIE OVERLAY ******/
#cookie-overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.25;
	z-index: 9999;
}

#cookie-popup {
	position: fixed;
	top: 15px;
	left: 50%;
	width: 100%;
	transform: translate(-50%, 0%);
	z-index: 99999;
}

@media (max-width: 767px) {
	#cookie-popup {
		height: 100%;
		overflow: scroll;
		-webkit-overflow-scrolling: touch;
	}
}

@media (min-width: 992px) {
	#cookie-popup {
		top: 50%;
		transform: translate(-50%, -50%);
	}
}

#cookie-content {
	border-radius: 10px;
	background-color: #fff;
}

#cookie-popup .cookie-title {
	display: block;
	padding: 12px 25px;
	font-size: 18px;
	color: #fff;
	border-radius: 10px 10px 0px 0px;	
}

#cookie-popup .cookie-content {
	padding: 15px 25px;
	background-color: #fff;
	border-radius: 0px 0px 10px 10px;
}

#cookie-popup .cookie-accept, #cookie-popup .cookie-accept:hover, #cookie-popup .cookie-accept:focus {
	margin: 20px 0px;
	padding: 10px 26px;
	font-weight: bold;
	color: #fff;
}

#cookie-popup .cookie-settings, #cookie-popup .cookie-more-info {
	display: block;
	position: relative;
	padding-left: 25px;
	margin: 5px 0px 15px 0px;
	font-size: 12px;
}

#cookie-popup .cookie-settings:after, #cookie-popup .cookie-more-info:after {
	position: absolute;
	top: 0px;
	left: 8px;
	font-family: "FontAwesome";
	font-size: 16px;
	font-weight: bold;
	content: "\f105";
}

#cookie-popup .cookie-body {
	display: none;
}

#cookie-popup .cookie-level {
	position: relative;
	margin: 10px 0px 15px 0px;
	padding: 40px 15px 8px 15px;
	border: 1px solid #ccc;
	border-radius: 10px;
	cursor: pointer;

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}

@media (min-width: 768px) {
	#cookie-popup .cookie-level {
		margin: 30px 0px 10px 0px;
		padding: 8px 24px 8px 90px;
	}
}

#cookie-popup .cookie-stars {
	position: absolute;
	top: 10px;
	width: calc(100% - 30px);
	text-align: center;
}

@media (min-width: 768px) {
	#cookie-popup .cookie-stars {
		top: 50%;
		left: 0px;
		width: 90px;
		transform: translateY(-50%);
	}
}

#cookie-popup .cookie-stars .fa-star {
	font-size: 18px;
	margin: 0px 2px;
}