.amc-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
button#amc-open-modal {
  background: none;
  border: none;
  margin-block: 1rem;
  padding: 0;
  cursor: pointer;
}
.amc-modal-content {
  background: var(--dust-color);
  padding: 52px;
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  position: relative;
  width: 650px;
}
.amc-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
button.amc-close {
  background: none;
  border: none;
  color: var(--black-color);
}
.amc-taglie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.amc-taglie-table thead {
  background-color: rgb(236, 236, 236);
  border-bottom: none;
}
.amc-taglie-table th, .amc-taglie-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgb(225, 225, 225);
}
.amc-taglie-table tr:hover{
  background-color: rgb(236, 236, 236);
}
