.counter__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.counter__item {
  display: flex;
  gap: 5px;
}

.counter__item-label {
  font-weight: 700;
}

.counter .statistic {
  margin-top: 20px;
}

.counter .statistic__title {
  margin-bottom: 10px;
}

.counter .statistic__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.counter .statistic__item {
  display: flex;
  width: 100%;
  gap: 5px;
}

.counter .statistic__item-label {
  font-weight: 700;
}

.counter-day__link {
  position: fixed;
  z-index: 999;
  bottom: 5px;
  left: 5px;
  padding: 25px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border-radius: 50%;
  background: #000 url('data:image/svg+xml;charset=UTF-8,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg id="edit / show"%3E%3Cpath id="edit / show_2" d="M12 18.9999C10.3599 19.0203 8.7367 18.6663 7.254 17.9649C6.10469 17.4041 5.07265 16.6296 4.213 15.6829C3.30243 14.704 2.58547 13.5615 2.1 12.3159L2 11.9999L2.105 11.6839C2.59082 10.4393 3.30624 9.29713 4.214 8.31686C5.07334 7.37017 6.10504 6.59572 7.254 6.03486C8.73671 5.33345 10.3599 4.97947 12 4.99986C13.6401 4.9795 15.2633 5.33348 16.746 6.03486C17.8953 6.59559 18.9274 7.37005 19.787 8.31686C20.6993 9.29441 21.4165 10.4372 21.9 11.6839L22 11.9999L21.895 12.3159C20.3262 16.3996 16.3742 19.0692 12 18.9999ZM12 6.99986C8.59587 6.89319 5.47142 8.87495 4.117 11.9999C5.4712 15.125 8.59579 17.1068 12 16.9999C15.4041 17.1062 18.5284 15.1246 19.883 11.9999C18.5304 8.87344 15.4047 6.89094 12 6.99986ZM12 14.9999C10.5573 15.0094 9.30937 13.9972 9.02097 12.5836C8.73256 11.17 9.48427 9.74988 10.8154 9.19352C12.1465 8.63716 13.6852 9.09999 14.4885 10.2984C15.2919 11.4967 15.1354 13.0959 14.115 14.1159C13.5563 14.6811 12.7948 14.9994 12 14.9999Z" fill="%23FFFFFF"/%3E%3C/g%3E%3C/svg%3E') no-repeat center;
  box-shadow: 1px 1px 5px #808080;
}
.counter-day__link span {
  position: absolute;
  top: -10px;
  right: -15px;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  transform-origin: center bottom;
  animation-name: bounceIn;

  animation-duration: 1s;
  animation-iteration-count: 1;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #ff6b6b;
  animation-fill-mode: both;
}


