.gdpr-consent-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999999;
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gdpr-consent-container .gdpr-consent-inner {
  background-color: white;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  border-radius: 1em;
  width: calc(100% - 2em);
  max-width: 540px;
}

.gdpr-consent-container .gdpr-consent-inner h1 {
  font-size: 2em;
  margin-bottom: 0.85em;
}

.gdpr-consent-container .gdpr-consent-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gdpr-consent-container .gdpr-consent-actions button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: bold;
  cursor: pointer;
  font-family: Roboto, sans-serif;
}

.gdpr-consent-container .gdpr-consent-actions button.gdpr-consent-refuse {
  color: black;
  opacity: 0.5;
}

.gdpr-consent-container .gdpr-consent-actions button.gdpr-consent-accept {
  height: 3em;
  padding: 0 2em;
  background: var(--mediumGreen);
  color: white;
  border-radius: 1.5em;
}

@media (max-width: 600px) {
  .gdpr-consent-container .gdpr-consent-actions {
    flex-direction: column;
  }

  .gdpr-consent-container .gdpr-consent-actions button {
    margin-top: 1em;
  }
}
