.category{
    padding: 0 60px 30px 0;
    width: calc(50% - 30px);
    float:left;
}

    .category:nth-child(2n+1){
        clear: both;

    }

    .category:nth-child(2n)
    {
        padding-right: 0;
    }

    .category__title
    {
        text-transform: capitalize;
        color: #062b48;
        font-weight: 800;
        font-size: 20px;

        padding-bottom: 30px;
    }

    .category__product{
        margin-bottom: 10px;
    }

        .category__product--title
        {
            color: #6d6d6d;

        }

            .category__product--title:first-child
            {
                padding-top:0;
            }

        .category__product--price
        {
            font-size: 12px;
            color: #bababa;
        }


        .category__product--amount input
        {
            font-family: 'open sans';
            padding: 0px 12px;
            display: inline-block;
            border: 1px solid #d8d8d8;
            border-radius: 4px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            width: 194px;
            height: 40px;
            font-size: 12px;
            color: #333;
            width: 60px;
            float:right;
        }

        .category__product:after{
            clear:both;
            content:" ";
            display:block;
        }

@media screen and (max-width:1023px)
{
    .category
    {
        float:none;
        clear: both;
        width: 100%;
    }
}