.checkout-product-images-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.checkout-product-images-row img {
    width: 25px;
}

.checkout-product-image {
    background-color: var(--color-5);
    width: 80px;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.checkout-product-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--color-2);
    border-radius: 20px;
}

.checkout-product-quantity .image-container {
    border-radius: 50%;
    background-color: var(--color-1);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.checkout-product-quantity img {
    width: 10px;
    height: 10px;
}

.checkout-product-quantity p {
    padding: 0px 5px;
    color: var(--color-1);
}

.money-row {
    display: flex;
    flex-direction: column;
    align-items: end;
    grid-row-start: 1;
    grid-row-end: 5;
    grid-column-start: 2;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .checkout-product-images-row img {
        width: 35px;
    }

    .checkout-product-image {
        width: 130px;
    }

    .checkout-product-quantity img {
        width: 15px;
        height: 15px;
    }
}
