
/*-- Use For Custom Styling --*/


/* Kill all theme sizing/transform caps on the logo */
.header-with-topbar .navbar .logo img,
.header-with-topbar .navbar .logo .logo-dark,
.header-with-topbar .navbar .logo .logo-light,
.header-with-topbar .navbar .logo-img-exact {
  width: auto !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  transform: none !important;
  -webkit-transform: none !important;
  display: block;
}

/* Target THIS exact file just in case the theme swaps classes */
.header-with-topbar .navbar .logo img[src*="logo-new.png"] {
  width: 240px !important;
  height: 32px !important;
  max-width: none !important;
  max-height: none !important;
}

/* Make sure the navbar has room and centers the logo nicely */
.header-with-topbar .navbar {
  min-height: 70px; /* bump if needed */
}
.header-with-topbar .navbar .logo {
  display: flex;
  align-items: center;
}

/* If the theme still tries to swap/show old logos, hide them */
.header-with-topbar .navbar .logo .logo-dark,
.header-with-topbar .navbar .logo .logo-light {
  display: none !important;
}


