﻿ /* A dark translucent div that covers the whole screen */
.ng-modal-overlay {
 position:fixed;
  z-index:997;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:transparent;
  opacity: 0.8;
}

.ng-modal-dialog {
  /* A centered div above the overlay with a box shadow. */
  z-index:998;
  position: absolute;
  width: 50%; /* Default */

  /* Center the dialog */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.5);

  /*border-radius: 5px;*/
  /*border: solid 1px #dedede;*/
  /*box-shadow: 5px 5px 10px #737373;*/  
}
.ng-modal-dialog-content {
    padding: 10px;
    text-align: left;
    padding-top: 0 !important;
    word-break: break-word;
}

.ng-modal-close {
  position: absolute;
  top: 3px;
  right: 5px;
  padding: 5px;
  cursor: pointer;
  font-size: 120%;
  display: inline-block;
  font-weight: bold;
  font-family: 'arial', 'sans-serif';
}

.relative {
    position: relative;
}



