@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

.cookies-bandeau {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
  width: 45%;
  max-width: 500px;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: 0px;
  z-index: 999999;
}
.cookies-bandeau .cookies-title {
  font-family: "Lato", "Arial";
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin: 0;
  padding: 0 40px;
  padding-bottom: 10px;
}
.cookies-bandeau .cookies-text {
  font-family: "Lato", "Arial";
  font-size: 13px;
  color: #666666;
  margin: 0;
  padding: 0 40px;
  padding-bottom: 20px;
}
.cookies-bandeau .cookies-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cookies-bandeau .cookies-buttons .cookies-button {
  width: calc(100% - 80px);
  margin: 0;
  padding: 20px;
  text-transform: uppercase;
  font-family: "Montserrat", "Arial";
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background-color: var(--pink);
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .cookies-bandeau {
    width: calc(100vw - 20px);
  }
}
