/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*$box-shadow: (*/
/**/ /*"sm": 0 0 0.375rem 0 rgba(46, 38, 61, 0.18), //*/
/**/ /*"md": 0 0 0.625rem 0 rgba(46, 38, 61, 0.2), //*/
/**/ /*"lg": 0 0 1rem 0 rgba(46, 38, 61, 0.22) //
);*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.apexcharts-svg {
  font-style: normal !important;
}

.printers__section {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.printers__section__title {
  font-weight: 700;
}
.printers__section__cards__grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.printerCard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bg-dark);
  border-radius: 0.5rem;
  background: var(--bg-light);
}
.printerCard__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
}
.printerCard__header__title {
  font-weight: 700;
  font-size: 1rem;
  padding-right: 0.5rem;
}
.printerCard__header__code {
  font-size: 0.85rem;
  color: var(--fg-light);
}
.printerCard__header__icons {
  display: flex;
  gap: 0.25rem;
  font-size: 1.2rem;
}
.printerCard__header__icons--color {
  --fa-primary-color: #115E59;
  --fa-secondary-color: #00a396;
}
.printerCard__header__icons--alert {
  color: var(--warning);
  animation: pulse-alert 1.5s ease-in-out infinite;
}
.printerCard__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0 3px 4px -3px var(--fg);
  flex: 1;
}
.printerCard__body__model {
  font-weight: 600;
}
.printerCard__body__accessories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.printerCard__body__accessories__item {
  font-size: small;
  background: var(--bg);
  border-radius: calc(infinity * 1px);
  padding: 0.125rem 0.5rem;
}
.printerCard__body__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--fg-light);
}
.printerCard__body__toner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.printerCard__body__toner__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.printerCard__body__toner__item i {
  font-size: larger;
}
.printerCard__body__toner__item--cyan i {
  color: #00bcd4;
}
.printerCard__body__toner__item--yellow i {
  color: #ffc107;
}
.printerCard__body__toner__item--magenta i {
  color: #e91e63;
}
.printerCard__body__toner__item--black i {
  color: var(--black);
}
.printerCard__body__center {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.printerCard__body__center__address {
  color: var(--fg-light);
  font-size: 0.85rem;
}
.printerCard__footer {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  justify-content: space-between;
  margin-top: auto;
}
.printerCard__footer__date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: small;
}

@keyframes pulse-alert {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

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