/* Make clicks pass-through */#nprogress {	pointer-events: none;	/* Remove these to get rid of the spinner */}#nprogress .bar {	background: #29d;	position: fixed;	z-index: 14;	top: 0;	left: 0;	width: 100%;	height: 2px;	/* Fancy blur effect */}#nprogress .bar .peg {	display: block;	position: absolute;	right: 0px;	width: 100px;	height: 100%;	box-shadow: 0 0 10px #29d, 0 0 5px #29d;	opacity: 1.0;	-webkit-transform: rotate(3deg) translate(0px, -4px);	-ms-transform: rotate(3deg) translate(0px, -4px);	transform: rotate(3deg) translate(0px, -4px);}#nprogress .bar.bar-bottom {	top: auto;	bottom: 0;}#nprogress .bar.bar-bottom .peg {	-webkit-transform: rotate(-3deg) translate(0px, 4px);	-ms-transform: rotate(-3deg) translate(0px, 4px);	transform: rotate(-3deg) translate(0px, 4px);}#nprogress .spinner {	display: block;	position: fixed;	z-index: 1031;	top: 15px;	right: 15px;}#nprogress .spinner-icon {	width: 18px;	height: 18px;	box-sizing: border-box;	border: solid 2px transparent;	border-top-color: #29d;	border-left-color: #29d;	border-radius: 50%;	-webkit-animation: nprogress-spinner 400ms linear infinite;	animation: nprogress-spinner 400ms linear infinite;}.nprogress-custom-parent {	overflow: hidden;	position: relative;}.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar {	position: absolute;}@-webkit-keyframes nprogress-spinner {	0% {		-webkit-transform: rotate(0deg);	}	100% {		-webkit-transform: rotate(360deg);	}}@keyframes nprogress-spinner {	0% {		transform: rotate(0deg);	}	100% {		transform: rotate(360deg);	}}#nprogress .bar-primary {	background: #00c3aa;}#nprogress .bar-primary .peg {	box-shadow: 0 0 10px #00c3aa, 0 0 5px #00c3aa;}#nprogress .bar-secondary {	background: #4d8dce;}#nprogress .bar-secondary .peg {	box-shadow: 0 0 10px #4d8dce, 0 0 5px #4d8dce;}#nprogress .bar-success {	background: #6fbb47;}#nprogress .bar-success .peg {	box-shadow: 0 0 10px #6fbb47, 0 0 5px #6fbb47;}#nprogress .bar-info {	background: #55b6ef;}#nprogress .bar-info .peg {	box-shadow: 0 0 10px #55b6ef, 0 0 5px #55b6ef;}#nprogress .bar-warning {	background: #fddc31;}#nprogress .bar-warning .peg {	box-shadow: 0 0 10px #fddc31, 0 0 5px #fddc31;}#nprogress .bar-danger {	background: #fb6820;}#nprogress .bar-danger .peg {	box-shadow: 0 0 10px #fb6820, 0 0 5px #fb6820;}#nprogress .bar-light {	background: #c3c3c4;}#nprogress .bar-light .peg {	box-shadow: 0 0 10px #c3c3c4, 0 0 5px #c3c3c4;}#nprogress .bar-dark {	background: #565858;}#nprogress .bar-dark .peg {	box-shadow: 0 0 10px #565858, 0 0 5px #565858;}#nprogress .bar-tertiary {	background: #9b82e8;}#nprogress .bar-tertiary .peg {	box-shadow: 0 0 10px #9b82e8, 0 0 5px #9b82e8;}