#cookie_popup {
  position: sticky;
  display: none;
  flex-direction: column;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px 20px;
  bottom: 16px;
  left: 100%;
  margin: 20px;
  text-align: center;
  max-width: 400px;
}

#cookie_popup > h4 {
  margin: 0;
}

#cookie_popup > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#cookie_popup > div button {
  width: 75%;
}

#cookie_popup > div button:first-child {
  margin-bottom: 5%;
}

@media screen and (min-width: 1440px) {
  #cookie_popup {
    max-width: 600px;
  }
}
