.div-minicart-wrapper {
    position: fixed;
    top: 63px;
    right: 5px;
    width: 400px;
    z-index: 5;
    font-size: 11px;
}

.div-minicart-title-wrapper {
    background: var(--theme-primary-color);
    padding: 10px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.minicart-title {
    color: var(--theme-minicart-title-color);
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.div-minicart-content-wrapper {
    background-color: #4e4a49;
    color: #fff;
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cart-popup-product-image {
    max-height: 60px;
}

.div-row-minicart-product-container {
    display: flex;
}

.cart-popup-products-table {
    width: 100%;
}

.cart-popup-products-price-table-cell {
    text-align: right;
}

.cart-popup-product-table-cell {
    padding-bottom: 10px;
}

.cart-popup-close-button {
    color: #333;
}

.cart-popup-no-bottom-border {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cart-popup-upselling-suggestions-title-container {
    background-color: gray; 
    padding: 10px;
}

.cart-popup-upselling-suggestions-title {
    color: #fff;
    font-size: 14px;
}

.div-minicart-suggestions-content-wrapper {
    background-color: #fed75f !important;
    color: #4e4a49 !important;
}

.cart-popup-suggestion-item-image {
    height: 120px;
    max-height: 120px;
}

.cart-popup-suggestion-item-name-container {
    padding-left: 10px;
    vertical-align: top;
}

.cart-popup-suggestion-item-name-span {
    font-size: 16px;
    font-weight: 600;
}

.cart-popup-suggestion-item-weight-span {
    font-size: 14px;
}

.cart-popup-suggestion-item-price-span {
    font-size: 20px;
    font-weight: 600;
}

.cart-popup-suggestion-item-add-to-cart-button-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
}

.cart-popup-suggestion-item-fallback-image {
    background-color: #333!important;
}

.cart-popup-suggestion-left-table-cell {
    width: 130px;
    max-width: 130px;
}

.cart-popup-suggestion-item-add-to-cart-button,
.cart-popup-suggestion-item-add-to-cart-button:hover {
    background-color: #ed1c24;
    border-color: #ed1c24;
    color: #fff;
    cursor: pointer;
}

.cart-popup-suggestion-item-add-to-cart-button-added,
.cart-popup-suggestion-item-add-to-cart-button-added:hover {
    background-color: forestgreen;
    border-color: forestgreen;
    color: #fff;
    cursor: pointer;
}

.cart-popup-added-to-cart-check {
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 479px) {
    .div-minicart-wrapper {
        width: calc(100% - 10px);
        max-height: calc(100% - 50px);
    }

    .cart-popup-suggestion-item-image {
        height: 80px;
        max-height: 80px;
    }

    .cart-popup-suggestion-item-name-span {
        font-size: 14px;
    }

    .cart-popup-suggestion-item-price-span {
        font-size: 18px;
    }

    .cart-popup-suggestion-item-weight-span {
        font-size: 12px;
    }
}