/*$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
*/
/*$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
*/
.appLayout--HorizontalLayout {
  display: grid;
  grid-template-areas: "Menu Header" "Menu Main" "Menu Footer";
  grid-template-columns: min-content 1fr;
  grid-template-rows: 64px 1fr 50px;
}
.appLayout--HorizontalLayout .header {
  grid-area: Header;
  position: sticky;
  top: 0;
  height: 64px;
  z-index: 10010;
  background: var(--bg);
}
.appLayout--HorizontalLayout .header .containerFull {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.appLayout--HorizontalLayout .header__right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.appLayout--HorizontalLayout .header__right button {
  padding: 0.5rem;
  width: 42px;
  height: 42px;
  aspect-ratio: 1/1;
  font-size: 1.2rem;
  color: var(--fg);
  border-radius: 50%;
}
.appLayout--HorizontalLayout .header__right button:hover {
  background-color: var(--bg-dark);
}
.appLayout--HorizontalLayout .header__right button:hover i {
  font-weight: bold;
}
.appLayout--HorizontalLayout .header__right .header__profile {
  padding: 0 !important;
  margin-left: 0.25rem;
}
.appLayout--HorizontalLayout .header__right .header__profile:hover {
  background-color: var(--bg) !important;
}
.appLayout--HorizontalLayout .header__center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-grow: 1;
}
.appLayout--HorizontalLayout .header__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-grow: 0;
  margin-right: auto;
}
.appLayout--HorizontalLayout .menu {
  grid-area: Menu;
  position: sticky;
  top: 0;
  z-index: 10010;
  width: 224px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--bg-dark);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.4);
}
@media (max-width: 640px) {
  .appLayout--HorizontalLayout .menu--desktop {
    display: none;
  }
}
.appLayout--HorizontalLayout .menu--mobile {
  display: none;
}
@media (max-width: 640px) {
  .appLayout--HorizontalLayout .menu--mobile {
    display: block;
  }
}
.appLayout--HorizontalLayout .menu--mobile .menuList__item__subMenu.shown {
  width: 100svw;
  transform: translateX(-50svw);
  left: 50%;
  top: 90%;
  box-shadow: none;
  border-bottom: 3px solid var(--bg-dark);
}
.appLayout--HorizontalLayout .menu a:has(.logoContainer) {
  flex: 0 0 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appLayout--HorizontalLayout .menu .menuList {
  flex: 1 1 auto;
  padding-top: 1rem;
}
.appLayout--HorizontalLayout .menu .menu__logo {
  border-top: 2px solid var(--bg-dark);
}
.appLayout--HorizontalLayout .menu .profile {
  flex: 0 0 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid var(--bg-dark);
}
.appLayout--HorizontalLayout .main {
  grid-area: Main;
}
.appLayout--HorizontalLayout .footer {
  grid-area: Footer;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-inline: 0.5rem;
  height: 100%;
  align-items: center;
}
@media (max-width: 1024px) {
  .appLayout--HorizontalLayout .footer {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: fit-content;
    padding-bottom: 0.75rem;
  }
}
.appLayout--HorizontalLayout .footer > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 640px) {
  .appLayout--HorizontalLayout .footer > div:first-of-type {
    flex-direction: column;
  }
  .appLayout--HorizontalLayout .footer > div:first-of-type .footer__separator {
    display: none;
  }
}
.appLayout--HorizontalLayout .footer__link {
  font-weight: 600;
}
.appLayout--HorizontalLayout .footer__link:hover {
  color: var(--primary);
}

.shortcut {
  color: var(--primary);
  cursor: pointer;
}
.shortcut:hover {
  text-decoration: underline;
}
.shortcut :has(*)::after {
  content: "\f0da";
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
}

.dashboardWrapper {
  columns: 25rem;
  height: 100%;
}
.dashboardWrapper > * {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.dashboardWrapper .wrapper {
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-light);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services__groups__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.services__noGroup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.services__noGroup .card {
  height: fit-content;
}
.services__noGroup .card__section {
  padding: 0;
}
.services .card .wrapper {
  margin: 0;
  height: 100%;
  grid-template-rows: min-content auto;
}
.services .card .wrapper__header {
  height: fit-content;
}
.services .card .wrapper__body {
  height: 100%;
}
.services .card .btn {
  margin: auto 0 0 auto;
}

.mainDashboard {
  columns: 500px;
}
.mainDashboard > * {
  break-inside: avoid;
}
.mainDashboard .wrapper {
  background: var(--bg-light);
  border-radius: 0.5rem;
}
.mainDashboard .wrapper__body {
  border: 1px solid var(--bg-dark);
  border-radius: 0.5rem;
  gap: 0;
}
.mainDashboard .wrapper__body .dashElement {
  display: grid;
  grid-template-columns: 50px 1fr min-content;
  align-items: center;
}
.mainDashboard .wrapper__body .dashElement__icon {
  display: flex;
  aspect-ratio: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: x-large;
  border-right: 1px solid var(--bg-dark);
  margin-right: 0.5rem;
}
.mainDashboard .wrapper__body .dashElement + .dashElement {
  border-top: 1px solid var(--bg-dark);
}

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