﻿.ng-modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ng-modal-overlay {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
}
.ng-modal-dialog {
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100px;
  min-height: 100px;
  /*width: 50%;*/
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-color: #333;

  background-image: url(../images/loading-circle-green.gif);
  background-repeat: no-repeat;
  background-position: center center; 

  box-shadow: 4px 4px 80px #000;
  -webkit-box-shadow: 4px 4px 80px #000;
  -moz-box-shadow: 4px 4px 80px #000;
  -ms-box-shadow: 4px 4px 80px #000;
  -o-box-shadow: 4px 4px 80px #000;
  padding: 10px;  

  width: fit-content; 
  height: fit-content;
}
.ng-modal-dialog-info {
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100px;
  min-height: 100px;
  /*width: 50%;*/
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  background-color: #B6E4BD;
  box-shadow: 4px 4px 80px #999;
  -webkit-box-shadow: 4px 4px 80px #999;
  -moz-box-shadow: 4px 4px 80px #999;
  -ms-box-shadow: 4px 4px 80px #999;
  -o-box-shadow: 4px 4px 80px #999;
  padding: 10px;  
  width: fit-content; 
  height: fit-content;
}
.ng-modal-dialog-content {
  overflow: hidden;
  min-height: 100%;
}
.ng-modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  cursor: pointer;
  font-size: 120%;
  padding: 5px;
  display: inline-block;
}
.ng-modal-close-x {
  font-weight: bold;
  font-family: Arial, sans-serif;
}
.ng-modal-title {
  font-weight: bold;
  font-size: 200%;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: solid 1px #999;
}
