.hkvTimeLine .datadown {
  width: 400px;
  height: 300px;
  background: white;
  box-shadow: 0 3px 20px 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  position: absolute;
  top: 100px;
  left: 50px;
}

.hkvTimeLine .datadown .inner {
  position: relative;
  width: 100%;
  height: 300px;
}

.hkvTimeLine .datadown .inner .arrow-down {
  position: absolute;
  top: -19px;
  left: 180px;
  margin-left: 0;
}

.hkvTimeLine .arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid white;
}

.hkvTimeLine .timeline .timeline-item .timeline-content.animated {
  display: block;
}


@media (min-width: 991px) {
  .hkvTimeLine {
    height: 425px;
  }

  .hkvTimeLine .flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }

  .hkvTimeLine .timeline {
    width: 100%;
    position: relative;
  }

  .hkvTimeLine .timeline:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    top: 50px;
  }

  .hkvTimeLine .timeline .timeline-item {
    position: relative;
    z-index: 1;
    cursor: pointer;
    width: 30%;
  }

  .hkvTimeLine .timeline .timeline-item .timeline-content {
    position: absolute;
    top: 125px;
    display: none;
    width: 350px;
    left: 75px;
    cursor: auto;
  }

  .hkvTimeLine .timeline .timeline-item:before {
    background-color: var(--color-secondary);
  }

  .hkvTimeLine .timeline .timeline-item.selected:before {
    background-color: var(--color-complementary);
  }

  .hkvTimeLine .timeline .timeline-item:before {
    position: absolute;
    top: 50px;
    left: 250px;
    margin-left: 0;
    content: "";
    border-radius: 50%;
    animation: latido linear 3s infinite;
    transform: translate(-50%, -50%);
  }

  .hkvTimeLine .timeline .timeline-item::after {
    animation-delay: -1.5s;
  }

  @keyframes latido {
    0% {
      width: 20px;
      height: 20px;
      border: 2px solid white;
    }
    100% {
      width: 40px;
      height: 40px;
      border: 2px solid white;
    }
  }
}

@media (max-width: 991px) {
  .hkvTimeLine {
  }

  .hkvTimeLine .flex-container {
    display: block;
  }

  .hkvTimeLine .timeline {
    width: 100%;
  }

  .hkvTimeLine .timeline .timeline-item {
    display: block;
    position: relative;
    padding: 25px 25px 25px 50px;
  }

  .hkvTimeLine .timeline .timeline-item:before {
    position: absolute;
    content: "";
    height: 90%;
    width: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
    left: 25px;
    top: 10px;
  }

  .hkvTimeLine .timeline .timeline-item:after {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 30px;
    left: 17px;
    margin-left: 0;
    background-color: var(--color-secondary);
    border: 2px solid #fff;
    content: "";
    border-radius: 50%;
  }

  .hkvTimeLine .timeline .timeline-item .timeline-content {
    position: relative;
    width: 100%;
  }

  .hkvTimeLine .datadown {
    display: none !important;
  }
}