@charset "utf-8";
.cmshtml #page-top {
  background: #006BC9;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 7px;
  display: block;
  position: fixed;
  bottom: 72px;
  right: 75px;
  z-index: 33;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}
.cmshtml #page-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0%;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover {
  background: #007AE5;
  bottom: 75px;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .cmshtml #page-top:hover {
    bottom: 23px;
  }
  .cmshtml #page-top:before {
    width: 10px;
    height: 10px;
  }
}
/*------------------------------------------------------*/
.cmshtml .load-fade {
  opacity: 0;
  transition: all 2s;
  overflow: hidden;
}
.cmshtml .load-fade.done {
  opacity: 1;
}
.cmshtml .to-lr {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/
.cmshtml .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}