.rnb_cookies__notice {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100vw;
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  transform: translateY(200%);
  transition: transform 300ms ease-in;
}
.rnb_cookies__notice.show {
  transform: translateY(0);
  transition: transform 300ms ease-out;
}
.rnb_cookies__content {
  max-width: 600px;
  margin-right: 20px;
}
.rnb_cookies__button {
  cursor: pointer;
}
