body.noscroll {
  overflow: hidden;
}
.consent__popup {
  position: fixed;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.consent__popup.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.consent__overlay {
  position: absolute;
  background: #eeb211;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}
.consent__container,
.consent__buttons {
  display: flex;
  gap: 20px;
}
.consent__container {
  border-radius: 10px;
  background: #fff;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  min-width: 500px;
  position: relative;
  padding: 40px 30px;
  margin-top: -5%;
}
.consent__container *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .consent__container {
    max-width: calc(100% - 40px);
    min-width: initial;
    margin-top: initial;
  }
}