/* TEMPORARY */
/* A quick fix to make a customer's header white and handle other necessary details, until the Modern UI Color Theme setting in v12.3.0 can be fixed */
.top-header,
.site-header,
.site-branding,
.search-box-wrap.hidden-on-mobile,
.middle-bar {
  background-color: white !important;
}
/* Sets the dropdown icons and text (User login, cart, etc) to the primary color */
.toolbar-item .text-label .formatted-string,
.toolbar-item .header-icon {
    color: var(--c-primary);
}
/* Sets the icons and help links to the top right of the page to the primary color */
.top-header--right .icon,
.top-header--right .formatted-string,
.top-header--right .top-header--contact-link {
    color: var(--c-primary);
}
/* Set the icons and text on the stuck toolbar to be white */
.site-header.navbar-stuck .toolbar-item .text-label .formatted-string,
.site-header.navbar-stuck .toolbar-item .header-icon {
    color: white !important;
}

/* Sets the banner to be centered and banner text to be center-aligned */
.home-panel.home-banner .card {
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* Sets the footer background color to the secondary color */
.site-footer {
	background-color: var(--c-secondary);
}

/* Adjust the logo up to give more spacing */
.site-branding {
	padding-bottom: 15px !important;
}