#OverLay { 
    position: fixed; 
    z-index: 10000; 
    top: 0; bottom: 0; 
    left: 0; right: 0; 
    width: 100%; 
    height: 100%; 
    filter: alpha(opacity = 30); 
    background-color: rgba(0,0,0,0.3); 
    color: White;
}
#ModalWindow{
  position: absolute;
  margin: 0 auto;
  top: 0px;
  left: 0px;
  z-index: 900001;
  display: none;
}

#Popup{
  position: absolute;
  padding: 14px;
}

#PopupContent{
  margin: 0;
  border: 1px solid #FF9100;
  position: relative;
  padding: 10px;
  border-radius: 3px;

  background: #f0f0f0;
}

#PopupClose{
  position: absolute;
  background: url('../images/PopupClose.png');
  float: right;
  right: -14px;
  top: -14px;
  z-index: 99999;
  height: 27px;
  width: 27px;
  display: block;
}
#Popup h2{
  margin: 0;
  color: #505050;
  font-size: 18px;
  font-weight: normal;
  line-height: 18px;
}

#DirectoryChooseContainer a:hover{
    cursor: pointer;
}


/*ModalDialog*/
.modal-body{
    overflow: auto;
}

@media (min-width:1080px){
    .modal-lg{max-width:1080px}
}

/*Loader*/
#Loader{
    
    position:fixed;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    
    content: url(/images/loader/default.svg);
    
    z-index: 8888;
    
    /*opacity: 0.8;*/
}

@media (max-width:1200px){
    #Loader{width:200px}
}
@media (max-width:768px){
    #Loader{width:160px}
}


#ProgressBar{
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  
  width: 200px;
  height: 50px;
  line-height: 50px;
  background: #EEEEEE url(/images/loader/rolling-blue.svg) 20px center no-repeat;
  opacity: 0.9;
  
  border: 1px solid #555555; /*#00b2ff*/
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  
  padding: 0 15px 0 35px;
  
  border-radius: 5px;
  
  z-index: 900000;
}


/*Modal background for chrome*/
.modal-backdrop.in{
    opacity: 1;
    background-color: rgba(0,0,0,0.5);
}