.cookie-consent {
  width: 100%;
  position: fixed;
  bottom: 52px;
  right: 50%;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
  z-index: 1000;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 40px;
  border-radius: 14px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 979px) {
  .cookie-consent {
    padding: 20px;
  }
}

.cookie-consent__text {
  color: var(--c-black);
  font-size: 20px;
  line-height: 120%;
}
@media (max-width: 979px) {
  .cookie-consent__text {
    font-size: 16px;
  }
}

.cookie-consent__btn {
  width: 240px;
}
@media (max-width: 767px) {
  .cookie-consent__btn {
    width: 90%;
  }
}
