/*Per Ronish, all pages the zoom should be 80%. Also should update dashboard.js line 4*/
body{
  zoom: 0.8 !important;
  -moz-transform-origin: left center;
}
/*End*/

@media screen and (max-width: 1440px) and (max-height: 900px) {
/*@media screen and (max-width: 1920px) and (max-height: 1080px) {*/
	body{
	  zoom: 0.8 !important;
	  -moz-transform-origin: left center;
	}
}

/*For Mobile*/
@media(max-width:600px){
	body{
		zoom: 1 !important;
	}
}
/* For firefox only */
/*@media screen and (max-width: 1440px) and (max-height: 900px) {
	@-moz-document url-prefix() {
	  .page-title {
			position: relative !important;
		    top: 0 !important;
		}
	}
}*/

.modal-backdrop{
  width:100%;
  height:100%;
}

/* Removing extra icons and extra styling in IE */
/* eg. removing border and extra password icon */
input::-ms-clear, input::-ms-reveal {
  display: none;
}

/* styles specific for IE 10 or further versions */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body{
    zoom: 1;
    overflow-x: hidden;
  }
}