#recordsWeek {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: auto;
  align-content: start;
  box-sizing: border-box;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#recordsWeek::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.records-week__header {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(7, 150px);
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

#recordsWeek .records-timeline__times {
  grid-column: 1;
  grid-row: 2;
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fff;
  padding-right: 10px;
}

#recordsWeek .records-week__events {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(7, 150px);
}

.records-week__day-col {
  border-left: 1px solid #e3e7ee;
  border-right: 1px solid #e3e7ee;
  position: relative;
  overflow: hidden;
}

.records-week__header-cell {
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  padding: 0px 0px 8px 8px;
  color: #6b7280;
}
.records-week__header-dow{
  font-size: 12px;
    font-weight: 600;
    color: #1B1B1B;
}
.records-week__header-date{
  font-size: 12px;
    font-weight: 600;
    color: #6F7579;

}
