/*loader css*/
.global_loader{
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: 2222;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0% 0%;
    opacity: 0.5;
    display: flex;
    align-items: center;
}

.global_loader .loader {
    border: 5px solid #ccc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
	border-top: 5px solid #006600 !important;
	border-bottom: 5px solid #006600 !important;
	padding: 11px 0px 0px 9px !important;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*loader css*/
