/*
|--------------------------------------------------------------------------
| AÇÕES DO PRODUTO
|--------------------------------------------------------------------------
*/

.dfx-erp-product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;

    width: 100%;
    margin-top: 14px;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.dfx-erp-product-actions .button,
.dfx-erp-product-actions button,
.dfx-erp-product-actions a {
    width: 100%;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .dfx-erp-product-actions {
        grid-template-columns: 1fr;
    }
}
