@charset "UTF-8";
/*------------------------------------------------------*/
.cmshtml #page-top {
  background: #111;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 5px;
  position: fixed;
  bottom: 48px;
  right: 40px;
  z-index: 33;
  transition: all 0.3s;
}
.cmshtml #page-top:before {
  background-image: url("../img/top_arrow.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 10px;
  height: 23px;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 6px;
  left: 0;
  right: 6px;
  z-index: auto;
  transition: all 0.3s;
}
.cmshtml #page-top:hover {
  background: #333;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    font-size: 12px;
    padding: 2px;
  }
  .cmshtml #page-top:before {
    width: 7px;
    height: 23px;
    top: 8px;
  }
}
/*------------------------------------------------------*/
.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:has(.contact_thanks_msg) .form_message,
.cmshtml:has(.contact_confirm_msg) .form_message {
    display: none;
}