@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&display=swap";

/* src/styles.scss */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
html {
  --nero: #35353a;
  --neve: #fefefe;
  --grigioChiaro: #d3d3d3;
  --grigio: #808080;
  --grigioScuro: #696969;
  --accent: #7a7a83;
  --danger: red;
  --warning: orange;
  --success: green;
  --primary: #35353a;
}
* {
  font-family: "Roboto", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0.5em;
  margin-bottom: 0;
}
* {
  box-sizing: border-box;
}
html,
body {
  font-family: "JetBrains Mono";
  font-size: 16px;
  font-weight: 400;
  color: var(--nero);
}
html .carta,
body .carta {
  box-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: var(--neve);
  border-radius: 5px;
  padding: 16px;
}
html a,
body a {
  color: inherit;
  text-decoration: none;
}
html a:hover,
html a:focus,
body a:hover,
body a:focus {
  color: inherit;
  text-decoration: underline;
}
html ul,
body ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
html .tabs,
body .tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
  position: relative;
  gap: 8px;
}
html .tabs .tab,
body .tabs .tab {
  position: relative;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 5px 5px 0 0;
  transition: all 0.25s ease;
  -webkit-user-select: none;
  user-select: none;
}
html .tabs .tab:hover,
body .tabs .tab:hover {
  background-color: rgba(0, 0, 0, 0.04);
  color: var(--primary);
}
html .tabs .tab.active,
body .tabs .tab.active {
  color: var(--primary);
  font-weight: 600;
}
html .tabs .tab.active::after,
body .tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px 2px 0 0;
  animation: indicatorIn 0.25s ease forwards;
}
html .tabs .tab.disabled,
body .tabs .tab.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.4);
}
html .actions,
body .actions {
  position: relative;
  margin-left: 12px;
}
html .actions lucide-icon,
body .actions lucide-icon {
  cursor: pointer;
  width: 22px;
  height: 22px;
  color: #333;
}
html .actions .dropdownMenu,
body .actions .dropdownMenu {
  position: absolute;
  top: 28px;
  right: 0;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  min-width: 180px;
  z-index: 10;
}
html .actions .dropdownMenu button,
body .actions .dropdownMenu button {
  text-align: left;
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #333;
}
html .actions .dropdownMenu button:hover,
body .actions .dropdownMenu button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
html .wrapper-dettaglio,
body .wrapper-dettaglio {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
html .riga,
body .riga {
  display: flex;
  justify-content: space-between;
}
html .wrapper-input,
body .wrapper-input {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 75px;
  margin-right: 16px;
}
html .wrapper-input:last-of-type,
body .wrapper-input:last-of-type {
  margin-right: 0px;
}
html .wrapper-input.with-error input,
html .wrapper-input.with-error select,
html .wrapper-input.with-error textarea,
body .wrapper-input.with-error input,
body .wrapper-input.with-error select,
body .wrapper-input.with-error textarea {
  color: var(--danger) !important;
  border: 1px solid var(--danger) !important;
}
html .wrapper-input.with-error label,
body .wrapper-input.with-error label {
  color: var(--danger) !important;
}
html .wrapper-input label,
body .wrapper-input label {
  padding: 0 4px;
  position: absolute;
  display: block;
  cursor: text;
  left: 18px;
  top: -5px;
  z-index: 2;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  color: var(--grigioScuro);
  background-color: var(--neve);
}
html .wrapper-input input,
html .wrapper-input select,
html .wrapper-input textarea,
body .wrapper-input input,
body .wrapper-input select,
body .wrapper-input textarea {
  z-index: 1;
  width: 100%;
  height: 50px;
  border: 1px solid var(--grigio);
  border-radius: 5px;
  padding-left: 17px;
  background: transparent;
  padding-right: 8px;
}
html .wrapper-input input:disabled,
html .wrapper-input select:disabled,
html .wrapper-input textarea:disabled,
body .wrapper-input input:disabled,
body .wrapper-input select:disabled,
body .wrapper-input textarea:disabled {
  color: var(--grigio);
  color: var(--nero);
  border: 1px solid var(--grigioChiaro) !important;
  pointer-events: none !important;
}
html .wrapper-input input:disabled::placeholder,
html .wrapper-input select:disabled::placeholder,
html .wrapper-input textarea:disabled::placeholder,
body .wrapper-input input:disabled::placeholder,
body .wrapper-input select:disabled::placeholder,
body .wrapper-input textarea:disabled::placeholder {
  color: var(--grigio);
}
html .wrapper-input input:focus,
html .wrapper-input select:focus,
html .wrapper-input textarea:focus,
body .wrapper-input input:focus,
body .wrapper-input select:focus,
body .wrapper-input textarea:focus {
  border: 1px solid var(--grigioScuro);
  outline: none;
  box-shadow: none;
  background: transparent;
}
html .wrapper-input input::placeholder,
html .wrapper-input select::placeholder,
html .wrapper-input textarea::placeholder,
body .wrapper-input input::placeholder,
body .wrapper-input select::placeholder,
body .wrapper-input textarea::placeholder {
  color: var(--grigioChiaro);
  opacity: 1;
}
html .wrapper-input input:-ms-input-placeholder,
html .wrapper-input select:-ms-input-placeholder,
html .wrapper-input textarea:-ms-input-placeholder,
body .wrapper-input input:-ms-input-placeholder,
body .wrapper-input select:-ms-input-placeholder,
body .wrapper-input textarea:-ms-input-placeholder {
  color: var(--grigioChiaro);
  opacity: 1;
}
html .wrapper-input input:-ms-input-placeholder,
html .wrapper-input select:-ms-input-placeholder,
html .wrapper-input textarea:-ms-input-placeholder,
body .wrapper-input input:-ms-input-placeholder,
body .wrapper-input select:-ms-input-placeholder,
body .wrapper-input textarea:-ms-input-placeholder {
  color: var(--grigioChiaro);
  opacity: 1;
}
html .wrapper-input input::-moz-placeholder,
html .wrapper-input select::-moz-placeholder,
html .wrapper-input textarea::-moz-placeholder,
body .wrapper-input input::-moz-placeholder,
body .wrapper-input select::-moz-placeholder,
body .wrapper-input textarea::-moz-placeholder {
  color: var(--grigioChiaro);
  opacity: 1;
}
html .wrapper-input input:-moz-placeholder,
html .wrapper-input select:-moz-placeholder,
html .wrapper-input textarea:-moz-placeholder,
body .wrapper-input input:-moz-placeholder,
body .wrapper-input select:-moz-placeholder,
body .wrapper-input textarea:-moz-placeholder {
  color: var(--grigioChiaro);
  opacity: 1;
}
html .wrapper-input select,
body .wrapper-input select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
html .wrapper-input:has(select)::after,
body .wrapper-input:has(select)::after {
  display: block;
  content: "\25bc";
  font-size: 16px;
  position: absolute;
  right: 16px;
  top: 16px;
  pointer-events: none;
}
html .wrapper-input:has(input, textarea)::after,
body .wrapper-input:has(input, textarea)::after {
  display: none;
}
html .wrapper-input select:has(option:disabled:checked),
body .wrapper-input select:has(option:disabled:checked) {
  color: var(--grigio);
  font-style: italic;
}
html .wrapper-input textarea,
body .wrapper-input textarea {
  min-height: 75px;
  padding-top: 8px;
}
html .wrapper-input .messaggio-errore,
body .wrapper-input .messaggio-errore {
  color: var(--danger);
  font-size: 12px;
  margin: 2px 5px;
}
html .wrapper-foto,
body .wrapper-foto {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 5px;
  border: 2px solid var(--grigioChiaro);
}
html .wrapper-foto img,
body .wrapper-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html .wrapper-foto lucide-icon,
body .wrapper-foto lucide-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
html .cdk-overlay-container,
body .cdk-overlay-container {
  z-index: 99999 !important;
}
html .cdk-overlay-pane,
body .cdk-overlay-pane {
  background-color: var(--neve);
}
html .mat-mdc-menu-content span,
body .mat-mdc-menu-content span {
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 8px;
}
html .mat-mdc-menu-content span:hover,
body .mat-mdc-menu-content span:hover {
  background-color: var(--accent) !important;
}
html .mat-mdc-menu-content span .icona,
body .mat-mdc-menu-content span .icona {
  height: 24px;
  margin-right: 8px;
}
@keyframes indicatorIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}
.shaking {
  animation: shake 2.5s ease-in-out 0.5s infinite;
}
gridster {
  background-color: #fafafa !important;
  overflow-x: visible !important;
}
gridster .gridster-column {
  border-left: 1px solid #00aaff !important;
  border-right: 1px solid #00aaff !important;
  background-color: rgba(0, 170, 255, 0.05) !important;
}
gridster .gridster-row {
  border-top: 1px solid #00aaff !important;
  border-bottom: 1px solid #00aaff !important;
  background-color: rgba(0, 170, 255, 0.05) !important;
}
.mdc-snackbar.mat-mdc-snack-bar-container.snack-success {
  border: 2px solid #4caf50;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.mdc-snackbar.mat-mdc-snack-bar-container.snack-error {
  border: 2px solid #f44336;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.mat-datepicker-content-container {
  border: 1px solid var(--grigioScuro);
  border-radius: 5px;
  margin-top: 10px;
}
:root {
  --mat-datepicker-calendar-container-background-color: var(--neve);
  --mat-datepicker-calendar-date-hover-state-background-color: #d1d5db;
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #9ca3af;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #9ca3af;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #9ca3af;
  --mat-datepicker-calendar-date-in-range-state-background-color: #d1d5db;
  --mat-datepicker-calendar-date-preview-state-outline-color: #9ca3af;
  --mat-datepicker-calendar-date-selected-state-background-color: #9ca3af;
  --mat-datepicker-calendar-date-selected-state-text-color: var(--neve);
  --mat-datepicker-calendar-container-shape: 1px;
  --mat-sys-primary-container: #9ca3af;
  --mat-form-field-outlined-container-shape: 4px;
  --mat-form-field-outlined-label-text-size: 14px;
  --mat-form-field-outlined-outline-color: #d1d5db;
}
html,
body {
  height: 100%;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
