/**
 * @copyright	Copyright (c) 2015 Skyline Technology Ltd (http://extstore.com). All rights reserved.
 * @license		http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

.mediastore-cart {
	position: relative;
}

.cart-product-item:before,
.cart-product-item:after {
	display: table;
	content: " ";
}

.cart-product-item:after {
	clear: both;
}


.cart-wrapper {
	
}

.cart-products-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cart-product-item {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.cart-product-image {
	float: left;
	margin-right: 10px;
}

.cart-product-name {
	font-weight: bold;
}

.cart-total {
	padding: 10px 0;
	font-size: 15px;
	font-weight: bold;
	text-align: right;
}

.cart-buttons {
	text-align: right;
}

.mini-cart-link {
	position: relative;
}

.mini-cart-link .cart-qty {
	position: absolute;
	font-size: 10px;
	line-height: 10px;
	padding: 3px 4px;
	background: #e90000;
	color: #fff;
	border-radius: 3px;
	top: -7px;
	right: -7px;
}

.cart-wrapper-mini {
	display: none;
	position: absolute;
	background: #fff;
	width: 280px;
	padding: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	z-index: 99999;
}