#topbar {
  position:fixed;
  bottom: -60px;
  display: block;
  z-index: 99999;
  box-sizing: border-box;
  width: 100%;
  padding: 0px;
  background-color: #fdd761;
  color: #000;
  font-size: 25px;
  text-align: center;
  transition: bottom .5s;
  min-height: 60px;
  height: auto;
  font-weight: bold;
  line-height: 16px
}
#toggleTop { display: none; }
#showTop {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 45px;
  display: block;
  padding: 4px 10px;
  margin: 0;
  background-color: #fdd761;
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  border-top: solid 3px #000;
  cursor: pointer;
  opacity: .9
}
#hideTop {
  float: right;
  display: inline-block;
  position: relative;
  right: 53px;
  padding: 20px 5px 0px 5px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer
}
#toggleTop:checked + #topbar {
  transition: bottom .5s;
  bottom:0px;
}
