#cookie-modal {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: fixed;
  z-index: 400;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: #000;
  color: #cad6e1;
  left: 0;
}
@media (min-width: 576px) {
  #cookie-modal {
    flex-direction: row;
  }
}
#cookie-modal.show {
  display: flex;
}
#cookie-modal .cookie__button {
  color: white;
  background: var(--e-global-color-46d2747);
  padding: 7px 20px;
  border-radius: 30px;
  width: 100%;
}
@media (min-width: 576px) {
  #cookie-modal .cookie__button {
    width: auto;
  }
}
#cookie-modal .cookie__button:hover {
  background-color: var(--e-global-color-accent);
}
#cookie-modal .cookie__link {
  color: #cad6e1;
  text-decoration: underline;
}
