.TimeRange--days-list label {
  all: unset;
  display: block;
  height: 100%; }

.TimeRange {
  --day-available-background: #c3f19e;
  --day-available-color: inherit;
  --day-disabled-background: transparent;
  --day-disabled-color: #aaa;
  --day-selected-background: #1b5ebc;
  --day-selected-color: white;
  --slot-available-color: var(--day-available-background);
  --slot-disabled-color: #ccc; }
  .TimeRange br {
    display: none; }
  .TimeRange p, .TimeRange--time-selects label {
    margin-top: 0.3em;
    margin-bottom: 0.5em; }
  .TimeRange--slider {
    position: relative; }
    .TimeRange--slider-control {
      position: absolute;
      top: 0;
      bottom: 0;
      margin-right: 0 !important; }
      .TimeRange--slider-control.next {
        right: 0; }
      .TimeRange--slider-control .control-icon::before {
        content: "\f104";
        font-family: FontAwesome; }
      .TimeRange--slider-control .control-icon.icon-next::before {
        content: "\f105";
        letter-spacing: -0.1em; }
  .TimeRange .TimeRange--days-list li label {
    all: unset;
    display: block; }
  .TimeRange--days-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; }
    .TimeRange--days-list > li {
      scroll-snap-align: center;
      flex: 0 0 min-content;
      position: relative; }
    .TimeRange--days-list > li:not(:first-child) {
      margin-left: .33em; }
  .TimeRange--day-radio + span {
    display: block;
    padding: 0.33em;
    border: 1px solid currentColor;
    text-align: center;
    margin: 2px;
    background: var(--day-available-background);
    color: var(--day-available-color); }
    .TimeRange--day-radio + span:hover {
      cursor: pointer;
      border-color: var(--day-selected-background);
      outline: 2px solid var(--day-selected-background); }
  .TimeRange--day-radio:disabled + span {
    background: var(--day-disabled-background);
    color: inherit; }
    .TimeRange--day-radio:disabled + span:hover {
      cursor: not-allowed;
      border-color: currentColor;
      outline: none; }
  .TimeRange--day-radio:checked + span {
    background: var(--day-selected-background);
    color: var(--day-selected-color);
    border-color: var(--day-selected-background); }
  .TimeRange--day-radio:focus + span {
    border-color: var(--day-selected-background);
    outline: 2px solid var(--day-selected-background); }
  .TimeRange .TimeRange--slots-list {
    display: flex;
    padding-top: 1em;
    margin-bottom: 1em; }
  .TimeRange--slot-item {
    position: relative;
    flex: 0 0 0; }
    .TimeRange--slot-item::before {
      content: attr(data-start);
      position: absolute;
      bottom: 100%; }
    .TimeRange--slot-item:not(:first-child)::before {
      transform: translateX(-50%); }
    .TimeRange--slot-item:last-child::after {
      content: attr(data-end);
      position: absolute;
      right: 0;
      bottom: 100%; }
  .TimeRange .TimeRange--slot-label {
    margin: 0;
    display: block;
    height: 15px;
    background: var(--slot-available-color);
    border: 1px solid; }
    .TimeRange .TimeRange--slot-label.disabled {
      background: var(--slot-disabled-color); }
    .TimeRange .TimeRange--slot-label.blank {
      background: transparent;
      border: none; }
  .TimeRange--time-selects .widget {
    flex: 0;
    min-width: 10em; }

/*# sourceMappingURL=time-range-widget.css.map */