.ds-timeline-dialog-general,
.ds-timeline-dialog-general * {
  box-sizing: border-box;
}
.ds-timeline-dialog-general {
  background: var(--white, #ffffff);
  border-radius: var(--rounded-input-field, 6px);
  border-style: solid;
  border-color: var(--border-greylight, #dee6e9);
  border-width: 1px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  z-index: 11;
  top: 10%; 
  left: 25%;
  color: black;
  width: 650px;
  overflow-y: auto;
}

.ds-timeline-dialog-header {
  background: var(--palette-primary-primary50, #f5f8fd);
  border-radius: var(--padding-x1, 8px);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-dialog-header-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-dialog-header-row-label {
  color: var(--font-grey-blue-light, #49596e);
  text-align: left;
  font-family: var(
    --paragraph-m-font-family,
    "SourceSansPro-Regular",
    sans-serif
  );
  font-size: var(--paragraph-m-font-size, 12px);
  line-height: var(--paragraph-m-line-height);
  font-weight: var(--paragraph-m-font-weight, 400);
  position: relative;
  width: 72px;
}
.ds-timeline-dialog-header-row-content {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-dialog-header-row-content-text {
  color: var(--font-grey-blue-dark-input-t, #3a3f51);
  text-align: left;
  font-family: var(
    --paragraph-m-semibold-font-family,
    "SourceSansPro-SemiBold",
    sans-serif
  );
  font-size: var(--paragraph-m-semibold-font-size, 12px);
  line-height: var(--paragraph-m-semibold-line-height);
  font-weight: var(--paragraph-m-semibold-font-weight, 600);
  position: relative;
}

.ds-timeline-dialog-content {
  border-radius: var(--padding-x1, 8px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  padding: 8px;
}
.ds-timeline-dialog-content-action-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.ds-timeline-dialog-content-history {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-dialog-content-history::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #dee6e9;
  top: 0;
  bottom: 0;
  left: 52px;
}
.ds-time-interval-vertical {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: auto;
  position: relative;
}
.ds-time-interval-vertical-black {
}
.ds-time-interval-vertical-green {
}
.ds-time-interval-vertical-red {
}
.ds-time-interval-vertical-yellow {
}
.ds-time-interval-vertical::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  right: 0;
  border-radius: 50%;
  z-index: 1;
  left: 47px;
  top: 12px;
}
.ds-time-interval-vertical-black::after {
  background-color: #0039a6;
}
.ds-time-interval-vertical-green::after {
  background-color: #50A164;
}
.ds-time-interval-vertical-red::after {
  background-color: #F75D4B;
}
.ds-time-interval-vertical-yellow::after {
  background-color: #FF902B;
}

.ds-time-interval-vertical-component-base {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.ds-time-interval-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.ds-time-interval-date2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 40px;
  position: relative;
}
.ds-time-interval-date-day {
  color: var(--font-grey-blue-dark-input-t, #3a3f51);
  text-align: left;
  font-family: "SourceSansPro-SemiBold", sans-serif;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}
.ds-time-interval-date-date {
  color: var(--font-grey-blue-light, #49596e);
  text-align: left;
  font-family: "SourceSansPro-Light", sans-serif;
  font-size: 12px;
  font-weight: 300;
  position: relative;
}
.ds-time-vertical-ruler {
  align-self: stretch;
  flex-shrink: 0;
  width: 36px;
  position: relative;
  overflow: hidden;
}
.ds-time-vertical-icons {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 11px;
  top: 9px;
}

.ds-timeline-action-schedule {
  padding: var(--padding-x1, 8px) 0px var(--padding-x1, 8px) 0px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}
.ds-timeline-event-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-title-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.ds-timeline-type-data {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-type-text {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 70px;
  position: relative;
}
.ds-timeline-text-type {
  color: var(--font-grey-blue-dark-input-t, #3a3f51);
  text-align: left;
  font-family: "SourceSansPro-SemiBold", sans-serif;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  flex: 1;
}
.ds-timeline-timestamp-text {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.ds-timeline-timestamp-text-value {
  color: var(--font-grey-blue-dark-input-t, #3a3f51);
  text-align: left;
  font-family: "SourceSansPro-Light", sans-serif;
  font-size: 10px;
  font-weight: 300;
  position: relative;
}

.ds-timeline-schedule-title {
  background: #408080;
  border-radius: 8px;
  padding: 4px 8px 4px 8px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  width: 160px;
  position: relative;
}
.ds-timeline-schedule-title-width {
  background: #408080;
  border-radius: 8px;
  padding: 4px 8px 4px 8px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.ds-timeline-schedule-text {
  color: #000000;
  text-align: left;
  font-family: var(
    --paragraph-xs-semibold-font-family,
    "SourceSansPro-Bold",
    sans-serif
  );
  font-size: var(--paragraph-xs-semibold-font-size, 10px);
  line-height: var(--paragraph-xs-semibold-line-height);
  font-weight: var(--paragraph-xs-semibold-font-weight, 700);
  position: relative;
}
.ds-timeline-schedule-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  left: 5px;
  bottom: 5px;
}

.ds-timeline-event-details{
  display: none;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.ds-timeline-event-details-event-body{
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
    
}