.ipctimeline-slider-wrapper *,
.ipctimeline-slider-wrapper *::after,
.ipctimeline-slider-wrapper *::before {
  box-sizing: inherit;
}

.cd-h-timeline-ol,
.cd-h-timeline-ul {
  list-style: none;
}

.cd-h-timeline {
  opacity: 0;
  transition: opacity 0.2s;
}

.cd-h-timeline--loaded {
  opacity: 1;
  background-color: #212721;
}

.cd-h-timeline__container {
  position: relative;
  height: 100px;
  width: 98%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

.cd-h-timeline__dates {
  position: relative;
  height: 100%;
  margin: 0 65px;
  overflow: hidden;
  bottom: 5px;
}

.cd-h-timeline__dates::after,
.cd-h-timeline__dates::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100%;
  width: 20px;
}

.cd-h-timeline__dates::before {
  left: 0;
  margin-top: 16px;
  background: linear-gradient(to right,
      hsl(120, 8%, 14%),
      hsla(120, 8%, 14%, 0));
}

.cd-h-timeline__dates::after {
  right: 0;
  margin-top: 16px;
  background: linear-gradient(to left,
      hsl(120, 8%, 14%),
      hsla(120, 8%, 14%, 0));
}

.cd-h-timeline__line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 45px;
  height: 2px;
  background-color: #ffffff;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.cd-h-timeline__date {
  position: absolute;
  top: 14px;
  z-index: 2;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
}

.cd-h-timeline__date::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 22px;
  height: 10px;
  width: 2px;
  background-color: #ffffff;
  transition: background-color 0.3s, border-color 0.3s;
}

.cd-h-timeline__date:hover {
  font-weight: bold;
  cursor: pointer;
}

.cd-h-timeline__date:hover::after {
  width: 4px;
  cursor: pointer;
}

.cd-h-timeline__date--selected {
  font-weight: bold;
}

.cd-h-timeline__date__handle__container {
  position: absolute;
  z-index: 2;
  transform: translateX(-50%);
  bottom: 0px;
  left: 50%;
  height: 60px;
  width: 60px;
}

.cd-h-timeline__date__handle__single {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 25%;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: #e8792a;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
  z-index: 10;
}

.cd-h-timeline__date__handle__single__dragged {
  cursor: grabbing;
  transform: none;
}

.cd-h-timeline__date--ML1::before,
.cd-h-timeline__date--ML2::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 45px;
  width: 100px;
}

.cd-h-timeline__date--ML1::before {
  content: attr(scenario-name);
}

.cd-h-timeline__date--ML2::before {
  content: attr(scenario-name);
}

.cd-h-timeline__navigation {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: #ffffff;
  transition: border-color 0.3s;
  overflow: hidden;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
}

.cd-h-timeline__navigation::after {
  content: "";
  position: absolute;
  height: 16px;
  width: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  mask-image: url("./images/arrow_forward.32f42df417d7.svg");
  -webkit-mask-image: url("./images/arrow_forward.32f42df417d7.svg");
  background-color: #ffffff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.cd-h-timeline__navigation:hover {
  background-color: #bddbd6;
}

.cd-h-timeline__navigation:hover::after {
  background-color: #212721;
}

.cd-h-timeline__navigation--prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.cd-h-timeline__navigation--next {
  right: 0;
}

.cd-h-timeline__navigation--inactive {
  cursor: not-allowed;
}

.cd-h-timeline__navigation--inactive::after {
  background-position: 0 -16px;
}

.cd-h-timeline__navigation--inactive:hover {
  background-color: #bddbd6;
}

@-webkit-keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes cd-enter-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}