#eshop-cart .eshop-cart-items a.btn.btn-primary {
	text-decoration: none;
	display: flex;
  align-items: center;
  justify-content: center;
  gap:15px;
  background-color: #000;
  border-color: #000;
  color:#fff;
}
#eshop-cart .eshop-cart-items a.btn.btn-primary:hover{
  background-color: #333;
  border-color: #333;
}

.eshop-cart-content{
	background: #fff;
	min-width: 400px;
	max-width: 350px;
	padding: 0;
	position: absolute;
	top: 125%;
	border: 1px #ddd solid;
	color: #333;
	right:0;
	border-radius: 4px;
	box-shadow: 1.1px 4.5px 3.6px rgba(0,0,0,.024),3px 12.5px 10px rgba(0,0,0,.035),7.2px 30.1px 24.1px rgba(0,0,0,.046),24px 100px 80px rgba(0,0,0,.07);
	
}
.eshop-cart-content::before {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #ddd;
  pointer-events: none;
  left: 100%;
  transform: translateX(-150%);
  top: -21px;
  position: absolute;
}
.eshop-cart-items a:hover{
	cursor: pointer;
}
.eshop-cart-content .cart-empty {
  padding: 20px;
  margin: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color:#f1f1f4;
}
.eshop-cart-content .eshop-total-text {
	width: 25%;
    white-space: nowrap;
}
.eshop-cart-content .eshop-right strong {
  font-weight: 400;
}
.eshop-cart-items{
	z-index: 1;
}
.eshop-cart-items h4 {
	color: #333333;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 3px;
	margin-top: 0;
}
#eshop-cart{
	position: relative;
	right: 0;
	top: 0;
	z-index: 9;
}
.eshop-mini-cart-info td {
	border-bottom: 1px solid #EEEEEE;
	color: #000000;
	padding: 16px 5px;
	vertical-align: middle;
}
.eshop-mini-cart-info .eshop-image {
	text-align: left;
}
.eshop-mini-cart-info .eshop-name {
	text-align: left;
}
.eshop-mini-cart-info .eshop-quantity {
	text-align: right;
}
.eshop-mini-cart-info .eshop-image img {
	border: 1px solid #EEEEEE;
	text-align: left;
}
.eshop-mini-cart-info .eshop-remove {
	text-align: right;
}
.eshop-mini-cart-info .eshop-total {
	text-align: right;
}
.mini-cart-total {
	padding: 16px;
	text-align: right;
	background:#f7f7f7;
}
.eshop-right {
	text-align: right;
}
#eshop-cart .checkout {
	background: #f1f1f4;
	padding:16px;
}
.checkout a {
	width:100%;
	margin:5px 0;
}
.checkout a.eshop-btn-cart {
	border: 1px solid #5a5e60;
	background:#fff;
}
.checkout a.eshop-btn-cart:hover {
	background:#f7f7f7;
}
.checkout a.btn.btn-primary {
  background-color: #000;
  border-color: #000;
  color:#fff;
}
.checkout a.btn.btn-primary:hover {
  background-color: #333;
  border-color: #333;
}