.article-number-input[data-v-505941fe] {
  display: flex;
  flex-direction: column;
  gap: var(--onyx-spacing-xs);
}
.article-number-input__row[data-v-505941fe] {
  display: flex;
  align-items: flex-end;
  gap: var(--onyx-spacing-xs);
}
.article-number-input__tags[data-v-505941fe] {
  display: flex;
  flex-wrap: wrap;
  gap: var(--onyx-spacing-xs);
  padding-top: var(--onyx-spacing-2xs);
}/*#region breakpoints*/
/*#endregion breakpoints*/
/**
 * Applies CSS only if the screen width satisfies the given onyx breakpoint.
 * @param {string} $min-max - Whether the breakpoint should be considered as min or max width.
 * @param {string} $name - name of the onyx breakpoint. One of: 2xs, xs, sm, md, lg or xl
 *
 * @example screen(min, sm)
 * @example screen(max, sm)
 */
/**
 * Applies CSS only if the container width satisfies the given onyx breakpoint.
 * @param {string} $min-max - Whether the breakpoint should be considered as min or max width.
 * @param {string} $name - name of the onyx breakpoint. One of: 2xs, xs, sm, md, lg or xl
 * @param {number} $offset - optional offset to add to the min/max width. Useful if both min and max are used for the same breakpoint
 *
 * @example container(min, sm)
 * @example container(max, sm)
 */
.material-group-filter[data-v-a25f6f2b] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--onyx-spacing-md);
  width: 100%;
}
@media screen and (max-width: 768px) {
.material-group-filter[data-v-a25f6f2b] {
    grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 576px) {
.material-group-filter[data-v-a25f6f2b] {
    grid-template-columns: 1fr;
}
}/*#region breakpoints*/
/*#endregion breakpoints*/
/**
 * Applies CSS only if the screen width satisfies the given onyx breakpoint.
 * @param {string} $min-max - Whether the breakpoint should be considered as min or max width.
 * @param {string} $name - name of the onyx breakpoint. One of: 2xs, xs, sm, md, lg or xl
 *
 * @example screen(min, sm)
 * @example screen(max, sm)
 */
/**
 * Applies CSS only if the container width satisfies the given onyx breakpoint.
 * @param {string} $min-max - Whether the breakpoint should be considered as min or max width.
 * @param {string} $name - name of the onyx breakpoint. One of: 2xs, xs, sm, md, lg or xl
 * @param {number} $offset - optional offset to add to the min/max width. Useful if both min and max are used for the same breakpoint
 *
 * @example container(min, sm)
 * @example container(max, sm)
 */
.replay-filter[data-v-82e48aef] {
  display: flex;
  flex-direction: column;
  gap: var(--onyx-spacing-md);
}
.replay-filter__row[data-v-82e48aef] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--onyx-spacing-md);
  align-items: start;
}
@media screen and (max-width: 768px) {
.replay-filter__row[data-v-82e48aef] {
    grid-template-columns: 1fr;
}
}
.replay-filter__sub-grid[data-v-82e48aef] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--onyx-spacing-md);
}
@media screen and (max-width: 768px) {
.replay-filter__sub-grid[data-v-82e48aef] {
    grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 576px) {
.replay-filter__sub-grid[data-v-82e48aef] {
    grid-template-columns: 1fr;
}
}
.replay-filter__article-numbers[data-v-82e48aef] {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
.replay-filter__article-numbers[data-v-82e48aef] {
    max-width: 100%;
}
}
.replay-filter__actions[data-v-82e48aef] {
  display: flex;
  gap: var(--onyx-spacing-sm);
  justify-content: flex-end;
}.overflow-list[data-v-685c0ff2] {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--onyx-spacing-sm);
  white-space: nowrap;
}
.overflow-list__item[data-v-685c0ff2] {
  white-space: nowrap;
}
.overflow-list__badge[data-v-685c0ff2] {
  flex-shrink: 0;
  cursor: default;
}
.overflow-list__tooltip[data-v-685c0ff2] {
  display: block;
  max-width: 20rem;
  white-space: normal;
  word-break: break-word;
}.replay-history[data-v-6d6a1af0] {
  width: 100%;
}
.replay-history__table[data-v-6d6a1af0] {
  width: 100%;
}
.replay-history__row td[data-v-6d6a1af0] {
  max-height: 50px;
  overflow: hidden;
}
.replay-history__nowrap[data-v-6d6a1af0] {
  white-space: nowrap;
}
.replay-history__center[data-v-6d6a1af0] {
  text-align: center;
}
.replay-history__headline-row[data-v-6d6a1af0] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.replay-history__status-cell[data-v-6d6a1af0] {
  text-align: center;
}
.replay-history__status-cell[data-v-6d6a1af0] .onyx-tag {
  min-width: 6rem;
  justify-content: center;
  --onyx-tag-border-color: var(--onyx-color-base-neutral-200);
}
.replay-history__status-cell[data-v-6d6a1af0] .onyx-tag--success {
  --onyx-tag-border-color: var(--onyx-color-base-success-200);
}
.replay-history__status-cell[data-v-6d6a1af0] .onyx-tag--danger {
  --onyx-tag-border-color: var(--onyx-color-base-danger-200);
}
.replay-history__status-cell[data-v-6d6a1af0] .onyx-tag--info {
  --onyx-tag-border-color: var(--onyx-color-base-info-200);
}.replay-template[data-v-90100852] {
  display: flex;
  flex-direction: column;
  gap: var(--onyx-spacing-lg);
}.resupply-view__headline[data-v-66aafdee] {
  margin-bottom: var(--onyx-spacing-md);
}