.productline
{
    margin: 5px 0;
}

.productline
{
    color: var(--color-white);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (max-width: 768px)
{
    .productline
    {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .firstline
    {
        display: none !important;
    }
}

.productline .imgtitle
{
    display: grid;
    grid-template-columns: 30% 70%;
}

.productline .imgtitle .img
{
    height: 100px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.productline .imgtitle .title
{
    margin: 2% 3%;
    line-height: 30px;
    display: inline-table;
}

.productline .pricequantity
{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: auto 0;
    text-align: center;
}

.productline .pricequantity div
{
    margin: auto;
}

.checkout
{
    display: block;
    background: var(--color-green);
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px 0;
    color: var(--color-black);
}