.block-review-table {
	background-color: var(--wp--preset--color--background);
	border-radius: 6px;
	overflow-x: auto;
	padding-bottom: 20px;
}

.block-review-table .review-table {
	border-collapse: collapse;
	font-size: var(--wp--preset--font-size--tiny);
	width: 100%;
}

.block-review-table .review-table th,
.block-review-table .review-table td {
	border: none;
	padding: 20px;
}

.block-review-table tr:nth-child(even) {
	background-color: var(--wp--preset--color--white);
}

.block-review-table .review-table th {
	background-color: var(--wp--preset--color--senary);
	text-transform: uppercase;
}

.block-review-table td > p:first-child {
	margin-top: 0;
}

.block-review-table td > p:last-child {
	margin-bottom: 0;
}

.block-review-table .company-name {
	font-weight: 700;
}

.block-review-table .overall-rating {
	text-align: center;
	white-space: nowrap;
}

.block-review-table .rating-stars {
	white-space: nowrap;
}

.block-review-table .rating-stars svg {
	fill: #4a4a4a;
}

.block-review-table .rating-stars .empty {
	fill: #bbbbbb;
}

.block-review-table .rating-stars .half-star {
	display: inline-grid;
	grid-template-areas: "stack";
}

.block-review-table .rating-stars .half-star > * {
	grid-area: stack;
}

.block-review-table .rating-stars .half-star > :first-child {
	z-index: 1;
}

.block-review-table .overall-rating .star-amount {
	text-decoration: underline;
}

.block-review-table .review-tips {
	text-align: center;
	position: relative;
}

.block-review-table .tips-text {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.block-review-table {
		/*overflow-x: auto;*/
		-webkit-overflow-scrolling: touch;
	}

	.block-review-table .overall-rating {
		white-space: normal;
	}

	.entry-content > .block-review-table {
		margin-left: calc(-1 * var(--wp--custom--layout--padding));
		margin-right: calc(-1 * var(--wp--custom--layout--padding));
		border-radius: 0;
	}

	.block-review-table td > p {
		min-width: 200px;
	}
}