/* Your custom css code goes here */
.goTop {
  transform: translateX(0);
  transition: transform 0.2s;
  &.hide {
  transform: translateX(120%);
  }
  position: fixed;
  right: 10px;
  bottom: 10px;
  .goTopBtn {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    .fa-arrow-alt-circle-up {
      color: $primary;
    }
    }
  }