.fixture_content_teams {
  display: flex;
  flex-direction: row;
}
.fixture_teams {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-sm);
  flex: 1 1;
}
.fixture_content_details {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 48px;
  font-weight: var(--font-weight-bold);
  font-weight: var(--font-weight-bold);
  color: var(--color-foreground-foreground-strong);
  font-size: var(--typography-font-size-label3-sm);
  line-height: var(--typography-line-height-label3-sm);
  border-right: 1px solid var(--color-border-width-border-width-default);
}
.fixture_content_details--live {
  color: var(--color-red-60);
}
@media(min-width: 961px) {
  .fixture_content_details {
    width: 104px;
    font-size: var(--typography-font-size-body2-strong-lg);
    line-height: var(--typography-line-height-body2-strong-lg);
  }
  .fixture_teams {
    padding: var(--space-lg) 0 var(--space-lg) var(--space-lg);
  }
}
