#timeline {
  background: #FFFFFF;
  padding: 10rem 0;
}

#timeline .tab-content {
  margin-top: 3rem;
}

/* Timeline */
.timeline__schedule {
  line-height: 34px;
  text-align: center;
  margin-bottom: 10%;
}

.timeline__event {
  display: flex;
  flex-direction: row;
}

/* Event Time */
.timeline__event__time {
  text-align: center;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  text-transform: capitalize;
  opacity: 0.7;
  padding: 1rem;
  padding-left: 0;
  width: 100px;
}

/* Event Divider */
.timeline__event__divider {
  display: flex;
  justify-content: center;
  position: relative;
}

.timeline__event__divider__vertical-line {
  position: absolute;
  display: inline-block;
  z-index: 1;
  width: 1px;
  height: 100%;
  background-color: #000000;
}

.timeline__event__divider__horizontal-line {
  position: absolute;
  display: inline-block;
  z-index: 1;
  width: 317px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.timeline__event:last-child .timeline__event__divider__horizontal-line {
  display: none !important;
}

.timeline__event__divider__dot {
  position: absolute;
  display: inline-block;
  z-index: 2;
  bottom: -5px;
  background-color: #000000;
  border: 1px solid #000000;
  height: 10px;
  width: 10px;
  border-radius: 10px;
}

.timeline__event:last-child .timeline__event__divider__dot {
  display: none !important;
}

/* Event Content */
.timeline__event__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  padding-right: 0;
  flex: 1;
}

.timeline__event__content__name {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.timeline__event__content__tooltip {
  cursor: pointer;
}

.timeline__event__content__tooltip-content {
  max-width: 400px;
}

.timeline__event__content__tooltip-content .popover-body {
  background-color: #000000;
  color: #B2B2B2;
  font-size: 15px;
}

.timeline__event__content__tooltip-content .popover-body .tooltip-title {
  color: #FFFFFF;
}

.timeline__event__content__place {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-top: 1rem;
}

.timeline__event__content__place span {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.7);
}

.timeline__event__content__place::before {
  display: inline-block;
  content: "";
  padding: 1.5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
  margin-right: 0.5rem;
}

.timeline__event__content__speakers {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
}

.timeline__event__content__speakers > div:not(:first-child) {
  margin-top: 6px
}