.consent-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent-popup .popup-body {
  position: relative;
  background: #f4f4f4;
  padding: 50px 30px 60px;
  width: 600px;`
  max-width: 100%;
  text-align: center;
}
.consent-popup .popup-body span.close-trigger {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid #000;
  top: 10px;
  cursor: pointer;
}
.consent-popup .popup-body {
  position: relative;
  background: #f4f4f4;
  padding: 50px 30px 20px;
}
.consent-popup .popup-body p {
  margin: 20px 0 0 0;
  font-size: 28pt;
  color: #000;
}
.consent-popup .popup-body a {
  color: #0058e7;
}
body.proceed .consent-popup {
  display: none;
}