html {
  height: 100%;
}

body {
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #000000;
}

.cookie-consent {
  display: none;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  border: none;
  outline: none;
}

.cookie-consent.is-not-accepted {
  display: block;
}

.cookie-consent.is-accepted {
  display: none;
}

.cookie-consent__wrapper {
  padding: 48px 80px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg, #00B2FF 0%, #007AAE 100%);
}

.cookie-consent__policy {
  color: #ffffff;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 130%;
}

.cookie-consent__policy a {
  color: #BE1E25;
  text-decoration-line: underline;
}

.cookie-consent__accepted-btn {
  padding: 9px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  border-radius: 4px;
  background-color: #BE1E25;
}

.cookie-consent__accepted-btn span {
  color: #FFFFFF;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 992px) {
  .cookie-consent__wrapper {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
