#cookies {
  background-color: white;
  box-shadow: 0px 4px 30px rgba(105, 118, 136, 0.2);
  padding: 1.25em;
  position: fixed;
  transform: translate3d(0,-100%,0);
  top: 100%;
  left: 0%;
  width: 100%;
  z-index: 9999;
}
#cookies > div {
  align-items: center;
  display: flex;
}
#cookies span {
  flex: 1 1 auto;
  padding-right: 20px;
}
@media (min-width: 760px) {
	#cookies {
    transform: translate3d(-50%,-50%,0);
    top: 50%;
    left: 50%;
    max-width: 640px;
	}
}