.ce-banner {
  position: fixed;
  bottom: 0;
  width: calc(100% - 20px);
  background-color: #7B7B7BF0;
  padding: 20px 60px 20px 40px;
  left: 50%;
  margin: 0 auto 0.8rem;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  z-index: 9999999999;
  --cookie-banner-offset: 0;
  transform: translate(-50%, var(--cookie-banner-offset));
  transition: all 500ms ease;
}

.banner-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-copy {
  width: 50%;
}

.banner-copy a {
  color: #fff;
  text-decoration: underline;
}

.banner-close-button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  margin: 10px 14px;
  cursor: pointer;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

.banner-buttons .ce-disable,
.banner-buttons .ce-accept {
  background-color: #7B7B7B00;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  color: #fff;
  letter-spacing: 0.2rem;
  height: 5rem;
  margin: 0.8rem;
  font-weight: normal;
  text-transform: uppercase;
  width: 25.5rem;
}

.banner-buttons .ce-disable {
  width: 34rem;
}

.banner-buttons .ce-accept {
  width: 23rem;
  background-color: #006635;
}

@media (max-width: 1260px) {
  .banner-content-container {
    flex-direction: column;
  }

  .banner-buttons {
    margin-top: 4px;
  }

  .banner-copy {
    width: 100%;
  }

}

@media (max-width: 840px) {
  .banner-buttons {
    margin-top: 4px;
    flex-direction: column;
  }
}

@media (max-width: 580px) {
  .banner-buttons .ce-disable {
    width: 100%;
  }
  
  .banner-buttons .ce-accept {
    width: 100%;
  }

  .banner-buttons {
    width: 100%;
    font-size: 2.5vw;
  }

  .banner-copy {
    font-size: 1.7rem;
  }
}