/****************
 * Fonts
 ****************/
/****************
 * Paints
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
.back-to-top-button {
  position: fixed !important;
  bottom: 7.5rem;
  right: 1.25rem;
  background-color: #cf3339;
  color: #fff;
  border-radius: 50%;
  width: 2.5rem !important;
  height: 2.5rem;
  z-index: 99;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  pointer-events: none;
}
.back-to-top-button.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.back-to-top-button span {
  display: flex;
  align-items: center;
  justify-content: center;
}