/*
* example for styling overlay as a ribbon at bottom
* example: https://blog.migk.hr/
*/

#cookies-background {
	font-size: 16px;
	background-color: rgba(0, 0, 0, 0.795);
	bottom: 0;
	width: 100%;
	margin: 0 auto;
/*
	display: block;
*/
	position: fixed;
	z-index: 1000000;
}

#cookies-background a {
/*
color: #EEE;
font-size: 0.8em;
*/
}
#cookies-background a:hover {
color: #AAEEAA;
}

#cookies-box {
	background-color: none;
	margin: auto;
	padding: 0px 30px;
	text-align: center;
	max-width: 850px;
	display: inline;
}

.infoText {
	font-size: 16px;
	color: #fff;
	text-align: center;
	padding: 0px 20px 10px 20px;
}

.btnsCookie {
	margin:auto;
}

.btnCookie {
	width: 160px;
	color: #ffffff;
	border-width: 0px;
	border-radius: 2px;
	background-color: #7aa35d;
/*
	padding: 0.3em 1em;
	line-height: 1.4em;
*/
	display: inline;
	margin:auto;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.4s ease, color 0.4s ease;
}
.btnCookie.decline {
/*
  background-color:#006321;
	margin-top: 1em;
	font-size:0.8em;
	color: #ccc;
*/
}

.btnCookie:hover {
	color: #333;
	background-color: #AAEEAA;
	border-color: #1a1a1a;
}
/*
.btnCookie.decline:hover {
	color: #fff;
	background-color: #666;
	border-color: #1a1a1a;
}
*/

#btnLearn-more {
	font-size:16px !important;
	display: block;
	margin-top: 10px;
	font-weight:400;
	text-decoration: underline;
	color: #fff;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

#btnLearn-more:hover {
	opacity: 0.7;
}

@media all and (max-width:512px) {
/*
	#cookies-box {
		justify-content: left;
	}
	.btnsCookie {
		margin-left: 0;
		text-align: left;
		margin-top: 1.5em;
	}

	.btnCookie.decline {
		margin-top: 0;
	}

	.btnCookie {
		display: inline-block;
	}

	#btnLearn-more {
		display: block;
		margin-left: 0;
	}
*/
}
