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

  background: #424242;
  opacity: 0.8;

  /*background: #fff;*/
  /*opacity: 0.5;*/
}

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

/* Default class for modal window */
.modal {
  position: fixed;
  z-index: 10020;
  left: 50%;
  top: 50%;
  /*top: 50px;*/
  width: 500px;
  min-height: 200px;
  margin-top: -200px;

  background-color: #fff;
  /*background-color: #e4e4e4;*/
  -webkit-border-radius: 5px;
  /*-webkit-box-shadow:1px 1px 5px 3px #E4E4E4;*/
  border-radius:5px 5px 5px 5px;
  /*box-shadow:1px 1px 5px 3px #E4E4E4;*/
  /*position: absolute;*/

  /*border: 3px solid #ff6d00;*/
}
