.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;

  display: none;
  padding: 0 16px 24px;
}

.cookie-consent--visible {
  display: block;
}

.cookie-consent__inner {
  display: grid;
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;

  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);

  gap: 16px;
}

.cookie-consent__text {
  margin: 0;

  font-size: 12px;
  line-height: 16px;
}

.cookie-consent__button {
  padding: 10px 16px;

  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;

  background-color: #059669;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-consent__button:hover {
  background-color: #10b981;
}

@media (min-width: 768px) {
  .cookie-consent__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 32px;
  }
}
