.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:#000000;
  opacity: 0.4;
}
.ng-modal-dialog {
  /* A centered div above the overlay with a box shadow. */
  z-index:10000;
  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: #444444;*/
  box-shadow: 4px 4px 80px #000;
}
.ng-modal-dialog-content {
  
  text-align: left;
/*  background: #2B2B2B;
padding: 10px;
    height: 50px;*/
}
.ng-modal-close {
  position: absolute;
  top: -9px;
  right: 12px;
  padding: 5px;
  cursor: pointer;
  font-size: 120%;
  display: inline-block;
  font-weight: bold;
  font-family: 'arial', 'sans-serif';
}

.modal-close-icon{
/*  color: white;*/
  font-size: 45px;
}

.custom-modal-title{
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
  font-size: 17px;
}

.ng-modal-dialog-header {
  padding: 10px;
  text-align: left;
  position: relative;
  z-index: 1000;
/*  background: #2B2B2B;*/
    height: 50px;
}
