@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@container myContainer (max-width: 767px) {
  .my-tile {
    border: 3px solid red;
  }
}
@container (min-width: 768px) {
  .my-tile {
    border: 3px solid red;
  }
}
.back-to-top {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
  right: 20px;
  bottom: 60px;
  z-index: 999;
}
.back-to-top button {
  /* ignore clicks while hidden */
  border-radius: 100px;
  background: #442760;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
  width: 51px;
  height: 51px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: none;
  font-family: Figtree;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 18px */
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.back-to-top--sticky {
  position: sticky;
  height: 0;
  overflow: visible;
  width: 173px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
}
.back-to-top--sticky button {
  flex-direction: row-reverse;
  width: auto;
  border-radius: 4px;
  gap: 16px;
  padding: 12px 24px;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.back-to-top--sticky svg {
  width: 11.175px;
  height: 6.585px;
}

@media all and (min-width: 980px) {
  .back-to-top.fab {
    display: none;
  }
}

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