.footer-desktop {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background-color: #e6e9ed;
  flex-direction: row-reverse;
  height: 60px;
  padding-right: 64px;
}

.footer-mobile {
  display: none;
  align-items: center;
  background-color: transparent;
  justify-content: center;
  padding-right: 0;
  margin-bottom: 10px;
}

.copyright {
  color: grey;
  font-size: 12px;
}

@media only screen and (max-width: 991px) {
  .footer-desktop {
    display: none;
  }

  .footer-mobile {
    display: flex;
  }
}
