.ABN_loaderBG {
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background-color: rgba(0,0,0,.5);
	z-index: 1000;
	display:none;
}

.ABN_loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #2a53a2;
	border-bottom: 16px solid #2a53a2;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	position:absolute;
	top:100px;
	left:50%;
	top:50%;
	margin-top:-60px;
	margin-left:-60px;
	z-index: 1000;
  }
  
  @-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
  }

  #ABN_modalPage {
	  top:35%;
  }