.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: white;
}

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

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

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

.cd-h-timeline__dates::before {
  left: 0;
  margin-top: 16px;
}

.cd-h-timeline__dates::after {
  right: 0;
  margin-top: 16px;
}

.cd-h-timeline__line {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 10px;
  height: 2px;
  background-color: var(--data_stone_400);
  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: var(--usaid_black_dark);
  line-height: var(--subtitle_line_height);
  -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: 7px;
  width: 2px;
  background-color: var(--data_stone_400);
  transition: background-color 0.3s, border-color 0.3s;
}

.cd-h-timeline__date:hover {
  font-weight: var(--font_weight_semibold);
  cursor: pointer;
}

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

.cd-h-timeline__date--selected {
  font-weight: var(--font_weight_semibold);
}

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

.cd-h-timeline__date__handle__single {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 20%;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 1px solid var(--globe_green);
  background-color: var(--globe_green_light);
  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: -20px;
  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: 40%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: var(--data_stone_400);
  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: var(--globe_green);
  -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: var(--sky_blue_light);
  cursor: pointer;
}

.cd-h-timeline__navigation:hover::after {
  background-color: var(--usaid_black);
  cursor: pointer;
}

.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: var(--sky_blue_light);
}

@-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%);
  }
}