#cookie-alert {
  display: none;
}

.cookie-alert__wrap {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 9999;
}

.cookie-alert {
  position: relative;
  margin: 16px;
  max-width: 80vw;
}

.cookie-alert:before {
  position: absolute;
  inset: -4px;
  content: '';
  border-radius: 4px;
  background: linear-gradient(-45deg, var(--user-support-color1) 0%, var(--user-support-color2) 100%);
}

.cookie-alert__inner {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px 24px 24px;
  border-radius: 4px;
}

.cookie-alert__inner .button__wrap {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.cookie-alert__inner button {
  background: linear-gradient(281deg, var(--user-support-color1) 0%,var(--user-support-color2) 100%);
  width: min-content;
  color: #fff;
  padding: .75rem 1.5rem;
  cursor: pointer;
  transition: .3s ease;
  white-space: nowrap;
}

.cookie-alert__inner button:hover {
  background: var(--user-secondary-color)
}
