#cookie_notice {
  position: fixed;
  width: 100%;
  bottom: -1vh;
  left: 0;
  padding: 8px 12px;
  background-color: #fff;
  box-shadow: 0px 0px 3px rgba(0,0,0,0.25);
  opacity: 0;
  -webkit-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -moz-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out;
  -o-transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: bottom 0.25s ease-in-out, opacity 0.25s ease-in-out;
  z-index: -1;
}
#cookie_notice.visible {
  bottom: 0;
  opacity: 1;
  z-index: 2000;
}
#cookie_notice span {
  padding: 10px 14px;
  text-align: left !important;
  float: left;
}
#cookie_notice button {
  color: #f5f5f5;
  background-color: #8ab0fc;
  border-radius: 5px;
  border: none;
  padding: 10px 14px;
  margin-left: 10px;
  float: right;
  cursor: pointer;
  box-shadow: 0px 1px 3px rgba(0,0,0,0);
  -webkit-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  -moz-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  -o-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
}
#cookie_notice button:hover {
  background-color: #7d9fe2;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.35);
}
#cookie_notice button:active {
  box-shadow: 0px 2px 5px rgba(0,0,0,0.45);
}
@media all and (max-width: 991px) {
  #cookie_notice span { display: block; float: none; }
  #cookie_notice button { display: block; margin-top: 5px; float: none; }
}
@media all and (max-width: 767px) {
  #cookie_notice button { width: 100%; text-align: center; }
}