.cookie-consent-modal {
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  display: none;
  align-items: flex-end;
  font-family: "Public Sans", sans-serif;
}
.cookie-consent-modal.active {
  display: flex;
}
.cookie-consent-content {
  background-color: #151515;
  padding: 64px 108px;
  width: 100%;
}
@media (max-width: 768px) {
  .cookie-consent-content {
      padding: 16px 24px;
  }
  .heading {
      font-size: 19px;
  }
}
.cookie-consent-content .container-block {
  margin-left: 0;
  margin-right: 0;
}
.cookie-consent-content .btns {
  display: flex;
  justify-content: flex-end;
  margin-top: 1em;
  align-items: end;
  color: #fff;
}
.btns {
  flex-grow: 1;
  margin-left: 100px;
}
@media (max-width: 768px) {
  .btns {
      margin-left: 70px;
  }
}
.btns .btn {
  border: none;
  outline: none;
  padding: 11px 24px 13px 24px;
  margin-right: 1em;
  color: #fff;
  background-color: #151515;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .btns .btn {
      font-size: 16px;
      padding: 5px 20px 7px 20px;
  }
}
.btns .btn.accept {
  border: 2px solid white;
  border-radius: 56px;
}
.description {
  max-width: 808px;
  color: #BABABA;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .description {
      font-size: 14px;
  }
}
.description a {
  color: #BABABA;
  text-decoration: underline;
}
