@charset "utf-8";
.cmshtml #page-top {
  display: block;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 33;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.cmshtml #page-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -5px 0 0 -10px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: rotate(-45deg);
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover:before {
  top: 0;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
  }
}
/*------------------------------------------------------*/
.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 .catch_txt span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  animation: fadeInUp 0.5s forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cmshtml .mv_img {
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s;
}
.cmshtml .mv_img:nth-child(2) {
  transition-delay: 0.3s;
}
.cmshtml .mv_img:nth-child(3) {
  transition-delay: 0.6s;
}
.cmshtml .done .mv_img {
  opacity: 1;
  transform: translateY(0);
}


/*------------------------------------------------------*/
.cmshtml .mv_img .rdslideInner,
.cmshtml .mv_img .rdsp-buttons {
    display: none;
}

#editView .cmshtml .mv_img {
    transform: none;
    opacity: 1;
}

@media screen and (max-width: 680px) {
    .cmshtml .mv_imgs > div.rdblock {
        width: calc(50% - 20px)!important;
        margin: 0 auto!important;
    }
}
/*------------------------------------------------------*/