.sl-table-shell {
	max-width: 100%;
	overflow: hidden;
}

.sl-table-desktop {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.sl-table {
	width: 100%;
	min-width: 680px;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
}

.sl-table th,
.sl-table td {
	border: 0;
	vertical-align: middle;
}

.sl-table thead th {
	background: #0a192f;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .035em;
	text-transform: uppercase;
}

.sl-table tbody tr {
	background: #fff;
	transition: background-color .2s ease;
}

.sl-table tbody tr:nth-child(even) {
	background: #f4f6f7;
}

.sl-table tbody td {
	border-bottom: 1px solid #dfe4e8;
	font-size: 14px;
	line-height: 1.5;
}

.sl-table-mobile {
	display: none;
	flex-direction: column;
}

.sl-mobile-card,
.sl-mobile-accordion {
	margin: 0;
	background: #fff;
	border: 1px solid #dfe4e8;
	border-radius: 3px;
	overflow: hidden;
}

.sl-mobile-card {
	position: relative;
}

.sl-mobile-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 3px;
	background: #e4002b;
}

.sl-mobile-accordion summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 15px 52px 15px 18px;
	background: #0a192f;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
	-webkit-tap-highlight-color: transparent;
}

.sl-mobile-accordion summary::-webkit-details-marker {
	display: none;
}

.sl-mobile-accordion summary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #e4002b;
	border-bottom: 2px solid #e4002b;
	transform: translateY(-65%) rotate(45deg);
	transition: transform .22s ease;
}

.sl-mobile-accordion[open] summary::after {
	transform: translateY(-35%) rotate(225deg);
}

.sl-mobile-body {
	padding: 16px 18px;
}

.sl-mobile-field {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	padding: 12px 0;
	border-bottom: 1px solid #dfe4e8;
}

.sl-mobile-field:first-child {
	padding-top: 0;
}

.sl-mobile-field:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.sl-mobile-label {
	color: #66717f;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.sl-mobile-value {
	color: #172333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	text-align: right;
	word-break: break-word;
}

@media (max-width: 1024px) {
	.sl-breakpoint-tablet:not(.sl-mode-scroll) .sl-table-desktop {
		display: none;
	}

	.sl-breakpoint-tablet:not(.sl-mode-scroll) .sl-table-mobile {
		display: flex;
	}
}

@media (max-width: 767px) {
	.sl-breakpoint-mobile:not(.sl-mode-scroll) .sl-table-desktop {
		display: none;
	}

	.sl-breakpoint-mobile:not(.sl-mode-scroll) .sl-table-mobile {
		display: flex;
	}

	.sl-mode-scroll .sl-table {
		min-width: 620px;
	}

	.sl-mobile-field {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
		gap: 12px;
	}
}

@media (max-width: 380px) {
	.sl-mobile-field {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.sl-mobile-value {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sl-mobile-accordion summary::after,
	.sl-table tbody tr {
		transition: none;
	}
}
