header .mgBasket {
    display: inline-block;
    vertical-align: top;
}

header .mgBasket a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(../svg/header/basket.svg);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
}

/*header .mgBasket a.active {
    opacity: 0.6;
    cursor: pointer;
}
*/


.noreturn {
    background-image: url(../svg/noreturn.svg);
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding: 0 20px 0 0;
}

/* Mobile */
/*@media all and (max-width: 960px) {
    header .mgBasket {
        padding: 9px;
    }
}*/

/* Desktop */
/*@media all and (min-width: 961px) {
    header .mgBasket {
        padding: 10px;
    }
}
*/
.mgPopup .basket {
    padding: 20px;
    min-width: 960px;
    position: relative;
}

.mgPopup .basket .basketitem {
    display: flex;
    border-bottom: 1px solid #CCC;
}

.mgPopup .basket .basketitem:last-child { border-bottom: 1px solid #CCC; }

.mgPopup .basket .basketitem > div {
    flex: 1;
    padding: 10px;
}

.mgPopup .basket .basketitem .image {
    height: 60px;
    width: 60px;
    max-width: 60px;
    text-align: center;
}

.mgPopup .basket .basketitem .image img {
    max-width: 60px;
    max-height: 60px;
    vertical-align: middle;
}

.mgPopup .basket .basketitem .image span {
    vertical-align: middle;
    height: 100%;
    display: inline-block;
}

.mgPopup .basket .basketitem .product { min-width: 300px; }

.mgPopup .basket .basketitem .qty input[type="text"] {
    width: 40px;
    text-align: center;
}

.mgPopup .basket .basketitem .qty img {
    width: 20px;
    height: 20px;
    cursor: pointer;
    vertical-align: middle;
}

a.mgBasketDelete {
    background-image: url(../svg/delete.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    color: #008adb;
    display: inline-block;
    padding-left: 20px;
    line-height: 24px;
    cursor: pointer;
    margin-top: 6px;
}

.mgPopup .basket .total {
    text-align: right;
    font-size: 16px;
    padding: 10px;
    margin: 0;
}

.mgPopup .basket .buttons {
    padding: 20px 0 20px 10px;
    display: flex;
    justify-content: space-between;
}

.red { color: red; }

.basket form .info {
    padding: 10px;
    background-color: #FFFEE4;
    color: red;
}

.mgPopup .basket .loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}

.mgPopup .basket .loading > div {
    margin: 0 auto;
    max-width: 400px;
    background-color: #FFF;
    padding: 20px;
}