.cookie-notification {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #5691c8;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  z-index: 1000;
}

.cookie-notification:not(.cookie-notification--visible) {
  opacity: 0;
  bottom: -100%;
}

.cookie-notification .cookie-notification__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding: 20px 0;
  gap: 30px;
}

.cookie-notification .cookie-notification__text {
  color: white;
  margin: 0;
  text-align: center;
  text-wrap: pretty;
  font-size: 16px;
  font-weight: 200;
}

.cookie-notification .cookie-notification__text a {
  color: white;
  text-decoration: underline;
}

.cookie-notification .cookie-notification__accept {
  display: flex;
  padding: 8px 12px;
  align-items: center;
  gap: 6px;
  border-radius: var(--rounded-md, 6px);
  background: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #051c2b;
  font-family: "Geologica";
  font-size: 14px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-notification {
    height: auto;
  }

  .cookie-notification .cookie-notification__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
