.cookie-alert {
  position: fixed;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0, .85);
  width: 100%;
  height: 100%;
  line-height: 1;
}
.cookie-alert__container {
  max-width: 700px;
  margin: 0 auto;
}
.cookie-alert__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cookie-alert__text {
  color: white;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: -0.32px;
  text-align: center;
}
.cookie-alert__text a {
  color: #fff;
  text-decoration: underline;
}
.cookie-alert__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
  line-height: 50px;
  color: #ff881e;
  text-transform: uppercase;
  border-radius: 38px;
  border: none;
  margin: 0 auto;
  cursor: pointer;
}
