@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
@keyframes appear-to-top {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes appear-to-bottom {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes appear-to-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes appear-to-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes desappear-to-bottom {
  from {
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes desappear-standard {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes rotating {
  to {
    transform: rotate(1turn);
  }
}
@keyframes scaling {
  from {
    transform: scale(2.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes margin-to-left {
  from {
    margin-left: 0;
  }
  to {
    margin-left: 1em;
  }
}
@keyframes loading-text {
  0%, 33% {
    content: "Carregando...";
  }
  34%, 66% {
    content: "Aguarde um momento...";
  }
  67%, 100% {
    content: "Quase lá...";
  }
}
@keyframes fade-in {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}
@keyframes fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
* {
  box-sizing: border-box;
  cursor: default;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-synthesis: none;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-overflow-scrolling: touch;
}
*::selection {
  background-color: #2e79be80;
  color: #bababa;
}
*::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #bebebe;
  border-radius: 2.5px;
}
*::-webkit-scrollbar-thumb:active {
  background-color: #bebebe80;
}
*::-webkit-scrollbar-corner {
  display: none;
}

:is(body, html) {
  background-color: #050f18;
  color: #bababa;
}
@media all and (min-width: 1200px) {
  :is(body, html) {
    overflow: hidden;
  }
  :is(body, html) #page-content {
    height: 100dvh;
    overflow: auto;
  }
}

h1 {
  font-size: 32px;
}
h1::first-letter {
  font-size: 36px;
}

h2 {
  font-size: 28px;
}
h2::first-letter {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}
h3::first-letter {
  font-size: 28px;
}

h4 {
  font-size: 20px;
}
h4::first-letter {
  font-size: 24px;
}

h5 {
  font-size: 16px;
}
h5::first-letter {
  font-size: 20px;
}

h6 {
  font-size: 12px;
}
h6::first-letter {
  font-size: 16px;
}

img {
  pointer-events: none;
  user-select: none;
}

a {
  -webkit-user-drag: none;
}

input[type=search]::-webkit-search-cancel-button {
  appearance: none;
  background: #e0e0e0;
  border-radius: 0;
  clip-path: polygon(12% 0%, 50% 40%, 88% 0%, 100% 12%, 62% 50%, 100% 88%, 88% 100%, 50% 62%, 12% 100%, 0% 88%, 38% 50%, 0% 12%);
  cursor: pointer;
  display: inline-block;
  height: calc(1rem - 4px);
  opacity: 1;
  position: relative;
  transition: all 300ms ease;
  visibility: visible;
  width: calc(1rem - 4px);
}
input[type=search]::-webkit-search-cancel-button:not(:empty) {
  opacity: 1;
  visibility: visible;
}
@media all and (min-width: 1200px) {
  input[type=search]::-webkit-search-cancel-button:hover:not(:active) {
    background: #b23749;
    transform: scale(1.2);
  }
}
@media all and (max-width: 1200px) {
  input[type=search]::-webkit-search-cancel-button:active {
    background: #b23749;
    transform: scale(1.2);
  }
}

@media all and (min-width: 1200px) {
  .layout-container {
    display: flex;
    flex-direction: row;
  }
}
section[id^=layout-] {
  margin: 20px;
  position: relative;
}
@media all and (min-width: 1200px) {
  section[id^=layout-] {
    height: calc(100dvh - 40px);
    overflow: auto;
    width: calc(95dvw - 40px);
  }
}
@media all and (max-width: 1200px) {
  section[id^=layout-] {
    margin-bottom: 80px;
  }
}

i[class^="bi bi-"] {
  cursor: pointer;
  display: inline-block;
  transition: all 300ms ease;
  vertical-align: middle;
}

@media all and (min-width: 1200px) {
  footer {
    bottom: 5px;
    font-size: 0.75rem;
    letter-spacing: 0.4px;
    opacity: 0.75;
    pointer-events: none;
    position: fixed;
    right: 5px;
    user-select: none;
  }
}
@media all and (max-width: 1200px) {
  :is(footer, div[role=tooltip]) {
    display: none;
  }
}
.callback-loader {
  color: #2e79be;
  margin-inline: 10px;
}

div._dash-loading {
  display: none;
}

[id*=loading] .dash-spinner-container {
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: #050f1850;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 9999999999999;
}
[id*=loading] .dash-spinner-container .dash-spinner [class^=dash-default-spinner-rect] {
  background-color: #2e79be;
}
[id*=loading] .dash-spinner-container::after {
  animation: appear-to-bottom 300ms 100ms both, loading-text 8000ms infinite 1500ms;
  color: #bababa;
  content: "Carregando...";
  font-size: 1rem;
}

.fade.modal {
  cursor: default;
}
.fade.modal.show {
  backdrop-filter: blur(10px);
}
.fade.modal.show .modal-fullscreen {
  overflow: hidden;
}
.fade.modal.show .modal-content {
  background: #040b12;
  border-radius: 5px;
  box-shadow: inset 0 0 5px #1e272f80, inset 0 0 5px #1e272f80, inset 0 0 5px #1e272f80, inset 0 0 5px #1e272f80;
  color: #bababa;
  user-select: none;
}
.fade.modal.show .modal-content :where(.modal-header, .modal-body, .modal-footer) {
  all: unset;
  position: relative;
}
.fade.modal.show .modal-content .modal-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding-bottom: 20px;
  padding-inline: 20px;
}
.fade.modal.show .modal-content .modal-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  padding: 20px;
}
.fade.modal.show .modal-content .modal-header .modal-title.h4 {
  all: unset;
  font-size: 1.2rem;
  font-weight: bolder;
}
.fade.modal.show .modal-content .modal-header .btn-close {
  animation: rotating 500ms ease;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(178, 55, 73)" class="bi bi-x-lg" viewBox="0 0 16 16"><path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 25px;
  opacity: 1;
  outline: none;
  transition: all 300ms ease;
  width: 25px;
}
.fade.modal.show .modal-content .modal-header .btn-close:hover:not(:active) {
  opacity: 0.5;
}
.fade.modal.show .modal-content .modal-header .btn-close:active {
  transform: scale(0.85);
}
.fade.modal.show .modal-content .modal-footer {
  align-items: flex-start;
  border: none;
  color: #bababa80;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75em;
  font-weight: 400;
  justify-content: center;
  padding: 20px;
}

@media all and (min-width: 1200px) {
  #navbar-container .navbar {
    animation: appear-to-left 500ms 500ms both;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100dvh;
    padding: 5px;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .navbar-controls {
    align-items: center;
    background-color: #091826;
    border-radius: 2.5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 100%;
    padding: 10px 30px;
    transition: all 300ms ease;
    width: 45px;
  }
  #navbar-container .navbar .navbar-controls .navbar-item {
    animation: appear-to-bottom 500ms both;
    display: flex;
    flex-direction: row;
    gap: 5px;
    position: relative;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(1) {
    animation-delay: 750ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(2) {
    animation-name: appear-to-top;
    animation-delay: 850ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(3) {
    animation-delay: 950ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(4) {
    animation-name: appear-to-top;
    animation-delay: 1050ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(5) {
    animation-delay: 1150ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(6) {
    animation-name: appear-to-top;
    animation-delay: 1250ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(7) {
    animation-delay: 1350ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn {
    align-items: center;
    background: none;
    border: none;
    border-radius: 2.5px;
    box-shadow: none;
    color: #bababa;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    outline: none;
    position: relative;
    text-wrap: nowrap;
    transition: all 300ms ease;
    width: 100%;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn i {
    color: #e0e0e0;
    font-size: 1.5em;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:disabled {
    background: #050f18;
    opacity: 1;
    pointer-events: none;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:disabled i {
    color: #2e79be;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child .btn {
    border: 2px solid transparent;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child .btn i {
    color: #b23749;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child .btn:hover:not(:active) {
    background-color: #240b0f80;
    border-color: #b23749;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child .btn:hover:not(:active) i {
    color: #b23749;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child::before {
    background-color: #e0e0e050;
    border-radius: 25px;
    content: "";
    height: 2px;
    margin-block: 2.5px;
    width: 100%;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:hover:not(:last-child):not(:active) .btn:not(:disabled) {
    opacity: 0.5;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:hover:not(:last-child):active .btn:not(:disabled) {
    transform: scale(0.85);
  }
  #navbar-container .navbar .navbar-controls::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" class="bi bi-list" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.5em;
    content: "";
    height: 1.5em;
    margin-block: 5px;
    opacity: 0.5;
    transition: all 300ms ease;
    width: 1.5em;
  }
  #navbar-container .navbar .navbar-controls:hover {
    width: 225px;
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item {
    width: 100%;
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(1) .btn::after {
    animation: appear-to-left 500ms 0ms both;
    content: "Início";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(2) .btn::after {
    animation: appear-to-left 500ms 50ms both;
    content: "Favoritos";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(3) .btn::after {
    animation: appear-to-left 500ms 100ms both;
    content: "Relatórios";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(4) .btn::after {
    animation: appear-to-left 500ms 150ms both;
    content: "Dashboards";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(5) .btn::after {
    animation: appear-to-left 500ms 200ms both;
    content: "Módulos";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(6) .btn::after {
    animation: appear-to-left 500ms 250ms both;
    content: "TV Gestão";
  }
  #navbar-container .navbar .navbar-controls:hover .navbar-item:nth-child(7) .btn::after {
    animation: appear-to-left 500ms 300ms both;
    content: "Sair";
  }
  #navbar-container .navbar .navbar-controls:hover::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" class="bi bi-list" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5"/></svg>');
    opacity: 1;
  }
  #navbar-container .navbar .only-mobile {
    display: none;
  }
}
@media all and (max-width: 1200px) {
  #navbar-container .navbar {
    background-color: transparent;
    bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin: 0;
    padding: 20px 10px;
    position: fixed;
    width: 100dvw;
    z-index: 100;
  }
  #navbar-container .navbar .navbar-controls {
    animation: reveal 500ms 500ms both;
    align-items: center;
    backdrop-filter: blur(10px) brightness(85%);
    background-color: #111b2465;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 10px 20px;
    position: relative;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .navbar-controls .navbar-item {
    animation: appear-to-bottom 500ms both;
    pointer-events: auto;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(1) {
    animation-delay: 750ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(2) {
    animation-name: appear-to-top;
    animation-delay: 850ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(3) {
    animation-delay: 950ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(4) {
    animation-name: appear-to-top;
    animation-delay: 1050ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(5) {
    animation-delay: 1150ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:nth-child(6) {
    animation-name: appear-to-top;
    animation-delay: 1250ms;
  }
  #navbar-container .navbar .navbar-controls .navbar-item:last-child {
    display: none;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn {
    all: unset;
    color: #e0e0e0;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn i {
    font-size: 1.5rem;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:disabled {
    pointer-events: none;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:disabled i {
    color: #2e79be;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(-2.5px);
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:disabled i::after {
    animation: appear-to-bottom 300ms 300ms both;
    background-color: #2e79be;
    border-radius: 100px;
    bottom: -8px;
    content: "";
    height: 3px;
    position: absolute;
    width: 100%;
  }
  #navbar-container .navbar .navbar-controls .navbar-item .btn:active {
    transform: scale(0.75);
  }
  #navbar-container .navbar .only-mobile {
    align-items: center;
    animation: reveal 300ms 1600ms both, appear-to-bottom 500ms 1650ms ease;
    backdrop-filter: blur(10px) brightness(85%);
    background-color: #111b2465;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 10px;
    position: relative;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .only-mobile button {
    align-items: center;
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    height: 30px;
    justify-content: center;
    outline: none;
    transition: all 300ms ease;
    width: 30px;
  }
  #navbar-container .navbar .only-mobile button i {
    color: #2e79be;
    font-size: 1.5rem;
    transition: all 300ms ease;
  }
  #navbar-container .navbar .only-mobile button:active {
    transform: scale(0.85) translateY(-5px);
  }
  #navbar-container .navbar .only-mobile button:active i {
    color: #e0e0e0;
    font-size: 2rem;
  }
  #navbar-container .navbar .only-mobile:has(button:active) {
    transform: translateY(-10px);
  }
}

.notification {
  backdrop-filter: blur(10px);
  background-color: #050f1870;
  border-radius: 5px;
  box-shadow: 0 0 10px 5px #03080c50, 0 0 10px 10px #03080c50;
  color: #e0e0e0;
  font-weight: 600;
  height: max-content;
  inset: 30px;
  outline: none;
  position: fixed;
  transition: all 600ms ease-in-out;
  user-select: none;
  width: max-content;
  z-index: 1100;
}
.notification:has(.toast-header svg.text-danger) .toast-header strong i {
  color: #b23749;
}
.notification:has(.toast-header svg.text-danger) {
  border-bottom: 2px solid #b23749;
}
.notification:has(.toast-header svg.text-success) .toast-header strong i {
  color: #0ebf22;
}
.notification:has(.toast-header svg.text-success) .toast-body::after {
  animation: fill 5000ms linear forwards;
  background-color: #0ebf22;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 0;
}
.notification:has(.toast-header svg.text-warning) .toast-header strong i {
  color: #eeff00;
}
.notification:has(.toast-header svg.text-warning) .toast-body::after {
  animation: fill 5000ms linear forwards;
  background-color: #eeff00;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 0;
}
.notification:has(.toast-header svg.text-info) .toast-header strong i {
  color: #2e79be;
}
.notification:has(.toast-header svg.text-info) .toast-body::after {
  animation: fill 5000ms linear forwards;
  background-color: #2e79be;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 0;
}
.notification .toast-header {
  background-color: #050f18;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.notification .toast-header svg {
  display: none;
}
.notification .toast-header .me-auto.ms-2 {
  margin: 0 !important;
}
.notification .toast-header strong {
  align-items: center;
  animation: appear-to-bottom 150ms 500ms both;
  color: #e0e0e0;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
}
.notification .toast-header strong i {
  animation: scaling 150ms 800ms both;
  cursor: default;
  font-size: 1.5rem;
}
.notification .toast-header .btn-close {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  filter: invert(1);
  height: 20px;
  opacity: 1;
  padding: 0;
  transform: scale(1.2);
  transition: all 300ms ease;
  width: 20px;
}
.notification .toast-header .btn-close:hover:not(:active) {
  opacity: 0.75;
}
.notification .toast-header .btn-close:active {
  transform: scale(1);
}
.notification .toast-body {
  animation: appear-to-top 150ms 500ms both;
  background: #050f18;
  border-radius: 0;
  color: #e0e0e0;
  font-size: 0.85rem;
  font-weight: 400;
  text-wrap: wrap;
  width: 350px;
}
@media all and (max-width: 1200px) {
  .notification .toast-body {
    width: 250px;
  }
}

.title {
  animation: reveal 500ms 500ms both;
  color: #e0e0e0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em;
  text-shadow: 0 2px 10px #1e272f50;
}
@media all and (max-width: 1200px) {
  .title {
    justify-content: center;
  }
}

.login-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100dvh;
  justify-content: center;
  overflow: hidden;
  width: 100dvw;
}
.login-form .card {
  animation: reveal 200ms 500ms both;
  backdrop-filter: blur(10px);
  background-color: #050e1650;
  border-radius: 2.5px;
  filter: drop-shadow(0 0 5px #1e272f);
  height: auto;
  width: 40dvw;
}
@media all and (max-width: 1200px) {
  .login-form .card {
    width: 80dvw;
  }
}
.login-form .card > * {
  animation: appear-to-top 500ms both;
}
.login-form .card > *:nth-child(1) {
  animation-delay: 500ms;
}
.login-form .card > *:nth-child(2) {
  animation-delay: 600ms;
}
.login-form .card > *:nth-child(3) {
  animation-delay: 700ms;
}
.login-form .card > *:nth-child(4) {
  animation-delay: 800ms;
}
.login-form .card > *:nth-child(5) {
  animation-delay: 900ms;
}
.login-form .card .card-header {
  align-items: center;
  background-color: #050f18;
  border-bottom: 1px solid #2e79be;
  color: #bababa;
  display: flex;
  flex-direction: row;
  font-weight: 600;
  gap: 10px;
  justify-content: space-between;
  padding-block: 10px;
  pointer-events: none;
  user-select: none;
  width: 100%;
}
.login-form .card .card-header figure {
  margin: 0;
  padding: 0;
}
.login-form .card .card-header figure img {
  aspect-ratio: 3/4;
  height: 30px;
  width: 30px;
}
.login-form .card .card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-form .card .card-body .input-group {
  position: relative;
}
.login-form .card .card-body .input-group .input-group-text {
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 2.5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 3dvw;
  z-index: 1;
}
.login-form .card .card-body .input-group .input-group-text .form-label {
  align-items: center;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.login-form .card .card-body .input-group .input-group-text .form-label i {
  color: #050f18;
  filter: drop-shadow(0 0 2.5px currentColor);
  font-size: 1.3rem;
}
.login-form .card .card-body .input-group .input-group-text .form-label:hover i {
  color: #2e79be;
}
.login-form .card .card-body .input-group .input-group-text .form-label:active i {
  color: #050f18;
  opacity: 0.85;
  transform: scale(0.85);
}
.login-form .card .card-body .input-group .form-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left: none;
  border-radius: 0 2.5px 2.5px 0 !important;
  border-right-width: 3px;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-weight: 300;
  outline: none;
}
.login-form .card .card-body .input-group .form-control::placeholder {
  color: #bababa75;
}
.login-form .card .card-body .input-group .form-control:invalid {
  animation: shake 820ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  backface-visibility: hidden;
  perspective: 1000px;
  transform: translate3d(0);
}
.login-form .card .card-body .input-group .form-control:invalid:focus {
  border-color: #b23749;
}
.login-form .card .card-body .input-group .form-control:valid:focus {
  border-color: #e0e0e0;
}
.login-form .card .card-body .input-group .form-control.password {
  padding-right: 40px;
}
.login-form .card .card-body .input-group .show-password {
  align-self: center;
  color: #2e79be;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  right: 15px;
  transform: scale(1.5);
  z-index: 5;
}
.login-form .card .card-body .input-group .show-password:hover {
  opacity: 0.85;
}
.login-form .card .card-body .input-group .show-password:active {
  opacity: 1;
  transform: scale(1.275);
}
.login-form .card .card-footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  width: 100%;
}
.login-form .card .card-footer .btn {
  align-items: center;
  background-color: transparent;
  border-color: #e0e0e0;
  border-radius: 2.5px;
  border-width: 1px;
  color: #bababa;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  font-weight: 600;
  gap: 5px;
  justify-content: center;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 5px;
  transition: all 300ms ease;
}
.login-form .card .card-footer .btn .spinner-border {
  color: #2e79be;
}
.login-form .card .card-footer .btn i {
  color: #2e79be;
  transform: scale(1.2);
}
.login-form .card .card-footer .btn:hover, .login-form .card .card-footer .btn:focus {
  background-color: #e0e0e0;
  color: #050f18;
}
.login-form .card .card-footer .btn:hover i, .login-form .card .card-footer .btn:focus i {
  filter: drop-shadow(0 0 5px #050f18);
  transform: rotate(45deg) scale(1.2);
}
.login-form .card .card-footer .btn:active {
  background-color: transparent;
  color: #bababa;
  transform: scale(0.95);
}
.login-form .card .card-footer .btn:enabled .spinner-border {
  display: none;
}
.login-form .card .card-footer .btn:disabled i {
  display: none;
}

.not-found-page {
  background-color: #050f18;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  height: 100dvh;
  place-items: center;
  width: 100dvw;
}
.not-found-page .message {
  animation: scaling 500ms ease;
  background-color: transparent;
  color: #bababa;
  display: flex;
  flex-direction: column;
  gap: 1em;
  height: max-content;
  justify-content: space-between;
  overflow: hidden;
  padding: 2em;
}
.not-found-page .message h1 {
  color: #296dab;
  font-size: 3.5em;
  font-weight: bold;
  letter-spacing: 5px;
  text-shadow: 0 0 5px #2b333b;
  user-select: none;
}
.not-found-page .message p {
  font-size: 0.9em;
  font-weight: 200;
  margin-block: 5px;
}
.not-found-page .image {
  animation: floating 2000ms ease-in-out infinite;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.not-found-page .image figure {
  margin: 0;
}
.not-found-page .image figure img {
  filter: contrast(200%) drop-shadow(0 0 10px #e0e0e050);
  object-fit: cover;
  transform: scale(0.9);
}

.incorrect-parameters {
  animation: reveal 1000ms both;
  color: #bababa;
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: center;
  min-height: 100dvh;
  overflow: auto;
  padding: 5em;
  width: 100%;
}
@media all and (max-width: 1200px) {
  .incorrect-parameters {
    padding: 2.5em;
  }
}
.incorrect-parameters h1 {
  align-self: center;
  animation: scaling 350ms 2500ms both;
  user-select: none;
}
.incorrect-parameters details summary {
  color: #2e79be;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
}
.incorrect-parameters details summary::marker {
  color: transparent;
}
.incorrect-parameters details ol {
  list-style-type: decimal-leading-zero;
  margin-left: 2em;
}
.incorrect-parameters details ol li {
  animation: appear-to-bottom 1000ms 1500ms both;
  padding-block: 0.5em;
}
.incorrect-parameters details ol li::marker {
  font-weight: 600;
}
.incorrect-parameters details ol li:nth-child(1) {
  animation-delay: 350ms;
}
.incorrect-parameters details ol li:nth-child(1)::marker {
  color: #d8d8d8;
}
.incorrect-parameters details ol li:nth-child(2) {
  animation-delay: 700ms;
}
.incorrect-parameters details ol li:nth-child(2)::marker {
  color: #707070;
}
.incorrect-parameters details ol li:nth-child(3) {
  animation-delay: 1050ms;
}
.incorrect-parameters details ol li:nth-child(3)::marker {
  color: #88b1d7;
}
.incorrect-parameters details ol .not-informed {
  color: #b23749;
  font-weight: 600;
}
.incorrect-parameters details::after {
  content: "A URL deve seguir esse padrão:";
  margin-inline: 10px;
}
.incorrect-parameters a[href="/"] {
  animation: appear-to-top 500ms ease;
  color: #2e79be;
  cursor: pointer;
  display: block;
  font-weight: 600;
  text-decoration: none;
  transition: all 500ms ease;
  user-select: none;
  width: max-content;
}
.incorrect-parameters a[href="/"]:hover {
  opacity: 0.5;
}
.incorrect-parameters a[href="/"]:active {
  opacity: 1;
  transform: scale(0.95);
}
.incorrect-parameters code {
  align-items: center;
  background-color: #040d14;
  border-radius: 2.5px;
  border: 2.5px solid #2b333b50;
  color: #2e79be;
  display: inline-block;
  font-size: 0.85em;
  justify-content: flex-start;
  margin-block: 1em;
  padding: 1em;
  white-space: nowrap;
  width: max-content;
}
.incorrect-parameters code * {
  font-family: "Jetbrains Mono", monospace, "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  white-space: nowrap;
}
.incorrect-parameters code .code-highlight-parameter {
  color: #ffa500;
  font-weight: 100;
}
.incorrect-parameters code .code-highlight {
  cursor: help;
  transition: opacity 300ms ease;
}
.incorrect-parameters code .code-highlight:hover {
  opacity: 0.75;
}
.incorrect-parameters code .code-highlight#code-user {
  color: #d8d8d8;
}
.incorrect-parameters code .code-highlight#code-password {
  color: #707070;
}
.incorrect-parameters code .code-highlight#code-company {
  color: #88b1d7;
}

.companies {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  justify-content: center;
  padding: 1rem;
  width: 100dvw;
}
.companies .company-table {
  border-collapse: collapse;
  max-width: 800px;
  overflow: auto;
  width: 100%;
}
.companies .company-table thead {
  pointer-events: none;
}
.companies .company-table thead th {
  font-weight: bolder;
}
.companies .company-table thead th i {
  align-items: center;
  color: #2e79be;
  display: flex;
  flex-direction: row;
  font-size: 2rem;
  gap: 10px;
}
.companies .company-table thead th i::after {
  color: #bababa;
  content: "Selecionar Empresa";
  font-style: normal;
}
.companies .company-table tbody * {
  cursor: pointer;
}
.companies .company-table tbody tr {
  animation: appear-to-top 500ms both;
}
.companies .company-table tbody tr:nth-child(1) {
  animation-delay: 100ms;
}
.companies .company-table tbody tr:nth-child(2) {
  animation-delay: 200ms;
}
.companies .company-table tbody tr:nth-child(3) {
  animation-delay: 300ms;
}
.companies .company-table tbody tr:nth-child(4) {
  animation-delay: 400ms;
}
.companies .company-table tbody tr:nth-child(5) {
  animation-delay: 500ms;
}
.companies .company-table tbody tr:nth-child(6) {
  animation-delay: 600ms;
}
.companies .company-table tbody tr:nth-child(7) {
  animation-delay: 700ms;
}
.companies .company-table tbody tr:nth-child(8) {
  animation-delay: 800ms;
}
.companies .company-table tbody tr:nth-child(9) {
  animation-delay: 900ms;
}
.companies .company-table tbody tr:nth-child(10) {
  animation-delay: 1000ms;
}
.companies .company-table tbody tr:nth-child(11) {
  animation-delay: 1100ms;
}
.companies .company-table tbody tr:nth-child(12) {
  animation-delay: 1200ms;
}
.companies .company-table tbody tr td {
  border-left-width: 3px;
  padding: 10px;
  transition: all 300ms ease;
}
.companies .company-table tbody tr td > div label {
  display: flex !important;
  flex-direction: row;
  font-weight: 500;
  gap: 10px;
}
.companies .company-table tbody tr td > div label input[type=radio] {
  appearance: none;
  border: 2px inset #050f18;
  border-radius: 50%;
  cursor: pointer;
  height: 1.3em;
  outline: none;
  position: relative;
  transition: all 100ms ease;
  width: 1.3em;
}
.companies .company-table tbody tr td > div label input[type=radio]:checked {
  background-color: #0ebf22;
  border-color: #0ebf22;
  box-shadow: 0 0 5px #0ebf22;
  pointer-events: none;
}
.companies .company-table tbody tr td > div label input[type=radio]:checked::after {
  color: #e0e0e0;
  content: "✓";
  font-size: calc(1rem - 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.companies .company-table tbody tr td > div label input[type=radio]:hover:not(:checked) {
  opacity: 0.5;
}
.companies .company-table tbody tr td > div label:has(input:checked, input:disabled) {
  cursor: default;
}
.companies .company-table tbody tr:hover:not(:active) td {
  border-color: transparent !important;
}
.companies .company-table tbody tr:nth-child(odd) td {
  border-color: #2e79be;
}
.companies .company-table tbody tr:nth-child(even) td {
  border-color: #bababa;
}

#layout-home.home {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-home.home .cards {
  display: flex;
  flex-direction: column;
}
#layout-home.home .cards > small {
  width: 100%;
}
#layout-home.home .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-home.home .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-home.home .cards .card * {
  user-select: none;
}
#layout-home.home .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-home.home .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-home.home .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-home.home .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-home.home .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-home.home .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-home.home .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-home.home .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-home.home .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-home.home .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-home.home .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-home.home .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-home.home .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-home.home .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-home.home .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-home.home .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-home.home .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-home.home .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-home.home .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-home.home .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-home.home .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-home.home .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-home.home .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-home.home .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-home.home .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-home.home .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-home.home :is(.cards.managerial, .cards.graphs) {
  animation: reveal 300ms 200ms both;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  padding-block: 1em;
  place-content: center;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > * {
  animation: appear-to-bottom 300ms both;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(1) {
  animation-delay: 800ms;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(2) {
  animation-delay: 950ms;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(3) {
  animation-delay: 1100ms;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(4) {
  animation-delay: 1250ms;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(5) {
  animation-delay: 1400ms;
}
#layout-home.home :is(.cards.managerial, .cards.graphs) > *:nth-child(6) {
  animation-delay: 1550ms;
}
#layout-home.home .home-dropdown {
  animation: appear-to-top 300ms 150ms both;
  grid-column: 1/-1;
  text-align: center;
}
#layout-home.home .home-dropdown summary {
  color: #e0e0e0;
  display: flex;
  flex-direction: row;
  font-weight: 600;
  justify-content: space-between;
  transition: all 300ms ease;
}
#layout-home.home .home-dropdown summary::after {
  color: #2e79be;
  content: "▲";
  display: inline-block;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-home.home .home-dropdown summary:hover:not(:active) {
    opacity: 0.75;
  }
}
#layout-home.home .home-dropdown summary:active {
  transform: scale(0.95);
}
#layout-home.home .home-dropdown[open] summary::after {
  transform: rotateX(0.5turn);
}
#layout-home.home .home-dropdown:not(:last-child) {
  margin-bottom: 2em;
}

#managerial-modal .dash-table-container {
  color: #bababa;
  font-size: 1rem;
  position: relative;
}
#managerial-modal .dash-table-container .cell-table {
  border-radius: 2.5px;
  border: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#managerial-modal .dash-table-container .cell-table :where(th, td) {
  border: none !important;
  margin: 0;
  outline: none !important;
}
#managerial-modal .dash-table-container .cell-table tr {
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr:nth-child(n+4) {
  border-top: 2px solid #e0e0e015;
}
#managerial-modal .dash-table-container .cell-table tr:nth-child(n+4):nth-child(even) {
  background-color: #e0e0e005;
}
#managerial-modal .dash-table-container .cell-table tr * {
  cursor: default;
  text-align: left;
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .cell-table tr *:not(th) {
    font-size: 0.95em;
  }
}
#managerial-modal .dash-table-container .cell-table tr th {
  background-color: transparent;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr .dash-cell {
  background: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.9rem;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr .dash-cell > .selectable {
  cursor: default !important;
  pointer-events: all;
}
#managerial-modal .dash-table-container .cell-table tr .dash-cell.cell--selected {
  background-color: transparent !important;
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell {
  background: none;
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox] {
  height: calc(1em + 2px);
  width: calc(1em + 2px);
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  height: 1em;
  width: 1em;
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox],
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  appearance: none;
  border-radius: 50%;
  border: 2px inset #050f18;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: all 100ms ease;
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked,
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked {
  background-color: #0ebf22;
  border-color: #0ebf22;
  box-shadow: 0 0 5px #0ebf22;
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked::after,
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked::after {
  color: #e0e0e0;
  content: "✓";
  font-size: calc(1rem - 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 1200px) {
  #managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover,
  #managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover {
    background-color: #b23749;
    border-color: #b23749;
    box-shadow: 0 0 5px #b23749;
  }
  #managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover::after,
  #managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover::after {
    content: "X";
  }
}
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:hover:not(:checked),
#managerial-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:hover:not(:checked) {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter {
  cursor: default;
  overflow-y: hidden;
  padding-block: 0;
  pointer-events: all;
  position: relative;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div {
  align-items: center;
  cursor: default;
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: flex-start;
  position: relative;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text] {
  background-color: #2e79be10;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.85rem;
  font-weight: 400;
  min-width: 10ch;
  outline: none;
  padding-block: 5px;
  padding-left: 35px;
  padding-right: 10px;
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]::placeholder {
  color: #bababa50;
  font-size: 0.85rem;
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active) {
  background-color: #050f18;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active)::placeholder {
  color: #bababa;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active) {
  border-color: #2e79be;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active)::placeholder {
  color: transparent;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:active::placeholder {
  color: transparent;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter > div .dash-filter--case {
  display: none;
}
#managerial-modal .dash-table-container .cell-table tr .dash-filter::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/></svg>');
  background-size: 1em;
  content: "";
  height: 1em;
  left: 15px;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  top: 30%;
  transform: scaleX(-1);
  vertical-align: middle;
  width: 1em;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div {
  align-items: center;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div * {
  background: none;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-actions {
  margin-right: 10px;
  pointer-events: all;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort {
  color: #e0e0e0;
  cursor: pointer;
  transition: all 150ms ease;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort * {
  cursor: pointer;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:hover {
  color: #2e79be;
  opacity: 0.75;
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:active {
  color: #e0e0e0;
  transform: scale(0.85);
}
#managerial-modal .dash-table-container .cell-table tr:first-child div .column-header-name {
  margin-right: 50px;
}
#managerial-modal .dash-table-container .cell-table tr:hover {
  background-color: transparent;
}
#managerial-modal .dash-table-container .cell-table tr:hover .dash-cell {
  color: #2e79be;
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu {
  width: max-content;
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .dash-spreadsheet-menu {
    display: none;
  }
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu .export {
  align-items: center;
  background: none;
  border: none;
  border-radius: 5px;
  color: #bababa;
  display: inline-flex;
  flex-direction: row;
  padding: 5px;
  transition: all 300ms ease;
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu .export::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" class="bi bi-filetype-csv" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.517 14.841a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.439 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM.806 13.693q0-.373.102-.633a.87.87 0 0 1 .302-.399.8.8 0 0 1 .475-.137q.225 0 .398.097a.7.7 0 0 1 .272.26.85.85 0 0 1 .12.381h.765v-.072a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.489-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.572.632-.195.41-.196.979v.498q0 .568.193.976.197.407.572.626.375.217.914.217.439 0 .785-.164t.55-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.764a.8.8 0 0 1-.118.363.7.7 0 0 1-.272.25.9.9 0 0 1-.401.087.85.85 0 0 1-.478-.132.83.83 0 0 1-.299-.392 1.7 1.7 0 0 1-.102-.627zm8.239 2.238h-.953l-1.338-3.999h.917l.896 3.138h.038l.888-3.138h.879z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: calc(1rem + 0.5em);
  margin-right: 10px;
  transition: all 300ms ease;
  width: calc(1rem + 0.5em);
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu .export::after {
  content: "ar Dados (csv)";
  font-size: 1rem;
  transition: all 300ms ease;
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu .export:hover::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(14, 191, 34)" class="bi bi-download" viewBox="0 0 16 16"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></svg>');
}
#managerial-modal .dash-table-container .dash-spreadsheet-menu .export:hover:active {
  transform: scale(0.95);
}
#managerial-modal .dash-table-container .dash-spreadsheet-container {
  overflow-x: auto;
  position: relative;
}
#managerial-modal .dash-table-container .previous-next-container {
  animation: reveal 500ms 1000ms both;
  backdrop-filter: blur(10px);
  border-radius: 2.5px;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: flex-end;
  pointer-events: none;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container {
    color: transparent;
  }
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container {
    color: #bababa90;
    font-size: 12px;
    gap: 5px;
    margin-top: 1em;
  }
}
#managerial-modal .dash-table-container .previous-next-container .page-number {
  align-items: center;
  background: none;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  gap: 0;
  left: 0;
  position: absolute;
}
#managerial-modal .dash-table-container .previous-next-container .page-number * {
  background: none;
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 1rem;
  font-weight: normal;
  pointer-events: none;
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container .page-number * {
    color: #bababa90;
    font-size: 12px;
  }
}
#managerial-modal .dash-table-container .previous-next-container .page-number .current-page-container .current-page {
  display: none !important;
}
#managerial-modal .dash-table-container .previous-next-container .page-number .current-page-container .current-page-shadow {
  border: none !important;
}
@media all and (min-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container .page-number .current-page-container::before {
    content: "Página";
    margin-right: 8px;
  }
}
@media all and (min-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container .page-number .last-page::before {
    content: "de";
    margin-right: 5px;
  }
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container .page-number .last-page {
    margin-inline: 1.5px;
  }
  #managerial-modal .dash-table-container .previous-next-container .page-number .last-page::before {
    content: none;
  }
}
#managerial-modal .dash-table-container .previous-next-container .page-number :where(.current-page-shadow, .current-page, .last-page) {
  min-width: max-content !important;
}
#managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
  align-items: center;
  background: none;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: bolder;
  gap: 5px;
  height: max-content;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
    font-size: 12px;
  }
}
#managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg {
  cursor: pointer;
}
#managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg * {
  cursor: pointer;
}
@media all and (min-width: 1200px) {
  #managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):hover {
    color: #2e79be;
  }
}
#managerial-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):active {
  transform: scale(0.85);
}
#managerial-modal .dash-table-container .previous-next-container .next-page::before {
  content: "Próximo";
}
#managerial-modal .dash-table-container .previous-next-container .next-page:disabled {
  pointer-events: none;
}
#managerial-modal .dash-table-container .previous-next-container .next-page:disabled svg path {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .next-page:disabled::before {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .last-page::before {
  content: "Último";
}
#managerial-modal .dash-table-container .previous-next-container .last-page:disabled {
  pointer-events: none;
}
#managerial-modal .dash-table-container .previous-next-container .last-page:disabled svg path {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .last-page:disabled::before {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .previous-page::after {
  content: "Anterior";
}
#managerial-modal .dash-table-container .previous-next-container .previous-page:disabled {
  pointer-events: none;
}
#managerial-modal .dash-table-container .previous-next-container .previous-page:disabled svg path {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .previous-page:disabled::after {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .first-page::after {
  content: "Primeiro";
}
#managerial-modal .dash-table-container .previous-next-container .first-page:disabled {
  pointer-events: none;
}
#managerial-modal .dash-table-container .previous-next-container .first-page:disabled svg path {
  opacity: 0.5;
}
#managerial-modal .dash-table-container .previous-next-container .first-page:disabled::after {
  opacity: 0.5;
}
#managerial-modal .dash-table-container:not(:has(.cell-table .dash-cell))::after {
  align-items: center;
  animation: appear-to-bottom 500ms 500ms both, desappear-standard 500ms 8500ms forwards;
  backdrop-filter: blur(20px);
  background: none;
  border-radius: 0;
  color: #e0e0e0;
  content: "Sem dados";
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  font-weight: 500;
  justify-content: center;
  padding: 5px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 10px;
}
#managerial-modal .modal-body {
  overflow-x: hidden;
}

[id='{"name":"full-pallets","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-lock"] {
  color: #292929;
}
[id='{"name":"full-pallets","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #292929 !important;
}
[id='{"name":"full-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"full-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"full-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id='{"name":"partial-pallets","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-box-seam"] {
  color: #159c15;
}
[id='{"name":"partial-pallets","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #159c15 !important;
}
[id='{"name":"partial-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"partial-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"partial-pallets","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id='{"name":"unpalletized-identifications","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-exclamation-circle"] {
  color: #dd1331;
}
[id='{"name":"unpalletized-identifications","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #dd1331 !important;
}
[id='{"name":"unpalletized-identifications","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"unpalletized-identifications","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"unpalletized-identifications","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id='{"name":"unprocessed-manifests","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-file-earmark-text"] {
  color: #ffa500;
}
[id='{"name":"unprocessed-manifests","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #ffa500 !important;
}
[id='{"name":"unprocessed-manifests","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"unprocessed-manifests","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"unprocessed-manifests","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id='{"name":"unshipped-freight-orders","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-box"] {
  color: #108de4;
}
[id='{"name":"unshipped-freight-orders","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #108de4 !important;
}
[id='{"name":"unshipped-freight-orders","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"unshipped-freight-orders","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"unshipped-freight-orders","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id='{"name":"unshipped-sales-orders","section":"managerial","type":"managerial-card"}'] .card-header i[class="bi bi-truck"] {
  color: #cc0ccc;
}
[id='{"name":"unshipped-sales-orders","section":"managerial","type":"managerial-card"}'] .card-body:has(.badge) .badge {
  background-color: #cc0ccc !important;
}
[id='{"name":"unshipped-sales-orders","section":"managerial","type":"managerial-card"}']:has(.empty) {
  pointer-events: none;
}
[id='{"name":"unshipped-sales-orders","section":"managerial","type":"managerial-card"}']:has(.empty) * {
  filter: grayscale(1);
}
[id='{"name":"unshipped-sales-orders","section":"managerial","type":"managerial-card"}']:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id^=managerial-card-table-] tbody tr {
  animation: appear-to-top 300ms both;
}
[id^=managerial-card-table-] tbody tr:nth-child(1) {
  animation-delay: 80ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(2) {
  animation-delay: 160ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(3) {
  animation-delay: 240ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(4) {
  animation-delay: 320ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(5) {
  animation-delay: 400ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(6) {
  animation-delay: 480ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(7) {
  animation-delay: 560ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(8) {
  animation-delay: 640ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(9) {
  animation-delay: 720ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(10) {
  animation-delay: 800ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(11) {
  animation-delay: 880ms;
}
[id^=managerial-card-table-] tbody tr:nth-child(12) {
  animation-delay: 960ms;
}
[id^=managerial-card-table-] tbody tr :where(th, td):first-child {
  display: none;
}
[id^=managerial-card-table-] tbody tr td:not(:first-child) {
  padding-left: 17px !important;
}

#layout-favorites.favorites {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-favorites.favorites .cards {
  display: flex;
  flex-direction: column;
}
#layout-favorites.favorites .cards > small {
  width: 100%;
}
#layout-favorites.favorites .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-favorites.favorites .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-favorites.favorites .cards .card * {
  user-select: none;
}
#layout-favorites.favorites .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-favorites.favorites .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-favorites.favorites .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-favorites.favorites .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-favorites.favorites .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-favorites.favorites .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-favorites.favorites .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-favorites.favorites .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-favorites.favorites .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-favorites.favorites .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-favorites.favorites .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-favorites.favorites .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-favorites.favorites .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-favorites.favorites .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-favorites.favorites .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-favorites.favorites .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-favorites.favorites .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-favorites.favorites .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-favorites.favorites .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-favorites.favorites .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-favorites.favorites .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-favorites.favorites .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-favorites.favorites .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-favorites.favorites .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-favorites.favorites .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-favorites.favorites .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-favorites.favorites .cards {
  animation: reveal 300ms 200ms both;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  place-content: center;
}
#layout-favorites.favorites .cards.no-animate * {
  animation: none !important;
}
#layout-favorites .user-message {
  animation: appear-to-top 500ms both;
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  pointer-events: none;
  user-select: none;
}
#layout-favorites .user-message i {
  color: #eeff00;
}
#layout-favorites .favorite-section-name {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-block: 10px;
}
#layout-favorites .favorite-section-name strong {
  color: #2e79be;
}
#layout-favorites .favorite-card[data-favorite=N] {
  display: none !important;
}
#layout-favorites #all-favorites div {
  animation: reveal 300ms 500ms both, appear-to-bottom 500ms ease;
}
#layout-favorites #all-favorites div:nth-child(1) {
  animation-delay: 600ms;
}
#layout-favorites #all-favorites div:nth-child(2) {
  animation-delay: 750ms;
}
#layout-favorites #all-favorites div:nth-child(3) {
  animation-delay: 900ms;
}
#layout-favorites #all-favorites div:nth-child(4) {
  animation-delay: 1050ms;
}

#layout-reports.reports {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-reports.reports .accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#layout-reports.reports .accordion * {
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
}
#layout-reports.reports .accordion .accordion-item {
  animation: appear-to-top 300ms 500ms both;
  padding-inline: 10px;
}
@media all and (max-width: 1200px) {
  #layout-reports.reports .accordion .accordion-item:last-child {
    margin-bottom: 3em;
  }
}
#layout-reports.reports .accordion .accordion-item:nth-child(1) {
  animation-delay: 50ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(2) {
  animation-delay: 100ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(3) {
  animation-delay: 150ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(4) {
  animation-delay: 200ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(5) {
  animation-delay: 250ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(6) {
  animation-delay: 300ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(7) {
  animation-delay: 350ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(8) {
  animation-delay: 400ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(9) {
  animation-delay: 450ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(10) {
  animation-delay: 500ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(11) {
  animation-delay: 550ms;
}
#layout-reports.reports .accordion .accordion-item:nth-child(12) {
  animation-delay: 600ms;
}
#layout-reports.reports .accordion .accordion-item .accordion-header button {
  border: none;
  box-shadow: none;
  outline: none;
}
#layout-reports.reports .accordion .accordion-item .accordion-header button .report-group {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
  transition: all 300ms ease;
  width: 100%;
}
#layout-reports.reports .accordion .accordion-item .accordion-header button .report-group * {
  cursor: pointer;
  transition: all 300ms ease;
}
#layout-reports.reports .accordion .accordion-item .accordion-header button .report-group strong {
  color: #2e79be;
}
#layout-reports.reports .accordion .accordion-item .accordion-header button .report-group span {
  color: #bababa;
}
@media all and (min-width: 1200px) {
  #layout-reports.reports .accordion .accordion-item .accordion-header button .report-group:hover:not(:active) {
    opacity: 0.5;
  }
}
#layout-reports.reports .accordion .accordion-item .accordion-header button .report-group:active {
  transform: scale(0.95);
}
#layout-reports.reports .accordion .accordion-item .accordion-header button::after {
  content: none;
}
#layout-reports.reports .accordion .accordion-item .accordion-body {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  padding-block: 20px;
  place-content: center;
}
#layout-reports.reports .input-group {
  position: relative;
}
#layout-reports.reports .input-group .input-group-text {
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 2.5px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 3dvw;
}
@media all and (max-width: 1200px) {
  #layout-reports.reports .input-group .input-group-text {
    padding: 20px;
  }
}
#layout-reports.reports .input-group .input-group-text :where(.form-label, .btn, a) {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 300ms ease;
  width: 100%;
}
#layout-reports.reports .input-group .input-group-text :where(.form-label, .btn, a) i {
  color: #050f18;
  filter: drop-shadow(0 0 2.5px currentColor);
  font-size: 1.3rem;
}
#layout-reports.reports .input-group .input-group-text :where(.form-label, .btn, a):hover i {
  color: #2e79be;
}
#layout-reports.reports .input-group .input-group-text :where(.form-label, .btn, a):active i {
  color: #050f18;
  opacity: 0.85;
  transform: scale(0.85);
}
#layout-reports.reports .input-group .input-group-text :where(.form-label, .btn, a):disabled {
  opacity: 1;
}
#layout-reports.reports .input-group .form-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px !important;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-weight: 300;
  margin-right: 10px;
  outline: none;
}
#layout-reports.reports .input-group .form-control.invalid-range, #layout-reports.reports .input-group .form-control.invalid {
  border-color: #b23749;
  caret-color: #b23749;
}
#layout-reports.reports .input-group .form-control:focus {
  border-color: #2e79be;
}
#layout-reports.reports .input-group .form-control:focus:invalid {
  animation: shake 820ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #b23749;
  caret-color: #b23749;
}
#layout-reports.reports .input-group .form-control::placeholder {
  color: #bababa75;
  transition: all 300ms ease;
}
#layout-reports.reports .input-group .form-control:hover::placeholder {
  opacity: 0.75;
}
#layout-reports.reports .input-group .form-control:active::placeholder {
  opacity: 1;
}
#layout-reports.reports .input-group .dash-dropdown {
  flex-grow: 1;
  font-size: 1.2rem;
  margin-right: 10px;
}
#layout-reports.reports .input-group .dash-dropdown * {
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#layout-reports.reports .input-group .dash-dropdown .is-focused {
  all: unset;
}
#layout-reports.reports .input-group .dash-dropdown .is-focused .Select-control {
  border-color: #2e79be;
}
#layout-reports.reports .input-group .dash-dropdown .is-disabled {
  position: relative;
  visibility: hidden;
}
#layout-reports.reports .input-group .dash-dropdown .is-disabled::after {
  content: "Não disponível.";
  font-size: 0.85em;
  opacity: 0.5;
  position: absolute;
  top: 20%;
  visibility: visible;
  white-space: nowrap;
}
#layout-reports.reports .input-group .dash-dropdown :where(.Select--multi .Select-value) {
  border: none;
}
#layout-reports.reports .input-group .dash-dropdown .Select--single .Select-control {
  cursor: pointer;
}
#layout-reports.reports .input-group .dash-dropdown .Select--single .Select-control :where(.Select-value, .Select-placeholder, .Select-multi-value-wrapper, .Select-value-label) {
  cursor: pointer !important;
}
#layout-reports.reports .input-group .dash-dropdown .Select--single .Select-control:hover .Select-value-label {
  opacity: 0.75;
}
#layout-reports.reports .input-group .dash-dropdown .Select--single .Select-control:active .Select-value-label {
  opacity: 1;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px;
  box-shadow: none;
  font-weight: 300;
  height: 38px;
  transition: all 300ms ease;
  z-index: 20;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-placeholder {
  cursor: text;
  font-size: 0.85em;
  font-weight: 100;
  opacity: 0.75;
  transition: all 300ms ease;
  z-index: 10;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-placeholder:hover {
  opacity: 1;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-input {
  background: none;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-input input {
  caret-color: #2e79be;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-value {
  background-color: transparent;
  font-size: 0.85em;
  height: max-content;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #layout-reports.reports .input-group .dash-dropdown .Select-control .Select-value {
    width: 100%;
  }
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon {
  border: none;
  color: #2e79be;
  display: inline-block;
  padding-inline: 2.5px;
  transform: scale(1.5);
  transition: all 300ms ease;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon:hover {
  background: none;
  color: #b23749;
  transform: scale(1.5) rotateY(180deg);
}
#layout-reports.reports .input-group .dash-dropdown .Select-control .Select-value .Select-value-label {
  transition: all 300ms ease;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) {
  background-color: transparent;
  pointer-events: none;
  transition: all 300ms ease;
  z-index: 10;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear {
  color: #e0e0e0;
  display: inline-block;
  font-size: 1.5em;
  position: relative;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear:hover {
  color: #b23749;
  text-shadow: none;
}
#layout-reports.reports .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) :where(.Select-arrow, .Select-clear) {
  cursor: pointer;
  pointer-events: all;
  transition: all 300ms ease;
  z-index: 20;
}
#layout-reports.reports .input-group .dash-dropdown .Select-menu-outer {
  all: unset;
}
#layout-reports.reports .input-group .dash-dropdown .Select-menu-outer .Select-menu {
  backdrop-filter: blur(10px);
  background-color: transparent;
  font-size: 0.85em;
  padding-block: 10px;
  transition: all 300ms ease;
}
#layout-reports.reports .input-group .dash-dropdown .Select-menu-outer .Select-menu .VirtualizedSelectOption.VirtualizedSelectFocusedOption {
  background-color: #040d14;
  border-left: 3px solid #2e79be;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  transition: all 150ms ease;
}
#layout-reports.reports .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults {
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
#layout-reports.reports .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults::after {
  animation: appear-to-left 500ms ease;
  color: #b23749;
  content: "Seu filtro não encontrou nenhum resultado.";
  font-size: 0.85em;
  left: 0;
  position: absolute;
  visibility: visible;
}
#layout-reports.reports .input-group.search-field {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-reports.reports .input-group.search-field .input-group-text {
  margin-left: 10px;
}
#layout-reports.reports .input-group.search-field i {
  transform: scaleX(-1);
}
#layout-reports.reports .input-group.search-field:active i {
  transform: scale(-1, 1);
}
#layout-reports.reports .cards {
  display: flex;
  flex-direction: column;
}
#layout-reports.reports .cards > small {
  width: 100%;
}
#layout-reports.reports .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-reports.reports .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-reports.reports .cards .card * {
  user-select: none;
}
#layout-reports.reports .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-reports.reports .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-reports.reports .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-reports.reports .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-reports.reports .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-reports.reports .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-reports.reports .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-reports.reports .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-reports.reports .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-reports.reports .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-reports.reports .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-reports.reports .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-reports.reports .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-reports.reports .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-reports.reports .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-reports.reports .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-reports.reports .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-reports.reports .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-reports.reports .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-reports.reports .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-reports.reports .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-reports.reports .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-reports.reports .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-reports.reports .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-reports.reports .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-reports.reports .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-reports.reports .search-field {
  animation: appear-to-bottom 300ms 500ms both;
}
#layout-reports.reports .search-field .input-group-text {
  animation: reveal 500ms 800ms both, scaling 250ms 800ms both;
}
#layout-reports.reports #search-reports:disabled {
  display: none;
}
#layout-reports.reports #search-reports:disabled + * {
  display: none;
}
#layout-reports.reports:not(:has(small + *)) small {
  padding-inline: 10px;
}
#layout-reports.reports:has(.title + p) p {
  animation: appear-to-bottom 300ms 500ms both;
  padding-inline: 25px;
}
#layout-reports.reports:has(.title + p) p + * {
  display: none !important;
}

#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="1"]) .modal-title::after {
  content: " (1)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="2"]) .modal-title::after {
  content: " (2)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="3"]) .modal-title::after {
  content: " (3)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="4"]) .modal-title::after {
  content: " (4)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="5"]) .modal-title::after {
  content: " (5)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="6"]) .modal-title::after {
  content: " (6)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="7"]) .modal-title::after {
  content: " (7)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="8"]) .modal-title::after {
  content: " (8)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="9"]) .modal-title::after {
  content: " (9)";
}
#card-modal-reports .modal-header:has(+ .modal-body .report-params[data-params="10"]) .modal-title::after {
  content: " (10)";
}
#card-modal-reports .modal-body .input-group {
  position: relative;
}
#card-modal-reports .modal-body .input-group .input-group-text {
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 2.5px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 3dvw;
}
@media all and (max-width: 1200px) {
  #card-modal-reports .modal-body .input-group .input-group-text {
    padding: 20px;
  }
}
#card-modal-reports .modal-body .input-group .input-group-text :where(.form-label, .btn, a) {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 300ms ease;
  width: 100%;
}
#card-modal-reports .modal-body .input-group .input-group-text :where(.form-label, .btn, a) i {
  color: #050f18;
  filter: drop-shadow(0 0 2.5px currentColor);
  font-size: 1.3rem;
}
#card-modal-reports .modal-body .input-group .input-group-text :where(.form-label, .btn, a):hover i {
  color: #2e79be;
}
#card-modal-reports .modal-body .input-group .input-group-text :where(.form-label, .btn, a):active i {
  color: #050f18;
  opacity: 0.85;
  transform: scale(0.85);
}
#card-modal-reports .modal-body .input-group .input-group-text :where(.form-label, .btn, a):disabled {
  opacity: 1;
}
#card-modal-reports .modal-body .input-group .form-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px !important;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-weight: 300;
  margin-right: 10px;
  outline: none;
}
#card-modal-reports .modal-body .input-group .form-control.invalid-range, #card-modal-reports .modal-body .input-group .form-control.invalid {
  border-color: #b23749;
  caret-color: #b23749;
}
#card-modal-reports .modal-body .input-group .form-control:focus {
  border-color: #2e79be;
}
#card-modal-reports .modal-body .input-group .form-control:focus:invalid {
  animation: shake 820ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #b23749;
  caret-color: #b23749;
}
#card-modal-reports .modal-body .input-group .form-control::placeholder {
  color: #bababa75;
  transition: all 300ms ease;
}
#card-modal-reports .modal-body .input-group .form-control:hover::placeholder {
  opacity: 0.75;
}
#card-modal-reports .modal-body .input-group .form-control:active::placeholder {
  opacity: 1;
}
#card-modal-reports .modal-body .input-group .dash-dropdown {
  flex-grow: 1;
  font-size: 1.2rem;
  margin-right: 10px;
}
#card-modal-reports .modal-body .input-group .dash-dropdown * {
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#card-modal-reports .modal-body .input-group .dash-dropdown .is-focused {
  all: unset;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .is-focused .Select-control {
  border-color: #2e79be;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .is-disabled {
  position: relative;
  visibility: hidden;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .is-disabled::after {
  content: "Não disponível.";
  font-size: 0.85em;
  opacity: 0.5;
  position: absolute;
  top: 20%;
  visibility: visible;
  white-space: nowrap;
}
#card-modal-reports .modal-body .input-group .dash-dropdown :where(.Select--multi .Select-value) {
  border: none;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select--single .Select-control {
  cursor: pointer;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select--single .Select-control :where(.Select-value, .Select-placeholder, .Select-multi-value-wrapper, .Select-value-label) {
  cursor: pointer !important;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select--single .Select-control:hover .Select-value-label {
  opacity: 0.75;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select--single .Select-control:active .Select-value-label {
  opacity: 1;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px;
  box-shadow: none;
  font-weight: 300;
  height: 38px;
  transition: all 300ms ease;
  z-index: 20;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-placeholder {
  cursor: text;
  font-size: 0.85em;
  font-weight: 100;
  opacity: 0.75;
  transition: all 300ms ease;
  z-index: 10;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-placeholder:hover {
  opacity: 1;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-input {
  background: none;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-input input {
  caret-color: #2e79be;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-value {
  background-color: transparent;
  font-size: 0.85em;
  height: max-content;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-value {
    width: 100%;
  }
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon {
  border: none;
  color: #2e79be;
  display: inline-block;
  padding-inline: 2.5px;
  transform: scale(1.5);
  transition: all 300ms ease;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon:hover {
  background: none;
  color: #b23749;
  transform: scale(1.5) rotateY(180deg);
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-label {
  transition: all 300ms ease;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) {
  background-color: transparent;
  pointer-events: none;
  transition: all 300ms ease;
  z-index: 10;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear {
  color: #e0e0e0;
  display: inline-block;
  font-size: 1.5em;
  position: relative;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear:hover {
  color: #b23749;
  text-shadow: none;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) :where(.Select-arrow, .Select-clear) {
  cursor: pointer;
  pointer-events: all;
  transition: all 300ms ease;
  z-index: 20;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-menu-outer {
  all: unset;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu {
  backdrop-filter: blur(10px);
  background-color: transparent;
  font-size: 0.85em;
  padding-block: 10px;
  transition: all 300ms ease;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .VirtualizedSelectOption.VirtualizedSelectFocusedOption {
  background-color: #040d14;
  border-left: 3px solid #2e79be;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  transition: all 150ms ease;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults {
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
#card-modal-reports .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults::after {
  animation: appear-to-left 500ms ease;
  color: #b23749;
  content: "Seu filtro não encontrou nenhum resultado.";
  font-size: 0.85em;
  left: 0;
  position: absolute;
  visibility: visible;
}
#card-modal-reports .modal-body .input-group.search-field {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#card-modal-reports .modal-body .input-group.search-field .input-group-text {
  margin-left: 10px;
}
#card-modal-reports .modal-body .input-group.search-field i {
  transform: scaleX(-1);
}
#card-modal-reports .modal-body .input-group.search-field:active i {
  transform: scale(-1, 1);
}
#card-modal-reports .modal-body .form-check {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
#card-modal-reports .modal-body .form-check.form-switch {
  user-select: none;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input {
  box-shadow: none;
  cursor: pointer;
  transition: all 150ms ease;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input ~ .form-check-label {
  cursor: pointer;
  font-weight: 600;
  transition: color 150ms ease;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input ~ .form-check-label:hover {
  color: #2e79be;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input ~ .form-check-label:active {
  color: inherit;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input:checked {
  background-color: #2e79be;
  border-color: #2e79be;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input:checked ~ .form-check-label {
  color: #e0e0e0;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input:checked ~ .form-check-label:active {
  color: inherit;
}
#card-modal-reports .modal-body .form-check.form-switch .form-check-input:checked:hover {
  background-color: #2e79be75;
}
#card-modal-reports .modal-body > * {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#card-modal-reports .modal-body .report-param {
  animation: appear-to-top 500ms both;
}
#card-modal-reports .modal-body .report-param:nth-child(1) {
  animation-delay: 150ms;
}
#card-modal-reports .modal-body .report-param:nth-child(2) {
  animation-delay: 300ms;
}
#card-modal-reports .modal-body .report-param:nth-child(3) {
  animation-delay: 450ms;
}
#card-modal-reports .modal-body .report-param:nth-child(4) {
  animation-delay: 600ms;
}
#card-modal-reports .modal-body .report-param:nth-child(5) {
  animation-delay: 750ms;
}
#card-modal-reports .modal-body .report-param:nth-child(6) {
  animation-delay: 900ms;
}
#card-modal-reports .modal-body .report-param:nth-child(7) {
  animation-delay: 1050ms;
}
#card-modal-reports .modal-body .report-param:nth-child(8) {
  animation-delay: 1200ms;
}
#card-modal-reports .modal-body .report-param:nth-child(9) {
  animation-delay: 1350ms;
}
#card-modal-reports .modal-body .report-param:nth-child(10) {
  animation-delay: 1500ms;
}
#card-modal-reports .modal-body .report-param input::-webkit-search-cancel-button {
  margin-left: calc(1em - 2.5px);
}
#card-modal-reports .modal-body .report-param:has(input:invalid)::after {
  animation: appear-to-bottom 300ms ease;
  color: #b23749;
  content: attr(data-invalid-text);
  display: inline-block;
  font-size: 0.75rem;
  pointer-events: none;
}
#card-modal-reports .modal-body .report-param .form-label {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-inline: 10px;
  pointer-events: none;
  width: 100%;
}
#card-modal-reports .modal-body .report-param .form-label::before {
  border: 1px solid #050f18;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #e0e0e0;
  content: "";
  display: inline-block;
  height: calc(1rem - 2.5px);
  width: calc(1rem - 2.5px);
}
#card-modal-reports .modal-body .report-param.COMBOBOX .form-label::before {
  background-color: #00ff22;
}
#card-modal-reports .modal-body .report-param.DATE .form-label::before {
  background-color: #d9ff00;
}
#card-modal-reports .modal-body .report-param.EDIT .form-label::before {
  background-color: #00d9ff;
}
#card-modal-reports .modal-body .report-param.EDITBUTTON .form-label::before {
  background-color: #cc00ff;
}
#card-modal-reports .modal-body .report-param.TOGGLESWITCH .form-label::before {
  background-color: #ff5100;
}
#card-modal-reports .modal-body:has(.report-param input:invalid) + .modal-footer #report-link {
  pointer-events: none;
  opacity: 0.5;
  visibility: hidden;
}
#card-modal-reports .modal-footer {
  align-items: center;
  animation: appear-to-top 500ms 300ms both;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#card-modal-reports .modal-footer #btn-open-reports-help {
  align-items: center;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: all 300ms ease;
  width: max-content;
}
#card-modal-reports .modal-footer #btn-open-reports-help i {
  color: #2e79be;
  transform: scale(1.2);
}
#card-modal-reports .modal-footer #btn-open-reports-help:hover:not(:active) {
  opacity: 0.75;
}
#card-modal-reports .modal-footer #btn-open-reports-help:active {
  transform: scale(0.95);
}
#card-modal-reports .modal-footer #report-link {
  align-items: center;
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 600;
  gap: 10px;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: all 300ms ease;
  width: max-content;
}
#card-modal-reports .modal-footer #report-link .spinner-border {
  color: #2e79be;
}
#card-modal-reports .modal-footer #report-link i {
  color: #b23749;
  transform: scale(1.2);
}
#card-modal-reports .modal-footer #report-link:hover:not(:active) {
  opacity: 0.75;
}
#card-modal-reports .modal-footer #report-link:active {
  transform: scale(0.95);
}
#card-modal-reports .modal-footer:has(#report-link:disabled) #report-link i {
  display: none;
}
#card-modal-reports .modal-footer:not(:has(#report-link:disabled)) .spinner-border {
  display: none;
}

#reports-help ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#reports-help ul li {
  line-height: 30px;
  transition: all 300ms ease;
}
#reports-help ul li * {
  pointer-events: none;
}
#reports-help ul li::marker {
  color: #2e79be;
}
#reports-help ul > ul {
  padding: 0;
  margin: 0;
}
#reports-help ul > ul li {
  list-style: none;
}
#reports-help ul > ul li i {
  color: #2e79be;
  margin-inline: 5px;
}
#reports-help ul > ul li div {
  display: flex;
  flex-direction: column-reverse;
}
#reports-help ul > ul li div label {
  color: #2e79be;
  font-weight: 600;
}
#reports-help ul > ul li div div {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: flex-start;
}
#reports-help ul > ul li div div small {
  font-size: 0.75rem;
  opacity: 0.5;
}
#reports-help ul > ul li div div small::before {
  content: "Representado pela cor: ";
}
#reports-help ul > ul li div div small::after {
  content: ".";
}
#reports-help ul > ul li div input[type=color] {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 1rem;
  outline: none;
  padding: 0;
  transition: all 300ms ease;
  width: 1rem;
}
#reports-help ul > ul li div input[type=color]::-webkit-color-swatch {
  border-radius: 50%;
  border: 1px solid currentColor;
}
#reports-help ul > ul li div input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
#reports-help ul > ul li ul li {
  list-style-type: circle;
}
#reports-help ul > ul li ul li ul {
  all: unset;
}
#reports-help ul > ul li ul li ul li {
  list-style-type: square;
  margin-left: 20px;
}

#lookup-modal .modal-header .modal-title {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
#lookup-modal .modal-header .modal-title i {
  animation: scaling 500ms both;
  color: #2e79be;
  cursor: default;
}
#lookup-modal .modal-body .input-group {
  position: relative;
}
#lookup-modal .modal-body .input-group .input-group-text {
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 2.5px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 3dvw;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .input-group .input-group-text {
    padding: 20px;
  }
}
#lookup-modal .modal-body .input-group .input-group-text :where(.form-label, .btn, a) {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 300ms ease;
  width: 100%;
}
#lookup-modal .modal-body .input-group .input-group-text :where(.form-label, .btn, a) i {
  color: #050f18;
  filter: drop-shadow(0 0 2.5px currentColor);
  font-size: 1.3rem;
}
#lookup-modal .modal-body .input-group .input-group-text :where(.form-label, .btn, a):hover i {
  color: #2e79be;
}
#lookup-modal .modal-body .input-group .input-group-text :where(.form-label, .btn, a):active i {
  color: #050f18;
  opacity: 0.85;
  transform: scale(0.85);
}
#lookup-modal .modal-body .input-group .input-group-text :where(.form-label, .btn, a):disabled {
  opacity: 1;
}
#lookup-modal .modal-body .input-group .form-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px !important;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-weight: 300;
  margin-right: 10px;
  outline: none;
}
#lookup-modal .modal-body .input-group .form-control.invalid-range, #lookup-modal .modal-body .input-group .form-control.invalid {
  border-color: #b23749;
  caret-color: #b23749;
}
#lookup-modal .modal-body .input-group .form-control:focus {
  border-color: #2e79be;
}
#lookup-modal .modal-body .input-group .form-control:focus:invalid {
  animation: shake 820ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #b23749;
  caret-color: #b23749;
}
#lookup-modal .modal-body .input-group .form-control::placeholder {
  color: #bababa75;
  transition: all 300ms ease;
}
#lookup-modal .modal-body .input-group .form-control:hover::placeholder {
  opacity: 0.75;
}
#lookup-modal .modal-body .input-group .form-control:active::placeholder {
  opacity: 1;
}
#lookup-modal .modal-body .input-group .dash-dropdown {
  flex-grow: 1;
  font-size: 1.2rem;
  margin-right: 10px;
}
#lookup-modal .modal-body .input-group .dash-dropdown * {
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#lookup-modal .modal-body .input-group .dash-dropdown .is-focused {
  all: unset;
}
#lookup-modal .modal-body .input-group .dash-dropdown .is-focused .Select-control {
  border-color: #2e79be;
}
#lookup-modal .modal-body .input-group .dash-dropdown .is-disabled {
  position: relative;
  visibility: hidden;
}
#lookup-modal .modal-body .input-group .dash-dropdown .is-disabled::after {
  content: "Não disponível.";
  font-size: 0.85em;
  opacity: 0.5;
  position: absolute;
  top: 20%;
  visibility: visible;
  white-space: nowrap;
}
#lookup-modal .modal-body .input-group .dash-dropdown :where(.Select--multi .Select-value) {
  border: none;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select--single .Select-control {
  cursor: pointer;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select--single .Select-control :where(.Select-value, .Select-placeholder, .Select-multi-value-wrapper, .Select-value-label) {
  cursor: pointer !important;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select--single .Select-control:hover .Select-value-label {
  opacity: 0.75;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select--single .Select-control:active .Select-value-label {
  opacity: 1;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px;
  box-shadow: none;
  font-weight: 300;
  height: 38px;
  transition: all 300ms ease;
  z-index: 20;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-placeholder {
  cursor: text;
  font-size: 0.85em;
  font-weight: 100;
  opacity: 0.75;
  transition: all 300ms ease;
  z-index: 10;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-placeholder:hover {
  opacity: 1;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-input {
  background: none;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-input input {
  caret-color: #2e79be;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-value {
  background-color: transparent;
  font-size: 0.85em;
  height: max-content;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-value {
    width: 100%;
  }
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon {
  border: none;
  color: #2e79be;
  display: inline-block;
  padding-inline: 2.5px;
  transform: scale(1.5);
  transition: all 300ms ease;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon:hover {
  background: none;
  color: #b23749;
  transform: scale(1.5) rotateY(180deg);
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control .Select-value .Select-value-label {
  transition: all 300ms ease;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) {
  background-color: transparent;
  pointer-events: none;
  transition: all 300ms ease;
  z-index: 10;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear {
  color: #e0e0e0;
  display: inline-block;
  font-size: 1.5em;
  position: relative;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear:hover {
  color: #b23749;
  text-shadow: none;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) :where(.Select-arrow, .Select-clear) {
  cursor: pointer;
  pointer-events: all;
  transition: all 300ms ease;
  z-index: 20;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-menu-outer {
  all: unset;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu {
  backdrop-filter: blur(10px);
  background-color: transparent;
  font-size: 0.85em;
  padding-block: 10px;
  transition: all 300ms ease;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .VirtualizedSelectOption.VirtualizedSelectFocusedOption {
  background-color: #040d14;
  border-left: 3px solid #2e79be;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults {
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
#lookup-modal .modal-body .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults::after {
  animation: appear-to-left 500ms ease;
  color: #b23749;
  content: "Seu filtro não encontrou nenhum resultado.";
  font-size: 0.85em;
  left: 0;
  position: absolute;
  visibility: visible;
}
#lookup-modal .modal-body .input-group.search-field {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#lookup-modal .modal-body .input-group.search-field .input-group-text {
  margin-left: 10px;
}
#lookup-modal .modal-body .input-group.search-field i {
  transform: scaleX(-1);
}
#lookup-modal .modal-body .input-group.search-field:active i {
  transform: scale(-1, 1);
}
#lookup-modal .modal-body .dash-table-container {
  color: #bababa;
  font-size: 1rem;
  position: relative;
}
#lookup-modal .modal-body .dash-table-container .cell-table {
  border-radius: 2.5px;
  border: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#lookup-modal .modal-body .dash-table-container .cell-table :where(th, td) {
  border: none !important;
  margin: 0;
  outline: none !important;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr {
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:nth-child(n+4) {
  border-top: 2px solid #e0e0e015;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:nth-child(n+4):nth-child(even) {
  background-color: #e0e0e005;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr * {
  cursor: default;
  text-align: left;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .cell-table tr *:not(th) {
    font-size: 0.95em;
  }
}
#lookup-modal .modal-body .dash-table-container .cell-table tr th {
  background-color: transparent;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-cell {
  background: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.9rem;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-cell > .selectable {
  cursor: default !important;
  pointer-events: all;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-cell.cell--selected {
  background-color: transparent !important;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell {
  background: none;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox] {
  height: calc(1em + 2px);
  width: calc(1em + 2px);
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  height: 1em;
  width: 1em;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox],
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  appearance: none;
  border-radius: 50%;
  border: 2px inset #050f18;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: all 100ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked,
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked {
  background-color: #0ebf22;
  border-color: #0ebf22;
  box-shadow: 0 0 5px #0ebf22;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked::after,
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked::after {
  color: #e0e0e0;
  content: "✓";
  font-size: calc(1rem - 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover,
  #lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover {
    background-color: #b23749;
    border-color: #b23749;
    box-shadow: 0 0 5px #b23749;
  }
  #lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover::after,
  #lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover::after {
    content: "X";
  }
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:hover:not(:checked),
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:hover:not(:checked) {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter {
  cursor: default;
  overflow-y: hidden;
  padding-block: 0;
  pointer-events: all;
  position: relative;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div {
  align-items: center;
  cursor: default;
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: flex-start;
  position: relative;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text] {
  background-color: #2e79be10;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.85rem;
  font-weight: 400;
  min-width: 10ch;
  outline: none;
  padding-block: 5px;
  padding-left: 35px;
  padding-right: 10px;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]::placeholder {
  color: #bababa50;
  font-size: 0.85rem;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active) {
  background-color: #050f18;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active)::placeholder {
  color: #bababa;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active) {
  border-color: #2e79be;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active)::placeholder {
  color: transparent;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div input[type=text]:active::placeholder {
  color: transparent;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter > div .dash-filter--case {
  display: none;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr .dash-filter::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/></svg>');
  background-size: 1em;
  content: "";
  height: 1em;
  left: 15px;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  top: 30%;
  transform: scaleX(-1);
  vertical-align: middle;
  width: 1em;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div {
  align-items: center;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div * {
  background: none;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-actions {
  margin-right: 10px;
  pointer-events: all;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort {
  color: #e0e0e0;
  cursor: pointer;
  transition: all 150ms ease;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort * {
  cursor: pointer;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:hover {
  color: #2e79be;
  opacity: 0.75;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:active {
  color: #e0e0e0;
  transform: scale(0.85);
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:first-child div .column-header-name {
  margin-right: 50px;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:hover {
  background-color: transparent;
}
#lookup-modal .modal-body .dash-table-container .cell-table tr:hover .dash-cell {
  color: #2e79be;
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu {
  width: max-content;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu {
    display: none;
  }
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu .export {
  align-items: center;
  background: none;
  border: none;
  border-radius: 5px;
  color: #bababa;
  display: inline-flex;
  flex-direction: row;
  padding: 5px;
  transition: all 300ms ease;
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu .export::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" class="bi bi-filetype-csv" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.517 14.841a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.439 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM.806 13.693q0-.373.102-.633a.87.87 0 0 1 .302-.399.8.8 0 0 1 .475-.137q.225 0 .398.097a.7.7 0 0 1 .272.26.85.85 0 0 1 .12.381h.765v-.072a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.489-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.572.632-.195.41-.196.979v.498q0 .568.193.976.197.407.572.626.375.217.914.217.439 0 .785-.164t.55-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.764a.8.8 0 0 1-.118.363.7.7 0 0 1-.272.25.9.9 0 0 1-.401.087.85.85 0 0 1-.478-.132.83.83 0 0 1-.299-.392 1.7 1.7 0 0 1-.102-.627zm8.239 2.238h-.953l-1.338-3.999h.917l.896 3.138h.038l.888-3.138h.879z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: calc(1rem + 0.5em);
  margin-right: 10px;
  transition: all 300ms ease;
  width: calc(1rem + 0.5em);
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu .export::after {
  content: "ar Dados (csv)";
  font-size: 1rem;
  transition: all 300ms ease;
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu .export:hover::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(14, 191, 34)" class="bi bi-download" viewBox="0 0 16 16"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></svg>');
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-menu .export:hover:active {
  transform: scale(0.95);
}
#lookup-modal .modal-body .dash-table-container .dash-spreadsheet-container {
  overflow-x: auto;
  position: relative;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container {
  animation: reveal 500ms 1000ms both;
  backdrop-filter: blur(10px);
  border-radius: 2.5px;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: flex-end;
  pointer-events: none;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container {
    color: transparent;
  }
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container {
    color: #bababa90;
    font-size: 12px;
    gap: 5px;
    margin-top: 1em;
  }
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .page-number {
  align-items: center;
  background: none;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  gap: 0;
  left: 0;
  position: absolute;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .page-number * {
  background: none;
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 1rem;
  font-weight: normal;
  pointer-events: none;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container .page-number * {
    color: #bababa90;
    font-size: 12px;
  }
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .current-page-container .current-page {
  display: none !important;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .current-page-container .current-page-shadow {
  border: none !important;
}
@media all and (min-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .current-page-container::before {
    content: "Página";
    margin-right: 8px;
  }
}
@media all and (min-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .last-page::before {
    content: "de";
    margin-right: 5px;
  }
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .last-page {
    margin-inline: 1.5px;
  }
  #lookup-modal .modal-body .dash-table-container .previous-next-container .page-number .last-page::before {
    content: none;
  }
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .page-number :where(.current-page-shadow, .current-page, .last-page) {
  min-width: max-content !important;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
  align-items: center;
  background: none;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: bolder;
  gap: 5px;
  height: max-content;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
    font-size: 12px;
  }
}
#lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg {
  cursor: pointer;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg * {
  cursor: pointer;
}
@media all and (min-width: 1200px) {
  #lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):hover {
    color: #2e79be;
  }
}
#lookup-modal .modal-body .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):active {
  transform: scale(0.85);
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .next-page::before {
  content: "Próximo";
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .next-page:disabled {
  pointer-events: none;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .next-page:disabled svg path {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .next-page:disabled::before {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .last-page::before {
  content: "Último";
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .last-page:disabled {
  pointer-events: none;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .last-page:disabled svg path {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .last-page:disabled::before {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .previous-page::after {
  content: "Anterior";
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .previous-page:disabled {
  pointer-events: none;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .previous-page:disabled svg path {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .previous-page:disabled::after {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .first-page::after {
  content: "Primeiro";
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .first-page:disabled {
  pointer-events: none;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .first-page:disabled svg path {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container .previous-next-container .first-page:disabled::after {
  opacity: 0.5;
}
#lookup-modal .modal-body .dash-table-container:not(:has(.cell-table .dash-cell))::after {
  align-items: center;
  animation: appear-to-bottom 500ms 500ms both, desappear-standard 500ms 8500ms forwards;
  backdrop-filter: blur(20px);
  background: none;
  border-radius: 0;
  color: #e0e0e0;
  content: "Sem dados";
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  font-weight: 500;
  justify-content: center;
  padding: 5px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 10px;
}
#lookup-modal .modal-body::-webkit-scrollbar-thumb {
  cursor: grab;
}
#lookup-modal .modal-body::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
#lookup-modal .modal-body .column-0 {
  width: 10ch;
}
#lookup-modal .modal-footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
  margin-block: 1em;
}
#lookup-modal .modal-footer .btn {
  align-items: center;
  background-color: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: 600;
  gap: 5px;
  margin: 0;
  outline: none;
  padding: 0;
  transition: all 300ms ease;
  width: max-content;
}
#lookup-modal .modal-footer .btn i {
  color: #2e79be;
  font-size: 1.2em;
}
#lookup-modal .modal-footer .btn:hover:not(:active) {
  opacity: 0.75;
  transform: scale(0.95);
}

.popover-for-COMBOBOX {
  animation: reveal 300ms 2000ms both, desappear-standard 300ms 6000ms forwards;
  backdrop-filter: blur(5px);
  background: none;
  border-radius: 5px;
  color: #00ff22;
  font-weight: bolder;
  padding: 5px;
}
.popover-for-COMBOBOX .popover-arrow {
  filter: blur(5px);
  transform: translate(calc(5px - 25%), 25%) !important;
}
.popover-for-COMBOBOX .popover-arrow::after, .popover-for-COMBOBOX .popover-arrow::before {
  border-left-color: #00ff22;
}

.popover-for-DATE {
  animation: reveal 300ms 2000ms both, desappear-standard 300ms 6000ms forwards;
  backdrop-filter: blur(5px);
  background: none;
  border-radius: 5px;
  color: #d9ff00;
  font-weight: bolder;
  padding: 5px;
}
.popover-for-DATE .popover-arrow {
  filter: blur(5px);
  transform: translate(calc(5px - 25%), 25%) !important;
}
.popover-for-DATE .popover-arrow::after, .popover-for-DATE .popover-arrow::before {
  border-left-color: #d9ff00;
}

.popover-for-EDIT {
  animation: reveal 300ms 2000ms both, desappear-standard 300ms 6000ms forwards;
  backdrop-filter: blur(5px);
  background: none;
  border-radius: 5px;
  color: #00d9ff;
  font-weight: bolder;
  padding: 5px;
}
.popover-for-EDIT .popover-arrow {
  filter: blur(5px);
  transform: translate(calc(5px - 25%), 25%) !important;
}
.popover-for-EDIT .popover-arrow::after, .popover-for-EDIT .popover-arrow::before {
  border-left-color: #00d9ff;
}

.popover-for-EDITBUTTON {
  animation: reveal 300ms 2000ms both, desappear-standard 300ms 6000ms forwards;
  backdrop-filter: blur(5px);
  background: none;
  border-radius: 5px;
  color: #cc00ff;
  font-weight: bolder;
  padding: 5px;
}
.popover-for-EDITBUTTON .popover-arrow {
  filter: blur(5px);
  transform: translate(calc(5px - 25%), 25%) !important;
}
.popover-for-EDITBUTTON .popover-arrow::after, .popover-for-EDITBUTTON .popover-arrow::before {
  border-left-color: #cc00ff;
}

.popover-for-TOGGLESWITCH {
  animation: reveal 300ms 2000ms both, desappear-standard 300ms 6000ms forwards;
  backdrop-filter: blur(5px);
  background: none;
  border-radius: 5px;
  color: #ff5100;
  font-weight: bolder;
  padding: 5px;
}
.popover-for-TOGGLESWITCH .popover-arrow {
  filter: blur(5px);
  transform: translate(calc(5px - 25%), 25%) !important;
}
.popover-for-TOGGLESWITCH .popover-arrow::after, .popover-for-TOGGLESWITCH .popover-arrow::before {
  border-left-color: #ff5100;
}

#layout-dashboards.dashboards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-dashboards.dashboards .accordion {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#layout-dashboards.dashboards .accordion * {
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
}
#layout-dashboards.dashboards .accordion .accordion-item {
  animation: appear-to-top 300ms 500ms both;
  padding-inline: 10px;
}
@media all and (max-width: 1200px) {
  #layout-dashboards.dashboards .accordion .accordion-item:last-child {
    margin-bottom: 3em;
  }
}
#layout-dashboards.dashboards .accordion .accordion-item:nth-child(1) {
  animation-delay: 50ms;
}
#layout-dashboards.dashboards .accordion .accordion-item:nth-child(2) {
  animation-delay: 100ms;
}
#layout-dashboards.dashboards .accordion .accordion-item:nth-child(3) {
  animation-delay: 150ms;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button {
  border: none;
  box-shadow: none;
  outline: none;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: space-between;
  transition: all 300ms ease;
  width: 100%;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group * {
  cursor: pointer;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group strong {
  color: #2e79be;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group span {
  color: #bababa;
}
@media all and (min-width: 1200px) {
  #layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group:hover:not(:active) {
    opacity: 0.5;
  }
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button .dashboard-group:active {
  transform: scale(0.95);
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-header button::after {
  content: none;
}
#layout-dashboards.dashboards .accordion .accordion-item .accordion-body {
  animation: reveal 300ms 200ms both;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  padding-block: 20px;
  place-content: center;
}
#layout-dashboards.dashboards .input-group {
  position: relative;
}
#layout-dashboards.dashboards .input-group .input-group-text {
  align-items: center;
  background-color: #e0e0e0;
  border-radius: 2.5px !important;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  width: 3dvw;
}
@media all and (max-width: 1200px) {
  #layout-dashboards.dashboards .input-group .input-group-text {
    padding: 20px;
  }
}
#layout-dashboards.dashboards .input-group .input-group-text :where(.form-label, .btn, a) {
  align-items: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 300ms ease;
  width: 100%;
}
#layout-dashboards.dashboards .input-group .input-group-text :where(.form-label, .btn, a) i {
  color: #050f18;
  filter: drop-shadow(0 0 2.5px currentColor);
  font-size: 1.3rem;
}
#layout-dashboards.dashboards .input-group .input-group-text :where(.form-label, .btn, a):hover i {
  color: #2e79be;
}
#layout-dashboards.dashboards .input-group .input-group-text :where(.form-label, .btn, a):active i {
  color: #050f18;
  opacity: 0.85;
  transform: scale(0.85);
}
#layout-dashboards.dashboards .input-group .input-group-text :where(.form-label, .btn, a):disabled {
  opacity: 1;
}
#layout-dashboards.dashboards .input-group .form-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px !important;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-weight: 300;
  margin-right: 10px;
  outline: none;
}
#layout-dashboards.dashboards .input-group .form-control.invalid-range, #layout-dashboards.dashboards .input-group .form-control.invalid {
  border-color: #b23749;
  caret-color: #b23749;
}
#layout-dashboards.dashboards .input-group .form-control:focus {
  border-color: #2e79be;
}
#layout-dashboards.dashboards .input-group .form-control:focus:invalid {
  animation: shake 820ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #b23749;
  caret-color: #b23749;
}
#layout-dashboards.dashboards .input-group .form-control::placeholder {
  color: #bababa75;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .input-group .form-control:hover::placeholder {
  opacity: 0.75;
}
#layout-dashboards.dashboards .input-group .form-control:active::placeholder {
  opacity: 1;
}
#layout-dashboards.dashboards .input-group .dash-dropdown {
  flex-grow: 1;
  font-size: 1.2rem;
  margin-right: 10px;
}
#layout-dashboards.dashboards .input-group .dash-dropdown * {
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#layout-dashboards.dashboards .input-group .dash-dropdown .is-focused {
  all: unset;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .is-focused .Select-control {
  border-color: #2e79be;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .is-disabled {
  position: relative;
  visibility: hidden;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .is-disabled::after {
  content: "Não disponível.";
  font-size: 0.85em;
  opacity: 0.5;
  position: absolute;
  top: 20%;
  visibility: visible;
  white-space: nowrap;
}
#layout-dashboards.dashboards .input-group .dash-dropdown :where(.Select--multi .Select-value) {
  border: none;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select--single .Select-control {
  cursor: pointer;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select--single .Select-control :where(.Select-value, .Select-placeholder, .Select-multi-value-wrapper, .Select-value-label) {
  cursor: pointer !important;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select--single .Select-control:hover .Select-value-label {
  opacity: 0.75;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select--single .Select-control:active .Select-value-label {
  opacity: 1;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control {
  background: linear-gradient(45deg, transparent, transparent, #1e272f50 80%);
  border-color: #e0e0e0;
  border-left-width: 3px;
  border-radius: 2.5px;
  box-shadow: none;
  font-weight: 300;
  height: 38px;
  transition: all 300ms ease;
  z-index: 20;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-placeholder {
  cursor: text;
  font-size: 0.85em;
  font-weight: 100;
  opacity: 0.75;
  transition: all 300ms ease;
  z-index: 10;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-placeholder:hover {
  opacity: 1;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-input {
  background: none;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-input input {
  caret-color: #2e79be;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-value {
  background-color: transparent;
  font-size: 0.85em;
  height: max-content;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-value {
    width: 100%;
  }
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon {
  border: none;
  color: #2e79be;
  display: inline-block;
  padding-inline: 2.5px;
  transform: scale(1.5);
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-value .Select-value-icon:hover {
  background: none;
  color: #b23749;
  transform: scale(1.5) rotateY(180deg);
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control .Select-value .Select-value-label {
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) {
  background-color: transparent;
  pointer-events: none;
  transition: all 300ms ease;
  z-index: 10;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear {
  color: #e0e0e0;
  display: inline-block;
  font-size: 1.5em;
  position: relative;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) .Select-clear:hover {
  color: #b23749;
  text-shadow: none;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-control :where(.Select-arrow-zone, .Select-clear-zone) :where(.Select-arrow, .Select-clear) {
  cursor: pointer;
  pointer-events: all;
  transition: all 300ms ease;
  z-index: 20;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-menu-outer {
  all: unset;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-menu-outer .Select-menu {
  backdrop-filter: blur(10px);
  background-color: transparent;
  font-size: 0.85em;
  padding-block: 10px;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-menu-outer .Select-menu .VirtualizedSelectOption.VirtualizedSelectFocusedOption {
  background-color: #040d14;
  border-left: 3px solid #2e79be;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  transition: all 150ms ease;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults {
  border: none;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
#layout-dashboards.dashboards .input-group .dash-dropdown .Select-menu-outer .Select-menu .Select-noresults::after {
  animation: appear-to-left 500ms ease;
  color: #b23749;
  content: "Seu filtro não encontrou nenhum resultado.";
  font-size: 0.85em;
  left: 0;
  position: absolute;
  visibility: visible;
}
#layout-dashboards.dashboards .input-group.search-field {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-dashboards.dashboards .input-group.search-field .input-group-text {
  margin-left: 10px;
}
#layout-dashboards.dashboards .input-group.search-field i {
  transform: scaleX(-1);
}
#layout-dashboards.dashboards .input-group.search-field:active i {
  transform: scale(-1, 1);
}
#layout-dashboards.dashboards .cards {
  display: flex;
  flex-direction: column;
}
#layout-dashboards.dashboards .cards > small {
  width: 100%;
}
#layout-dashboards.dashboards .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-dashboards.dashboards .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .cards .card * {
  user-select: none;
}
#layout-dashboards.dashboards .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-dashboards.dashboards .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-dashboards.dashboards .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-dashboards.dashboards .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-dashboards.dashboards .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-dashboards.dashboards .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-dashboards.dashboards .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-dashboards.dashboards .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-dashboards.dashboards .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-dashboards.dashboards .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-dashboards.dashboards .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-dashboards.dashboards .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-dashboards.dashboards .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-dashboards.dashboards .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-dashboards.dashboards .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-dashboards.dashboards .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-dashboards.dashboards .search-field {
  animation: appear-to-bottom 300ms 500ms both;
}
#layout-dashboards.dashboards .search-field .input-group-text {
  animation: reveal 500ms 800ms both, scaling 500ms 800ms both;
}
#layout-dashboards.dashboards #search-dashboards:disabled {
  display: none;
}
#layout-dashboards.dashboards #search-dashboards:disabled + * {
  display: none;
}
#layout-dashboards.dashboards:not(:has(small + *)) small {
  padding-inline: 10px;
}
#layout-dashboards.dashboards:has(.title + p) p {
  animation: appear-to-bottom 300ms 500ms both;
  padding-inline: 25px;
}
#layout-dashboards.dashboards:has(.title + p) p + * {
  display: none !important;
}

#options-modal .accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#options-modal .accordion * {
  background: none;
  border-radius: 0;
  border: none;
  color: #bababa;
  padding: 0;
}
#options-modal .accordion:not(:has(.accordion-body > *[id$=registers-quantity-filter-option] label input:checked + [data-option="1"])) .accordion-item:nth-child(1), #options-modal .accordion:has(.accordion-body > *[id$=registers-quantity-filter-option] label input:checked + [data-option="1"]) .accordion-item:nth-child(2) {
  display: none;
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button {
  align-items: center;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  outline: none;
  transition: all 300ms ease;
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button i {
  color: #2e79be;
}
@media all and (min-width: 1200px) {
  #options-modal .accordion .accordion-item .accordion-header .accordion-button:hover {
    color: #2e79be;
  }
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button:active {
  transform: scale(0.95);
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button::after {
  all: unset;
  color: #2e79be;
  content: "▼";
  display: inline-block;
  margin-left: auto;
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] {
  font-weight: 600;
  justify-content: center;
  pointer-events: none;
  transition: none;
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true] i {
  display: none;
}
#options-modal .accordion .accordion-item .accordion-header .accordion-button[aria-expanded=true]::after {
  display: none;
}
#options-modal .accordion .accordion-item .accordion-body > * {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding-inline: 20px;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=color-filter-option]::before {
  content: "Defina as cores que deseja visualizar no gráfico.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=graph-interval-filter-option]::before {
  content: "Defina o tempo de atualização do gráfico.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=graph-variant-filter-option]::before {
  content: "Defina a informação gráfica que deseja ver.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=level-filter-option]::before {
  content: "Defina o nível que o gráfico deve mostrar.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=page-interval-filter-option]::before {
  content: "Defina o tempo de atualização da paginação.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=registers-quantity-filter-option]::before {
  content: "Defina quantos registros o gráfico deve mostrar.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > *[id$=show-names-filter-option]::before {
  content: "Defina se o nome dos colaboradores serão exibidos ou não.";
  font-size: 0.85rem;
  opacity: 0.75 !important;
}
#options-modal .accordion .accordion-item .accordion-body > * label {
  animation: appear-to-top 300ms both;
  align-items: center;
  cursor: pointer;
  display: flex !important;
  flex-direction: row;
  font-size: 1rem;
  gap: 10px;
  position: relative;
  transition: all 300ms ease;
  width: max-content;
  font-weight: normal;
}
#options-modal .accordion .accordion-item .accordion-body > * label * {
  pointer-events: none;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(1) {
  animation-delay: 300ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(2) {
  animation-delay: 350ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(3) {
  animation-delay: 400ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(4) {
  animation-delay: 450ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(5) {
  animation-delay: 500ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(6) {
  animation-delay: 550ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(7) {
  animation-delay: 600ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(8) {
  animation-delay: 650ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(9) {
  animation-delay: 700ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(10) {
  animation-delay: 750ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(11) {
  animation-delay: 800ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(12) {
  animation-delay: 850ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(13) {
  animation-delay: 900ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(14) {
  animation-delay: 950ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(15) {
  animation-delay: 1000ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(16) {
  animation-delay: 1050ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(17) {
  animation-delay: 1100ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(18) {
  animation-delay: 1150ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(19) {
  animation-delay: 1200ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(20) {
  animation-delay: 1250ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(21) {
  animation-delay: 1300ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(22) {
  animation-delay: 1350ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(23) {
  animation-delay: 1400ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(24) {
  animation-delay: 1450ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label:nth-child(25) {
  animation-delay: 1500ms;
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=radio] {
  appearance: none;
  border-radius: 50%;
  border: 2px inset #050f18;
  cursor: pointer;
  height: 20px;
  outline: none;
  position: relative;
  transition: all 300ms ease;
  width: 20px;
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=radio]:checked {
  background-color: #0ebf22;
  border-color: #0ebf22;
  box-shadow: 0 0 5px #0ebf22;
  pointer-events: none;
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=radio]:checked::after {
  color: #e0e0e0;
  content: "✓";
  font-size: calc(1rem - 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 1200px) {
  #options-modal .accordion .accordion-item .accordion-body > * label input[type=radio]:hover:not(:checked) {
    opacity: 0.5;
  }
}
@media all and (max-width: 1200px) {
  #options-modal .accordion .accordion-item .accordion-body > * label input[type=radio]:active:not(:checked) {
    opacity: 0.5;
  }
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=color] {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: calc(1rem + 4px);
  outline: none;
  padding: 0;
  transition: all 300ms ease;
  width: calc(1rem + 4px);
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=color]::-webkit-color-swatch {
  border-radius: 50%;
  border: 1px solid currentColor;
}
#options-modal .accordion .accordion-item .accordion-body > * label input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
#options-modal .accordion .accordion-item .accordion-body > * label:not(:has(input[type=radio])) * {
  transition: all 300ms ease;
}
#options-modal .accordion .accordion-item .accordion-body > * label:not(:has(input[type=radio])) *:not(input) {
  pointer-events: none;
}
#options-modal .accordion .accordion-item .accordion-body > * label:not(:has(input[type=radio])) span {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
#options-modal .accordion .accordion-item .accordion-body > * label:not(:has(input[type=radio])) span small {
  color: #bababa95;
  font-size: 0.75rem;
}
#options-modal .accordion .accordion-item .accordion-body > * label:not(:has(input[type=radio])):hover:not(:active) *:not(input) {
  opacity: 0.5;
}
@media all and (min-width: 1200px) {
  #options-modal .accordion .accordion-item .accordion-body > * label:hover {
    color: #2e79be;
  }
}
@media all and (max-width: 1200px) {
  #options-modal .accordion .accordion-item .accordion-body > * label:active {
    color: #2e79be;
  }
}
#options-modal .accordion .accordion-item .accordion-body > * label:has(input[type=radio]:checked, input[type=radio]:disabled) {
  font-weight: 600;
  pointer-events: none;
}

#help-modal ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#help-modal ul li {
  animation: appear-to-top 500ms both;
  line-height: 30px;
  transition: all 300ms ease;
}
#help-modal ul li * {
  pointer-events: none;
}
#help-modal ul li i {
  color: #2e79be;
  margin-inline: 5px;
  vertical-align: middle;
}
#help-modal ul li ul {
  gap: 0;
}
#help-modal ul li ul li {
  animation: appear-to-bottom 500ms both;
}
#help-modal ul li:nth-child(1) {
  animation-name: appear-to-bottom;
  animation-delay: 150ms;
}
#help-modal ul li:nth-child(1) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(1) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(2) {
  animation-delay: 300ms;
}
#help-modal ul li:nth-child(2) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(2) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(3) {
  animation-name: appear-to-bottom;
  animation-delay: 450ms;
}
#help-modal ul li:nth-child(3) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(3) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(4) {
  animation-delay: 600ms;
}
#help-modal ul li:nth-child(4) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(4) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(5) {
  animation-name: appear-to-bottom;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(5) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(5) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(6) {
  animation-delay: 900ms;
}
#help-modal ul li:nth-child(6) li:nth-child(1) {
  animation-name: appear-to-top;
  animation-delay: 750ms;
}
#help-modal ul li:nth-child(6) li:nth-child(2) {
  animation-delay: 900ms;
}
#help-modal ul li::marker {
  color: #2e79be;
}

[id*=dashboard-modal],
[id=view-modal] {
  overflow-x: hidden;
}
@media all and (min-width: 1200px) {
  [id*=dashboard-modal] .modal-title,
  [id=view-modal] .modal-title {
    text-align: center !important;
    width: 100% !important;
  }
}
[id*=dashboard-modal] .graphs-header,
[id=view-modal] .graphs-header {
  align-items: center;
  background: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
[id*=dashboard-modal] .graphs-header .graphs-header-controls,
[id=view-modal] .graphs-header .graphs-header-controls {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
[id*=dashboard-modal] .graphs-header .graphs-header-controls .btn,
[id=view-modal] .graphs-header .graphs-header-controls .btn {
  animation: scaling 300ms both;
  background: none !important;
  border: none;
  border-radius: 2.5px;
  box-shadow: none !important;
  font-weight: 600;
  height: max-content;
  outline: none !important;
  padding: 5px;
  transition: all 300ms ease;
  width: max-content;
}
@media all and (min-width: 1200px) {
  [id*=dashboard-modal] .graphs-header .graphs-header-controls .btn:hover:not(:active),
  [id=view-modal] .graphs-header .graphs-header-controls .btn:hover:not(:active) {
    color: #2e79be;
  }
}
[id*=dashboard-modal] .graphs-header .graphs-header-controls .btn:active,
[id=view-modal] .graphs-header .graphs-header-controls .btn:active {
  transform: scale(0.85);
}
[id*=dashboard-modal] .graphs-header .graphs-header-controls .btn:nth-child(1),
[id=view-modal] .graphs-header .graphs-header-controls .btn:nth-child(1) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs-header .graphs-header-controls .btn:nth-child(2),
[id=view-modal] .graphs-header .graphs-header-controls .btn:nth-child(2) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs-header .graphs-header-message,
[id=view-modal] .graphs-header .graphs-header-message {
  all: unset;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs-header .graphs-header-message,
  [id=view-modal] .graphs-header .graphs-header-message {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    justify-content: flex-end;
  }
}
[id*=dashboard-modal] .graphs,
[id=view-modal] .graphs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: hidden;
  width: 100%;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs,
  [id=view-modal] .graphs {
    flex-direction: column;
  }
}
[id*=dashboard-modal] .graphs .pagination,
[id=view-modal] .graphs .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media all and (min-width: 1200px) {
  [id*=dashboard-modal] .graphs .pagination,
  [id=view-modal] .graphs .pagination {
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(calc(-50% - 100px));
  }
}
[id*=dashboard-modal] .graphs .pagination .page-item,
[id=view-modal] .graphs .pagination .page-item {
  animation: scaling 300ms both;
}
[id*=dashboard-modal] .graphs .pagination .page-item .page-link,
[id=view-modal] .graphs .pagination .page-item .page-link {
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  color: #e0e0e0;
  flex-direction: row;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  outline: none;
  padding-inline: 10px;
  transition: all 300ms ease;
  width: max-content;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(1),
[id=view-modal] .graphs .pagination .page-item:nth-child(1) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(2),
[id=view-modal] .graphs .pagination .page-item:nth-child(2) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(3),
[id=view-modal] .graphs .pagination .page-item:nth-child(3) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(4),
[id=view-modal] .graphs .pagination .page-item:nth-child(4) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(5),
[id=view-modal] .graphs .pagination .page-item:nth-child(5) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(6),
[id=view-modal] .graphs .pagination .page-item:nth-child(6) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(7),
[id=view-modal] .graphs .pagination .page-item:nth-child(7) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(8),
[id=view-modal] .graphs .pagination .page-item:nth-child(8) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(9),
[id=view-modal] .graphs .pagination .page-item:nth-child(9) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(10),
[id=view-modal] .graphs .pagination .page-item:nth-child(10) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(11),
[id=view-modal] .graphs .pagination .page-item:nth-child(11) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(12),
[id=view-modal] .graphs .pagination .page-item:nth-child(12) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .pagination .page-item:hover:not(:active, .disabled, .active) .page-link,
[id=view-modal] .graphs .pagination .page-item:hover:not(:active, .disabled, .active) .page-link {
  opacity: 0.5;
}
[id*=dashboard-modal] .graphs .pagination .page-item:active:not(.disabled, .active) .page-link,
[id=view-modal] .graphs .pagination .page-item:active:not(.disabled, .active) .page-link {
  transform: scale(0.85);
}
[id*=dashboard-modal] .graphs .pagination .page-item.active .page-link,
[id=view-modal] .graphs .pagination .page-item.active .page-link {
  color: #2e79be;
  font-weight: 600;
}
[id*=dashboard-modal] .graphs .pagination .page-item:first-child .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:nth-child(2) .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:last-child .page-link,
[id=view-modal] .graphs .pagination .page-item:first-child .page-link,
[id=view-modal] .graphs .pagination .page-item:nth-child(2) .page-link,
[id=view-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link,
[id=view-modal] .graphs .pagination .page-item:last-child .page-link {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 5px;
  padding-inline: 10px;
  font-weight: 600;
}
[id*=dashboard-modal] .graphs .pagination .page-item:first-child .page-link span, [id*=dashboard-modal] .graphs .pagination .page-item:nth-child(2) .page-link span, [id*=dashboard-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link span, [id*=dashboard-modal] .graphs .pagination .page-item:last-child .page-link span,
[id=view-modal] .graphs .pagination .page-item:first-child .page-link span,
[id=view-modal] .graphs .pagination .page-item:nth-child(2) .page-link span,
[id=view-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link span,
[id=view-modal] .graphs .pagination .page-item:last-child .page-link span {
  display: none;
}
[id*=dashboard-modal] .graphs .pagination .page-item:first-child.disabled .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:nth-child(2).disabled .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:nth-last-child(2).disabled .page-link, [id*=dashboard-modal] .graphs .pagination .page-item:last-child.disabled .page-link,
[id=view-modal] .graphs .pagination .page-item:first-child.disabled .page-link,
[id=view-modal] .graphs .pagination .page-item:nth-child(2).disabled .page-link,
[id=view-modal] .graphs .pagination .page-item:nth-last-child(2).disabled .page-link,
[id=view-modal] .graphs .pagination .page-item:last-child.disabled .page-link {
  color: #bababa;
  opacity: 0.75;
}
[id*=dashboard-modal] .graphs .pagination .page-item:first-child .page-link::after,
[id=view-modal] .graphs .pagination .page-item:first-child .page-link::after {
  content: "Primeiro";
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-child(2) .page-link::after,
[id=view-modal] .graphs .pagination .page-item:nth-child(2) .page-link::after {
  content: "Anterior";
}
[id*=dashboard-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link::after,
[id=view-modal] .graphs .pagination .page-item:nth-last-child(2) .page-link::after {
  content: "Próximo";
}
[id*=dashboard-modal] .graphs .pagination .page-item:last-child .page-link::after,
[id=view-modal] .graphs .pagination .page-item:last-child .page-link::after {
  content: "Último";
}
[id*=dashboard-modal] .graphs .dash-graph,
[id=view-modal] .graphs .dash-graph {
  height: calc(80dvh + 30px);
  position: relative !important;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs .dash-graph,
  [id=view-modal] .graphs .dash-graph {
    height: calc(100dvh + 30px);
  }
}
[id*=dashboard-modal] .graphs .dash-graph *,
[id=view-modal] .graphs .dash-graph * {
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue" !important;
}
[id*=dashboard-modal] .graphs .dash-graph:not(.table) *,
[id=view-modal] .graphs .dash-graph:not(.table) * {
  pointer-events: none !important;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars,
[id=view-modal] .graphs .dash-graph.bar .trace.bars {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars,
[id=view-modal] .graphs .dash-graph.bar .trace.bars {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars,
[id=view-modal] .graphs .dash-graph.bar .trace.bars {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars,
[id=view-modal] .graphs .dash-graph.bar .trace.bars {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.bar .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point,
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(1),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(2),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(3),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(4),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(5),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(6),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(7),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(8),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(9),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(10),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(11),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(12),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(13),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(14),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(15),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(16),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(17),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(18),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(19),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(20),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(21),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(22),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(23),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(24),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(25),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(26),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(27),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(28),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(29),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(30),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(31),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(32),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(33),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(34),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(35),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(36),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(37),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(38),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(39),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(40),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(41),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(42),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(43),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(44),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(45),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(46),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(47),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(48),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(49),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(50),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(51),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(52),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(53),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(54),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(55),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(56),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(57),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(58),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(59),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(60),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(61),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(62),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(63),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(64),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(65),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(66),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(67),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(68),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(69),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(70),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(71),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(72),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(73),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(74),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(75),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(76),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(77),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(78),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(79),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(80),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(81),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(82),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(83),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(84),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(85),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(86),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(87),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(88),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(89),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(90),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(91),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(92),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(93),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(94),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(95),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(96),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(97),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(98),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(99),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(100),
[id=view-modal] .graphs .dash-graph.grouped-bar .trace.bars .points .point:nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-left 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.grouped-bar :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars,
[id=view-modal] .graphs .dash-graph.column .trace.bars {
  animation: appear-to-top 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-top 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars,
[id=view-modal] .graphs .dash-graph.column .trace.bars {
  animation: appear-to-top 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(1),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(2),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(3),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(4),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(5),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(6),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(7),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(8),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(9),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(10),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(11),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(12),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(13),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(14),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(15),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(16),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(17),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(18),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(19),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(20),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(21),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(22),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(23),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(24),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(25),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(26),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(27),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(28),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(29),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(30),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(31),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(32),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(33),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(34),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(35),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(36),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(37),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(38),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(39),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(40),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(41),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(42),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(43),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(44),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(45),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(46),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(47),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(48),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(49),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(50),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(51),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(52),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(53),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(54),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(55),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(56),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(57),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(58),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(59),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(60),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(61),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(62),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(63),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(64),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(65),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(66),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(67),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(68),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(69),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(70),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(71),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(72),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(73),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(74),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(75),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(76),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(77),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(78),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(79),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(80),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(81),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(82),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(83),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(84),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(85),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(86),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(87),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(88),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(89),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(90),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(91),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(92),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(93),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(94),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(95),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(96),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(97),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(98),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(99),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column .trace.bars:nth-child(100),
[id=view-modal] .graphs .dash-graph.column .trace.bars:nth-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick) {
  animation: appear-to-top 500ms both;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(1) {
  animation-delay: 25ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(2) {
  animation-delay: 50ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(3) {
  animation-delay: 75ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(4) {
  animation-delay: 100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(5) {
  animation-delay: 125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(6) {
  animation-delay: 150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(7) {
  animation-delay: 175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(8) {
  animation-delay: 200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(9) {
  animation-delay: 225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(10) {
  animation-delay: 250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(11) {
  animation-delay: 275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(12) {
  animation-delay: 300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(13) {
  animation-delay: 325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(14) {
  animation-delay: 350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(15) {
  animation-delay: 375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(16) {
  animation-delay: 400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(17) {
  animation-delay: 425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(18) {
  animation-delay: 450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(19) {
  animation-delay: 475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(20) {
  animation-delay: 500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(21) {
  animation-delay: 525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(22) {
  animation-delay: 550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(23) {
  animation-delay: 575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(24) {
  animation-delay: 600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(25) {
  animation-delay: 625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(26) {
  animation-delay: 650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(27) {
  animation-delay: 675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(28) {
  animation-delay: 700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(29) {
  animation-delay: 725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(30) {
  animation-delay: 750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(31) {
  animation-delay: 775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(32) {
  animation-delay: 800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(33) {
  animation-delay: 825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(34) {
  animation-delay: 850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(35) {
  animation-delay: 875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(36) {
  animation-delay: 900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(37) {
  animation-delay: 925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(38) {
  animation-delay: 950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(39) {
  animation-delay: 975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(40) {
  animation-delay: 1000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(41) {
  animation-delay: 1025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(42) {
  animation-delay: 1050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(43) {
  animation-delay: 1075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(44) {
  animation-delay: 1100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(45) {
  animation-delay: 1125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(46) {
  animation-delay: 1150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(47) {
  animation-delay: 1175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(48) {
  animation-delay: 1200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(49) {
  animation-delay: 1225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(50) {
  animation-delay: 1250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(51) {
  animation-delay: 1275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(52) {
  animation-delay: 1300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(53) {
  animation-delay: 1325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(54) {
  animation-delay: 1350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(55) {
  animation-delay: 1375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(56) {
  animation-delay: 1400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(57) {
  animation-delay: 1425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(58) {
  animation-delay: 1450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(59) {
  animation-delay: 1475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(60) {
  animation-delay: 1500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(61) {
  animation-delay: 1525ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(62) {
  animation-delay: 1550ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(63) {
  animation-delay: 1575ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(64) {
  animation-delay: 1600ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(65) {
  animation-delay: 1625ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(66) {
  animation-delay: 1650ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(67) {
  animation-delay: 1675ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(68) {
  animation-delay: 1700ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(69) {
  animation-delay: 1725ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(70) {
  animation-delay: 1750ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(71) {
  animation-delay: 1775ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(72) {
  animation-delay: 1800ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(73) {
  animation-delay: 1825ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(74) {
  animation-delay: 1850ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(75) {
  animation-delay: 1875ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(76) {
  animation-delay: 1900ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(77) {
  animation-delay: 1925ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(78) {
  animation-delay: 1950ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(79) {
  animation-delay: 1975ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(80) {
  animation-delay: 2000ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(81) {
  animation-delay: 2025ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(82) {
  animation-delay: 2050ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(83) {
  animation-delay: 2075ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(84) {
  animation-delay: 2100ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(85) {
  animation-delay: 2125ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(86) {
  animation-delay: 2150ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(87) {
  animation-delay: 2175ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(88) {
  animation-delay: 2200ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(89) {
  animation-delay: 2225ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(90) {
  animation-delay: 2250ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(91) {
  animation-delay: 2275ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(92) {
  animation-delay: 2300ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(93) {
  animation-delay: 2325ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(94) {
  animation-delay: 2350ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(95) {
  animation-delay: 2375ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(96) {
  animation-delay: 2400ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(97) {
  animation-delay: 2425ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(98) {
  animation-delay: 2450ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(99) {
  animation-delay: 2475ms;
}
[id*=dashboard-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100),
[id=view-modal] .graphs .dash-graph.column :where(.yaxislayer-above .ytick, .xaxislayer-above .xtick):nth-last-child(100) {
  animation-delay: 2500ms;
}
[id*=dashboard-modal] .graphs .dash-graph.small,
[id=view-modal] .graphs .dash-graph.small {
  height: 80%;
  width: 25dvw;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs .dash-graph.small,
  [id=view-modal] .graphs .dash-graph.small {
    height: 400px;
    width: 100dvw;
  }
}
[id*=dashboard-modal] .graphs .dash-graph.large,
[id=view-modal] .graphs .dash-graph.large {
  width: 75dvw;
}
[id*=dashboard-modal] .graphs .dash-graph.full,
[id=view-modal] .graphs .dash-graph.full {
  width: 97dvw;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs .dash-graph.large, [id*=dashboard-modal] .graphs .dash-graph.full,
  [id=view-modal] .graphs .dash-graph.large,
  [id=view-modal] .graphs .dash-graph.full {
    width: 100dvw;
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-container, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-container,
  [id=view-modal] .graphs .dash-graph.large .modebar-container,
  [id=view-modal] .graphs .dash-graph.full .modebar-container {
    display: none;
  }
}
@media all and (min-width: 1200px) {
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group,
  [id=view-modal] .graphs .dash-graph.large .modebar-group,
  [id=view-modal] .graphs .dash-graph.full .modebar-group {
    background: none !important;
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] *, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] *,
  [id=view-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] *,
  [id=view-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] * {
    display: none;
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon,
  [id=view-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon,
  [id=view-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" class="bi bi-download" viewBox="0 0 16 16"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    pointer-events: all !important;
    transform: scale(1.3);
    transition: all 300ms ease;
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon:active, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon:active,
  [id=view-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon:active,
  [id=view-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"] .icon:active {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(186, 186, 186)" class="bi bi-download" viewBox="0 0 16 16"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></svg>');
    transform: scale(1.2);
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"]::before, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"]::before,
  [id=view-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"]::before,
  [id=view-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"]::before {
    content: none;
  }
  [id*=dashboard-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"]::after, [id*=dashboard-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"]::after,
  [id=view-modal] .graphs .dash-graph.large .modebar-group .modebar-btn[data-title="Download plot as a png"]::after,
  [id=view-modal] .graphs .dash-graph.full .modebar-group .modebar-btn[data-title="Download plot as a png"]::after {
    background: #050f18;
    color: #bababa;
    content: "Download (png)";
    font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
    font-size: 0.85rem;
  }
}
[id*=dashboard-modal] .graphs .dash-graph .main-svg,
[id=view-modal] .graphs .dash-graph .main-svg {
  background: none !important;
}
[id*=dashboard-modal] .graphs .dash-graph defs,
[id=view-modal] .graphs .dash-graph defs {
  display: none !important;
}
[id*=dashboard-modal] .graphs .dash-graph .legend .scrollbox *,
[id=view-modal] .graphs .dash-graph .legend .scrollbox * {
  pointer-events: all !important;
}
[id*=dashboard-modal] .graphs .dash-graph .legend .legendtext,
[id=view-modal] .graphs .dash-graph .legend .legendtext {
  fill: #bababa !important;
  font-style: italic !important;
  white-space: nowrap !important;
}
[id*=dashboard-modal] .graphs .dash-graph .legend .bg,
[id=view-modal] .graphs .dash-graph .legend .bg {
  fill: none !important;
  stroke: #bababa !important;
}
[id*=dashboard-modal] .graphs .dash-graph[id^=top3-]:not(:has(.barlayer.mlayer *, .annotation-text[data-unformatted="Sem dados"]))::before,
[id=view-modal] .graphs .dash-graph[id^=top3-]:not(:has(.barlayer.mlayer *, .annotation-text[data-unformatted="Sem dados"]))::before {
  animation: reveal 500ms 500ms both;
  color: #bababa75;
  content: "Clique em algum item da legenda para habilitar o gráfico. Dois cliques para habilitar todos.";
  font-size: 1rem;
  left: 50%;
  position: absolute;
  text-wrap: wrap;
  top: 50%;
  transform: translate(-50%, -50%);
}
[id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .legendtext,
[id=view-modal] .graphs .dash-graph:where(.bar, .column) .legendtext {
  font-size: 0.85rem !important;
}
@media all and (min-width: 1200px) {
  [id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .legendtext,
  [id=view-modal] .graphs .dash-graph:where(.bar, .column) .legendtext {
    letter-spacing: -1px !important;
  }
}
[id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .ytick *,
[id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .xtick *,
[id=view-modal] .graphs .dash-graph:where(.bar, .column) .ytick *,
[id=view-modal] .graphs .dash-graph:where(.bar, .column) .xtick * {
  font-size: 0.85rem !important;
  font-weight: bolder !important;
}
[id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .bartext.bartext-outside,
[id*=dashboard-modal] .graphs .dash-graph:where(.bar, .column) .bartext.bartext-inside,
[id=view-modal] .graphs .dash-graph:where(.bar, .column) .bartext.bartext-outside,
[id=view-modal] .graphs .dash-graph:where(.bar, .column) .bartext.bartext-inside {
  font-size: 0.85rem !important;
  font-weight: bolder !important;
  letter-spacing: -1px !important;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .legendtext,
[id=view-modal] .graphs .dash-graph.grouped-bar .legendtext {
  font-size: 0.85rem !important;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .ytick *,
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .xtick *,
[id=view-modal] .graphs .dash-graph.grouped-bar .ytick *,
[id=view-modal] .graphs .dash-graph.grouped-bar .xtick * {
  font-size: 0.85rem !important;
  letter-spacing: -1px !important;
}
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .bartext.bartext-outside,
[id*=dashboard-modal] .graphs .dash-graph.grouped-bar .bartext.bartext-inside,
[id=view-modal] .graphs .dash-graph.grouped-bar .bartext.bartext-outside,
[id=view-modal] .graphs .dash-graph.grouped-bar .bartext.bartext-inside {
  font-size: 0.85rem !important;
  font-weight: bolder !important;
  letter-spacing: -1px !important;
}
[id*=dashboard-modal] .graphs .dash-graph.table .user-select-none.svg-container,
[id=view-modal] .graphs .dash-graph.table .user-select-none.svg-container {
  height: 0 !important;
  width: 93% !important;
}
[id*=dashboard-modal] .graphs .dash-graph.table #header .cell-rect,
[id=view-modal] .graphs .dash-graph.table #header .cell-rect {
  cursor: w-resize;
  fill: #050f18 !important;
}
[id*=dashboard-modal] .graphs .dash-graph.table #header .cell-text,
[id=view-modal] .graphs .dash-graph.table #header .cell-text {
  fill: #2e79be !important;
  font-size: 0.85rem !important;
  font-weight: bolder !important;
  letter-spacing: -0.25px;
  pointer-events: none;
  text-transform: uppercase;
}
[id*=dashboard-modal] .graphs .dash-graph.table .column-cell .cell-rect,
[id=view-modal] .graphs .dash-graph.table .column-cell .cell-rect {
  cursor: s-resize;
  fill: #111b2480 !important;
  stroke: #050f18 !important;
}
[id*=dashboard-modal] .graphs .dash-graph.table .column-cell .cell-text,
[id=view-modal] .graphs .dash-graph.table .column-cell .cell-text {
  fill: #bababa !important;
  pointer-events: none;
}
[id*=dashboard-modal] .graphs .dash-graph.table .scrollbar *,
[id=view-modal] .graphs .dash-graph.table .scrollbar * {
  stroke: #2e79be !important;
}
[id*=dashboard-modal] .graphs .dash-graph.table .scrollbar .scrollbar-capture-zone,
[id=view-modal] .graphs .dash-graph.table .scrollbar .scrollbar-capture-zone {
  cursor: grab;
}
[id*=dashboard-modal] .graphs .dash-graph.table .scrollbar .scrollbar-capture-zone:active,
[id=view-modal] .graphs .dash-graph.table .scrollbar .scrollbar-capture-zone:active {
  cursor: grabbing;
}
[id*=dashboard-modal] .graphs .dash-graph.table .annotation-text,
[id=view-modal] .graphs .dash-graph.table .annotation-text {
  fill: #2e79be !important;
  font-size: 0.85rem !important;
  font-weight: bolder !important;
  pointer-events: none;
  text-transform: uppercase;
}
[id*=dashboard-modal] .graphs .graph-extra-content,
[id=view-modal] .graphs .graph-extra-content {
  align-items: flex-start;
  animation: reveal 500ms 500ms both;
  background: none;
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  height: max-content;
  justify-content: flex-start;
  position: relative;
  width: 100%;
}
@media all and (max-width: 1200px) {
  [id*=dashboard-modal] .graphs .graph-extra-content,
  [id=view-modal] .graphs .graph-extra-content {
    align-items: center;
    justify-content: center;
  }
}
[id*=dashboard-modal] .graphs .graph-extra-content span,
[id=view-modal] .graphs .graph-extra-content span {
  color: #bababa;
  font-size: 1.5rem;
}
[id*=dashboard-modal] .graphs .graph-extra-content strong,
[id=view-modal] .graphs .graph-extra-content strong {
  color: #2e79be;
  font-size: 3rem;
}
[id*=dashboard-modal] .graphs::-webkit-scrollbar,
[id=view-modal] .graphs::-webkit-scrollbar {
  display: none;
}

#packers-ranking-label-control-all-controls {
  display: flex;
  flex-direction: column;
  position: relative;
}

.plotly-notifier {
  display: none;
}
.plotly-notifier * {
  display: none;
}

#layout-modules.modules {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-modules.modules .cards {
  display: flex;
  flex-direction: column;
}
#layout-modules.modules .cards > small {
  width: 100%;
}
#layout-modules.modules .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-modules.modules .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-modules.modules .cards .card * {
  user-select: none;
}
#layout-modules.modules .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-modules.modules .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-modules.modules .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-modules.modules .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-modules.modules .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-modules.modules .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-modules.modules .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-modules.modules .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-modules.modules .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-modules.modules .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-modules.modules .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-modules.modules .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-modules.modules .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-modules.modules .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-modules.modules .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-modules.modules .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-modules.modules .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-modules.modules .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-modules.modules .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-modules.modules .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-modules.modules .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-modules.modules .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-modules.modules .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-modules.modules .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-modules.modules .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-modules.modules .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-modules.modules .cards {
  animation: reveal 300ms 200ms both;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  place-content: center;
}
#layout-modules.modules .cards > * {
  animation: appear-to-bottom 300ms both;
}
#layout-modules.modules .cards > *:nth-child(1) {
  animation-delay: 800ms;
}
#layout-modules.modules .cards > *:nth-child(2) {
  animation-delay: 950ms;
}
#layout-modules.modules .cards > *:nth-child(3) {
  animation-delay: 1100ms;
}

[id*=card-oca] .card-header i[class="bi bi-truck"] {
  color: #eeff00;
}
[id*=card-oca] .card-body:has(.badge) .badge {
  background-color: #eeff00 !important;
}
[id*=card-oca]:has(.empty) {
  pointer-events: none;
}
[id*=card-oca]:has(.empty) * {
  filter: grayscale(1);
}
[id*=card-oca]:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id*=card-pve] .card-header i[class="bi bi-currency-dollar"] {
  color: #00ff2a;
}
[id*=card-pve] .card-body:has(.badge) .badge {
  background-color: #00ff2a !important;
}
[id*=card-pve]:has(.empty) {
  pointer-events: none;
}
[id*=card-pve]:has(.empty) * {
  filter: grayscale(1);
}
[id*=card-pve]:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

[id*=card-roe] .card-header i[class="bi bi-map"] {
  color: #00d9ff;
}
[id*=card-roe] .card-body:has(.badge) .badge {
  background-color: #00d9ff !important;
}
[id*=card-roe]:has(.empty) {
  pointer-events: none;
}
[id*=card-roe]:has(.empty) * {
  filter: grayscale(1);
}
[id*=card-roe]:has(.empty) > .card .card-header::after {
  animation: reveal 300ms 600ms both;
  content: "Sem dados";
  font-size: 1em;
  font-weight: 100;
  opacity: 0.65;
  pointer-events: none;
}

#module-modal .dash-table-container {
  color: #bababa;
  font-size: 1rem;
  position: relative;
}
#module-modal .dash-table-container .cell-table {
  border-radius: 2.5px;
  border: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
}
#module-modal .dash-table-container .cell-table :where(th, td) {
  border: none !important;
  margin: 0;
  outline: none !important;
}
#module-modal .dash-table-container .cell-table tr {
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr:nth-child(n+4) {
  border-top: 2px solid #e0e0e015;
}
#module-modal .dash-table-container .cell-table tr:nth-child(n+4):nth-child(even) {
  background-color: #e0e0e005;
}
#module-modal .dash-table-container .cell-table tr * {
  cursor: default;
  text-align: left;
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .cell-table tr *:not(th) {
    font-size: 0.95em;
  }
}
#module-modal .dash-table-container .cell-table tr th {
  background-color: transparent;
  color: #2e79be;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-weight: 600;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr .dash-cell {
  background: none;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.9rem;
  padding-block: 10px;
  pointer-events: none;
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr .dash-cell > .selectable {
  cursor: default !important;
  pointer-events: all;
}
#module-modal .dash-table-container .cell-table tr .dash-cell.cell--selected {
  background-color: transparent !important;
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell {
  background: none;
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox] {
  height: calc(1em + 2px);
  width: calc(1em + 2px);
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  height: 1em;
  width: 1em;
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox],
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio] {
  appearance: none;
  border-radius: 50%;
  border: 2px inset #050f18;
  cursor: pointer;
  outline: none;
  position: relative;
  transition: all 100ms ease;
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked,
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked {
  background-color: #0ebf22;
  border-color: #0ebf22;
  box-shadow: 0 0 5px #0ebf22;
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked::after,
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked::after {
  color: #e0e0e0;
  content: "✓";
  font-size: calc(1rem - 4px);
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 1200px) {
  #module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover,
  #module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover {
    background-color: #b23749;
    border-color: #b23749;
    box-shadow: 0 0 5px #b23749;
  }
  #module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:checked:hover::after,
  #module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:checked:hover::after {
    content: "X";
  }
}
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=checkbox]:hover:not(:checked),
#module-modal .dash-table-container .cell-table tr .dash-select-cell input[type=radio]:hover:not(:checked) {
  opacity: 0.5;
}
#module-modal .dash-table-container .cell-table tr .dash-filter {
  cursor: default;
  overflow-y: hidden;
  padding-block: 0;
  pointer-events: all;
  position: relative;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div {
  align-items: center;
  cursor: default;
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
  justify-content: flex-start;
  position: relative;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text] {
  background-color: #2e79be10;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none;
  caret-color: #2e79be;
  color: #bababa;
  cursor: text;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 0.85rem;
  font-weight: 400;
  min-width: 10ch;
  outline: none;
  padding-block: 5px;
  padding-left: 35px;
  padding-right: 10px;
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]::placeholder {
  color: #bababa50;
  font-size: 0.85rem;
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active) {
  background-color: #050f18;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:hover:not(:active)::placeholder {
  color: #bababa;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active) {
  border-color: #2e79be;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:focus:not(:active)::placeholder {
  color: transparent;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div input[type=text]:active::placeholder {
  color: transparent;
}
#module-modal .dash-table-container .cell-table tr .dash-filter > div .dash-filter--case {
  display: none;
}
#module-modal .dash-table-container .cell-table tr .dash-filter::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" class="bi bi-search" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/></svg>');
  background-size: 1em;
  content: "";
  height: 1em;
  left: 15px;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
  top: 30%;
  transform: scaleX(-1);
  vertical-align: middle;
  width: 1em;
}
#module-modal .dash-table-container .cell-table tr:first-child div {
  align-items: center;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 5px;
}
#module-modal .dash-table-container .cell-table tr:first-child div * {
  background: none;
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-actions {
  margin-right: 10px;
  pointer-events: all;
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort {
  color: #e0e0e0;
  cursor: pointer;
  transition: all 150ms ease;
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort * {
  cursor: pointer;
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:hover {
  color: #2e79be;
  opacity: 0.75;
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-actions .column-header--sort:active {
  color: #e0e0e0;
  transform: scale(0.85);
}
#module-modal .dash-table-container .cell-table tr:first-child div .column-header-name {
  margin-right: 50px;
}
#module-modal .dash-table-container .cell-table tr:hover {
  background-color: transparent;
}
#module-modal .dash-table-container .cell-table tr:hover .dash-cell {
  color: #2e79be;
}
#module-modal .dash-table-container .dash-spreadsheet-menu {
  width: max-content;
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .dash-spreadsheet-menu {
    display: none;
  }
}
#module-modal .dash-table-container .dash-spreadsheet-menu .export {
  align-items: center;
  background: none;
  border: none;
  border-radius: 5px;
  color: #bababa;
  display: inline-flex;
  flex-direction: row;
  padding: 5px;
  transition: all 300ms ease;
}
#module-modal .dash-table-container .dash-spreadsheet-menu .export::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" class="bi bi-filetype-csv" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M14 4.5V14a2 2 0 0 1-2 2h-1v-1h1a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5zM3.517 14.841a1.13 1.13 0 0 0 .401.823q.195.162.478.252.284.091.665.091.507 0 .859-.158.354-.158.539-.44.187-.284.187-.656 0-.336-.134-.56a1 1 0 0 0-.375-.357 2 2 0 0 0-.566-.21l-.621-.144a1 1 0 0 1-.404-.176.37.37 0 0 1-.144-.299q0-.234.185-.384.188-.152.512-.152.214 0 .37.068a.6.6 0 0 1 .246.181.56.56 0 0 1 .12.258h.75a1.1 1.1 0 0 0-.2-.566 1.2 1.2 0 0 0-.5-.41 1.8 1.8 0 0 0-.78-.152q-.439 0-.776.15-.337.149-.527.421-.19.273-.19.639 0 .302.122.524.124.223.352.367.228.143.539.213l.618.144q.31.073.463.193a.39.39 0 0 1 .152.326.5.5 0 0 1-.085.29.56.56 0 0 1-.255.193q-.167.07-.413.07-.175 0-.32-.04a.8.8 0 0 1-.248-.115.58.58 0 0 1-.255-.384zM.806 13.693q0-.373.102-.633a.87.87 0 0 1 .302-.399.8.8 0 0 1 .475-.137q.225 0 .398.097a.7.7 0 0 1 .272.26.85.85 0 0 1 .12.381h.765v-.072a1.33 1.33 0 0 0-.466-.964 1.4 1.4 0 0 0-.489-.272 1.8 1.8 0 0 0-.606-.097q-.534 0-.911.223-.375.222-.572.632-.195.41-.196.979v.498q0 .568.193.976.197.407.572.626.375.217.914.217.439 0 .785-.164t.55-.454a1.27 1.27 0 0 0 .226-.674v-.076h-.764a.8.8 0 0 1-.118.363.7.7 0 0 1-.272.25.9.9 0 0 1-.401.087.85.85 0 0 1-.478-.132.83.83 0 0 1-.299-.392 1.7 1.7 0 0 1-.102-.627zm8.239 2.238h-.953l-1.338-3.999h.917l.896 3.138h.038l.888-3.138h.879z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: calc(1rem + 0.5em);
  margin-right: 10px;
  transition: all 300ms ease;
  width: calc(1rem + 0.5em);
}
#module-modal .dash-table-container .dash-spreadsheet-menu .export::after {
  content: "ar Dados (csv)";
  font-size: 1rem;
  transition: all 300ms ease;
}
#module-modal .dash-table-container .dash-spreadsheet-menu .export:hover::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(14, 191, 34)" class="bi bi-download" viewBox="0 0 16 16"><path d="M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5"/><path d="M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z"/></svg>');
}
#module-modal .dash-table-container .dash-spreadsheet-menu .export:hover:active {
  transform: scale(0.95);
}
#module-modal .dash-table-container .dash-spreadsheet-container {
  overflow-x: auto;
  position: relative;
}
#module-modal .dash-table-container .previous-next-container {
  animation: reveal 500ms 1000ms both;
  backdrop-filter: blur(10px);
  border-radius: 2.5px;
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: flex-end;
  pointer-events: none;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container {
    color: transparent;
  }
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container {
    color: #bababa90;
    font-size: 12px;
    gap: 5px;
    margin-top: 1em;
  }
}
#module-modal .dash-table-container .previous-next-container .page-number {
  align-items: center;
  background: none;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  gap: 0;
  left: 0;
  position: absolute;
}
#module-modal .dash-table-container .previous-next-container .page-number * {
  background: none;
  color: #bababa;
  font-family: "Segoe UI", sans-serif, Roboto, system-ui, -apple-system, BlinkMacSystemFont, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue";
  font-size: 1rem;
  font-weight: normal;
  pointer-events: none;
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container .page-number * {
    color: #bababa90;
    font-size: 12px;
  }
}
#module-modal .dash-table-container .previous-next-container .page-number .current-page-container .current-page {
  display: none !important;
}
#module-modal .dash-table-container .previous-next-container .page-number .current-page-container .current-page-shadow {
  border: none !important;
}
@media all and (min-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container .page-number .current-page-container::before {
    content: "Página";
    margin-right: 8px;
  }
}
@media all and (min-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container .page-number .last-page::before {
    content: "de";
    margin-right: 5px;
  }
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container .page-number .last-page {
    margin-inline: 1.5px;
  }
  #module-modal .dash-table-container .previous-next-container .page-number .last-page::before {
    content: none;
  }
}
#module-modal .dash-table-container .previous-next-container .page-number :where(.current-page-shadow, .current-page, .last-page) {
  min-width: max-content !important;
}
#module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
  align-items: center;
  background: none;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 1rem;
  font-weight: bolder;
  gap: 5px;
  height: max-content;
  justify-content: center;
  margin: 0;
  padding: 0;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
  width: max-content;
}
@media all and (max-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) {
    font-size: 12px;
  }
}
#module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg {
  cursor: pointer;
}
#module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page) svg * {
  cursor: pointer;
}
@media all and (min-width: 1200px) {
  #module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):hover {
    color: #2e79be;
  }
}
#module-modal .dash-table-container .previous-next-container :where(.next-page, .last-page, .previous-page, .first-page):active {
  transform: scale(0.85);
}
#module-modal .dash-table-container .previous-next-container .next-page::before {
  content: "Próximo";
}
#module-modal .dash-table-container .previous-next-container .next-page:disabled {
  pointer-events: none;
}
#module-modal .dash-table-container .previous-next-container .next-page:disabled svg path {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .next-page:disabled::before {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .last-page::before {
  content: "Último";
}
#module-modal .dash-table-container .previous-next-container .last-page:disabled {
  pointer-events: none;
}
#module-modal .dash-table-container .previous-next-container .last-page:disabled svg path {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .last-page:disabled::before {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .previous-page::after {
  content: "Anterior";
}
#module-modal .dash-table-container .previous-next-container .previous-page:disabled {
  pointer-events: none;
}
#module-modal .dash-table-container .previous-next-container .previous-page:disabled svg path {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .previous-page:disabled::after {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .first-page::after {
  content: "Primeiro";
}
#module-modal .dash-table-container .previous-next-container .first-page:disabled {
  pointer-events: none;
}
#module-modal .dash-table-container .previous-next-container .first-page:disabled svg path {
  opacity: 0.5;
}
#module-modal .dash-table-container .previous-next-container .first-page:disabled::after {
  opacity: 0.5;
}
#module-modal .dash-table-container:not(:has(.cell-table .dash-cell))::after {
  align-items: center;
  animation: appear-to-bottom 500ms 500ms both, desappear-standard 500ms 8500ms forwards;
  backdrop-filter: blur(20px);
  background: none;
  border-radius: 0;
  color: #e0e0e0;
  content: "Sem dados";
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  font-weight: 500;
  justify-content: center;
  padding: 5px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  top: 10px;
}
#module-modal .modal-body::-webkit-scrollbar-thumb {
  cursor: grab;
}
#module-modal .modal-body::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
#module-modal .modal-footer {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
}
#module-modal .modal-footer * {
  font-size: 1rem;
}
@media all and (max-width: 1200px) {
  #module-modal .modal-footer * {
    font-size: 0.75rem;
  }
}
#module-modal .modal-footer .pagination-size {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#module-modal .modal-footer .pagination-size .dropup {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#module-modal .modal-footer .pagination-size .dropup::before {
  content: "Itens por página";
}
#module-modal .modal-footer .pagination-controls {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
#module-modal .modal-footer .pagination-controls .btn {
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: transparent;
  border: none;
  border-radius: 2.5px;
  box-shadow: none;
  color: #bababa;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-weight: bolder;
  gap: 2.5px;
  margin: 0;
  outline: none;
  padding: 2.5px;
  position: relative;
  transition: all 300ms ease;
  width: max-content;
}
#module-modal .modal-footer .pagination-controls .btn * {
  transition: all 300ms ease;
}
#module-modal .modal-footer .pagination-controls .btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
#module-modal .modal-footer .pagination-controls .btn.first-page::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" viewBox="0 0 448 512"><path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"></path></svg>');
  background-size: 1em;
  content: "";
  display: inline-block;
  height: 1em;
  transition: all 300ms ease;
  vertical-align: middle;
  width: 1em;
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.first-page:hover {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.first-page:hover::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 448 512"><path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.first-page:active {
  transform: scale(0.85);
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.first-page:active {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.first-page:active::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 448 512"><path d="M223.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L319.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L393.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34zm-192 34l136 136c9.4 9.4 24.6 9.4 33.9 0l22.6-22.6c9.4-9.4 9.4-24.6 0-33.9L127.9 256l96.4-96.4c9.4-9.4 9.4-24.6 0-33.9L201.7 103c-9.4-9.4-24.6-9.4-33.9 0l-136 136c-9.5 9.4-9.5 24.6-.1 34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.previous-page::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" viewBox="0 0 256 512"><path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"></path></svg>');
  background-size: 1em;
  content: "";
  display: inline-block;
  height: 1em;
  transition: all 300ms ease;
  vertical-align: middle;
  width: 1em;
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.previous-page:hover {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.previous-page:hover::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 256 512"><path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.previous-page:active {
  transform: scale(0.85);
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.previous-page:active {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.previous-page:active::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 256 512"><path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.next-page::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" viewBox="0 0 256 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>');
  background-size: 1em;
  content: "";
  display: inline-block;
  height: 1em;
  transition: all 300ms ease;
  vertical-align: middle;
  width: 1em;
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.next-page:hover {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.next-page:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 256 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.next-page:active {
  transform: scale(0.85);
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.next-page:active {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.next-page:active::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 256 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.last-page::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(224, 224, 224)" viewBox="0 0 448 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"></path></svg>');
  background-size: 1em;
  content: "";
  display: inline-block;
  height: 1em;
  transition: all 300ms ease;
  vertical-align: middle;
  width: 1em;
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.last-page:hover {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.last-page:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 448 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"></path></svg>');
  }
}
#module-modal .modal-footer .pagination-controls .btn.last-page:active {
  transform: scale(0.85);
}
@media all and (min-width: 1200px) {
  #module-modal .modal-footer .pagination-controls .btn.last-page:active {
    color: #2e79be;
  }
  #module-modal .modal-footer .pagination-controls .btn.last-page:active::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="rgb(46, 121, 190)" viewBox="0 0 448 512"><path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34zm192-34l-136-136c-9.4-9.4-24.6-9.4-33.9 0l-22.6 22.6c-9.4 9.4-9.4 24.6 0 33.9l96.4 96.4-96.4 96.4c-9.4 9.4-9.4 24.6 0 33.9l22.6 22.6c9.4 9.4 24.6 9.4 33.9 0l136-136c9.4-9.2 9.4-24.4 0-33.8z"></path></svg>');
  }
}

[id*=module-table] tbody tr {
  animation: appear-to-top 300ms both;
}
[id*=module-table] tbody tr:nth-child(1) {
  animation-delay: 80ms;
}
[id*=module-table] tbody tr:nth-child(2) {
  animation-delay: 160ms;
}
[id*=module-table] tbody tr:nth-child(3) {
  animation-delay: 240ms;
}
[id*=module-table] tbody tr:nth-child(4) {
  animation-delay: 320ms;
}
[id*=module-table] tbody tr:nth-child(5) {
  animation-delay: 400ms;
}
[id*=module-table] tbody tr:nth-child(6) {
  animation-delay: 480ms;
}
[id*=module-table] tbody tr:nth-child(7) {
  animation-delay: 560ms;
}
[id*=module-table] tbody tr:nth-child(8) {
  animation-delay: 640ms;
}
[id*=module-table] tbody tr:nth-child(9) {
  animation-delay: 720ms;
}
[id*=module-table] tbody tr:nth-child(10) {
  animation-delay: 800ms;
}
[id*=module-table] tbody tr:nth-child(11) {
  animation-delay: 880ms;
}
[id*=module-table] tbody tr:nth-child(12) {
  animation-delay: 960ms;
}
[id*=module-table] tbody tr .dash-select-cell {
  left: 0;
  position: sticky;
  position: -webkit-sticky;
  pointer-events: none;
}
[id*=module-table] tbody tr .dash-select-cell input[type=radio]:checked {
  pointer-events: none;
}
[id*=module-table] tbody tr .dash-select-cell input[type=radio]:not(:checked) {
  background-color: #050f18;
  pointer-events: all;
}
[id*=module-table] tbody tr td:not(:first-child) {
  padding-left: 32px !important;
}

#mod-modal .modal-body {
  overflow-x: hidden;
}
@media all and (min-width: 1200px) {
  #mod-modal .modal-body .report-mod-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    place-items: center;
  }
}
#mod-modal .modal-body .report-mod-links .report-mod-link {
  align-items: center;
  animation: appear-to-top 300ms both;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: center;
  list-style-type: none;
  margin-block: 1em;
  width: max-content;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(1) {
  animation-delay: 50ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(2) {
  animation-delay: 100ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(3) {
  animation-delay: 150ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(4) {
  animation-delay: 200ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(5) {
  animation-delay: 250ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(6) {
  animation-delay: 300ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(7) {
  animation-delay: 350ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(8) {
  animation-delay: 400ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(9) {
  animation-delay: 450ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(10) {
  animation-delay: 500ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(11) {
  animation-delay: 550ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(12) {
  animation-delay: 600ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(13) {
  animation-delay: 650ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(14) {
  animation-delay: 700ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(15) {
  animation-delay: 750ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(16) {
  animation-delay: 800ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(17) {
  animation-delay: 850ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(18) {
  animation-delay: 900ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(19) {
  animation-delay: 950ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(20) {
  animation-delay: 1000ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(21) {
  animation-delay: 1050ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(22) {
  animation-delay: 1100ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(23) {
  animation-delay: 1150ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(24) {
  animation-delay: 1200ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(25) {
  animation-delay: 1250ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(26) {
  animation-delay: 1300ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(27) {
  animation-delay: 1350ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(28) {
  animation-delay: 1400ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(29) {
  animation-delay: 1450ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:nth-child(30) {
  animation-delay: 1500ms;
}
#mod-modal .modal-body .report-mod-links .report-mod-link a {
  background: none;
  border: none;
  color: #bababa;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  transition: all 300ms ease;
  width: 30ch;
}
@media all and (max-width: 1200px) {
  #mod-modal .modal-body .report-mod-links .report-mod-link a {
    width: max-content;
  }
}
#mod-modal .modal-body .report-mod-links .report-mod-link a small {
  cursor: pointer;
  font-weight: 100;
  opacity: 0.75;
  transition: all 300ms ease;
}
#mod-modal .modal-body .report-mod-links .report-mod-link a:hover {
  color: #e0e0e0;
}
#mod-modal .modal-body .report-mod-links .report-mod-link a:hover small {
  opacity: 1;
}
#mod-modal .modal-body .report-mod-links .report-mod-link a:hover + i {
  transform: scale(1.5);
}
#mod-modal .modal-body .report-mod-links .report-mod-link i {
  color: #b23749;
  pointer-events: none;
}
#mod-modal .modal-body .report-mod-links .report-mod-link:active a {
  transform: scale(0.95);
}
#mod-modal .modal-body .report-mod-links .report-mod-link:active a + i {
  transform: scale(1.125);
}

#layout-visual-management.visual-management {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#layout-visual-management.visual-management .cards {
  display: flex;
  flex-direction: column;
}
#layout-visual-management.visual-management .cards > small {
  width: 100%;
}
#layout-visual-management.visual-management .cards > small:has(+ .accordion) {
  padding: 10px;
}
#layout-visual-management.visual-management .cards .card {
  background: linear-gradient(45deg, #050f18, #09182680);
  border: 2px solid #010305;
  height: 150px;
  max-width: 400px;
  position: relative;
  text-overflow: ellipsis;
  transition: all 300ms ease;
}
#layout-visual-management.visual-management .cards .card * {
  user-select: none;
}
#layout-visual-management.visual-management .cards .card a {
  background: none;
  border: none;
  color: inherit;
  inset: 0;
  padding: 1em 10px;
  position: absolute;
  text-decoration: none;
}
#layout-visual-management.visual-management .cards .card :where(.card-header, .card-body, .card-footer) {
  backdrop-filter: blur(10px);
  background-color: #2e79be05;
  border: none;
  color: #e0e0e0;
  cursor: pointer;
  padding-inline: 10px;
  transition: all 300ms ease;
}
#layout-visual-management.visual-management .cards .card :where(.card-header, .card-body, .card-footer) * {
  cursor: pointer;
}
#layout-visual-management.visual-management .cards .card.favorite-card {
  position: relative;
}
@media all and (min-width: 1200px) {
  #layout-visual-management.visual-management .cards .card.favorite-card:has(.card-body:hover:not(:active)) .card-header img {
    transform: scale(0.85);
  }
}
#layout-visual-management.visual-management .cards .card.favorite-card:has(.card-body:active) {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  pointer-events: none;
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-header figure {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-header figure img {
  display: inline-block;
  height: 35px;
  object-fit: cover;
  transition: all 300ms ease;
  width: 35px;
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn {
  all: unset;
  align-items: center;
  display: flex;
  flex-direction: row;
  pointer-events: all;
  position: relative;
  transition: all 300ms ease;
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn i {
  color: #eeff00;
  font-size: 1.3rem;
  transition: all 300ms ease;
}
@media all and (min-width: 1200px) {
  #layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn:hover i {
    transform: scale(0.85);
  }
  #layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn:hover::after {
    opacity: 1;
    visibility: visible;
  }
  #layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn:not(:active) i {
    opacity: 0.75;
    transform: scale(1);
  }
}
@media all and (max-width: 1200px) {
  #layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn:active i {
    transform: scale(0.85);
  }
  #layout-visual-management.visual-management .cards .card.favorite-card .card-header .btn:active::after {
    opacity: 1;
    visibility: visible;
  }
}
#layout-visual-management.visual-management .cards .card.favorite-card .card-body > a {
  inset: 0;
  position: absolute;
  text-align: left;
  top: -15px;
}
@media all and (min-width: 1200px) {
  #layout-visual-management.visual-management .cards .card.favorite-card .card-body:hover:not(:active) {
    color: #2e79be;
  }
}
#layout-visual-management.visual-management .cards .card.icon-card .card-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-visual-management.visual-management .cards .card.icon-card .card-header i {
  font-size: 1.8em;
  transition: transform 150ms ease;
}
#layout-visual-management.visual-management .cards .card.icon-card .card-body {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#layout-visual-management.visual-management .cards .card.icon-card .card-body strong {
  font-weight: 400;
}
#layout-visual-management.visual-management .cards .card.icon-card .card-body .badge {
  pointer-events: none;
  text-shadow: 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850, 0 0 5px #050f1850;
  user-select: none;
}
@media all and (min-width: 1200px) {
  #layout-visual-management.visual-management .cards .card.icon-card:hover:not(:active) .card-header i {
    transform: scale(0.85);
  }
  #layout-visual-management.visual-management .cards .card.icon-card:hover:not(:active) .card-header::after {
    animation: reveal 300ms 200ms both;
    content: "Visualizar";
    font-size: 1em;
    font-weight: 100;
    opacity: 0.65;
    pointer-events: none;
  }
}
#layout-visual-management.visual-management .cards .card.icon-card:active {
  border-color: transparent;
  transform: scale(0.95);
}
#layout-visual-management.visual-management .cards {
  animation: reveal 300ms 200ms both;
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  overflow: hidden;
  place-content: center;
}
#layout-visual-management.visual-management .cards > * {
  animation: appear-to-bottom 300ms 950ms both;
}
#layout-visual-management.visual-management .cards .card-header i[class="bi bi-graph-up-arrow"] {
  color: #2e79be;
}
#layout-visual-management.visual-management .cards .card-body:has(.badge) .badge {
  background-color: #2e79be !important;
}
#layout-visual-management.visual-management:has(.cards:empty) p {
  animation: appear-to-top 500ms both;
}

@media all and (min-width: 1200px) {
  #view-modal .modal-body small[class^=total-pages-] {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media all and (max-width: 1200px) {
  #view-modal small {
    align-items: center;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
}
