
header.header .topbar {    background-color: #171717;}

@media only screen and (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 918px;
    }
}


.mn-sitebar {
    background: #fff;
    padding: 15.5px 0;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.1);
    z-index: 999 !important;
}
/* --- Header layout fix: logo left, menu right --- */
.mn-sitebar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Keep logo tidy */
.mn-brand{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}


.mn-logo {
    max-height: 103.5px;
    width: auto;
    height: auto;
    display: block;
    margin-top: -3.4px;
    padding-left: 0.3px;
}



/* Menu to the right */
.mn-nav{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex-wrap: wrap;
}

/* Only widen the header container, not every .container on the site */
.mn-sitebar .container{
  max-width: 1299px !important;
}



nav a {font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: none;
    font-variant: normal;
    text-decoration-line: none;
    color: #232323;
    font-size: 16px;
    letter-spacing: 2px;
        padding: 0 18px;
}

/* ===== Logged-out only: hide WHMCS chrome you don't want yet ===== */
.mn-loggedout #header.header .topbar,
.mn-loggedout #header.header .navbar.navbar-light,
.mn-loggedout #header.header .main-navbar-wrapper,
.mn-loggedout .master-breadcrumb {
  display: none !important;
}

.mn-loggedout #header.header {
  border-bottom: none !important;
}

/* Hide WHMCS footer only when logged out (so only mn-footer shows) */
/* Hide WHMCS default footer everywhere (so only mn-footer shows) */
#footer.footer {
  display: none !important;
}

/* Give logged-out pages a little breathing room without WHMCS header */
.mn-loggedout #main-body {
  padding-top: 24px;
}

/* Optional: hide KB search forms on logged-out pages (belt + braces) */
.mn-loggedout form[action*="knowledgebase-search"] {
  display: none !important;
}


.mn-footer {    letter-spacing: -0.4px;
    
    
    
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: #171717;
    padding: 38px 0;
    margin-top: 28px;
    color: #bbbbbb;
    font-size: 13px;
font-family: Open Sans, Arial, sans-serif;
}

.mn-footer a {    color: #b7b7b7;}


.mn-footer__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mn-footer__copy {
  font-size: 13px;

}

.mn-footer__links {
  display: flex;
  gap: 1.2px;
  align-items: center;
  flex-wrap: wrap;
}

.mn-footer__links a {
  text-decoration: none;
  font-weight: 500; color:rgba(255,255,255,0.87);
}

.mn-footer__links a:hover {
  text-decoration: underline;
}

.mn-sep {
}
/* ===== Sticky footer (login / logged-out pages) ===== */
html, body {
  height: 100%;
}

/* Turn the whole page into a column */
body.mn-loggedout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Make the main content take available space */
body.mn-loggedout #main-body {
  flex: 1 0 auto;
}

/* Push your custom footer to the bottom */
body.mn-loggedout .mn-footer {
  margin-top: auto;    /* overrides your current margin-top: 28px */
}
/* ===== Sticky footer for ALL pages (logged in + out) ===== */
html, body {
  height: 100%;
}

/* Make body a flex column */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content should expand to fill space */
#main-body {
  flex: 1 0 auto;
}

/* Footer always pushed to bottom */
.mn-footer {
  margin-top: auto;
}
