.planned_to_sell_product_list {
	display: flex;
	flex-wrap: wrap;
}
.planned_to_sell_product_list > .product_list_item {
	margin-right: 1rem;
	margin-top: 1.5rem;
	width: calc( (100% - 1rem*5)/6 );
	text-decoration: none;
	transition: all 0.3s ease;
}
.planned_to_sell_product_list > .product_list_item:nth-child(6n) {
	margin-right: 0;
}
.planned_to_sell_product_list > .product_list_item:nth-child(-n+6) {
	margin-top: 0;
}
.planned_to_sell_product_list > .product_list_item:hover {
	opacity: 0.5;
}
@media (max-width: 768px) {
	.planned_to_sell_product_list > .product_list_item {
		width: calc( (100% - 1rem*2)/3 );
	}
	.planned_to_sell_product_list > .product_list_item:nth-child(-n+6) {
		margin-top: 1.5rem;
	}
	.planned_to_sell_product_list > .product_list_item:nth-child(-n+3) {
		margin-top: 0;
	}
	.planned_to_sell_product_list > .product_list_item:nth-child(3n) {
		margin-right: 0;
	}
}
.planned_to_sell_product_list > .product_list_item .product_list_image {
	font-size: 0;
	margin-bottom: 1.25rem;
}
.planned_to_sell_product_list > .product_list_item .product_list_name {
	color: #00B2A9;
	text-decoration: underline;
}