.calendar_container {
  display: grid;
  grid-template-rows: 3em auto 3em;
  border: solid 1px #eee;
  overflow: auto;
  margin: 50px 30px;
}

.title {
  background: var(--highlight-color);
  text-align: center;
  display: grid;
  place-content: center;
  color: #000;
  position: sticky;
  top: 0;
  z-index: 10;
  font-weight: bold;
}

.days {
  background: #f3f2f1;
  display: grid;
  place-content: center;
  text-align: center;
  grid-template-columns: 4em 10px repeat(7, minmax(150px, 1fr));
  z-index: 10;
  border-bottom: 2px solid #dadce0;
}

.day {
  border-left: 1px solid #dadce0;
}

.calendar_content {
  display: grid;
  grid-template-columns: 4em 10px repeat(7, minmax(150px, 1fr));
  grid-template-rows: repeat(48, 2em);
}

.calendar_time {
  grid-column: 1;
  text-align: right;
  align-self: end;
  font-size: 80%;
  position: relative;
  bottom: -1ex;
  color: #70757a;
  padding-right: 2px;
}

.calendar_col {
  border-right: solid 1px #eee;
  grid-row: 1/span 24;
  grid-column: span 1;
}

.filler-col {
  grid-row: 1/-1;
  grid-column: 2;
  border-right: 1px solid #dadce0;
}

.row {
  grid-column: 2/-1;
  border-bottom: solid 1px #eee;
}

.event {
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  font-weight: 600;
  font-size: 80%;
  background-color: #b3e1f7;
  border-color: #81cdf2;
  line-height: 1.2;
  display: flex;
  align-items: center;
  color: #000;
}

.current-time {
  grid-column: 7;
  grid-row: 10;
  border-top: 2px solid #ea4335;
  position: relative;
  top: calc(50% - 1px);
}

.circle {
  width: 12px;
  height: 12px;
  border: 1px solid #ea4335;
  border-radius: 50%;
  background: #ea4335;
  position: relative;
  top: -6px;
  left: -6px;
}

.current {
  font-weight: bold;
}


@media (max-width: 767px) {
  .calendar_container{
    margin: 0;
  }
}
