/* Default class for an overlay */
.ow-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;

  background: #000;
  opacity: 0.7;
}

/* Default class for both hidden overlay and modal window */
.ow-closed {
  display: none;
}

/* Default class for modal window */
.ow-modal {
  position: fixed;
  z-index: 1010;
  left: 50%;
  top: 50px;
  width: 300px;
  height: 300px;

  background-color: #fff;
}
