@charset "utf-8";

.day-view {
  background: white;
  padding: 0 1rem;
  box-shadow: var(--float-close);
  border-radius: .5rem;
  position: relative;
  width: 100%;
  height: 100%;
}

  .day-view [src*=icon] {
    width: 24px;
    filter: brightness(50%) invert(50%);
  }

    .day-view [src*=icon] + * {
      margin-left: .5rem;
    }

  .day-view .info {
    flex-direction: column;
    width: 100%;
  }

  .day-view .header {
    justify-content: space-between;
    border-bottom: 0.5px dotted var(--contrast);
    margin: 0;
    flex-direction: row;
  }

  .day-view .banner {
    padding: .5rem .25rem;
    background-color: var(--color-6);
    color: var(--compare-more);
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .day-view .not-banner {
    color: var(--contrast-less);
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
  }

  .day-view .date {
    font-size: 34px;
  }

  .day-view .month-abbr {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
  }

  .day-view .year {
    font-size: 14px;
    font-weight: 300;
  }

  .day-view .focus {
    margin: .25rem 0 .75rem;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .day-view .title {
    font-size: 20px;
    font-weight: 400;
    margin: .25rem;
  }

  .day-view .time {
    color: var(--contrast-less);
    margin: .25rem;
    align-items: center;
  }

  .day-view .events {
    height: 100%;
    min-height: 100%;
    overflow-y: auto;
    flex-direction: column;
  }

  .day-view .event-item {
    padding: .5rem;
    border-top: .5px dotted var(--contrast-less);
    border-bottom: .5px dotted var(--contrast-less);
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }

    .day-view .event-item:hover {
      background-color: var(--compare);
    }

  .day-view .cancelled {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(35,35,35, .86);
    color: white;
    border-radius: .5rem;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-6);
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: .2rem;
    top: 0;
    left: 0;
  }
