.je-cookies-opacity {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.8);
}
.je-cookies-acceptance {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  padding: 80px;
  background: white;
  width: 100%;
}
.je-cookies-acceptance-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.je-cookies-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 70px;
}
button.je-accept-cookies {
  background: #db362a;
  font-size: 22px;
  padding: 10px 20px;
  border: 0;
  color: white;
}
button.je-refuse-cookies {
  background-color: white;
  font-size: 22px;
  padding: 10px 20px;
  border: 1px solid #db362a;
  color: #db362a;
}
@media (max-width: 768px) {
  .je-cookies-acceptance {
    padding: 20px;
  }
  .je-cookies-acceptance-content {
    flex-direction: column;
  }
  button.je-accept-cookies {
    margin: 20px;
  }
}