.productlist
{
    padding: 60px 30px;
}
.subheader
{
    text-align: center;
}
.pro-table
{
    width: 70%;
    margin: auto;
}
.pro-head, .pro-content
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;
    transition: 0.3s;
    padding: 5px 10px;
} 
.pro-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pro-head span
{
    font-family: hel-med;
    font-size: 18px;
    line-height: 1;
}
.pro-head span:last-child, .pro-content span:last-child
{
    display: flex;
    justify-content: flex-end;
}
.pro-content span
{
    font-family: hel-reg;
    font-size: 15px;
    line-height: 1;
    width: 100%;
    cursor: pointer;
}
.pro-content:hover
{
    background-color: #d8d8d8;
    border-radius: 5px;
}
.form
{
    padding: 20px;
}
.form form
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 70%;
    grid-gap: 5px;
    margin: auto;
}
.form form textarea
{
    grid-column-start: 1;
    grid-column-end: 3;
    min-height: 200px
}
@media screen and (max-width: 900px)
{
    .productlist, .form
    {
        min-height: auto;
        padding: 80px 20px;
    }
    .pro-table
    {
        width: 100%;
    }    
    .form
    {
        padding: 20px;
    }
    .form form
    {
        width: 100%;
    }
}
@media screen and (max-width: 500px)
{
    .pro-head span
    {
        font-size: 15px;
    }
    .pro-content span
    {
        font-size: 12px;
    }
    .form form
    {
        grid-template-columns: auto;
    }
    .form form textarea
    {
        grid-column:auto ;
    }
}