@charset "utf-8";
/* CSS Document */
.container {
	width: 100%;
	margin: 0 auto;
}
#progress-baro {
	--scrollAmount: 0%;
	width: var(--scrollAmount);
    background-repeat:repeat;
	position: fixed;
	bottom: 0;
	z-index:10000000000000000000000;
}
p {
	line-height: 1.5;
}
.progress-bar {
white-space: nowrap;
transition: width .6s ease;
text-shadow: 0px 1px 8px rgba(0,0,0,0.75);
}
/* Progress bar */

#progress-baro {
 z-index:99999

}
#progress-baro:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 1rem 1rem !important;
  animation: wavescrollbarAnimation .1s linear infinite;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
