@import url('https://fonts.googleapis.com/css?family=Titillium+Web:300,400,700');

.titolo {	font-size: 30px;	font-weight: normal;    font-family: 'Titillium Web', sans-serif;	text-transform: uppercase;	letter-spacing: -2px;	color: #004786;}
.titolo2 {	font-size: 29px;	font-weight: normal;    font-family: 'Titillium Web', sans-serif;	text-transform: uppercase;	letter-spacing: -2px;	color: #004786;}
.cornice{border-radius: 1rem !important;border: solid 3px #034179 !important}



.dynamicLabel {
    margin-right: 10px; /* Adjust for spacing between label and input */
    margin-left: 10px; /* Adjust for spacing between label and input */
  }
  .input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}


.input-container button {
    background-color: #dc3545; /* Button background color */
    color: #fff; /* Button text color */
    padding: 4px 8px; /* Padding around the button text */
    border: none; /* Remove button border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s; /* Add a smooth transition for background color change */
}

button#addButton {
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    padding: 8px 16px; /* Padding around the button text */
    border: none; /* Remove button border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s; /* Add a smooth transition for background color change */
}

button#addButton:hover {
    background-color: #0056b3; /* Darker background color on hover */
}

.margin-right10{
  margin-right: 10px
}

.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #eee;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
