.ppu-offer__products {
    position: relative;
    clear: both;
}
.ppu-offer__products_slider {
    position: relative;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.ppu-offer__products_container::-webkit-scrollbar {
    display: none;
}

.ppu-offer__nav_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.ppu-offer__left_nav_button {
    z-index: 1000000;
    left: 5px;
}

.ppu-offer__right_nav_button {
    z-index: 1000000;
    right: 5px;
}

.ppu-offer__products_container {
    display: flex;
    overflow-x: auto;
    min-height: 300px;
}

.ppu-offer__product {
    flex: 0 0 auto;
    width: 200px;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}

.ppu-offer__product_image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: cover;
    /* Make the image centered horizontally */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.ppu-offer__product_name {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.ppu-offer__product_price {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ppu-offer__product_original_price {
    font-size: 12px;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 5px;
}

.ppu-offer__product_price>div:nth-child(2) {
    font-weight: bold;
    color: #333;
}

.ppu-offer__products_container.ppu-offer__center_items {
    justify-content: center;
}

.ppu-button.ppu-offer__product_add_product_button,
.ppu-button.ppu-offer__product_remove_product_button {
    margin: 10px auto;
    width: 75%;
    height: 37px;
}

.ppu-button.ppu-offer__product_add_icon,
.ppu-button.ppu-offer__product_added_icon {
    font-size: 20px;
}

.ppu-offer__product_add_icon:before {
    content: "\f132";
    color: green;
}

.ppu-offer__product_added_icon:before {
    content: "\f147";
    color: green;
}

.ppu-offer__product_added_icon:hover:before {
    content: "\f335";
    color: red;
}

.ppu-offer__products_confirm_update_order {
    margin: auto;
}

/* Button styling */
.ppu-button {
    display: block;
    max-width: 300px;
    width: 100%;
    height: 40px;
    border: none;
    background-color: #eee;
    color: #333;
    font-size: 16px;
    padding: 5px;
}

/* Loading block */
.ppu-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #eee; */
    z-index: 10000000;
    background-color: #fff;
}

.ppu-hidden {
    display: none !important;
}


.ppu-offer__products_adding {
    display: grid;
    grid: 1fr 1fr;
    grid-gap: 10px;
    justify-items: center;
}

.ppu-offer__products_total {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}
