.tc-scroll-to-top-wrap.edit-mode,
.tc-scroll-to-top-wrap.single-page-off {
  display: none !important
}

.tc-scroll-to-top-button {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #094EC0;
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

.tc-scroll-to-top-button i {
  color: #fff;
  font-size: 16px
}

.tc-scroll-to-top-button:hover {
  background-color: #094EC0
}

.style1 .tc-scroll-to-top-button {
  top: 0;
}

.active .tc-scroll-to-top-button {
  opacity: 1;
  visibility: visible;
}

.style1.active .tc-scroll-to-top-button {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
}