/* POPUP, DRAW AND PDF-PREVIEW  */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 999999;
  color: #ddd;
  padding: 3rem;
  display: none;
}

.popup-container.show {
  display: block;
}

.popup-container .close-button {
  position: fixed;
  top: 0;
  right: 0;
  padding: 20px 30px;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  border: none;
  font-size: 35pt;
  font-weight: bold;
}

.popup-container .close-button:hover {
  color: #fff;
  transition: color 0.5s ease;
}

#diagram-canvas {
  cursor: url('../images/favicon-32x32-3.png'), crosshair;
}
#output__section {
    display: none;
}


