@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.menu_item {
  border: 1px solid;
  padding: 2px;
  cursor: pointer;
}

.menu_item:hover {
  border: 2px solid;
  padding: 2px;
  color: green;
}

:root {
  --pico-primary: #95bb20 !important;
  --holzhof-orange: #e29718 !important;
  --pico-row-even: #94bb2040 !important;
  --pico-primary-background: #95bb20 !important;
  --pico-secondary: #575756 !important;
  --pico-secondary-background: #575756 !important;
  --pico-primary-hover: #b8b8b8 !important;
  --pico-primary-hover-background: #b8b8b8 !important;
  --pico-spacing: 0.5rem !important;
  --pico-form-element-spacing-vertical: 0.3rem !important;
  --pico-form-element-spacing-horizontal: 0.3rem !important;
  --pico-font-size: 15px;
  --pico-typography-spacing-vertical: 1rem !important;
  --pico-border-radius: 5px !important;

  --row-hover: #d3d3d3;
  --row-selected: #a9a9a9;
  --row-note: #d3d3d3;

/*UNICI STILI PER IL TESTO */
  --holzhof-font-family-roboto: Roboto-Regular;
  --holzhof-font-style-normal: normal;
  --holzhof-font-weight-normal: normal;
  --holzhof-font-weight-bold: bold;
  --holzhof-font-size-14: 16px;
  --holzhof-font-size-16: 16px;
  --holzhof-font-size-18: 18px;
  --holzhof-font-size-24: 24px;
  --holzhof-font-size-26: 26px;
  --holzhof-font-size-32: 32px;
  --holzhof-font-size-38: 38px;
  --holzhof-font-size-50: 50px;
  --holzhof-character-spacing-0: 0px;
  --holzhof-line-spacing-19: 19px;
  --holzhof-line-spacing-26: 26px;
  --holzhof-line-spacing-28: 28px;
  --holzhof-line-spacing-30: 30px;
  --holzhof-line-spacing-37: 37px;
  --holzhof-line-spacing-38: 38px;
  --holzhof-line-spacing-50: 50px;
  --holzhof-line-spacing-52: 52px;
  --holzhof-line-spacing-58: 58px;
  --holzhof-text-transform-uppercase: uppercase;

  /*UNICI COLORI DA UTLIZZARE NEL CSS*/
  --holzhof-color-a3a3a3: #A3A3A3;
  --holzhof-color-light-grey: #F2F2F2;
  --holzhof-color-dddddd: #DDDDDD;
  --holzhof-color-green: #95BB1F;
  --holzhof-color-white: #FFFFFF;
  --holzhof-color-grey: #575756;  
}

@font-face { 
  font-family: Roboto-Regular; 
  src: url('https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf');
  font-weight: normal
} 
h1,h2,h3,h4,h5,h6,li{ 
  src: url('https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf');
  font-family: Roboto-Regular; 
}
p,a,form { 
  src: url('https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf');
  font-family: Roboto-Regular; 
} 
form { 
  src: url('https://www.holzhof.com/cdn/assets/fonts/Roboto-Regular.ttf');
  font-family: Roboto-Regular; 
}

h1,
h2,
h3,
h4,
h5,
h6 {
  --pico-typography-spacing-vertical: 0.5rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 0.5rem !important
}

h1 {
/*  --pico-font-size: 1.5rem !important;*/
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.5rem !important
}

h2 {
/*  --pico-font-size: 1.25rem !important;*/
  font-family: 'Roboto', sans-serif !important;
  font-size: 1.25rem !important
}

p {
  --pico-typography-spacing-vertical: 0.5rem;
}

/* NAVBAR */
/* nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #858583;
}

nav li {
  float: left;
  border-right:1px solid #bbb;
}

nav li:last-child {
  border-right: none;
  float:right;
}

nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav li a:hover:not(.active) {
  background-color: #111;
}

nav .active {
  background-color: #04AA6D;
}

nav i::before {
	margin-top: 3px;
	margin-right: 5px;
} */

.password-container {
  position: relative;
  width: 100%;
}

.password-container input {
  width: 100%;
  padding-right: 30px;
  /* Spazio per l'icona */
}
/* Codice OTP */
#otpCode {
	font-family: ui-monospace, monospace;
	font-size: 1rem;
	width: 100%;
	text-align: center;
	letter-spacing: 0.3ch;
	padding: var(--input-padding);
	border: 2px solid #ddd;
	border-radius: 5px;
	outline: none;
	transition: border-color 0.3s;
	margin: 0 auto;
	background: linear-gradient(to right, #f0f0f0 20%, transparent 20%),
		linear-gradient(to right, #f0f0f0 40%, transparent 40%),
		linear-gradient(to right, #f0f0f0 60%, transparent 60%),
		linear-gradient(to right, #f0f0f0 80%, transparent 80%),
		linear-gradient(to right, #f0f0f0 100%, transparent 100%);
	background-size: calc(100% / 6) 100%;
}

#otpCode:focus {
	border-color: var(--bubble-color);
	background: linear-gradient(to right, #d0d0d0 20%, transparent 20%),
		linear-gradient(to right, #d0d0d0 40%, transparent 40%),
		linear-gradient(to right, #d0d0d0 60%, transparent 60%),
		linear-gradient(to right, #d0d0d0 80%, transparent 80%),
		linear-gradient(to right, #d0d0d0 100%, transparent 100%);
}

.password-container svg {
  position: absolute;
  right: 15px;
  top: 17px;
  cursor: pointer;
}

nav .active {
  font-weight: bold;
}

/* LOGIN */

label {
  margin-bottom: 0;
}

#logo {
  max-width: 300px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

#login {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
  /* margin: auto; */
  margin-left: auto;
  margin-right: auto;
  padding-block: 30px;
}

#titolo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.spaziatura {
  padding-top: 20px;
}

.spazioFooter {
  padding-bottom: 15px;
}

#campi {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#campi label {
  font-weight: bold;
}

.error-message {
  font-size: 1.2em;
}

#campi input {
  padding: 5px;
  border-radius: 5px;
  height: 2em;
  margin: 5px;
}

.icona {
	width: 2rem;
	height: 2rem;
	object-fit: cover;
}

.container-campi {
    border: 2px solid gray;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 1vh;
    margin-bottom: 10px;
}

.campi-grid {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr;
  align-items: center;
  column-gap: 10px;
  padding-bottom: 10px;
  text-align: justify;
}

.campi-grid-lable {
    grid-column: span 1 !important;
    grid-column-start: 1;
    margin-bottom: var(--pico-spacing);
    align-self: start;
}

.campi-grid-dim1 {
    grid-column: span 1 !important;
    margin-bottom: var(--pico-spacing);
}

.campi-grid-dim2 {
    grid-column: span 2 !important;
    margin-bottom: var(--pico-spacing);
}

.campi-grid-wFull {
    grid-column-start: 2 !important;
    grid-column-end: max;
}

.campi-grid-I18N {
    grid-column: span 1 !important;
    margin-bottom: var(--pico-spacing);
}

.campi-grid-fillRow {
    grid-column: max;
    margin-bottom: var(--pico-spacing);
}

.campi-grid-dim-auto {
    grid-auto-flow: column !important;
    margin-bottom: var(--pico-spacing);
}

.I18Ninput-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  margin-bottom: var(--pico-spacing);
}

.I18Ninput-container > span {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: bold;
}

.I18Ninput-container > input {
  width: 9rem !important;
  margin-bottom: 0 !important;
  border: none;
  outline: none;
  flex-grow: 1;
  border-left: 1px solid var(--pico-form-element-border-color);
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--pico-primary);
  border-radius: 0px !important;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}



/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

/*captions delle variabili del CMS*/
.content_caption {
	font-size: 13px;
	color: #808080;
}

.container_campi_summary span {
	font-size: 13px;
	color: yellow;
}

/*bottone per selezionare le immagini nella pagina del sito*/
.immagini-selector{
	height: 2rem;
	width: 40%;
}

.allegati-selector{
	height: 2rem;
	width: 40%;
}

/*bottone per selezionare le immagini nel CRM*/
.immagini-selector-crm{
	height: 2rem;
	width: 100%;
}

/*selezione cartella allegati*/
.allegati{
	display: flex;
	flex-direction: row;
	justify-content: center;
	
	.input-cartella{
		margin: 0 1rem 0 1rem;
	}
	
	p{
		width: max-content;
    	white-space: nowrap;
	}
}


#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: absolute;
  margin-top: 10px;
  bottom: auto;
}

#footer_login {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: fixed;
  margin-top: 10px;
  bottom: 10px;
}

#footer p {
  font-size: 0.6em;
  margin: 2px;
}

#footer a {
  font-size: 0.6em;
  margin: 2px;
}

.error-message {
  color: #cc0033;
  display: inline-block;
  font-size: 12px;
  line-height: 15px;
  margin: 5px 0 0;
}

.input-group .error-message {
  display: none;
}

/* Error Styling */

.error label {
  color: #cc0033;
}

.error input[type="text"] {
  background-color: #fce4e4;
  border: 1px solid #cc0033;
  outline: none;
}

.error .error-message {
  display: inline-block;
}

.riga-lista {
  cursor: pointer;
}

.riga-selezionata {
  background-color: var(--row-selected);
  /* color: white; */
}

#filter_container {
  border: 1px solid var(--pico-primary);
}

#filter_fields {
  border-radius: 0px;
  margin-bottom: 0px;
}

#form_filtro {
  padding: 10px;
}

#tabs {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 0px;
  padding-left: 1px;
}

#tabs .tab {
  /* top-left | top-right | bottom-right | bottom-left */
  border-radius: 5px 5px 0 0;
  padding: 5px;
  border-top: 1px solid var(--pico-secondary);
  border-left: 1px solid var(--pico-secondary);
  border-right: 1px solid var(--pico-secondary);
  cursor: pointer;
}

#tabs .tab:hover {
  background-color: var(--row-hover);
}

#tabs .tab-selezionato {
  background-color: var(--row-selected);
  color: black;
}

#tabs .tab.active {
  background-color: var(--pico-secondary-background);
  color: white;
}

.quotation-tab:hover {
  background-color: var(--row-hover);
}

.quotation-tab-active {
  background-color: var(--pico-secondary-background);
  color: white;
}

.quotation-tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 2px solid var(--pico-primary);
  border-bottom: 0;
  flex-grow: 1;
  text-align: center;
}


#form_dettaglio {
  position: relative;
}
#form_dettaglio label {
  font-weight: bold;
}

/* Nascondo freccette su input partita IVA */
.hide-arrows::-webkit-outer-spin-button,
.hide-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
.hide-arrows {
  -moz-appearance: textfield;
}

tr.riga-lista.dispari td {
  background-color: var(--pico-row-even);
}

tr.riga-lista.pari td {
  background-color: white;
}

tr.riga-lista:hover td {
  background-color: var(--pico-primary-hover) !important;
}

tr.riga-lista.selezionata td {
  background-color: var(--pico-secondary) !important;
  color: white;
}

.v-align * {
  margin-bottom: 0 !important;
}

.v-align {
  display: flex;
  column-gap: 20px;
  align-items: center;
  padding-bottom: 10px;
}

.grp-contact,
.grp-zone {
  display: grid;
  grid-template-columns: 0.75fr 1.5fr 0.75fr 1.5fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}

.row-toolbar {
  width: min-content;
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}

/* Riduco al minimo lo spazio della colonna dei pulsanti */
.td-toolbar {
  width: 1%;
}

.delete-button {
  background-color: var(--holzhof-orange) !important;
  border-color: var(--holzhof-orange) !important;
}

.deleteProduct-button {
  background-color: var(--holzhof-orange) !important;
  border-color: var(--holzhof-orange) !important;
}

/* Altrimenti diventerebbe dello stesso colore della riga */
.edit-button:hover {
  background-color: var(--pico-primary) !important;
  border-color: var(--pico-primary) !important;
}

.dialog-confirm {
  background-color: var(--holzhof-orange) !important;
  border-color: var(--holzhof-orange) !important;
}

select {
  box-sizing: border-box;
}

/* filtri form lista */
#grp1 {
  display: grid;
  grid-template-columns: 0.2fr 1fr 0.2fr 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  padding-bottom: var(--pico-spacing);
}

#det-grp1,
#det-grp2 {
  display: flex;
  align-items: center;
  gap: var(--pico-spacing);
  min-width: min-content;
  padding-bottom: var(--pico-spacing);
}

.no-spazio * {
  margin-bottom: 0 !important;
}

#det-grp1 > *:first-child,
#det-grp2 > *:first-child {
  min-width: 5%;
  white-space: nowrap;
}

#det-grid,
.ind-grid {
  display: grid;
  grid-template-columns: 0.2fr 1fr 0.2fr 1fr;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  padding-bottom: 10px;
}

#det-main,
#det-address,
#det-contact,
#det-zones {
  border: 2px solid var(--pico-primary);
  border-radius: 2px;
  padding: 10px;
  margin-bottom: -2px;
}

#det-buttons {
  text-align: right;
  padding-top: var(--pico-spacing);
}

#det-contact,
#det-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  column-gap: 10px;
  row-gap: var(--pico-spacing);
  width: 100%;
}

#det-contact > div,
#det-zones > div {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

/* icona toolbar */
#navbar li i {
  padding-right: 5px;
}

#navbar {
  font-size: 1.2em;
}

#navbar a:hover {
  text-decoration: none !important;
}

nav,
#navbar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

/*dropDown*/
nav ul {
    list-style: none;
    padding:0;
    margin:0;
}
nav ul li {
	display: inline-block;
}

nav ul li a {
	display: block;
    padding:10px20px;
}

nav ul li:hover > ul {
    display: block;
}

nav ul ul {
    display: none;
    position: absolute;
    background-color: #fff;
}

nav ul ul li {
    display: block;
}

nav ul ul li a {
    padding:10px30px;
}

#login-form {
  width: 25%;
}

.row-icon {
  text-align: center;
}

table {
  display: block;
  overflow-x: auto;
  max-width: 100%;
}

#table_pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}

#table_pagination * {
  margin-bottom: 0;
}

#selection-cancel {
  /* align-self: flex-end; */
  margin-left: 30px;
  background-color: var(--holzhof-orange) !important;
  border-color: var(--holzhof-orange) !important;
}

#quotation-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  gap: 10px;
}

#quotation-buttons button {
  padding-left: 30px;
  padding-right: 30px;
}
#quotation-buttons input {
  width: min-content;
  margin-left: 10px;
  margin-right: 30px;
}
#quotation-summary > table {
  display: flex;
  justify-content: flex-end;
}
#quotation-summary > table td {
  text-align: right;
}

.product-img {
  width: auto;
  height: 100%;
  max-height: 200px;
  object-fit: contain;
  border: 1px solid var(--pico-secondary);
}
/* rischioso, non fa andare a capo l'instazione delle tabelle */
th {
  white-space: nowrap;
}

.preventivo-nota td {
  background-color: var(--row-note);
}

#preventivo-approvato {
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: var(--holzhof-orange);
  font-weight: bold;
  font-size: 1.2em;
  color: white;
}

.price-container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
}

.price-container > span {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 1.2em;
  font-weight: bold;
}

.price-container > input {
  width: 9rem !important;
  margin-bottom: 0 !important;
  border: none;
  outline: none;
  flex-grow: 1;
  border-left: 1px solid var(--pico-form-element-border-color);
}

.quotation-options label {
  font-weight: bold;
}

.quotation-options select {
  width: min-content;
}

.quotation-options {
  display: grid;
  grid-template-columns: 0.3fr 0.8fr;
  margin-bottom: 0 !important;
  row-gap: var(--pico-spacing);
  align-items: center;
}

#dialog-prodotto-preventivo label {
  font-weight: bold;
}

#dialog-prodotto-custom label {
  font-weight: bold;
}

.horizontal-separator {
  border-top: 1px solid var(--pico-secondary);
  width: 100%;
}

td img {
  object-fit: contain;
}

header {
  padding: 0 !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

header nav {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10pt;
}

body {
  font-family: 'Roboto', sans-serif !important;
  padding-top: 100px;
}

.notification {
  display: none;
  position: fixed;
  top: 110px;
  right: 10px;
  background-color: #f4f4f4;
  border: 1px solid #ddd;
  padding: 10px;
  padding-right: 30px;
  width: 300px;
  box-shadow: 0px 0px 10px var(--pico-primary);
  border-radius: 5px;
  z-index: 1000;
  cursor: pointer;
  font-weight: bold;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.notification.show {
  display: block;
  opacity: 1;
}

.notification.hide {
  opacity: 0;
}

#navbar-bell {
  font-size: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

#navbar-bell:hover {
  transform: rotate(15deg);
}

#navbar-bell.animate {
  animation: animazioneNotifica 0.5s infinite alternate;
}

#charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* flex-wrap: wrap; */
  gap: 10px;
}

#charts div {
  min-height: 300px;
  /* width: 25%; */
}

#charts div div {
  width: 100%;
  height: 100%;
}

#squares {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

@keyframes animazioneNotifica {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.dash-notification:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease-in-out;
}

.dash-notification h2:hover {
  text-decoration: underline;
}

/* #homepage {
  grid-template-areas: 
    "header header reminders"
    "squares squares reminders"
    "charts charts reminders";
} */
 #homepage{
  min-height: 70vh;
 }

#header {
  grid-area: header;
}

#squares {
  grid-area: squares;
}

#charts {
  grid-area: charts;
}

#reminders {
  grid-area: reminders;
}


#add-notification{
  position: absolute;
  top: 10;
  right: 10;
  /* width: 50px;
  height: 50px;
  border-radius: 50%; */
  font-size: 35px;
  text-align: center;
  margin: auto;
  color: var(--pico-primary);
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
  cursor: pointer;
}

#btn_promemoria {
  color: var(--pico-secondary);
  font-weight: bold;
  background-color: white;
  border: 1px solid var(--pico-primary);
}

#btn_promemoria:hover {
  background-color: var(--pico-secondary-background );
  color: white;
}

@media (max-width: 1030px) {
  #charts div {
    width: 100%;
  }
  nav {
    justify-content: center !important;
  }
  #navbar li {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  #navbar {
    padding-top: 10px;
  }
  header nav {
    padding-bottom: 10px;
  }
  .row-toolbar {
    flex-wrap: wrap;
  }
  body {
    padding-top: 140px;
  }
  #homepage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: 
      "header"
      "reminders"
      "squares"
      "charts";
  }
  #charts {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ind-grid,
  .grp-contact,
  .grp-zone {
    grid-template-columns: 0.2fr 1fr;
  }
  #det-contact,
  #det-zones {
    display: block;
  }
  .grp-contact,
  .grp-zone {
    border: 0 !important;
  }
  #login-form {
    width: 90%;
  }
  tbody {
    font-size: 0.9em;
  }
  body {
    padding-top: 200px;
  }
}

.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.markdown{
  h1{
    margin-top: 7vh;
    margin-bottom: 3vh;
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-bold);
    font-size: var(--holzhof-font-size-50);
    line-height: var(--holzhof-line-spacing-58);
    color: var(--holzhof-color-grey);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    opacity: 1;
  }

  em{
    font-style: var(--holzhof-font-style-normal);
    color: var(--holzhof-color-green);
    text-decoration: none;
  }

  h2{
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-32);
    line-height: var(--holzhof-line-spacing-38);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
    margin-bottom: 3vh;
  }

  h3{
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-26);
    line-height: var(--holzhof-line-spacing-30);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
    margin-bottom: 3vh;
  }

  p{
    font-family: var(--holzhof-font-family-roboto);
    font-style: var(--holzhof-font-style-normal);
    letter-spacing: var(--holzhof-character-spacing-0);
    font-weight: var(--holzhof-font-weight-normal);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    color: var(--holzhof-color-grey);
    text-transform: none;
    text-decoration: none;
    position: relative;
    opacity: 1;
    margin-bottom: 3vh;
  }

  strong{
    font-style: var(--holzhof-font-style-normal);
    font-weight: var(--holzhof-font-weight-bold);
  }

  ul{
    li {
      list-style: none;
    }
    li::before {
      content: '';
      display: inline-block;
      height: 1rem;
      width: 1rem;
      background-image: url("../svg/fiore-pieno.svg");
      background-size: 1rem;
      background-repeat: no-repeat;
    }
  }

  a{
    color: var(--holzhof-color-green);
    font-size: var(--holzhof-font-size-16);
    line-height: var(--holzhof-line-spacing-28);
    height: max-content;
    width: max-content;

    &:hover{
      color: var(--holzhof-color-green);
    }
  }
}


/*---------------------------------------------------------
                    TABELLA CATALOGO
---------------------------------------------------------*/
.table-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 1rem;
  justify-content: space-between;
  min-height: 60vh;
}


.center-content{
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 1rem;
}

.import-form {
  padding: 1rem;
  border: 2px solid var(--holzhof-color-green);
  width: 50%;
}

.script-results {
  height: 50vh;
  overflow-y: auto;
}

.execute-btn {
  float: right;
  margin-bottom: 0 !important;
}



/*---------------------------------------------------------
                  ALBERO DELLE CATEGORIE
---------------------------------------------------------*/
.albero ul li{
  list-style-type: none;
  margin: 0;
}

.albero ul{
  margin: 0;
  position: relative;
}


#albero{
  padding-left: 0 !important;
  margin-top: 3rem;

  li .option{
      display: flex;
  }
}

.parent {
  display: flex;
  flex-direction: row;
  cursor: pointer;

  summary{
      background-color: var(--pico-row-even);
  }
}

.nascosto {
  display: none;
}

.active {
  display: block;
}

.current div{
  background-color: var(--pico-secondary) !important;
  color: white;
}

.option{
  cursor: pointer;
  width: fit-content;
  padding: 0.3rem;
  user-select: none;

  div{
      background-color: var(--pico-row-even);
      padding: 0.3rem;
      border-radius: 0.3rem;
  }

  summary{
      background-color: var(--pico-row-even);
  }
}

.parent::after{
  content: '\25B6' !important;
  display: block;
  position: relative;
  top: 0.45rem;
  left: calc(-100% + 1.4rem);
}

.parent-down::after{
  transform: rotate(90deg);
  top: 0.1rem;
  left: calc(-100% + 1rem);
}

.albero ul li {
  border-left: 2px solid #ddd;
}

.albero ul li:last-child {
  border-color: transparent;
}

.option::before{
  content: '';
  display: block;
  position: relative;
  top: -0.3rem;
  left: -0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border: solid #ddd;
  border-width: 0 0 2px 2px;
}

.root::before{
  display: none !important;
}

.root::after{
  display: none !important;
}

.first{
  padding-inline-start: 5px;
}

.albero{
  list-style-type: none;
}

#toolbar{
  position: absolute;
  background-color: white;
  z-index: 2;
  border: 1rem solid white;
  transform: translateX(-1rem) translateY(-1rem);
  width: 21%;
}


.replaceImg{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 7rem;
  align-items: center;
  border: 1px solid;
  padding: 3rem;

  p {
    margin: 0;
  }
}

.flex-column{
  display: flex;
  flex-direction: column;
}

#actions_buttons {
  display: flex;
  margin-left: 5rem;

  button{
    margin-left: 10px;
  }
}

.checkbox-sconto-generale {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.5rem;

  .lable-sconto-generale{
    margin: 0 1rem 0 0;
  }
}
