@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot");
  src:
    url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fontawesome-webfont.woff2") format("woff2"),
    url("../fonts/fontawesome-webfont.woff") format("woff"),
    url("../fonts/fontawesome-webfont.ttf") format("truetype"),
    url("../fonts/fontawesome-webfont.svg#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.fa {
  display: inline-block;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-angle-up::before {
  content: "\f106";
}

.ui-to-top.fa-angle-up {
  width: 50px;
  height: 50px;
  color: #ffffff;
  font-size: 26px;
  line-height: 50px;
  text-align: center;
  background: #55bbeb;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.3s all ease;
}

.ui-to-top.fa-angle-up:hover,
.ui-to-top.fa-angle-up:focus {
  color: #ffffff;
  background: #42b574;
  text-decoration: none;
}

.ui-to-top.fa-angle-up::before {
  line-height: inherit;
}

.fa-circle-o-notch::before {
  content: "\f1ce";
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(359deg);
  }
}
