.cookie-consent {
  /*Hide by default*/
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 900;
}

.cookie-consent {
  background: #0e8ece;
  color: #fff;
  font-size: 1em;
  font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial;
  box-sizing: border-box;
  padding: 15px 30px 15px;
}

.cookie-consent p.white {
  float: left;
  width: 80%;
  margin: 0;
  color:#FFFFFF;
}

.cookie-consent h5.white {
	color:#fff;
	font-size:24px;
	font-weight:600;
}

.cookie-consent a {
  color: #cde188;
}
.cookie-consent a:hover {
  text-decoration:underline;
}

.cookie-consent .btn {
  cursor: pointer;
  font-size: 1em;
  color: #0e8ece;
  background-color: #cde188;
  border: 1px solid transparent;
  border: none;
  border-radius: 8px;
  text-align: center;
  padding: 5px 25px;
  display: block;
  margin-left: 10px;
  float: right;
  min-width: 110px;
  max-width: 220px;
}


.cookie-consent .btn:hover,
.cookie-consent .btn:active {
  background-color: #fff;
  border:none;
  color: #0e8ece;
  transform: translateY(4px);
}

.cookie-consent .close {
  font-size: 1.8em;
  color: #fff;
  text-decoration: none;
  background: #cde188;
  border: none;
  cursor: pointer;
  margin: 0 0 0 40px;
  float: right;
}

.cookie-consent .close:hover {
  color: #fff;
}

.hidden {
  display: none;
}

@media (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
}



