.gant-line {
  cursor: pointer;

  position: relative;

  display: flex;
  align-items: center;

  border-bottom: 1px solid var(--color-gray-eee);
}

.panel,
.panel__over {
  cursor: pointer;

  position: absolute;

  overflow: hidden;

  margin: 4px 0;

  color: white;
  text-overflow: ellipsis;
  white-space: nowrap;

  background-color: var(--menu-item-selected-color);
  border-radius: 2px;
}

.base-line-panel {
  @extend .panel__over;

  cursor: pointer;
  background-color: var(--gantt-baseline-background-color);
  border: 1px solid var(--gantt-baseline-border-color);
}

.milestone {
  transform: rotate(45deg);
  background-color: var(--gantt-milestone-background-color);
}

.milestone-date {
  position: absolute;
  font-weight: bold;
}

.summary-task {
  position: absolute;
}

.triangle {
  display: inline-block;

  width: 0;
  height: 0;

  border-top-style: solid;
  border-right-color: transparent;
  border-right-style: solid;
  border-left-color: transparent;
  border-left-style: solid;
}

.small-triangle-left {
  float: left;
  width: 0;
  height: 0;
  border-style: solid;
}

.small-triangle-right {
  float: right;
  width: 0;
  height: 0;
  border-style: solid;
}

.triangle-left {
  float: left;
}

.triangle-right {
  float: right;
}

.panel-summary-task {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.icon {
  position: relative;
  top: -3px;
}
