:host {
  /**
  * @prop --clock-text-color: [DEPRECATED] the color of the clock text
  */
  --clock-text-color: var(--color-palette-neutral-000);
  /**
  * @prop --clock-background-color: [DEPRECATED] the background color for the clock
  */
  --clock-background-color: var(--color-palette-brightblue-900);
  /**
  * @prop --clock-border-color: [DEPRECATED] the border color for the clock
  */
  --clock-border-color: var(--color-background-surface-default);
  /**
  * @prop --clock-label-color: [DEPRECATED] the label color for the clock
  */
  --clock-label-color: var(--color-palette-neutral-000);
  display: flex;
  margin: 0 1rem;
  color: var(--clock-text-color);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 3.938rem;
}

:host([hidden]) {
  display: none;
}

.rux-clock__segment {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rux-clock__segment__value {
  display: flex;
  align-items: center;
  font-family: var(--font-monospace-1-font-family);
  font-weight: var(--font-monospace-1-font-weight);
  font-size: var(--font-monospace-1-font-size);
  letter-spacing: var(--font-monospace-1-letter-spacing);
  border: 1px solid var(--clock-border-color);
  background-color: var(--clock-background-color);
  white-space: nowrap;
  overflow-y: hidden;
  text-overflow: ellipsis;
  height: 2.75rem;
  padding: 0 0.75rem;
}

:host([small]) .rux-clock__segment__value {
  height: 2.75rem;
  padding: 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.rux-clock__segment__label {
  font-family: var(--font-body-2-font-family);
  font-size: var(--font-body-2-font-size);
  font-weight: var(--font-body-2-font-weight);
  letter-spacing: var(--font-body-2-letter-spacing);
  color: var(--clock-label-color);
  background: var(--gsb-color-background);
  padding: 0.094rem 0.625rem;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  text-align: center;
}

.rux-clock__aos {
  margin-left: 1.063em;
}