.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease-out;
  width: 150px;
  height: 130px;
  padding: 10px 10px;
  margin: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  text-align: center;
}
@media(max-width: 600px) {
  .cookiealert {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    height: initial;
    padding-bottom: 0;
    margin: initial;
  }
}
.cookiealert p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: inherit;
  text-align: center;
}
.cookiealert button {
  display: inline-block;
  padding: 4px 29px;
  background: #575757;
  margin-top: 10px;
  margin-bottom: 20px;

  color: #fff;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  text-transform: inherit;
  text-align: center;
  border-radius: 4px;
}
.cookiealert button:hover {
  color: #fff;
  background: #c30b00;
}

.cookiealert.show {
   opacity: 1;
   visibility: visible;
   transform: translateY(0%);
   transition-delay: 1000ms;
}