.helpertool {
  position: relative;
  margin-bottom: 30px;
  padding: .75rem;
  padding-top: 5px;
  border: solid #d8e6ea 1px;
  border-radius: .125rem;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(2,16,20,.24);
  transition: right 300ms;
}
.helpertool.fixed {
  position: fixed;
  top: 200px;
  right: 0px;
  width: 230px;
  /*height: 200px;*/
  border-right: none;
  border-radius: .125rem 0 0 .125rem;
}

#helpertool__counter {
  margin-bottom: 15px;
  padding-right: 15px;
  border-bottom: solid #ccc 2px;
  height: 35px;
  text-align: right;
  font-size: 2rem;
  color: #ccc;
  overflow: hidden;
  transition: color 300ms;
  cursor: pointer;
}
#helpertool__counter.stopped {
  color: #fcc30b;
}

.helpertool.hidden {
  right: -230px;
}

#helpertool__title {
  position: absolute;
  top: 14px;
  left: 15px;
  font-size: 1.5rem;
  font-weight: normal;
  color: #ccc;
}
.helpertool h2 {
  font-size: 1.1rem;
  color: #333;
}
.helpertool h3 {
  margin: 15px 0 0 0;
  font-size: 1rem;
  color: #444;
}
.helpertool p {
  margin: 0;
  font-size: .75rem;
}
