#cart #cart-icon {
	position: relative;
	z-index: 10;
}
#cart #cart-icon #cart-count {
	position: absolute;
	right: 0px;
	bottom: 8px;
	border: 1px solid #727272;
	padding: 2px 5px;
	border-radius: 15px;
	background-color: #fff;
	width: 22px;
	text-align: center;
	font-size: 10px;
}
#cart div#fade {
	opacity: 0.5;
	background: #000;
	width: 100%;
	height: 100%;
	z-index: 9;
	top: 0;
	left: 0;
	position: fixed;
	display: none;
}
#cart .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	max-width: 380px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 10;
	top: 27px;
	right: -20px;
	padding: 18px 0 18px 0;
	color: #000;
	font-weight: 600;
}
#cart .dropdown-content .cart-item-title {
	font-weight: 400;
	color: #727272;
	font-size: 1.5em;
	margin-bottom: 10px;
}
#cart .dropdown-content .subtotal {
	color: #ff0;
}
#cart .dropdown-content input {
	width: 50px;
	text-align: center;
	pointer-events: none;
}
#cart .dropdown-content .cart-table-head {
	font-size: 14px;
	color: #727272;
}
#cart .dropdown-content .cart-table-item {
	font-size: 12px;
	color: #727272;
}
#cart .dropdown-content #cart-header {
	text-align: center;
	background: #1a3e6f;
	color: #fff;
	margin: 0 15px 15px 15px;
	border-bottom: 1px solid #000;
	font-weight: 600;
	font-size: 1.1em;
	padding: 5px;
}
#cart .dropdown-content .shopping-btns {
	display: flex;
	justify-content: space-evenly;
	border-top: 1px solid gray;
	margin: 10px;
	padding-top: 25px;
}
#cart .dropdown-content .proceed-to-checkout {
	border-radius: 0;
	color: #1a3e6f;
	border: 3px solid #1a3e6f;
}
#cart .dropdown-content .proceed-to-checkout:hover {
	color: #fff;
}
#cart .dropdown-content table {
	padding: 10px;
}
#cart .dropdown-content table td {
	padding: 10px;
}
#cart .dropdown-content .remove-icon img {
	margin-bottom: -5px;
}
#cart .dropdown-content .head-table-border {
	border-bottom: 1px solid #727272;
	margin: 0 10px;
}
