/* 
** toTop
*/
#toTop {
  bottom: 0;
  right: 0;
  display: none;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: fixed;
  text-decoration: none;
  //fix for side push header
  z-index: 1000;
  font-size: 0;
  color: transparent;
  background-color: $colorMain;
  opacity: 0.7;
}

#toTop:after {
  color: $lightColor;
  content: '\f106';
  font-size: 16px;
  line-height: 50px;
  font-family: "Font Awesome 5 Free", sans-serif;
  text-align: center;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.2s linear;
  font-weight: 900;
}

#toTopHover, #toTop:hover {
  bottom: 3px;
  opacity: 1;
}

#toTop:hover:after {
  color: $lightColor;
}

#toTop:active, #toTop:focus {
  outline: medium none;
}

.modal-open #toTop {
  visibility: hidden;
}

@media (max-width: 1199px) {
  #toTop{
    width: 40px;
    height: 40px;
    &::after{
      line-height: 40px;
    }
  }
}