body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
}

/* Loader */
.loading {
  text-align: center;
  padding: 45px 0 60px;
}

.header + .loading {
  padding: 25px 0 50px;
}

.progressbar {
  position: relative;
  padding: 0;
  width: 100px;
  height: 25px;
  list-style: none;
}

.progressbar li {
  display: block;
  position: absolute;
  right: 0;
  width: 3px;
  height: 25px;
  border-radius: 1px;
  transform-origin: 50% 100%;
  background-color: #666;
  -webkit-animation: bar linear 2.8s infinite;
  animation: bar linear 2.8s infinite;
  will-change: transform;
}

.progressbar li:nth-child(1) {
  transform: translateX(0) rotate(0deg);
  opacity: 0.2;
}

.progressbar li:nth-child(2) {
  transform: translateX(-15px) rotate(0deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.progressbar li:nth-child(3) {
  transform: translateX(-30px) rotate(0deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.progressbar li:nth-child(4) {
  transform: translateX(-45px) rotate(10deg);
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.progressbar li:nth-child(5) {
  transform: translateX(-60px) rotate(40deg);
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
}

.progressbar li:nth-child(6) {
  transform: translateX(-75px) rotate(62deg);
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.progressbar li:nth-child(7) {
  transform: translateX(-90px) rotate(72deg);
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}

@-webkit-keyframes bar {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  14.28% {
    transform: translateX(-15px) rotate(0deg);
    opacity: 1;
  }

  28.56% {
    transform: translateX(-30px) rotate(0deg);
    opacity: 1;
  }

  37.12% {
    transform: translateX(-39px) rotate(0deg);
    opacity: 1;
  }

  42.84% {
    transform: translateX(-45px) rotate(10deg);
    opacity: 1;
  }

  57.12% {
    transform: translateX(-60px) rotate(40deg);
    opacity: 1;
  }

  71.4% {
    transform: translateX(-75px) rotate(62deg);
    opacity: 1;
  }

  85.68% {
    transform: translateX(-90px) rotate(72deg);
    opacity: 1;
  }

  100% {
    transform: translateX(-105px) rotate(74deg);
    opacity: 0;
  }
}

@keyframes bar {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  14.28% {
    transform: translateX(-15px) rotate(0deg);
    opacity: 1;
  }

  28.56% {
    transform: translateX(-30px) rotate(0deg);
    opacity: 1;
  }

  37.12% {
    transform: translateX(-39px) rotate(0deg);
    opacity: 1;
  }

  42.84% {
    transform: translateX(-45px) rotate(10deg);
    opacity: 1;
  }

  57.12% {
    transform: translateX(-60px) rotate(40deg);
    opacity: 1;
  }

  71.4% {
    transform: translateX(-75px) rotate(62deg);
    opacity: 1;
  }

  85.68% {
    transform: translateX(-90px) rotate(72deg);
    opacity: 1;
  }

  100% {
    transform: translateX(-105px) rotate(74deg);
    opacity: 0;
  }
}

.progressbar {
  margin: 0 auto;
}

.date-picker {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  background-color: white;
  box-shadow: inset 0 0 0 1px rgba(67, 90, 111, 0.3),
    inset 0 1px 2px rgba(67, 90, 111, 0.14);
  height: 38px;
  color: #425a70;
  border-radius: 3px;
  padding-right: 13px;
  padding-left: 13px;
  font-size: 13px;
}

p {
  box-sizing: border-box;
}

table.table th,
table.table td {
  vertical-align: middle;
  padding: 0.75rem 1.25rem;
}

a.link {
  font-weight: 600;
  color: #425a70;
}
