#menu-cart-icon:hover .shopping-cart-container{
    display: block;
}
.lighter-text {
  color: #ABB0BE;
}
.badge {
    background-color: #6394F8;
    border-radius: 10px;
    color: white;
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 3px 7px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}
.shopping-cart-container{
    display: none;
    position: relative;
    right: 250px;
}
.shopping-cart {
    margin: 20px 0 0 0;
    float: left;
    background: white;
    width: 320px;
    position: absolute;
    border-radius: 3px;
    padding: 12px 20px 0 20px;
  
    -webkit-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.10);
}
.shopping-cart .shopping-cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 12px;
    min-height: 38px;
}
.shopping-cart .shopping-cart-total {
    float: right;
    color: #0E889E;
}
.shopping-cart .shopping-cart-items {
    padding: 0;
    margin-top: 0 !important;
}
.shopping-cart li {
    margin-bottom: 18px;
}
.shopping-cart img {
    float: left;
    margin-right: 12px;
}
.shopping-cart-items li{
    width: 100%;
    margin: 15px 0;
}
.shopping-cart-items{
    width: 100%;
}
.shopping-cart-items .item-img{
    width: 84px;
    height: 60px;/* 1 op 1,4 */
    display: inline-block;
    position: absolute;
}
.item-img img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    
    object-fit:contain;
}
.shopping-cart-items .item-name {
    display: block;
    padding-top: 10px;
    font-size: 16px;
    color: #43484D;
    margin-left: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.shopping-cart-items .item-price {
    color: #0E889E;
    margin-right: 8px;
    margin-left: 100px;
}
.shopping-cart-items .item-quantity {
    color: #ABB0BE;
}
.shopping-cart:after {
	bottom: 100%;
	left: 89%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: white;
	border-width: 8px;
	margin-left: -8px;
}
.cart-icon {
    color: #515783;
    font-size: 24px;
    margin-right: 7px;
    float: left;
}
.button {
    background: #fff;
    color:white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}