body {
  margin: 0;
  padding: 0;
}
#splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
}

#splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
}

#splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.splash-spinner {
  animation: rotate 2s linear infinite;
  margin-left: calc(100vw - 100%);
  width: 50px;
  height: 50px;
}

.splash-spinner .path {
  stroke: #5d78ff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

tr.Hiddn + tr:not(.Activity) {
  display: none;
}

#QR .tooltip-inner {
  position: absolute;
  left: 27px;
}

#timelinehorizontal {
  overflow: auto;
  white-space: nowrap;
  direction: ltr;
  margin-bottom: 34px;
}

#timelinehorizontal .timeline {
  list-style-type: none;
  display: flex;
  justify-content: left;
}

#timelinehorizontal .li {
  transition: all 200ms ease-in;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
}

#timelinehorizontal .timestamp {
  margin-bottom: 20px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

#timelinehorizontal .status {
  padding: 20px 40px;
  /* display: flex; */
  justify-content: center;
  border-top: 2px solid #d6dce0;
  position: relative;
  transition: all 200ms ease-in;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
}

#timelinehorizontal .status h4 {
  font-weight: 600;
}

#timelinehorizontal .status:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: -15px;
  left: 42%;
  transition: all 200ms ease-in;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
}

#timelinehorizontal .li.complete .status {
  border-top: 2px solid #3699ff;
}

#timelinehorizontal .li.complete .status:before {
  background-color: #3699ff;
  border: none;
  transition: all 200ms ease-in;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  -ms-transition: all 200ms ease-in;
  -o-transition: all 200ms ease-in;
}

#timelinehorizontal .li.complete .status h4 {
  color: #3699ff;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
  #timelinehorizontal .timeline {
    list-style-type: none;
    display: block;
  }
  #timelinehorizontal .li {
    transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }
  #timelinehorizontal .timestamp {
    width: 100px;
  }
  #timelinehorizontal .status:before {
    left: -8%;
    top: 30%;
    transition: all 200ms ease-in;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    -ms-transition: all 200ms ease-in;
    -o-transition: all 200ms ease-in;
  }
}

#timelinehorizontal .author {
  white-space: nowrap;
}

#timelinehorizontal::-webkit-scrollbar {
  width: 20px;
  height: 10px;
}

/* Track */
#timelinehorizontal::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
#timelinehorizontal::-webkit-scrollbar-thumb {
  background: #3699ff;
  border-radius: 10px;
}

/* Handle on hover */
#timelinehorizontal::-webkit-scrollbar-thumb:hover {
  background: #3699ff;
}
