@media screen and (max-width:1260px){

	#scroll-progress {
		position:fixed;
		width:100%; /* width of bar */
		height:5px; /* thickness of bar */
		background-color:transparent; /* */
		color:rgb(6, 150, 215) !important; /* */
		top:0px; /* distance from top of page */
		border:none;
		z-index:10000; /* overlays on top of disappearing header*/
		opacity:0; /* not showing */
		display:none; /* not showing */
		transition:all .40s ease;

	}

	#scroll-progress.show{
		opacity:1;
		position:fixed;
		top:0px;
	}
} 