.meter { 
  height: 25px;
  position: relative;
  background: #999;
  overflow: hidden;
  border-radius: 5px;
  max-width: 60%;
}

.meter span {
  display: block;
  height: 100%;
}

.progress {
  background-color:#407cc5;
  animation: progressBar 3s ease-in-out;
  animation-fill-mode:both; 
  color: white;
  padding-left: 15px;
}

@keyframes progressBar {
0% { width: 0; }
100% { width: 100%; }
}

.petitioncounter-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%;
}

.petitioncounter-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
