:root {
    --primary: #FF5A00;
    --primary-dark: #e65100;
    --navy: #002D5B;
    --navy-light: #004080;
    --text: #333;
    --text-muted: #666;
    --border: #e5e7eb;
    --bg-light: #f8f9fa;
    --white: #fff;
    --success: #10b981;
    --warning: #f59e0b;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; color: var(--navy); }
.logo-icon { color: var(--primary); font-size: 1.5rem; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-weight: 500; color: var(--text); transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.inline-form { display: inline; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: all .2s; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-block { width: 100%; }

/* Hero */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; background: linear-gradient(rgba(0,45,91,.5), rgba(0,45,91,.3)), url('/images/hero.jpg') center/cover no-repeat; color: var(--white); }
.hero-content { text-align: center; width: 100%; padding: 60px 20px; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 12px; }
.hero p { font-size: 1.2rem; opacity: .9; margin-bottom: 40px; }

/* Search Box */
.search-box { background: var(--white); border-radius: var(--radius); padding: 24px; max-width: 900px; margin: 0 auto; box-shadow: var(--shadow); color: var(--text); }
.search-tabs { display: flex; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.search-tab { padding: 8px 20px; border-radius: 20px; font-weight: 500; cursor: pointer; background: transparent; border: none; color: var(--text-muted); }
.search-tab.active { background: var(--primary); color: var(--white); }
.search-form { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 16px; align-items: end; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; }
.form-control { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: .95rem; font-family: inherit; }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,90,0,.15); }

/* Sections */
.section { padding: 60px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.section-header h2 { font-size: 1.75rem; color: var(--navy); }
.section-header a { color: var(--primary); font-weight: 600; }

/* Cards Grid */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.dest-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; background: var(--white); }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dest-card img { height: 200px; width: 100%; object-fit: cover; }
.dest-card-body { padding: 16px; }
.dest-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.dest-card p { font-size: .875rem; color: var(--text-muted); }

/* Package Card */
.pkg-card { display: flex; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 20px; transition: box-shadow .2s; }
.pkg-card:hover { box-shadow: var(--shadow); }
.pkg-card-img { width: 280px; min-height: 200px; position: relative; flex-shrink: 0; height: 25vh; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card-body { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.pkg-card-body h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.pkg-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .875rem; color: var(--text-muted); margin-bottom: 12px; }
.pkg-inclusions { display: flex; gap: 16px; margin-bottom: 16px; font-size: .85rem; color: var(--text-muted); }
.pkg-inclusions span i { color: var(--primary); margin-right: 4px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.pkg-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.pkg-price small { font-size: .75rem; font-weight: 400; color: var(--text-muted); display: block; }

/* Badges */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-primary { background: var(--primary); color: var(--white); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-navy { background: var(--navy); color: var(--white); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.feature-item { padding: 24px; }
.feature-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
.feature-item h4 { color: var(--navy); margin-bottom: 8px; }
.feature-item p { font-size: .9rem; color: var(--text-muted); }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; font-size: .875rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

/* Two Column Layout */
.page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 32px 0 60px; }
.sidebar { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); height: fit-content; position: sticky; top: 90px; }
.sidebar h3 { font-size: 1rem; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.filter-group { margin-bottom: 24px; }
.filter-group label { display: flex; align-items: center; gap: 8px; padding: 6px 0; cursor: pointer; font-size: .9rem; }
.filter-group input[type="checkbox"] { accent-color: var(--primary); }

/* Package Details */
.pkg-hero { position: relative; height: 400px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.pkg-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding-bottom: 60px; }
.tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab { padding: 12px 24px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; background: none; border-top: none; border-left: none; border-right: none; font-family: inherit; }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.inclusion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.inclusion-item { text-align: center; padding: 16px; background: var(--bg-light); border-radius: 8px; }
.inclusion-item i { font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.inclusion-item strong { display: block; font-size: 1.25rem; color: var(--navy); }

/* Sticky Sidebar */
.customize-sidebar { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.customize-sidebar h3 { color: var(--navy); margin-bottom: 16px; }
.price-breakdown { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 16px; }
.price-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .9rem; }
.price-row.total { font-weight: 700; font-size: 1.1rem; color: var(--navy); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.component-list { margin: 16px 0; }
.component-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.component-item a { color: var(--primary); font-size: .8rem; font-weight: 600; }

/* Wizard Steps */
.wizard-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.wizard-step { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 30px; background: var(--bg-light); font-size: .875rem; font-weight: 500; color: var(--text-muted); }
.wizard-step.active { background: var(--primary); color: var(--white); }
.wizard-step.completed { background: var(--navy); color: var(--white); }
.wizard-step .step-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .75rem; }

/* Hotel/Activity Cards */
.option-card { display: flex; gap: 20px; padding: 20px; border: 2px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; cursor: pointer; transition: border-color .2s; }
.option-card:hover, .option-card.selected { border-color: var(--primary); }
.option-card img { width: 160px; height: 120px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.option-card-body { flex: 1; }
.option-card-body h4 { color: var(--navy); margin-bottom: 4px; }
.amenities { display: flex; gap: 12px; margin-top: 8px; font-size: .8rem; color: var(--text-muted); }
.meal-option { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; cursor: pointer; }
.meal-option.selected { border-color: var(--primary); background: rgba(255,90,0,.04); }
.meal-option input { accent-color: var(--primary); width: 18px; height: 18px; }

/* Dashboard */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0 60px; min-height: calc(100vh - 200px); }
.dashboard-sidebar { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); height: fit-content; }
.user-profile { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.user-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 12px; }
.dashboard-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; color: var(--text); font-weight: 500; margin-bottom: 4px; }
.dashboard-nav a:hover, .dashboard-nav a.active { background: rgba(255,90,0,.1); color: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card { background: var(--white); padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); text-align: center; }
.stat-card h3 { font-size: 2rem; color: var(--primary); margin-bottom: 4px; }
.stat-card p { font-size: .875rem; color: var(--text-muted); }
.quick-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.quick-action { background: var(--white); padding: 24px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s; }
.quick-action:hover { transform: translateY(-2px); }
.quick-action i { font-size: 2rem; color: var(--primary);  }

/* Table */
.data-table { width: 100%; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.data-table th, .data-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
.data-table th { background: var(--bg-light); font-weight: 600; color: var(--navy); }
.status-badge { padding: 4px 12px; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.status-confirmed { background: #d1fae5; color: #065f46; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* Auth */
.auth-page { min-height: calc(100vh - 140px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--bg-light); }
.auth-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-width: 440px; }
.auth-card h2 { color: var(--navy); text-align: center; margin-bottom: 8px; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 32px; }
.auth-card .form-group { margin-bottom: 20px; }
.auth-card .btn { width: 100%; margin-top: 8px; }
.auth-footer { text-align: center; margin-top: 24px; font-size: .9rem; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }
.error-text { color: #dc2626; font-size: .85rem; margin-top: 4px; }

/* Alert */
.alert { padding: 14px 20px; margin: 0; text-align: center; }
.alert-success { background: #d1fae5; color: #065f46; }

/* Page Title */
.page-title { background: var(--bg-light); }
.page-title h1 { color: var(--navy); font-size: 2rem; }

/* Activity Grid */
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.activity-card { border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .2s; }
.activity-card.selected { border-color: var(--primary); }
.activity-card img { height: 140px; width: 100%; object-fit: cover; }
.activity-card-body { padding: 12px; }
.activity-card-body h5 { font-size: .9rem; color: var(--navy); }

/* Review Summary */
.review-section { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.review-section h4 { color: var(--navy); margin-bottom: 12px; display: flex; justify-content: space-between; }
.review-section h4 a { color: var(--primary); font-size: .85rem; font-weight: 600; }

/* Responsive */
@media (max-width: 992px) {
   .main-nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    .search-form { grid-template-columns: 1fr; }
    .page-layout, .detail-layout, .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar, .customize-sidebar { position: static; }
    .pkg-card { flex-direction: column; }
    .pkg-card-img { width: 100%; height: 200px; }
    .features-grid, .stats-grid, .quick-actions, .inclusion-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2rem; }
}
@media (max-width: 576px) {
    .features-grid, .stats-grid, .quick-actions, .inclusion-grid { grid-template-columns: 1fr; }
    .wizard-steps { flex-direction: column; align-items: stretch; }
}

/* Footer
.site-footer{background:var(--navy);color:rgba(255,255,255,.82);margin-top:0;padding:56px 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:42px;padding-bottom:42px}
.site-footer .logo{color:var(--white);margin-bottom:16px}.site-footer .logo-icon{color:var(--primary)}
.site-footer .footer-brand p{max-width:360px;color:rgba(255,255,255,.7);font-size:.92rem;line-height:1.7}
.site-footer h4{color:var(--white);font-size:1rem;margin-bottom:16px}.site-footer ul li{margin-bottom:10px}
.site-footer ul a,.site-footer .footer-grid>div>p{color:rgba(255,255,255,.7);font-size:.9rem;transition:color .2s}
.site-footer ul a:hover{color:var(--primary)}.site-footer .footer-grid>div>p{margin-bottom:10px}
.site-footer .footer-grid>div>p i{width:20px;color:var(--primary);margin-right:6px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding:18px 0;text-align:center}.footer-bottom p{margin:0;color:rgba(255,255,255,.55);font-size:.82rem}
.dest-card img,.pkg-card-img img,.pkg-hero img,.option-card img,.activity-card img{background:var(--bg-light)}
.dest-card img{width:100%;height:170px;object-fit:cover}.pkg-card-img img{width:100%;height:100%;object-fit:cover}
@media(max-width:992px){.footer-grid{grid-template-columns:repeat(2,1fr);gap:30px}}
@media(max-width:576px){.site-footer{padding-top:40px}.footer-grid{grid-template-columns:1fr;gap:28px;padding-bottom:30px}} */

/* Footer */

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #062f5b;
    color: #ffffff;
    margin-top: 0;
}

.site-footer .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main footer */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
    padding: 135px 0 90px;
}


/* Brand */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffffff;
    text-decoration: none;

    font-size: 22px;
    font-weight: 500;
}

.footer-logo strong {
    font-weight: 700;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: #ff5a1f;
    color: #ffffff;

    font-size: 18px;
}


.footer-description {
    max-width: 290px;

    margin: 20px 0 25px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    line-height: 1.8;
}


/* Contact */

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info div {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;
}

.footer-contact-info i {
    width: 18px;
    color: #ff5a1f;
}


/* Columns */

.footer-column h4 {
    position: relative;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}

.footer-column h4:after {
    content: '';

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 9px;

    background: #ff5a1f;
}


.footer-column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.68);

    font-size: 14px;

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-column ul li a:hover {
    color: #ff5a1f;
    padding-left: 4px;
}


/* Social */

.footer-social-column p {
    color: rgba(255,255,255,0.68);

    font-size: 14px;
    line-height: 1.7;

    margin: 0 0 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    color: #ffffff;

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-social-links a:hover {
    background: #ff5a1f;
    transform: translateY(-3px);
}


/* Bottom */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.55);

    font-size: 13px;

    text-decoration: none;
}

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

.footer-bottom-links span {
    color: rgba(255,255,255,0.3);
}


.package-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.tenure-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #fff4ec;
    color: #ff5a00;
    font-size: 13px;
    font-weight: 600;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 50px 0 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}
/* end footer */

nav[role="navigation"] svg {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 767px) {

    /* Main customize layout */
    .detail-layout {
        display: block !important;
    }

    .detail-layout > div,
    .customize-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    /* Hotel card */
    .option-card {
        display: grid !important;
        grid-template-columns: 105px minmax(0, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box;
        overflow: hidden;
    }

    .option-card > img {
        width: 105px !important;
        height: 80px !important;
        object-fit: cover;
        border-radius: 6px;
    }

    .option-card-body {
        min-width: 0 !important;
        width: 100% !important;
    }

    .option-card-body h4 {
        font-size: 15px;
        margin: 0 0 4px;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    .option-card-body p {
        margin: 0 0 6px;
        white-space: normal;
    }

    .option-card .pkg-meta {
        display: flex !important;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5px;
    }

    .option-card .amenities {
        display: flex !important;
        flex-wrap: wrap;
        gap: 6px 10px;
        margin-top: 8px;
    }

    /* Price summary below hotels */
    .customize-sidebar {
        position: static !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 992px) {

    .site-header.menu-open .main-nav {
        display: flex !important;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .site-header.menu-open .header-actions {
        display: flex !important;
        position: absolute;
        top: 45px;
        left: 0;
        right: 0;
        background: white;
        padding: 15px 20px;
        gap: 10px;
    }
}