.poolcounter {}
.poolcounter__box {}

.poolcounter__capacity {}
.poolcounter__freeplaces {}
.poolcounter__maxcapacity {}

.poolcounter__meter {
    position: relative;
    margin-bottom: 1.4em;
    padding: 0.25em 1em;
    border-radius: 2px;
    overflow: hidden;
    background-color: green;
}
.poolcounter__meter-progress {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #d70020;
    -webkit-animation-name: progress;
            animation-name: progress;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards;
    will-change: width;
}
.poolcounter__meter-legend {
    display: block;
    text-align: center;
    position: relative;
    color: #fff;
    text-shadow: 0 1px 0 #000;
}
.poolcounter__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    margin-top: -1em;
}
.poolcounter__footer > * {
    margin-top: 1em;
}
.poolcounter__lastmodified {
	margin-left: auto;
    padding-left: 1.5em;
    text-align: right;
}

@-webkit-keyframes progress {
    from {width: 0%}
    to {}
}

@keyframes progress {
    from {width: 0%}
    to {}
}