.cookie-alert {
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 60px;
  height: 42px;
  z-index: 10;
  font-size: 12px;
  line-height: 120%;
  width: 100%;
  background-color: var(--white);
  -webkit-box-shadow: 0 4px 16px rgba(25, 36, 37, 0.0588235294);
          box-shadow: 0 4px 16px rgba(25, 36, 37, 0.0588235294);
}
.cookie-alert a {
  color: var(--text-primary);
  text-decoration: underline;
}
.cookie-alert.close {
  display: none;
}
@media (min-width: 1024px) {
  .cookie-alert {
    bottom: 0px;
  }
}
.cookie-alert__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.cookie-alert__btn {
  color: var(--text-primary);
  height: 30px;
  font-size: 14px;
  line-height: 14px;
  background-color: rgba(0, 0, 0, 0);
  width: 81px;
  border: 1px solid var(--text-disabled);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}