.woocommerce {	
	.shop_table {
		width: 100%;
		border: none;
		margin: 0;

		th {
			display: none;
		}
		
		th, td {
			border-top: 1px solid #ebebeb;
			border-bottom: 1px solid #ebebeb;
		}

		td {
			padding: 15px 0 10px;

			h4 {
				font-size: $font_small-size;
			}

			&.product-thumbnail {
				width: 100px;
				padding-right: 20px;
				
				img {
					width: 80px;
					height: 80px;
				}
			}

			&.product-name {
				text-align: left;

				.variation {
					margin: 0;
					padding: 0;
					font-size: $font_extra_small-size;

					&-item {
						display: flex;

						dd[class^=variation-] {
							margin: 0 0 0 10px;
						}
					}

					dt {
						font-weight: 400;
						color: #888888;
					}

					dd {
						color: #5a5a5a;
						margin: 0;
						padding: 0;
						font-size: $font_extra_small-size;
						font-weight: 500;

						p {
							margin: 0;
							line-height: inherit;
							font-size: $font_extra_small-size;
						}
					}
				}
			}

			.amount {
				font-weight: 400;
			}

			&.product-remove-custom {
				text-align: right;

				a {
					font-size: 18px;
					display: inline-block;
				}
			}
		}
	}

	.actions {
		padding-top: 50px;

		.coupon {
			width: 60%;

			input[type='text'] {
				width: 310px;
			}
		}
	}

	.cart-collaterals {
		background: $color_light-gray;
		width: 100%;
		margin: 0 0 100px 0;

		.cart_totals {
			width: 100%;
			padding: 18px 25px 25px;

			h3.title {
				margin-bottom: 22px;
				font-size: $font_main-size;
			}
		}

		.shop_table {
			width: 100%;
			margin-bottom: 30px;

			tr {
				border-top: 1px solid #ebebeb;
			}

			th {
				width: 50%;
				display: table-cell;
				font-weight: 400;
				font-size: $font_caption-size;
				text-transform: uppercase;
				vertical-align: top;
			}

			td {
				font-size: $font_small-size;
			}

			th, td {
				padding: 16px 0;
			}

			.woocommerce-shipping-calculator {
				p {
					text-align: left;
					margin: 0px;
					margin-top: 10px;
				}
			}

			a.shipping-calculator-button {
				font-weight: 500;
				font-size: $font_small-size;
				text-align: left;
			}

			.shipping-calculator-form {
				p {
					margin: 10px 0;
					padding: 0;
				}

				.btn {
					margin: 5px 0;
				}
			}

			.order-total span {
				font-weight: 500;
			}
		}

		.wc-proceed-to-checkout {
			float: none;
			padding: 0;
		}

		.woo_pp_cart_buttons_div {
			text-align: center;
			margin-top: 15px;
		}
	}

	#shipping_method {
		li {
			line-height: 24px;
			font-size: $font_small-size;
			font-weight: 400;
		}

		.radio {
			line-height: 1;
			vertical-align: -5px;
			margin-right: 10px;
		}

		input {
			margin: 0 !important;
		}
	}

	@media screen and (max-width: 768px) {
		.cart-table-wrap {
			overflow-x: scroll;
		}

		.cart-collaterals {
			margin: 0px;
		}

		.actions {
			.coupon {
				width: 100%;
				text-align: left;

				input[type='text']{
					width: calc(100% - 90px);
				}
			}
		
			.update {
				float: left;
				margin: 15px 0 30px;
			}
		}
	}
}




.woo-cart-empty {
	text-align: center;
	margin: 100px 0 100px;

	h3 {
		font-size: 18px;
		margin: 5px 0 0;
	}

	p {
		margin-top: 5px;
	}

	.icon-bag {
		width: 140px;
		margin: 0 auto 15px auto;
	}

	.btn {
		margin-top: 10px;
	}
}