:host {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  background-color: white;
  z-index: 1051;
}
:host > div {
  display: flex;
  flex-direction: column;
}
:host > div .choice {
  height: calc(100vh - 5.9rem);
  display: flex;
}
:host > div .choice .hours {
  border-right: 0.1rem solid var(--border-color, lightgrey);
}
:host > div .choice .hours, :host > div .choice .minutes {
  flex: 1;
  overflow: auto;
}
:host > div .choice .hours .hour, :host > div .choice .hours .minute, :host > div .choice .minutes .hour, :host > div .choice .minutes .minute {
  text-align: center;
  padding: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
}
:host > div .choice .hours .hour.selected, :host > div .choice .hours .minute.selected, :host > div .choice .minutes .hour.selected, :host > div .choice .minutes .minute.selected {
  background-color: var(--highlight-color, orange);
  color: white;
}
:host > div .choice, :host > div .footer {
  width: 100%;
}
:host > div .footer {
  position: fixed;
  display: block;
  background-color: white;
  height: 3.8rem;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-top: 0.1rem solid var(--border-color, lightgrey);
}
:host javo-icon {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  color: var(--main-color, black);
}
:host javo-icon.apply {
  position: absolute;
  left: 3rem;
}
:host javo-icon.close {
  position: absolute;
  right: 3rem;
}