body #cookieNotice {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #004252;
  overflow: hidden;
  height: 0;
  max-height: 0;
  transition: max-height 300ms;
	z-index:9999;
}

body #cookieNotice .inside {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  padding: 20px 0;
}

body #cookieNotice .inside p.cookietext {
  margin: 0;
  width: 85%;
  float: left;
  color: #FFF;
}
body #cookieNotice .inside p.cookietext a {
	color:#faba00;
	text-dacoration:none;
}
body #cookieNotice .inside p.cookietext a:hover {
	text-decoration:underline;
}

body #cookieNotice .inside .confirm {
  cursor: pointer;
  text-align: center;

	display: inline-block;
	text-transform: uppercase;
	font-size: 1.25rem;
	border: 1px solid #faba00;
	padding: 10px 35px 8px;
	color: #faba00;
	background: transparent;
	transition: color 300ms, background 300ms;
	border-radius: 3px;
}

body #cookieNotice .inside .confirm:hover {
	background:#faba00;
	color:#FFF;
}

body.notAccepted #cookieNotice {
  height: auto;
  max-height: 200px;
  transition: max-height 1s ease;
}

body.accepted {
  margin: 0 !important;
  transition: margin 1s ease;
}

body.accepted #cookieNotice {
  height: 0;
  max-height: 0;
  padding: 0;
  transition: max-height 1s ease;
}

body.accepted #footer #back-to-top {
  margin: 0 !important;
  transition: margin 1s ease;
}

@media only screen and (max-width:767px) {
	body #cookieNotice {
		padding:0 10px;
		box-sizing: border-box;
	}
}
