#toTop {
  position: fixed;
  display: inline-block;
  bottom: 30px;
  right: -40px;
  width: 40px;
  height: 40px;
  z-index: 1000;
  cursor: pointer;
  text-align: center;
  color: #ffffff;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 0 0 3px #2B272F;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease-in-out;
}
#toTop:hover {
  background: #2b272f;
  box-shadow: 0 0 0 3px #D62A32;

}

#toTop svg{
  position: relative;
  top: 8px;
  right: 0px;
  transition: all .3s ease-in-out;
}
#toTop svg path{
  stroke: #2B272F;
  transition: all .3s ease-in-out;
}

#toTop:hover svg {
  cursor: pointer;
  fill: #013f7a;
  transition: all .3s ease-in-out;
}
#toTop:hover svg path{
  stroke: #ffffff;
}

#toTop.show {
  opacity: 1;
  visibility: visible;
  right: calc(4%);
}