/**
 * @file
 * Styles for the Back to Page block.
 */

.back-to-page-wrapper {
  position: relative;
  z-index: 999;
  text-align: center;
   width: 100%;
   bottom: 8rem
}

@media (min-width: 1200px) {
  .back-to-page-wrapper {
    bottom: 14rem;
  }
}
.back-to-page-link {
  color: #fff;
}

@media (max-width: 1200px) {
  .back-to-page-link {
    position: absolute;
    left: 0;
    right: 0;
  }
}

.back-to-page-link:hover {
  text-decoration: underline;
  color: #0071bc;
}