/* COMMON START */
body {
	background-image: none;
}
/* COMMON FINISH */

/* DOCUMENTS START */
.section-doc {
	margin: 52px 0;
	line-height: 1.765rem;
	color: #212121;
}

.section-doc h1 {
	font-size: 2.25rem;
}

.section-doc i {
	color: #757575;
}

.section-doc p.img {
	display: flex;
}

.section-doc p.img img {
	margin: auto;
}

.section-doc a:hover {
	text-decoration: underline;
}
/* DOCUMENTS FINISH */

/* TABLES START */
.table
{
	width: 100%;

	border-spacing: 0;

	/*white-space: nowrap;*/
}

th
{
	text-align: left;

	border-bottom: 1px solid #ccc;
}

th,
td
{
	padding: 1rem .5rem;
}

.table.no-thead-border th
{
	border-bottom: 0;
}

.table.bordered tbody td
{
	border-bottom: 1px solid #ccc;
}

.table.striped tbody tr:nth-child(odd)
{
	background: #f2f2f2;
}

.table.highlight tbody tr:hover
{
	transition: background-color .25s ease;

	background: #f2f2f2;
}

.table.center thead th
{
	text-align: center;
}

.table.long
{
	display: block;
	overflow-x: auto;
}

@media (max-width: 768px) {
	.table {
		overflow-x: auto;
		display: block;
	}
}
/* TABLES FINISH */