.manage_product_main .manage_product_inner,
.edit_product_main .edit_product_inner{
    padding: 20px;
    min-height: auto;
    max-width: 700px;
    position: relative;
    margin-bottom: 50px;
    margin-top: 20px;
}

.manage_product_main .manage_product_form_button,
.edit_product_main .edit_product_form_button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 15px;
}

.manage_product_main .manage_product_form_button button,
.edit_product_main .edit_product_form_button button {
    background: linear-gradient(180deg, #005288 0%, rgba(0, 82, 136, 0.75) 100%);
    border-color: var(--theme-color);
    padding: 10px;
    font-weight: bold;
}

.manage_product_main .manage_product_form_button a{
    background: linear-gradient(180deg, #005288 0%, rgba(0, 82, 136, 0.75) 100%);
    border-color: var(--theme-color);
    padding: 10px;
    font-weight: bold;
    max-width: 300px;
    display: block;
    margin: 0 auto;
}

.manage_product_table table,
.edit_product_table table {
    width: 100%;
    margin-bottom: 50px;
    color: var(--text-color);
}

.manage_product_table table thead th,
.edit_product_table table thead th {
    padding-bottom: 10px;
    border-bottom: 1px solid #B5B5B5;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}

.manage_product_table table tbody tr.not_active,
.edit_product_table table tbody tr.not_active {
    color: #B5B5B5;
}

.manage_product_table table tbody tr td,
.edit_product_table table tbody tr td {
    padding: 10px 0;
    font-weight: 700;
}

.edit_product_table table td.selection_box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    display: grid;
    place-content: center;
    appearance: none;
    border: 1px solid #909090;
    border-radius: 4px;
    box-shadow: none !important;
    cursor: pointer;
    -webkit-appearance: none;
    margin: 0 auto;
}

.edit_product_table table td.selection_box input[type="checkbox"]:before {
    content: "";
    width: 20px;
    height: 20px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 2em #005288;
    border-radius: 4px;
}

.edit_product_table table td.selection_box input[type="checkbox"]:checked::before {
    transform: scale(1);
}
