#progress {
  position: fixed;
  right: 40px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.2s;
  z-index: 999;
  display: grid;
  background: rgb(4, 25, 43) 9%;
}

#progress:hover {
    transform: scale(1.1);
}
  
#progress-value {
  display: block;
  height: calc(100% - 8.3px);
  width: calc(100% - 8.3px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  color: #001a2e;
}
