table.shop_table {
	margin-bottom: 1.5em;
	
	th, td {
		padding: 15px 20px;
	}

	th {
		font-weight: 600;
	}
}


@include media-breakpoint-down (sm) {
	table.shop_table_responsive {
		border: 0;

		thead {
			display: none;
		}
		
		tbody {
			tr {
				border-bottom: 1px solid #e0e5eb;

				&:first-child {
					border-top: 1px solid #e0e5eb;
				}
			}

			th {
				display: none;
			}

			td {
				display: block;
				text-align: right;
				border-top: none;
				border-bottom: none;

				&:before {
					content: attr(data-title) ": ";
					font-weight: 600;
					float: left;
				}

				&.product-remove {
					padding-bottom: 0;

					&:before {
						display: none;
					}
				}

				&.product-thumbnail {
					display: none;
				}

				&.product-quantity {
					text-align: right;
				}

				dl.variation {
					text-align: left;
				}
			}
		}
		
	}
}