.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 1052;
  opacity: 0;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #fff6ed;
  background: #342e27;
}

.acceptcookies {
  background-color: #c78200 !important;
  border-color: #fff6ed !important;
}

.btn.btn-primary.btn-sm.acceptcookies:hover {
  color: #c78200;
  background-color: var(--cookie-hover-white) !important;
}

