.compare-table .theme-light.data-table {
	background-color: #fff;
	color: rgba(0, 0, 0, 0.87);
}
.compare-table .data-table {
	line-height: 1.5;
	max-width: 100%;
}

.compare-table .data-table-wrapper {
	overflow-x: auto;
	overflow-y: hidden;
}

.compare-table .data-table > .data-table-wrapper > table {
	width: 100%;
	border-spacing: 0;
}

.compare-table .data-table > .data-table-wrapper > table > tbody > tr > td,
.compare-table .data-table > .data-table-wrapper > table > tbody > tr > th,
.compare-table .data-table > .data-table-wrapper > table > tfoot > tr > td,
.compare-table .data-table > .data-table-wrapper > table > tfoot > tr > th,
.compare-table .data-table > .data-table-wrapper > table > thead > tr > td,
.compare-table .data-table > .data-table-wrapper > table > thead > tr > th {
	padding: 0 16px;
	transition: height 0.2s cubic-bezier(0.4, 0, 0.6, 1);
}

.compare-table .data-table > .data-table-wrapper > table > tbody > tr > th,
.compare-table .data-table > .data-table-wrapper > table > tfoot > tr > th,
.compare-table .data-table > .data-table-wrapper > table > thead > tr > th {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 0.75rem;
	height: 48px;
}

.compare-table .data-table > .data-table-wrapper > table > tbody > tr > td,
.compare-table .data-table > .data-table-wrapper > table > tfoot > tr > td,
.compare-table .data-table > .data-table-wrapper > table > thead > tr > td {
	font-size: 0.875rem;
	height: 48px;
}

.compare-table
	.theme-light.data-table
	> .data-table-wrapper
	> table
	> tbody
	> tr:not(:last-child)
	> td:last-child,
.compare-table
	.theme-light.data-table
	> .data-table-wrapper
	> table
	> tbody
	> tr:not(:last-child)
	> td:not(.data-table-mobile-row),
.compare-table
	.theme-light.data-table
	> .data-table-wrapper
	> table
	> tbody
	> tr:not(:last-child)
	> th:last-child,
.compare-table
	.theme-light.data-table
	> .data-table-wrapper
	> table
	> tbody
	> tr:not(:last-child)
	> th:not(.data-table-mobile-row),
.compare-table
	.theme-light.data-table
	> .data-table-wrapper
	> table
	> thead
	> tr:last-child
	> th {
	border-bottom: thin solid rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 599px) {
	.compare-table .with-small-media div {
		overflow: auto;
		height: 420px;
		position: relative;
		border-radius: 20px;
	}

	.compare-table .with-small-media img {
		position: absolute;
		height: 100%;
		max-width: none;
		width: auto !important;
	}
}

/* Dots */

.compare-table .slick-dots {
	position: absolute;
	bottom: -48px;

	display: block;

	width: 100%;
	padding: 0;
	margin: 0;

	list-style: none;

	text-align: center;
}
.compare-table .slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.compare-table .slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.compare-table .slick-dots li button:hover,
.compare-table .slick-dots li button:focus {
	outline: none;
}
.compare-table .slick-dots li button:hover:before,
.compare-table .slick-dots li button:focus:before {
	opacity: 1;
}
.compare-table .slick-dots li button:before {
	font-size: 0;
	position: absolute;
	top: 0;
	left: 5px;
	width: 10px;
	height: 10px;
	content: "";
	text-align: center;
	opacity: 1;
	background: rgb(157, 163, 193);
	border-radius: 100%;
}
.compare-table .slick-dots li.slick-active button:before {
	background: rgb(10, 25, 100);
}
