.cookie-banner__wrapper {
  position: fixed;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: left;
  padding: 0 20px;
  pointer-events: none;
  z-index: 200;
}

.cookie-banner {
  width: fit-content;
  height: auto;
  background: #333;
  color: white;
  padding: 25px 35px;
  border-radius: 15px;
  pointer-events: auto;
}

.cookie-banner__button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 1rem;
  text-transform: capitalize;
  cursor: pointer;
}

.cookie-banner__text {
  display: inline-block;
  font-size: 1rem;
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .cookie-banner__wrapper {
    justify-content: center;
  }
  .cookie-banner {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  .cookie-banner__text {
    text-align: center;
    margin-right: 0;
  }
}
