/* ==========================================================================
   vtkMTP Theme - Modern Document Management
   Government-style design with deep blue/teal gradient
   ========================================================================== */

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Primary Colors - Blue */
    --primary: #0A6FBB;
    --primary-dark: #0C44AD;
    --primary-light: #2569BC;
    --primary-gradient: linear-gradient(135deg, #0A6FBB 0%, #2569BC 100%);
    --primary-gradient-hover: linear-gradient(135deg, #0C44AD 0%, #0A6FBB 100%);

    /* Accent */
    --accent: #2569BC;
    --accent-light: #4a90d9;
    --accent-dark: #0C44AD;

    /* Neutral Colors */
    --text: #263238;
    --text-secondary: #546e7a;
    --text-muted: #90a4ae;
    --bg-body: #eceff1;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --border: #cfd8dc;
    --border-light: #e8edf0;

    /* Status Colors */
    --success: #2e7d32;
    --info: #0288d1;
    --warning: #f57f17;
    --danger: #c62828;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', 'Be Vietnam Pro', sans-serif;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text);
    background: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Header
   ========================================================================== */

/* Top Bar */
.header-topbar {
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.header-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-30%);
    }

    50% {
        transform: translateX(30%);
    }
}

.topbar-date {
    font-weight: 600;
    white-space: nowrap;
}

.topbar-date i {
    margin-right: 6px;
    opacity: 0.8;
}

.topbar-welcome {
    overflow: hidden;
    position: relative;
}

.welcome-marquee {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-weight: 400;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.welcome-marquee:hover {
    animation-play-state: paused;
}

/* Logo Banner */
.header-banner {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    max-height: 80px;
    width: auto;
    transition: var(--transition);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 4px 0 0;
}

/* Header with Banner Background */
#header.has-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

#header.has-banner .header-topbar {
    background: rgba(10, 111, 187, 0.85);
}

#header.has-banner .header-banner {
    background: transparent;
    border-bottom: none;
    padding: 20px 0;
}

#header.has-banner .logo-text h1 {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

#header.has-banner .logo-text p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

#header.has-banner .logo-img {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.3));
}

/* Main Navigation */
.main-navbar {
    background: #0A6FBB !important;
    border: none;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navbar .navbar-brand {
    color: #fff !important;
    font-size: 20px;
    padding: 10px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-fast);
}

.main-navbar .navbar-brand:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-navbar .navbar-nav .nav-link,
.main-navbar .navbar-nav>li>a {
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 16px !important;
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.main-navbar .navbar-nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-light);
    transform: translateX(-50%);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.main-navbar .navbar-nav>li>a:hover::after,
.main-navbar .navbar-nav>li.current-menu-item>a::after {
    width: 80%;
}

.main-navbar .navbar-nav>li>a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Sub Menu */
.main-navbar .navbar-nav>li {
    position: relative;
}

.main-navbar .navbar-nav .sub-menu,
.main-navbar .navbar-nav .dropdown-menu {
    background: var(--bg-white);
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent);
    padding: 0;
    min-width: 260px;
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    margin: 0;
}

.main-navbar .navbar-nav>li:hover>.sub-menu {
    display: block;
}

.main-navbar .sub-menu li {
    position: relative;
}

.main-navbar .sub-menu li a {
    color: var(--text) !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    border-bottom: 1px dashed var(--border-light);
    display: block;
    transition: var(--transition-fast);
}

.main-navbar .sub-menu li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent);
    font-size: 12px;
}

.main-navbar .sub-menu li a::after {
    display: none !important;
}

.main-navbar .sub-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary) !important;
    padding-left: 22px !important;
}

.main-navbar .sub-menu li:last-child a {
    border-bottom: none;
}

/* Nested Sub Menu */
.main-navbar .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 0;
}

.main-navbar .sub-menu li:hover>.sub-menu {
    display: block;
}

/* Mobile Toggle */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

.navbar-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.site-main {
    min-height: 60vh;
}

/* Content Card */
.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.card-header-custom {
    background: var(--primary-gradient);
    padding: 14px 20px;
    position: relative;
    overflow: hidden;
}

.card-header-custom::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08));
}

.card-header-custom h2,
.card-header-custom h3 {
    color: #fff;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-header-custom h2 i,
.card-header-custom h3 i {
    margin-right: 10px;
    opacity: 0.8;
}

.card-header-secondary {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
}

.card-body-custom {
    padding: 20px;
}

/* ==========================================================================
   Documents Table
   ========================================================================== */
.documents-table {
    font-size: 13px;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.documents-table thead {
    position: sticky;
    top: 0;
    z-index: 1;
}

.documents-table thead th {
    background: linear-gradient(180deg, #e3f2fd, #bbdefb);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 12px 10px;
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
    text-align: center;
}

.documents-table tbody tr {
    transition: var(--transition-fast);
}

.documents-table tbody tr:hover {
    background-color: #e3f2fd !important;
    transform: scale(1.001);
}

.documents-table tbody td {
    padding: 10px;
    vertical-align: middle;
    border-color: var(--border-light);
}

.col-ky-hieu {
    width: 20%;
}

.col-ngay {
    width: 14%;
}

.col-loai {
    width: 14%;
}

.col-trich-yeu {
    width: 52%;
}

.td-so-ky-hieu a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.td-so-ky-hieu a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.td-ngay {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.td-loai a {
    font-size: 12px;
    color: var(--accent);
}

.td-trich-yeu {
    color: var(--text);
    line-height: 1.5;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

/* Ensure table doesn't collapse on mobile */
.documents-table {
    min-width: 700px;
}

/* ==========================================================================
   Single Document
   ========================================================================== */
.single-doc-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 10px 0 15px;
    text-transform: uppercase;
}

.doc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 10px 0;
}

.doc-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.doc-meta i {
    color: var(--accent);
    font-size: 14px;
}

.doc-detail-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.doc-detail-table thead th {
    background: linear-gradient(180deg, #e3f2fd, #bbdefb);
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
    padding: 12px;
}

.doc-detail-table .td-label {
    background: var(--bg-light);
    font-size: 13px;
    width: 25%;
    white-space: nowrap;
}

.doc-detail-table td {
    padding: 10px 14px;
    border-color: var(--border-light);
}

.badge {
    font-weight: 500;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

/* File Preview */
.view-iframe {
    margin-top: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

.doc-iframe {
    width: 100%;
    height: 700px;
    border: none;
}

/* Search Highlight */
.search-highlight {
    background: #fff176;
    color: var(--danger);
    font-weight: 700;
    padding: 1px 3px;
    border-radius: 2px;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    font-size: 13px;
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.breadcrumb a {
    color: var(--primary);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar-area {
    top: 80px;
}

.sidebar-area .widget {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.sidebar-area .widget-title {
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.sidebar-area .widget-title::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08));
}

.sidebar-area .widget-title h3 {
    color: #fff;
    margin: 0;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sidebar-area .widget-title h3 i {
    margin-right: 8px;
    opacity: 0.8;
}

.sidebar-area .widget-content {
    padding: 16px;
}

/* Sidebar Menu */
.sidebar-area .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-area .menu li {
    border-bottom: 1px dashed var(--border-light);
}

.sidebar-area .menu li:last-child {
    border-bottom: none;
}

.sidebar-area .menu li a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition-fast);
}

.sidebar-area .menu li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent);
    font-size: 11px;
}

.sidebar-area .menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 18px;
}

.sidebar-area .menu li .sub-menu {
    display: none;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    z-index: 10;
}

.sidebar-area .menu li:hover>.sub-menu {
    display: block;
}

/* ==========================================================================
   Search Form Widget
   ========================================================================== */
.widget-search .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.widget-search .form-control,
.widget-search .form-select {
    font-size: 13px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 8px 12px;
    transition: var(--transition-fast);
}

.widget-search .form-control:focus,
.widget-search .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.btn-search {
    background: var(--primary-gradient) !important;
    border: none !important;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-search:hover {
    background: var(--primary-gradient-hover) !important;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* ==========================================================================
   Visitor Counter Widget
   ========================================================================== */
.visitor-stats {
    padding: 0;
}

.stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stats-list li {
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px dashed var(--border-light);
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list li i {
    font-size: 12px;
    width: 16px;
    text-align: center;
}

/* ==========================================================================
   Banner Links Widget
   ========================================================================== */
.banner-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-item {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.banner-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.banner-item:hover img {
    opacity: 0.85;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.mtp-pagination {
    margin: 20px 0;
}

.mtp-pagination .pagination {
    gap: 4px;
}

.mtp-pagination .page-link {
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;

    border-color: var(--border);
    transition: var(--transition-fast);
}

.mtp-pagination .page-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.mtp-pagination .page-item.active .page-link {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.mtp-pagination .page-info {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: 30px;
}

.footer-main {
    background: #2569BC;
    color: rgba(255, 255, 255, 0.85);
    padding: 15px 0 15px;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 3px;
}

.footer-title i {
    margin-right: 8px;
    opacity: 0.7;
}

.footer-org {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    padding: 6px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-list li i {

    color: #ffffff;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #ffffff;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    background: #0C44AD;
    color: #fff;
    padding: 15px 0;
    font-size: 13px;
}

.footer-bottom a {
    color: #FFD700;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
.btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-success {
    background: var(--success) !important;
    border-color: var(--success) !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-success:hover {
    filter: brightness(1.1);
    box-shadow: var(--shadow-sm);
}

.btn-info {
    background: var(--info) !important;
    border-color: var(--info) !important;
    color: #fff !important;
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   Related Documents
   ========================================================================== */
.related-docs {
    border-top: 2px solid var(--border);
    padding-top: 20px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991.98px) {
    .header-banner {
        padding: 10px 0;
    }

    .logo-img {
        max-height: 60px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .main-navbar .navbar-collapse {
        background: #0C44AD;
        padding: 10px 0;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .main-navbar .navbar-nav>li>a {
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-navbar .sub-menu {
        position: static !important;
        box-shadow: none !important;
        border-top: none !important;
        background: rgba(0, 0, 0, 0.1) !important;
        border-radius: 0 !important;
    }

    .main-navbar .sub-menu .sub-menu {
        position: static !important;
    }

    .main-navbar .sub-menu li a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding-left: 30px !important;
    }

    .main-navbar .navbar-nav>li:hover>.sub-menu {
        display: block;
    }

    .sidebar-area {
        position: static;
    }

    .col-ky-hieu {
        width: auto;
    }

    .col-ngay {
        width: auto;
    }

    .col-loai {
        width: auto;
    }

    .col-trich-yeu {
        width: auto;
    }

    .single-doc-title {
        font-size: 18px;
    }

    .doc-detail-table .td-label {
        width: 35%;
    }

    .doc-iframe {
        height: 500px;
    }
}

@media (max-width: 575.98px) {
    .topbar-date {
        font-size: 12px;
    }

    .logo-text h1 {
        font-size: 15px;
    }

    .card-header-custom h2,
    .card-header-custom h3 {
        font-size: 14px;
    }

    .documents-table {
        font-size: 12px;
    }

    .documents-table thead th {
        font-size: 11px;
        padding: 8px 6px;
    }

    .documents-table tbody td {
        padding: 8px 6px;
    }

    .doc-meta {
        flex-direction: column;
        gap: 6px;
    }

    .doc-iframe {
        height: 400px;
    }

    .footer-main {
        padding: 25px 0 20px;
    }

    .footer-title {
        font-size: 14px;
    }

    .footer-block {
        color: #fff;
    }

}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {

    .header-topbar,
    .main-navbar,
    .sidebar-area,
    .site-footer,
    .btn-back-to-top,
    .mtp-pagination,
    .btn-doc-online,
    .related-docs {
        display: none !important;
    }

    .col-lg-9 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .content-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}