.component_timetable {
  min-width: 320px;
  width: 640px;
  height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .component_timetable {
    width: 100vw;
    margin-left: 0;
  }
}
@media (min-width: 900px) {
  .component_timetable.isolated {
    width: 90%;
    margin-left: 5%;
  }
}
.component_timetable > .title {
  font-size: 24px;
  padding: 10px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.component_timetable .content .day > .dayheading {
  font-size: 16px;
  padding: 5px 0 5px 20px;
  background: var(--theme1);
  color: var(--background);
  position: sticky;
  top: 0;
  z-index: 1;
}
.component_timetable .content .day > .dayheading.today {
  background: #9f6a00;
}
.component_timetable .content .day > .agenda {
  list-style-type: none;
}
.component_timetable .content .day > .agenda li {
  padding: 20px 10px 10px 10px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100px;
  background: linear-gradient(to bottom, #FEFEFE, #ffffff, #FEFEFE);
  border-left: 5px solid attr(data-colour);
}
.component_timetable .content .day > .agenda li .tag {
  position: absolute;
  bottom: 5px;
  right: 10px;
  padding: 3px 9px 3px 9px;
  border-radius: 15px;
  color: white;
  font-weight: 200;
  font-size: 0.8em;
}
.component_timetable .content .day > .agenda li .timing {
  padding: 5px 15px 5px 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 18px;
  color: #3d3d3d;
}
.component_timetable .content .day > .agenda li .activity {
  margin-top: -10px;
  padding-top: 5px;
  margin-left: 10px;
  padding-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
  max-width: calc(100% - 80px);
}
.component_timetable .content .day > .agenda li .icon {
  width: 70px;
  height: 70px;
  position: absolute;
  right: 20px;
  top: 15px;
  background: transparent;
  border: none;
}
.component_timetable .loadbtn {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 25%;
  background: var(--theme1);
  color: var(--background);
  padding: 10px;
  text-align: center;
  user-select: none;
  cursor: pointer;
  border-radius: 10px;
}
.component_timetable .loadbtn.disabled {
  background: #ACACAC;
  cursor: default;
}