@charset "UTF-8";
/* Top ***********************************************************************************************************************************************/
.toTop {
  text-decoration: none !important;
  position: fixed;
  transition: background-color ease 0.5s;
  z-index: 80;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background-color: rgba(51, 51, 51, 0.7);
}
.toTop a {
  color: #FFFFFF;
  text-decoration: none !important;
  display: block;
}
.toTop a:before {
  content: '';
  font-family: FontAwesome;
  font-size: 1.5rem;
}
.toTop a:hover {
  color: white;
}
.toTop span {
  display: none;
}
.toTop.fixed {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.toTop.fixed:hover {
  background-color: #333;
}
