
h1 {
    font-family: 'Raleway', sans-serif;
}
body {
    font-family: 'Lato', sans-serif;
    background-color: #fff;
    color: #111;
}

table {
    border-collapse: collapse;
} 
#week td {
    height: 2rem;
}
td {
    vertical-align: top;
    height: 5rem;
    padding: 0.5rem;
    border: 1px solid #222;
    /* border-collapse: collapse; */
}
.date {
    margin-top: -0.5rem;
    margin-left: -0.5rem;
    padding: 0.5rem;
    width: 100%;
    background: #222;
    color: #fff;
    font-weight: bold;
}
.allweek {
    padding: 0;
}
.evt {
    padding: 0.25rem;
    color: #fff;
}
.today {
    background-image: repeating-linear-gradient(-45deg, #333, #333 25px, #aaa 25px, #aaa 50px);
    -webkit-animation:progress 2s linear infinite;
    -moz-animation:progress 2s linear infinite;
    -ms-animation:progress 2s linear infinite;
    animation:progress 2s linear infinite;
    background-size: 150% 100%;
}
.today .date {
    background-image: repeating-linear-gradient(-45deg, #06a, #06a 25px, #39c 25px, #39c 50px);
    -webkit-animation:progress 2s linear infinite;
    -moz-animation:progress 2s linear infinite;
    -ms-animation:progress 2s linear infinite;
    animation:progress 2s linear infinite;
    background-size: 150% 100%;
}

#bottomBar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: sticky;
    bottom: 0;
    background: lightblue;
    padding: 8px;
    align-items: center;
}

#bottomBar > * {
    margin-right: 8px;
    margin-left: 8px
}

#bottomBar h1 {
    font-size: 1em;
}

.flexSpacer {
    flex-grow: 1;
}

#cohortSelection {
    position: absolute;
    background: lightblue;
    left: 12em;
    bottom: 3em;
    padding: 8px;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    border: 2px solid blue;
}

#cohortSelection > div {
    padding: 2px;
}

#cohortSelection label {
    color: white;
    padding: 1px;
}

@-webkit-keyframes progress{
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: -75px 0px;
  }
}

@-moz-keyframes progress{
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: -75px 0px;
  }
}    

@-ms-keyframes progress{
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: -75px 0px;
  }
}    

@keyframes progress{
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: -70px 0px;
  }
}
