.contract-main {
	padding: 0 15px;
	background: var(--bg-light);
	position: relative;
}

.contract-body {
	background: var(--bs-white);
	padding: 30px 30px 75px;
}

.contract-title {
	margin-bottom: 10px;
	font-size: 22px;
	font-weight: 700;
	color: var(--gray-800);
	text-align: center;
}

.contract-sub {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
	color: var(--gray-800);
	text-align: center;
}

.contract-table {
	--bs-table-border-color: #242424;
	font-size: 14px;
	margin-top: 20px;
}

.contract-table > :not(caption) > * > * {
	padding: 0.35rem .5rem;
	vertical-align: middle;
	color: #000000;
}

.contract-table > tbody > tr > td:first-child,
.contract-table > thead > tr > th:first-child {
	text-align: center;
	width: 4%;
}

.contract-table > tbody > tr > td:nth-child(2),
.contract-table > thead > tr > th:nth-child(2) {
	font-weight: 700;
	width: 30%;
}

.contract-table > tbody > tr > td:nth-child(3),
.contract-table > thead > tr > th:nth-child(3) {
	width: 66%;
}

.contract-table > tbody > tr > .contract-table_group {
	width: 34% !important;
	text-align: left !important;
}

.contract-table > thead {
	display: table-header-group;
}

.contract-table > thead > tr > th {
	background: var(--primary-color);
	text-align: center;
	color: #fff;
}

.contract-table > tbody > tr > td > p:last-child,
.contract-table > tbody > tr > td > ul:last-child,
.contract-table > tbody > tr > td > ol:last-child {
	margin-bottom: 0;
}

.contract-table > tbody > tr > td > p,
.contract-table > tbody > tr > td > ul,
.contract-table > tbody > tr > td > ol {
	margin-bottom: .15rem;
}

.contract-description .contract-description_title {
	margin-bottom: 3px;
}

.contract-description + .contract-description {
	margin-top: 15px;
}

.contract-description p:last-child,
.contract-description ul:last-child,
.contract-description ol:last-child {
	margin: 0;
}

.contract-bold {
	font-weight: 700;
}

.contract-regular {
	font-weight: 400;
}

.contract-note {
	font-size: 15px;
	color: #000000;
}

.contract-note + .contract-note {
	margin-top: 15px;
}

.contract-html_print {
	display: none;
}

.contract-image {
	text-align: center;
}

@media print {
	.contract-main {
		background: #ffffff;
		padding: 0;
	}

	.contract-main .container {
		padding: 0;
		display: table;
		border-bottom: 0;
		max-width: 100%;
	}

	.contract-header img {
		margin-bottom: 20px;
	}

	.contract-body {
		padding: 0;
		page-break-inside: auto;
		position: relative;
	}

	.contract-note:last-child {
		padding-bottom: 10px;
	}

	.contract-table {
		height: 100%;
	}

	.contract-header_space {
		display: table-header-group;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}

	.contract-header {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		width: 100%;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.contract-header_space, .contact-header {
		height: 140px;
	}

	.contract-footer_space {
		display: table-footer-group;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}

	.contract-footer {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.contract-footer img {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}

	.contract-footer_space, .contract-footer {
		height: 95px;
	}

	.contract-content > .contract-note,
	.contract-table tr,
	.contract-table tr th,
	.contract-table tr td {
		page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}


	.contract-table tbody tr td:first-child,
	.contract-table thead tr th:first-child {
		text-align: center;
		width: 4%;
	}

	.contract-table tbody tr td:nth-child(2),
	.contract-table thead tr th:nth-child(2) {
		font-weight: 700;
		width: 34.5%;
	}

	.contract-table tbody tr td:nth-child(3),
	.contract-table thead tr th:nth-child(3) {
		width: 61.5%;
	}

	.contract-image {
		width: 87.5%;
		margin: 0 auto;
	}
}