.table__container {
	overflow-x: auto;
	position: relative
}

	.table__container::-webkit-scrollbar {
		display: none
	}

	.table__container:before, .table__container:after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 20px;
		pointer-events: none;
		transition: width .1s
	}

	.table__container:before {
		left: var(--scroll);
		background: linear-gradient(to right,#0000004d,#0000)
	}

	.table__container:after {
		right: calc(var(--scroll) * -1);
		background: linear-gradient(to left,#0000004d,#0000)
	}

	.table__container.no-shadow-left:before, .table__container.no-shadow-right:after {
		width: 0
	}

table {
	width: 100%;
	border-collapse: collapse;
	max-width: 100%
}

	table thead {
		font-family: DM Sans,sans-serif;
		font-size: 16px;
		line-height: 131.25%;
		font-weight: 700;
		background-color: #026982;
		color: #fff
	}

		table thead th {
			padding: 24px 16px 12px;
			text-align: left;
			vertical-align: bottom;
			min-width: 120px
		}

			table thead th.center {
				text-align: center
			}

			table thead th.right {
				text-align: right
			}

			table thead th i {
				padding: 0 4px;
				color: #fff
			}

	table tbody {
		font-family: DM Sans,sans-serif;
		font-size: 16px;
		line-height: 145%;
		font-weight: 400
	}

		table tbody tr:nth-child(odd) {
			background-color: #f6f8f8
		}

		table tbody tr td {
			padding: 16px;
			min-width: 160px
		}

			table tbody tr td.center {
				text-align: center
			}

			table tbody tr td.right {
				text-align: right
			}

			table tbody tr td i {
				padding: 0 4px;
				color: #004868
			}

.table__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 32px
}
