/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: $yuvezzi-black;
 * $body-color: $gray-100;
 */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
  background: transparent;
  border: none;
  padding: 0;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top__button {
  width: 48px;
  height: 48px;
  background-color: #2F415B;
  border: none;
  border-radius: 24px;
  display: flex;
  gap: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.back-to-top__button:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.back-to-top__icon {
  color: #fff;
  width: 18px;
  height: 9px;
}
.back-to-top__label {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 100%;
  font-family: "Figtree", sans-serif;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.dtc-block-back-to-top-block .back-to-top__button {
  background-color: #A50776;
}

/*# sourceMappingURL=back-to-top.css.map*/