/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Tablesort indicator styles.
 */

.tablesort {
  position: absolute;
  top: 50%;
  inset-inline-end: 1rem;
  width: 0.875rem;
  height: var(--space-m);
  margin-block-start: -0.5rem;
  opacity: 0.5;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: auto;
}

[dir="rtl"] .tablesort {
  /* Horizontally flip the element. */
  transform: scaleX(-1);
}

@media (forced-colors: active) {
  .tablesort {
    background: linktext;
    mask-image: url("");
    mask-repeat: no-repeat;
    mask-position: 0 50%;
  }
}

.tablesort--asc {
  opacity: 1;
  background-image: url("");
}

@media (forced-colors: active) {
  .tablesort--asc {
    background: linktext;
    mask-image: url("");
  }
}

.tablesort--desc {
  opacity: 1;
  background-image: url("");
}

@media (forced-colors: active) {
  .tablesort--desc {
    background: linktext;
    mask-image: url("");
  }
}
