form#main-table-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
        max-width: 1200px;
    margin: auto;
}
.main-block-table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ededed;
}
form#choose-category-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.refresh-table {
    display: flex;
    flex-wrap: wrap;
    width: 20%;
    justify-content: center;
}

.id-block-table {
    width: 7%;
    padding-left: 3px;
}
.sku-block-table {
    width: 7%;
    border-right: 1px solid #ededed;
    border-left: 1px solid #ededed;
    padding-left: 3px;
}
.title-block-table {
    width: 35%;
    padding-left: 3px;
    border-right: 1px solid #ededed;
}
.stock-old-block-table {
    width: 3%;
}
.stock-new-block-table input[type="text"] {
    text-align: center;
    background: #fff;
    border: 0;
    box-shadow: unset;
    height: 20px;
    border-bottom: 0;
        margin-bottom: 0;
    border-top: 0;
}
.stock-new-block-table input[type="text"]:focus{
    outline: 2px solid #000!important;
}
.navigation-main-block-table {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #ededed;
    background: #fff;
}
.stock-old-block-table {
    width: 15%;
    text-align: center;
}
.stock-new-block-table {
    width: 15%;
    border-right: 1px solid #ededed;
    border-left: 1px solid #ededed;
}

@media (max-width: 700px){
    form#main-table-form{
        padding: 0 10px;
    }
    .id-block-table,
    .sku-block-table{
        display: none;
    }
    .title-block-table {
        width: 60%;
    }
    .stock-new-block-table {
        width: 25%;
    }
    .refresh-table {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    form#choose-category-form{
        flex-wrap: wrap;
    }
}