@charset "utf-8";


.FormSimpleTable {
	display:flex;
	flex-wrap: nowrap;
	flex-direction: column;
	justify-content:space-between;
	align-items: stretch;
	column-gap: 0;
}
.FormSimpleTable .Row {
	display:flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content:space-between;
	align-items: stretch;
	column-gap: 0;

    font-size: 1.3em;
    height: 2em;
    line-height: 2em;

    margin: 0px;
    padding: 0px;
    border: 0px;
    color: #666666;
    background-color: transparent;
    overflow: hidden;
    box-sizing: border-box;
	border-bottom: 1px solid #a1a1a1;
}
.FormSimpleTable .Row:first-of-type {
 	border-top: 1px solid #a1a1a1;
}
.FormSimpleTable .Row .label {
	flex:1;
	font-size: 0.9em;
    font-weight: 400;
    padding-left: 0.3em;
}
.FormSimpleTable .Row .label.Selectable:HOVER {
	background-color:#eaeaea;
	cursor: pointer;
}
.FormSimpleTable .Row .button SPAN,
.FormSimpleTable .Row .button {
	display: block;
	width: 3.2rem;
	text-align: center;
	font-size: 0.92em;
}
.FormSimpleTable .Row .button:HOVER {
	color: #ffffff;
	cursor: pointer;
	background-color: var(--ButtonsColor);
}

.FormSimpleTable .Row .Dimensione {
    background-color: transparent;
    color: #a1a1a1;
	font-size:0.7em;
	line-height: 1.8em;
	height: 1.8em;
	padding-left: 0.5em;
	padding-right: 0.5em;
	display: inline-block;
    margin-right: 1em;
    margin-top: 0.5em;
    -webkit-border-radius: 0.3em;
    -moz-border-radius: 0.2em;
    border-radius: 0.2em;
    float:right;
    font-weight:normal;
    box-sizing: border-box;
    border: 1px solid #a1a1a1
}



