#consentBar div,
#consentBar button {
	font-family: "Roboto",Helvetica,Arial,sans-serif;
}

#consentBar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0;
	z-index: 999;
	color: #000;
	background-color: rgba(253, 208, 35,.9);
	font-size: 18px;
	font-weight: 400;

	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 300ms, opacity 300ms;
}

#consentBar.consentBar_show {
	visibility: visible;
	opacity: 1;
	transition: visibility 0s linear 0s, opacity 300ms;
}

#consentBar div {
	width: 70%;
	margin: 0 auto;
	padding: 20px;
	line-height: 1.8em;
	font-weight: 400;
}

#consentBar div a {
	color: #000 !important;
	text-decoration: underline !important;
	font-weight: 500;
}

#consentBar button {
	margin-left: 10px;
	padding-left: 10px;
	padding-right: 10px;
	border: 4px solid #feca35;
	border-radius: 10px;
	background: #fff;
	color: #5f3b97;
	line-height: 30px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

#consentBar button:hover {
	border: 4px solid #5f3b97;
}

#consentBar button:focus {
	/* outline: none; */
}

@media screen and (max-width: 960px) {
	#consentBar div {
		width: 95%;
		font-size: 21px;
		line-height: 1.5em;
	}

	#consentBar button {
		display: block;
		margin: 0 auto;
		margin-top: 20px;
		padding: 15px;
		font-size: 24px;
	}
}