.notification {
  bottom: 0px;
  animation: 2s ease 0s normal none 1 running reveal-bottom;
  display: none;
  width: 100%;
  position: fixed;
  left: 0px;
  height: auto;
  margin: 0 auto;
  box-shadow: #95a5a6 0px 0px 6px 2px;
  background: #fcfcfc;  
  z-index: 100;
  text-align: center;
}

.eu-cookie-close {
  color: black;
  cursor: pointer;
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
}

.eu-cookie-content {
  position: relative;
  display: inline-block;
  margin-top: 9px;
  margin-bottom: 9px;
  text-align: center;
  width: 96.5%;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  color: black;
}

@keyframes reveal-bottom {
  0% {
    transform: translate(0px, 50px);
  }
  50% {
    transform: translate(0px, 50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
