/* UkrCredits - відступ між кнопкою "Купити" та кнопкою "Купити в кредит" */
#button-ukrcredits {
    margin-top: 10px;
}

/* Таблиця випадкових товарів категорії (на сторінці категорії, поруч з описом) */
.category-price-table h3 {
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
}
.category-price-table .table {
	margin-bottom: 0;
	table-layout: fixed;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--up-border-color);
}
.category-price-table th,
.category-price-table td {
	vertical-align: middle;
	text-align: center;
	white-space: normal !important;
	box-sizing: border-box;
	border: 1px solid var(--up-border-color);
}
.category-price-table th:nth-child(1),
.category-price-table td:nth-child(1) {
	width: 5%;
}
.category-price-table th:nth-child(2),
.category-price-table td:nth-child(2) {
	width: 75%;
	word-break: break-word;
	overflow-wrap: break-word;
}
.category-price-table th:nth-child(3),
.category-price-table td:nth-child(3) {
	width: 20%;
	word-break: break-word;
	overflow-wrap: break-word;
}
.category-price-table tbody td:nth-child(2) {
	text-align: left;
}
.category-price-table .cpt-old-price {
	color: var(--up-text-light-color);
	text-decoration: line-through;
}
.category-price-table .cpt-new-price {
	color: var(--up-color-sale-price);
}