
@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

header .main-button {
    animation: 1s infinite alternate scale;
}

.time {
  position: fixed;
  top: 8rem;
  right: 0;
  background-color: #fff;
  padding: 1rem 2rem 1rem 7rem;
  align-items: center;
  cursor: pointer;
  display: none;
  z-index: 999;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px
}

.last__box-text {
    margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Gilroy700';
}

.last__box-count {
  font-size: 14px;
  line-height: 1;
  color: #ef2b2b;
  font-weight: 600;
}

.block-download-time:before {
  content: "";
  background-image: url('icon_download_green.png');
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8%;
  width: 30px;
  height: 30px
}