/** 3.25 ToTop Button */
.ui-to-top {
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.15);
  position: fixed;
  right: 15px;
  bottom: 15px;
  overflow: hidden;
  z-index: 1;
  -webkit-transform: translateY(100px);
  transform: translateY(100px); }
  .ui-to-top:focus {
    color: #fff; }
  .ui-to-top:hover {
    color: #fff;
    background: #55bbeb; }
  .ui-to-top.active {
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.mobile .ui-to-top,
.tablet .ui-to-top {
  display: none !important; }

@media (min-width: 480px) {
  .ui-to-top {
    right: 40px;
    bottom: 40px; } }