#topBasketSummary {
    display: none;
    position: absolute;
    top: 42px;
    right: 0;
    margin: 0;
    height: auto;
    padding: 10px 0 0 0;
    z-index: 1000;
}

#topMenuContent.floating #topBasketSummary {
    top: 25px;
    right: -8px;
    padding: 12px 0 0 0;
}

#topBasketSummaryHtml {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    width: 300px;
    min-height: 130px;
    height: auto;
    padding: 5px 15px 8px 15px;
    border: solid #ccc 1px;
    background: #fff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: auto;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

/* Hide scrollbar for Chrome, Safari and Opera */
#topBasketSummaryHtml::-webkit-scrollbar {
    display: none;
}

#topBasketSummaryHtml ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#topBasketSummaryHtml ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: start;
    margin: 0;
    padding: 12px 0 12px 0;
    border-bottom: solid #e7e7e7 1px;
}

#topBasketSummaryHtml .img-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 70px;
    margin: 0 10px 0 0;
}

#topBasketSummaryHtml .prod-name {
    width: 170px;
    padding: 0 20px 0 0;
}

#topBasketSummaryHtml .prod-name a {
    color: #000;
    font-weight: 600;
    font-size: 13px;
}

#topBasketSummaryHtml .prod-name a:hover {
    color: #ed1c24;
}

#topBasketSummaryHtml .prod-qty {
    font-size: 11px;
    color: #909090;
    margin: 3px 0 0 0;
}

#topBasketSummaryHtml a.btn-basket-remove-prod {
    position: relative;
    top: -2px;
    width: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #909090;
    font-size: 16px;
}

#topBasketSummaryHtml a.btn-basket-remove-prod:hover {
    color: #222;
}

#topBasketSummaryHtml .prod-prices {
    margin: 4px -17px 0 0;
    display: flex;
    flex-direction: row;
    align-items: normal;
    justify-content: flex-end;
}

#topBasketSummaryHtml .price-base {
    display: inline-block;
    margin: 0 5px 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #161616;
    text-decoration: line-through;
}

#topBasketSummaryHtml .prod-price {
    display: inline-block;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ed1c24;
}

#topBasketSummaryHtml .summary-total {
    margin: 10px 0 8px 0;
    font-size: 12px;
    font-weight: 600;
    text-align: right;
}

#topBasketSummaryHtml .summary-together {
    display: inline-block;
}

#topBasketSummaryHtml .summary-price {
    display: inline-block;
    margin: 2px 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: #ed1c24;
}

#topBasketSummaryHtml .btn-basket {
    padding: 3px 18px;
}

/* only for XX-LARGE */
@media all and (min-width: 1400px) {
}

/* only for X-LARGE */
@media all and (min-width: 1200px) and (max-width: 1399px) {
}

/* only for LARGE */
@media all and (min-width: 992px) and (max-width: 1199px) {
}

/* for EXTRA SMALL and SMALL and MEDIUM */
@media all and (max-width: 991px) {
    #topMenuContent.floating #topItems li #topBasketSummary ul li {
        display: flex !important;
        margin: 0 !important;
    }
}

/* only for MEDIUM */
@media all and (min-width: 768px) and (max-width: 991px) {
}

/* only for SMALL */
@media all and (min-width: 576px) and (max-width: 767px) {
    #topBasketSummary {
        top: 25px;
    }
}

/* up to X-SMALL */
@media all and (max-width: 575px) {
    #topBasketSummary {
        top: 25px;
    }
}
