#back-to-top {//sass-lint:disable-line no-ids
  display: none;

  .fa{
    font-size:2.5rem;
  }

  @media screen and (min-width: 1190px) {
    display: block;
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 10;
    text-align: center;
    cursor: pointer;
    text-transform:uppercase;
    transition: opacity 0.2s ease-out;
    opacity: 0;
    transition: opacity .25s ease-in-out;
  }
  &.show {
    opacity: 1;
    transition: opacity .25s ease-in-out;
  }
}
