/**
 * laws Content Management System
 * @version 4.x
 * @author VINADES.,JSC <contact@vinades.vn>
 * @copyright (C) 2009-2021 VINADES.,JSC. All rights reserved
 * @license GNU/GPL version 2 or any later version
 * @see https://github.com/laws The laws CMS GitHub project
 */

/* Các tùy chỉnh CSS của giao diện nên để vào đây */
/* default/css/custom.css
   Mục đích: mở rộng chiều ngang container cho module cụ thể,
   đồng thời giữ responsive trên mobile.
*/

/* FULL WIDTH TOÀN SITE — KHÔNG CÒN LỀ TRÁI PHẢI */
body .wraper,
body .site-container,
body .container,
body .wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

/* Các hàng, cột hiển thị tràn toàn màn hình */
body .row,
body .col-md-24 {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Xóa mọi giới hạn max-width do theme gốc quy định */
body [class*="container"],
body [class*="wrap"] {
  max-width: 100% !important;
}

/* Responsive: vẫn full width trên mobile */
@media (max-width: 768px) {
  body .wraper,
  body .container {
    padding: 0 !important;
  }
}