:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .can-horizontally-scroll__parent {
    position: relative;
  }
  .can-horizontally-scroll__parent::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    background-image: linear-gradient(-270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5));
    width: 100%;
    height: 100%;
  }
  .can-horizontally-scroll__parent:focus-within::after {
    top: 4px;
    left: 4px;
    width: calc(100% - 2 * 4px);
    height: calc(100% - 2 * 4px);
  }
  .can-horizontally-scroll__parent.fade-both::after {
    background-image: linear-gradient(-270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.5));
  }
  .can-horizontally-scroll__parent.fade-left::after {
    background-image: linear-gradient(-270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0));
  }
}
/*# sourceMappingURL=horizontalScrollUI.css.map */