@-webkit-keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.pulse {
  -webkit-animation: pulse 3s infinite ease-in-out;
  animation: pulse 3s infinite ease-in-out;
}

.shimmer .bg-ui-4 {
  background-color: #EDF4F6 !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(5%, #EDF4F6), color-stop(20%, #D2DCDE), color-stop(35%, #EDF4F6)) !important;
  background: linear-gradient(to right, #EDF4F6 5%, #D2DCDE 20%, #EDF4F6 35%) !important;
  -webkit-animation: placeholderShimmer 15s linear 0s infinite normal forwards !important;
          animation: placeholderShimmer 15s linear 0s infinite normal forwards !important;
}

.shimmer .bg-ui-3 {
  background-color: #D2DCDE !important;
  background: -webkit-gradient(linear, left top, right top, color-stop(5%, #D2DCDE), color-stop(20%, #d2dcdecc), color-stop(35%, #D2DCDE)) !important;
  background: linear-gradient(to right, #D2DCDE 5%, #d2dcdecc 20%, #D2DCDE 35%) !important;
  -webkit-animation: placeholderShimmer 15s linear 0s infinite normal forwards !important;
          animation: placeholderShimmer 15s linear 0s infinite normal forwards !important;
}

@-webkit-keyframes placeholderShimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

@keyframes placeholderShimmer {
  0% {
    background-position: -500px 0;
  }
  100% {
    background-position: 500px 0;
  }
}

.tracking-item-icon:after {
  content: "";
  background: #D2DCDE;
  position: absolute;
  width: 3px;
  height: calc(100% - 30px + 35px);
  left: 26px;
  display: block;
  bottom: -50px;
}
/*# sourceMappingURL=placeholder.css.map */