.cookies-alert {
  background-color: rgb(0 0 0 / 80%);
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  z-index: 20;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.2s ease;
  font-size: 14px;
  max-width: 340px;
  margin: 15px;
}
.cookies-alert.is-show {
  transform: translateY(0);
  transition: transform 0.2s ease;
}

.cookies-alert__title {
  margin: 0 0 5px;
}

.cookies-alert p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 15px;
}

.cookies-alert__right {
  align-items: center;
  display: flex;
}

.cookies-alert .btn {
  background-color: transparent;
  border-radius: 5px;
  border: transparent;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
}

.cookies-alert .btn__primary {
  background-color: #03a9f4;
  border-color: #03a9f4;
  margin-left: 5px;
  color: #ffffff;
}

.cookies-alert a {
  color: #fff;
}

@media screen and (max-width:1000px) {
  .cookies-alert {
    width: 100%;
    left: 0;
    bottom: 0;
    margin: 0;
    max-width: 100%;
  }
}