/* css/modal.css */
/* Small modal for My-Links ID */

.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.modal.is-open{
  display: block;
}

.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.modal__panel{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 420px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 32px);

  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  overflow: hidden;
}

.modal__panel iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.modal__close{
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
