/* https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 * Expects all incoming values to be pixels
 */
.modal-legacy {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  background-image: url("../img/bkg-50.png");
}
.modal-legacy::after {
  display: block;
  clear: both;
  content: "";
}

.modal-stage {
  float: left;
  max-width: 90%;
  max-height: 90%;
}

.modal-display {
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url("../img/bkg-display.png");
  background-position: center center;
  border-bottom: 6px solid white;
  border-left: 6px solid white;
  border-right: 6px solid white;
  border-radius: 0px 0px 20px 20px;
}

.modal-titlebar {
  background-image: url("../img/bkg-titlebar.png");
  background-position: center center;
  border-top: 6px solid white;
  border-left: 6px solid white;
  border-right: 6px solid white;
  border-radius: 20px 20px 0px 0px;
}
.modal-titlebar::after {
  display: block;
  clear: both;
  content: "";
}
.modal-titlebar .modal-button {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  cursor: pointer;
  float: right;
}
.modal-titlebar .modal-button .modal-close {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

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