/* timeline.css Date:2020-03-12 10:18:21 */

.lg-timeline-content {
  word-break: break-all;
  word-wrap: break-word;
}

.lg-timeline-wrap {
  width: 350px;
  position: relative;
  padding: 10px;
}

.lg-timeline-wrap.lg-timeline-center {
  width: 700px;
}

.lg-timeline-item {
  position: relative;
  padding-left: 34px;
  padding-right: 34px;
  padding-bottom: 10px;
}

.lg-timeline-break .lg-timeline-item {
  padding-bottom: 18px;
}

.lg-timeline-right .lg-timeline-item {
  text-align: right;
}

.lg-timeline-center .lg-timeline-item {
  width: 50%;
}

.lg-timeline-center .lg-timeline-item:nth-child(odd) {
  text-align: right;
}

.lg-timeline-center .lg-timeline-item:nth-child(odd) .lg-timeline-time {
  float: right;
  margin-right: 0;
  margin-left: 8px;
}

.lg-timeline-center .lg-timeline-item:nth-child(even) {
  margin-left: 50%;
}

.lg-timeline-center .lg-timeline-item:nth-child(even) .lg-timeline-time {
  float: left;
}

.lg-timeline-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 0;
  left: -3px;
  background-color: #FFF;
  border: solid 2px #bfbfbf;
  z-index: 1;
}

.is-current .lg-timeline-dot {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  box-shadow: 0 0 0 2px rgba(0, 131, 255, 0.25);
  background-color: #0083FF;
  border: none;
}

.is-error .lg-timeline-dot {
  box-shadow: 0 0 0 2px rgba(225, 37, 27, 0.25);
  background-color: #E1251B;
  border: none;
}

.is-success .lg-timeline-dot {
  box-shadow: 0 0 0 2px rgba(85, 184, 55, 0.25);
  background-color: #55B837;
  border: none;
}

.lg-timeline-right .lg-timeline-dot {
  left: auto;
  right: -3px;
}

.lg-timeline-center .lg-timeline-item:nth-child(odd) .lg-timeline-dot {
  left: 100%;
  margin-left: -3px;
}

.lg-timeline-center .lg-timeline-item:nth-child(even) .lg-timeline-dot {
  left: -3px;
}

.lg-timeline-line {
  position: absolute;
  border-left: 2px solid #e8e8e8;
  left: 0;
  top: 0;
  height: 100%;
}

.lg-timeline-item:last-child .lg-timeline-line {
  display: none;
}

.lg-timeline-right .lg-timeline-line {
  left: auto;
  right: 0;
}

.lg-timeline-center .lg-timeline-item:nth-child(odd) .lg-timeline-line {
  left: 100%;
}

.lg-timeline-time {
  position: relative;
  margin-right: 8px;
  top: -6px;
  color: rgba(0, 0, 0, 0.45);
}

.is-current .lg-timeline-time {
  color: rgba(0, 131, 255, 0.45);
}

.is-error .lg-timeline-time {
  color: rgba(225, 37, 27, 0.45);
}

.lg-timeline-break .lg-timeline-time {
  display: block;
  margin-bottom: 8px;
}

.lg-timeline-right .lg-timeline-time {
  float: right;
  margin-left: 8px;
  margin-right: 0;
}

.lg-timeline-content {
  width: 100%;
  overflow: hidden;
  position: relative;
  top: -6px;
}

.is-current .lg-timeline-content {
  color: #0083FF;
}

.is-error .lg-timeline-content {
  color: #E1251B;
}

.lg-timeline-break .lg-timeline-content {
  display: block;
}