.cookie-notification {
  width: calc(100% - 120px);
  margin: 0 60px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  border-bottom: none;
  z-index: 5;
}

.cookie-notification__container {
  padding: 20px 44px;
  display: flex;
  align-items: center;
  gap: 24px;
  background-color: var(--bg-primary-color);
  border: 1px solid var(--bg-tertiary-color);
  border-bottom: none;
}

.cookie-notification__container > p {
  text-align: justify;
  margin-bottom: 0;
  color: var(--text-secondary-color);
}

.cookie-notification__container > p > a {
  font-weight: 700;
  color: var(--text-secondary-color);
  text-decoration: underline;
}

.cookie-notification__container > .btn {
  min-width: 60px;
}

@media (max-width: 992px) {
  .cookie-notification {
    width: calc(100% - 96px);
    margin: 0 48px;
  }
}

@media (max-width: 768px) {
  .cookie-notification {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}

@media (max-width: 576px) {
  .cookie-notification {
    width: calc(100% - 64px);
    margin: 0 32px;
  }

  .cookie-notification__container {
    flex-direction: column;
  }

  .cookie-notification__container > .btn {
    width: 100%;
  }

  .cookie-notification__container > p {
    text-align: left;
  }
}

@media (max-width: 400px) {
  .cookie-notification {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
}
