.modal {
  z-index: 999999;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.66);
  overflow: scroll;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.modal:not(.open) {
  display: none;
}
.modal .entry-content {
  background-color: #fff;
}
.modal .modal-panel {
  position: relative;
  display: block;
  width: var(--container-width) !important;
  background-color: var(--background-color);
  max-width: 1000px;
  margin: 40px auto;
  overflow: auto;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}
.modal .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: transparent;
  border: none;
  z-index: 1000;
  cursor: pointer;
}

/*# sourceMappingURL=modal.css.map */
