/**
 * @file
 * Styles for the Webform Popup Cookie Aware module.
 */
.webform-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.webform-popup-content {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  position: relative;
  min-width: 320px;
  max-width: 90vw;
}
.webform-popup-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  background: none;
  border: none;
  font-size: 2em;
  cursor: pointer;
}