.cookie-notice {
  box-sizing: border-box;
  position: fixed;
  bottom: 30px;
  left: 50%;
  width: 80%;
  margin-left: -40%;
  padding: 20px 20px 20px 20px;
  background-color:rgba(42,47,52,0.8);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffea9f;
text-align: justify;
  transform: translate3d(0, 0, 0);
  animation: cookie-notice-fadein 500ms ease;
}
.cookie-notice a{
 color: #fff;
}
.cookie-notice a:hover{
 color: #ffea9f;
}

@keyframes cookie-notice-fadein {
  0% { transform: translate3d(0, 128px, 0); opacity: 0; }
  100% { transform: translate3d(0, 0, 0); opacity: 100; }
}

.cookie-notice-message > p {
  margin: 0;
  padding: 0;
  width: 80%;
}

.cookie-notice > button {
	text-align: center;
  margin: 0;
  padding: 0 10px 0 0;
  border: 0;
  background: transparent;
  width: 20%;
  color: #fff;
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  cursor: pointer;
  font-weight: bold;
	font-size: 1.6rem;
  border-left: solid 0px rgba(0, 40, 80, 0.1);
	outline: none;
}

.cookie-notice > button:hover {
  color: #ffea9f;
}







.cookieConsentContainer {
	z-index: 999;
	width: 320px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 15px 20px 15px;
	background-color:rgba(0,0,0,0.8);
	overflow: hidden;
	position: fixed;
    bottom: 0px;
	right: 10px;
	display: none;
	text-align: center;
}
.cookieConsentContainer .cookieTitle a {
	color: #FFFFFF;
	font-size: 2rem;
	line-height: 2rem;
	display: block;
}
.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	color: #FFFFFF;
	font-size: 1.2rem;
	line-height: 1.8rem;
	display: block;
	margin-top: 10px;
} .cookieConsentContainer .cookieDesc a {
	color: #FFFFFF;
	text-decoration: underline;
}
.cookieConsentContainer .cookieButton a {
	display: inline-block;
	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: normal;
	margin-top: 15px;
	background: #000000;
	box-sizing: border-box; 
	padding: 15px 24px;
	text-align: center;
	transition: background 0.3s;
}
.cookieConsentContainer .cookieButton a:hover { 
	cursor: pointer;
	background: #f1c686;
}

@media (max-width: 800px) {
	.cookie-notice {
 
  font-size: 1rem;
  line-height: 1.2;
}
	.cookie-notice > button {
  margin: 0;
  padding: 0 3% 0 0;
  border: 0;
  background: transparent;
  width: 20%;
  color: #fff;
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  cursor: pointer;
  font-weight: bold;
	font-size: 1.2rem;
  border-left: solid 1px rgba(0, 40, 80, 0.1);
	outline: none;
}
	.cookieConsentContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}

@media only screen and (max-width:365px){
	.cookie-notice {
 
  font-size: .8rem;
  line-height: 1;
}}