﻿.loaderAssignment {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 10px;
  height: 10px;
  margin-left:40%;
  display: none;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
  z-index: 10; /* keep on top of other elements on the page */
  outline: 9999px solid rgba(0,0,0,0.5);
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.loaderAssignment-wrapper{
	
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
	
}

.loaderAssignment-wrapper .loaderAssignment{
	display: block !important;
	margin:0;
	outline: none;
}
.autoHeight{
    height:auto !important;
}

.list li{
    margin-left:0px !important;
}

.txtBoxCss{
    width:99%;
}

.m-left {
    margin-left: 0px !important;
}