.ng-modal-overlay {
  /* A dark translucent div that covers the whole screen */
  position:absolute;
  z-index:9999;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color:#00427f;
  opacity: 0.5;
}
.ng-modal-dialog {
  /* A centered div above the overlay with a box shadow. */
  z-index:10000;
  position: absolute;
  width: 50%; /* Default */
  min-height: 200px !important;
  height:auto ;
  /* 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:3px solid #079181;
  box-shadow: 4px 4px 80px #000;
}
.ng-modal-dialog-content {
  padding:20px;  
  margin-bottom:20px;
}
.ng-modal-dialog-content h3{
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
.ng-modal-dialog-content p{
  text-align: left;
  color:#00427f;
}
.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';
}

.ng-modal-button-close{
  position: absolute;
  bottom: 10px;
  left: 0px;
  padding: 5px;
  width: 100%;
  cursor: pointer;
  font-size: 120%;
  text-align:center;
  display: inline-block;  
}

.ng-modal-button-close button{
  margin:0 auto;
  width:60px;
  color:#00427f;
  background: #fff;
  font-weight: bold;
  border-radius: 5px;
  border:2px solid #00427f;
}