html {
  height: auto !important;
}

body {
  height: auto !important;
  min-height: 400px;
}

a {
  cursor: pointer;
  color: var(--accent-color);
}

.statusCard {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin: 20px 0;
  padding: 10px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}
.statusContainer {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.status {
  font-size: 12px;
  text-align: center;
  margin-bottom: 15px;
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 20px;
  border-radius: 50%;
}

.green {
  background-color: #45ca00;
}
.yellow {
  background-color: #dfda00;
}
.red {
  background-color: #d71717;
}
.gray {
  background-color: #8c8c8c;
}
.blue {
  background-color: #0377fc;
}
.breadCrumb {
  font-size: 12px;
  font-weight: 600;
  color: #acc2c2;
}

.tooltip {
  position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: auto !important;
  height: auto !important;
  min-width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 8px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  top: 10px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip-left {
  right: 105%;
}
.tooltip-right {
  left: 105%;
}

.tooltip-field-text {
  font-weight: 700;
}

.placeholder {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid var(--accent-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--accent-color) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*# sourceMappingURL=main.aa09c641f8ab5f0edb9b.css.map*/