.agenda {
  padding: 20px 20px;
  border-top: none !important;
}
.agenda .tabs {
  display: flex;
  background-color: #fff;
  z-index: 100;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  max-width: 100%;
  overflow-x: auto;
}
.agenda .tabs .tab {
  flex: 1;
  padding: 0.625rem 4.375rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #78838c;
  font-family: "Noto Sans";
  font-size: 1.375rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  white-space: pre;
  border-bottom: 4px solid #e8e8e8;
}
@media screen and (max-width: 768px) {
  .agenda .tabs .tab {
    padding: 0.625rem 2.5rem;
  }
}
.agenda .tabs .tab.active {
  color: #171717;
  background: white;
  border-bottom: 4px solid var(--agenda-color);
}
.agenda .tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.agenda .tab-content.active {
  display: block;
}
.agenda #content-wrapper {
  position: relative;
}
.agenda #content-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 137px;
  right: 0;
  height: calc(100% + 10px);
  width: 1px;
  background-color: #e8e8e8;
  z-index: -1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.agenda .agenda-item {
  display: flex;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 3.12rem;
}
.agenda .agenda-item .time {
  position: relative;
  min-width: 150px;
  font-weight: bold;
  color: var(--agenda-color);
  font-size: 1.125rem;
  display: flex;
  gap: 5px;
  font-family: Roboto;
  line-height: 160%;
}
.agenda .agenda-item .time::after {
  content: "";
  width: 10.5px;
  height: 10.5px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 7px;
  top: 10px;
  background-color: var(--agenda-color);
}
.agenda .agenda-item .content {
  flex: 1;
  margin-left: 20px;
}
.agenda .agenda-item .content .title {
  color: #171717;
  font-family: "Noto Sans TC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
.agenda .agenda-item .content .description {
  color: #78838c;
  font-family: "Noto Sans TC";
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 5px;
}
.agenda .agenda-item .content .speakers {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.agenda .agenda-item .content .speakers .speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  width: 100%;
}
.agenda .agenda-item .content .speakers .speaker .speaker-name {
  color: #171717;
  font-family: "Noto Sans TC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}/*# sourceMappingURL=custom-agenda.css.map */