.mgBasket.active:hover + div.mgCart { display: block !important; } /* TODO: REMOVE -> for test only */

.mgCart {
    position: absolute;
    top: 36px;
    width: min(100%, 400px);
    background-color: #FFF;
    border: 1px solid #CCC;
    box-shadow: 0 5px 15px -5px #CCC;
}

.mgCart .labels { background-color: #F9F9F9; }

.mgCart .products {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.mgCart .price {
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

.mgCart .labels > div,
.mgCart .price > div {
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
    width: 33.333333333%;
}

.mgCart .product {
    border-top: 1px solid #CCC;
    border-bottom: 8px solid #F9F9F9;
}

/* ((())) INFO: dublirano s products.css */
.mgCart .product a.title {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    color: #2457AA;
    font-weight: 700;
}
/* <<<<<< */

.mgCart .product .info,
.mgCart .product .remove {
    display: inline-block;
    box-sizing: border-box;
    vertical-align: top;
}

.mgCart .product .info { width: calc(100% - 80px); }

.mgCart .product .remove { width: 80px; }

.mgCart .product .remove,
.order .product .remove {
    background-image: url(../svg/delete.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    color: #008adb;
    padding-left: 20px;
    line-height: 24px;
    cursor: pointer;
}

.mgCart .product picture {
    display: block;
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 10px;
}

.mgCart .product picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mgCart .total {
    text-align: right;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

.mgCart a.button {
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    text-decoration: none;
    padding: 5px 20px;
    display: block;
    color: #fff;
    background-color: #0084d9;
    border-radius: 5px;
    cursor: pointer;
}
.mgCart a.button:hover { background-color: #0b4887; }

@media (max-width: 1440px) {
    .mgCart { right: 0; }
}

@media (min-width: 1441px) {
    .mgCart { right: 10px; }
}
