.tmp-wrapper {
	--tmp-primary: #4caf7d;
	--tmp-primary-dark: #3d9468;
	--tmp-header-bg: #5cb98a;
	--tmp-header-color: #ffffff;
	--tmp-row-bg-odd: #ffffff;
	--tmp-row-bg-even: #f4faf7;
	--tmp-border: #dfe9e4;
	--tmp-text: #1d2327;

	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 1.5em 0;
	font-family: inherit;
}

.tmp-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid var(--tmp-border);
	border-radius: 8px;
	overflow: hidden;
}


.tmp-table thead th {
	background: var(--tmp-header-bg);
	color: var(--tmp-header-color);
	text-align: center;
	padding: 14px 16px;
	font-weight: 700;
	font-size: 0.95em;
	white-space: nowrap;
}

.tmp-table thead th:first-child{
	text-align: left;
}

.tmp-table tbody td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--tmp-border);
	color: var(--tmp-text);
	font-size: 0.95em;
	text-align: center;
}


.tmp-table tbody td:first-child{
	text-align: left;
}

.tmp-table tbody tr:last-child td {
	border-bottom: none;
}

.tmp-table tbody tr:nth-child(odd) {
	background: var(--tmp-row-bg-odd);
}

.tmp-table tbody tr:nth-child(even) {
	background: var(--tmp-row-bg-even);
}

.tmp-btn {
	display: inline-block;
	background: var(--tmp-primary);
	color: #fff;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9em;
	transition: background 0.15s ease-in-out, transform 0.15s ease-in-out;
	white-space: nowrap;
}

.tmp-btn:visited{
	color: #FFF!important;
}

.tmp-btn:hover,
.tmp-btn:focus {
	background: var(--tmp-primary-dark);
	color: #fff;
	transform: translateY(-1px);
}

.tmp-btn-empty {
	color: #9aa5a1;
}

/* Layout responsive "a scheda" sotto i 700px */
@media screen and (max-width: 700px) {
	.tmp-wrapper {
		overflow-x: visible;
	}

	.tmp-table,
	.tmp-table thead,
	.tmp-table tbody,
	.tmp-table th,
	.tmp-table td,
	.tmp-table tr {
		display: block;
	}

	.tmp-table thead {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.tmp-table tr {
		border: 1px solid var(--tmp-border);
		border-radius: 8px;
		margin-bottom: 12px;
		padding: 4px 0;
	}

	.tmp-table tbody tr:nth-child(odd),
	.tmp-table tbody tr:nth-child(even) {
		background: #fff;
	}

	.tmp-table td {
		border-bottom: 1px solid var(--tmp-border);
		position: relative;
		padding: 10px 14px 10px 46%;
		text-align: right;
		min-height: 20px;
	}

	.tmp-table tr td:last-child {
		border-bottom: none;
	}

	.tmp-table td::before {
		content: attr(data-label);
		position: absolute;
		left: 14px;
		top: 10px;
		width: 40%;
		white-space: normal;
		text-align: left;
		font-weight: 700;
		color: var(--tmp-primary-dark);
	}
}
