.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}
.loader span {
  width: 10px;
  height: 60px;
  background: lightgray;
  margin: 0px 1px;
  animation: loading 800ms ease-in-out infinite;
}

.loader span:nth-child(6) {
  animation-delay: 700ms;
  background-color: #2eeca8;
}

.loader span:nth-child(5) {
  animation-delay: 600ms;
  background-color: #eade3d;
}

.loader span:nth-child(4) {
  animation-delay: 500ms;
  background-color: #55acee;
}

.loader span:nth-child(3) {
  animation-delay: 400ms;
  background-color: #ec902e;
}

.loader span:nth-child(2) {
  animation-delay: 300ms;
  background-color: #09b7bf;
}

.loader span:nth-child(1) {
  animation-delay: 200ms;
  background-color: #f3676b;
}

@keyframes loading {
  0%, 60%, 100% {
    transform: scaleY(0.01);
  }
  35% {
    transform: scale(1);
  }
}
.chart {
  clear: both;
  margin-bottom: 10px;
}

.display-options {
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}
.display-options ul {
  list-style: none;
  margin: 0px;
  padding: 4px;
  flex-wrap: wrap;
}
.display-options ul li {
  margin-right: 4px;
}

.pill.selected, .pill:hover {
  background-color: #545C84;
  color: #fff;
}

.pill {
  color: #545C84;
  border-radius: 100px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 25px;
  margin-left: 4px;
  cursor: pointer;
}

.no-pill {
  padding: 3px 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 25px;
  margin-left: 4px;
}

.display-duration ul li label {
  font-weight: 500;
}

.pill-holder {
  border-radius: 100px;
  background-color: #E9E5F4;
  align-items: center;
}

.disabled {
  color: #b1b6d2;
}

.display-options-mobile {
  display: none;
}
.display-options-mobile .display-occurrence-mobile:first-child {
  margin-right: 5px;
}
.display-options-mobile .display-occurrence-mobile select {
  width: auto;
}

@font-face {
  font-family: "Rokkitt";
  src: url("resources/rokkitt.regular.ttf") format("truetype");
}
@media only screen and (max-width: 1366px) {
  .chart {
    margin: 0;
  }
}
@media only screen and (max-width: 950px) {
  .display-options-mobile {
    display: flex;
  }

  .display-options {
    display: none;
  }
}

/*# sourceMappingURL=charts.css.map */
