/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.BackLink {
  all: unset;
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity cubic-bezier(0.4, 0, 0.2, 1) 200ms 0ms;
  align-items: center;
  display: inline-flex;
  flex: 1;
  font-size: 14px;
  line-height: 1.25;
  justify-content: flex-start;
}
.BackLink:hover {
  opacity: 1;
}
.BackLink--focus-visible:focus {
  position: relative;
  box-shadow: 0 0 0 3px var(--colorsFocusRingPrimary, #a9d1ff);
}

.BackLink__back-icon {
  margin-right: 8px;
}

/*# sourceMappingURL=index.css.map */
