.cookies-gdpr {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 460px;
  border-radius: 60px;
  max-width: 100%;
  background-color: black;
  z-index: 15;
  max-width: 100%;
}
.cookies-gdpr--show {
  display: block;
  animation: a 0.2s;
}
.cookies-gdpr__flex {
  display: block;
  padding: 15px;
}
.cookies-gdpr__text {
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  color: white;
}
.cookies-gdpr__content {
  width: calc(100% - 170px);
  height: 28px;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cookies-gdpr__button {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  font-weight: 700;
  font-size: 12px;
  line-height: 28px;
  color: white;
  padding: 8px 50px;
  background-color: black;
}
.cookies-gdpr__button, .cookies-gdpr__button:hover {
  border-radius: 60px;
  font-weight: 700;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 13px;
  line-height: 16px;
  padding: 8px 50px;
  cursor: pointer;
  width: auto;
  color: black;
  background-color: white;
}
@media (max-width: 500px) {
  .cookies-gdpr {
    width: 320px;
  }
  .cookies-gdpr__content {
    width: 150px;
  }
  .cookies-gdpr__button {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 400px) {
  .cookies-gdpr {
    width: 300px;
  }
  .cookies-gdpr__content {
    width: 130px;
  }
}
@media (max-width: 350px) {
  .cookies-gdpr {
    width: 270px;
  }
  .cookies-gdpr__content {
    width: 120px;
  }
  .cookies-gdpr__button {
    padding-left: 30px;
    padding-right: 30px;
  }
}