table {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

table .st-key {
  font-weight: bold;
}
.stacktable {
	width: 100%;
}
.st-head-row {
	padding-top: 1em;
}
.st-head-row.st-head-row-main {
	font-size: 1.5em;
	padding-top: 0;
}
.st-key {
	padding-right: 1.5%;
	text-align: right;
	width: 45%;
}
.st-val {
	padding-left: 1.5%;
	text-align: left;
	width: 54%;
}
.stacktable.large-only {
	border: none;/*sombre*/
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
	display: table;
	overflow: hidden;
}
.stacktable.large-only thead {
	background-color: #B5AA0C;
}
.stacktable.large-only thead tr th {
	color: rgb(255, 255, 255);
		font-size: 22px;
}
.stacktable.large-only thead tr th,
.stacktable.large-only tbody tr td {
	padding: 5px;
	text-align: center;
	font-size: 18px;
}
tr:hover{
	background-color: #B1B1B1;color:Black;
}
.stacktable.small-only {
	display: none;
}
@media (max-width: 800px) {
	.stacktable.large-only {
		display: none;
	}
	.stacktable.small-only {
		display: table;
		margin-bottom: 0;
	}
	.stacktable.small-only tbody tr td {
		font-size: 15px;
		padding: 6px;
	}
   .stacktable.small-only tbody tr td:hover{
	background-color: #006000;color: #FBFBFB;
    }
	.stacktable.small-only tbody tr:first-child {
		background-color: #B5AA0C;
	}
	.stacktable.small-only tbody tr:first-child:hover{
	background-color: #006000;color: #FBFBFB;
    }
	.stacktable.small-only tbody tr:first-child td:hover{
	background-color: #006000;color: #FBFBFB;
    }
	.stacktable.small-only tbody tr:not(:first-child) td:hover{
	background-color: #006000;color: #FBFBFB;
    }
	.stacktable.small-only tbody tr:first-child td {
		color: rgb(255, 255, 255);
	}
	.stacktable.small-only tbody tr:not(:first-child) td {
		background-color: rgb(225, 225, 225);
	}
}