select:hover, select:active, select:focus, input:hover, input:active, input:focus, textarea:hover, textarea:active, textarea:focus, .btn:hover, .btn:active, .btn:focus{
			outline: 0px !important;
			-webkit-appearance:none;
			box-shadow: none !important;

		}
		


		h1,h2,h3,h4,h5,h6,p,label,div,input,select{
        	font-family: 'Roboto', sans-serif;
        }
		
		
/*page loader start*/
.loader {
  border: 2px solid black;
  border-bottom: 2px solid white;
  border-top: 2px solid white;
  border-left: 2px solid white;

  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: fixed; /* Use fixed position to keep it centered */
  top: 50%; /* Place the loader at the vertical center */
  left: 50%; /* Place the loader at the horizontal center */
  transform: translate(-50%, -50%);
  z-index: 9999;
  margin-top: -25px; /* Half of the loader's height */
  margin-left: -25px; /* Half of the loader's width */
  display: none; /* Initially hidden */
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



/* Add the overlay to cover the entire page */
.overlayy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1.0); /* Adjust the alpha value to control the opacity */
  z-index: 9998; /* Make sure the overlay is below the loader */
}
/*page loader end*/




/*Back button arrow*/
.icon-tabler-arrow-left:hover{
    background: lightgrey;
    border-radius: 50%;
    padding: 5px;
}




/*Page refresh icon*/
.icon-tabler-reload:hover{
    background: lightgrey;
    border-radius: 50%;
    padding:5px;
}



















/*media queries*/
@media only screen and (min-width: 20px) {
	/*smartphone portrait*/
.alll{
		margin-right: auto;
		margin-left: auto;
		display: block;
		width: 100%;
	}

}







@media only screen and (min-width: 520px) {
	/*smartphone landscape*/
.alll{
		margin-right: auto;
		margin-left: auto;
		display: block;
		width: 100%;
	}	
	
}








@media only screen and (min-width: 768px) {
	/*tablet portrait*/
.alll{
		margin-right: auto;
		margin-left: auto;
		display: block;
		width: 70%;
	}

}









@media only screen and (min-width: 1024px) {
	/*tablet/desktop landscape*/
.alll{
		margin-right: auto;
		margin-left: auto;
		display: block;
		width: 70%;
	}

	
}