

body.slideNav {
	overflow: hidden;
	pointer-events: none;
}

.mobileHide {
	display: none
}

header>.menu,
#mainnav>.menu,
.primary,
.secondary {
	display: block
}

.home .main {
	padding: 0
}

.home .main #content.right {
	background: #fff;
	border-radius: 0
}

.categoryList h2 {
	font-size: 1em
}

.categoryList a {
	width: 48%;
	margin: 0 3% 3% 0
}

.categoryList a:nth-child(2n+2) {
	margin-right: 0 !important
}

.categoryList a:nth-child(3n+3) {
	margin-right: 3%
}

.categoryList a:nth-child(4n+4) {
	margin-right: 0
}

body>header {
	text-align: left;
	position: relative;
	width: 100%;
	background: #fff;
	padding: 0
}

body>header:before {
	background-color: #fff;
	content: '';
	display: block;
	height: 100vh;
	height: 100dvh;
	left: 100vw;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: left 0ms ease 200ms, opacity 200ms ease;
	width: 100vw;
	z-index: 3;
}

body.slideNav>header:before {
	left: 0;
	opacity: .85;
	transition: left 0ms ease 0ms, opacity 200ms ease;
}

body>header>.wrap {
	display: flex;
	flex-direction: column;
}

#brand {
	align-items: center;
	border-radius: 8px;
	position: relative;
	line-height: 3.75rem;
	height: 3.75rem;
	width: 13em;
	display: flex;
	padding: 0 1rem;
	order: 2;
}

#brand:focus {
	outline: 2px solid var(--bright-blue);
	outline-offset: -4px;
}

#brand img {
	width: 100%; 
	height: auto;
}

#ancillary {
	background: #ececec;
	border-top: 1px solid #fff;
	order: 1;
	width: 100%
}

#ancillary nav {
	display: block;
}

#ancillary nav ul {
	display: table-row;
	width: 100%
}

#ancillary li {
	display: table-cell;
	float: none;
	text-align: center;
	width: 1%;
	border: 0
}

#ancillary li+li,
#ancillary li:last-child {
	border-left: 1px solid #fff
}

#ancillary li a,
#ancillary li.on a {
	display: block;
	margin: 0;
	color: #666;
	line-height: 2.5rem;
	font-size: 0.875em;
}

#ancillary li a:focus,
#ancillary li.on a:focus {
	outline: 2px solid var(--bright-blue);
	outline-offset: -2px;
}

#ancillary>div {
	padding: 0;
	margin: 0
}

#ancillary > a,
#ancillary .cartInfo {
	display: none
}

#navContainer {
	background-color: var(--navy);
	bottom: 0;
	left: 100%;
	max-height: 100vh;
	max-height: 100dvh;
	overflow: auto;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: left .2s ease, visibility .2s ease .2s;
	visibility: hidden;
	width: 75%;
	z-index: 3;
	-webkit-overflow-scrolling: touch;
}

body.slideNav #navContainer {
	left: 25%;
	pointer-events: all;
	transition: left .2s ease;
	visibility: visible;
}

#navContainer nav {
	display: inline;
}

#navContainer ul {
	display: block;
	margin: 0;
	padding-left: 0;
	width: 100%;
}

#navContainer li {
	border-top: 1px solid rgba(255,255,255,0.125);
	display: block;
	position: relative;
	width: 100%;
}

#navContainer li li {
	border-top: 1px solid rgba(255,255,255,0.125);
}

#navContainer :is(a, .toggleNav) {
	color: #fff;
	font-style: normal;
	font-weight: 400;
	font-size: 1em;
	display: block;
	line-height: 2.75em;
	padding: 0 1rem;
	width: 100%;
}

#navContainer :is(a, .toggleNav):is(:hover, :focus-visible) {
	color: #fff;
	background: var(--bright-blue);
}

#navContainer .toggleNav {
	background: transparent;
  border: 0;
  border-radius: 0;
	text-align: left;
  text-transform: none;
}

#navContainer .toggleNav::before {
  background: url('/images/icons/close.svg') no-repeat left center / contain;
  content: '';
  line-height: 1;
  margin: 0 .5em 0 0;
  padding-right: .75em;
}

#navContainer li.on a {
	color: #FFF;
	background-color: var(--blue);
}

#navContainer li.open {
	background-color: var(--blue);
}

#navContainer li>button {
	background: rgba(255,255,255,0.5);
	box-shadow: none;
	border-radius: 0;
	border: 0;
	display: block;
	height: 2.4375em;
	position: absolute;
	right: 0;
	top: 0;
	width: 2.4375em;
}

#navContainer li>button:focus {
	background: #fff;
}

#navContainer .menu-item-has-children > div {
	display: grid;
	grid-template-rows: 0fr;
	transition: ease all 350ms;
}

#navContainer .menu-item-has-children.open > div {
	grid-template-rows: 1fr;
}

#navContainer ul ul {
	font-size: .8em;
	min-height: 0;
	overflow: hidden;
}

#navContainer ul ul ul {
	display: none;
}

#navContainer #mainnav ul ul a {
	padding-left: 2rem;
}

#navContainer ul ul li.on a {
	background-color: darkred;
}

#navContainer li>button::before,
#navContainer li>button::after {
	background-color: #000;
	content: '';
	display: block;
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform-origin: center center;
	transition: transform .2s ease;
	width: 50%;
}

#navContainer li>button::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

#navContainer li>button::after,
#navContainer li.open > button:before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.primary {
	background-color: #113568;
	border-bottom: 3px solid #011839;
	width: 100%;
	display: flex;
}

.primary>* {
    background: none;
	border: 0;
    border-radius: 0;
	box-shadow: none;
    color: #fff;
    display: flex;
	flex: 1 1 auto;
    font-size: 0.875em;
    font-style: normal;
    font-weight: 400;
    gap: 0.35em;
    justify-content: center;
    line-height: 2.75rem;
    padding: 0 1rem;
    padding: 0;
    text-align: center;
    white-space: nowrap;
}
.primary>*:is(:hover, :focus) {
    background: var(--bright-blue);
	color:#fff;
}

.primary>*+* {
	border-left: 1px solid #011839
}

body>header .primary .menu:after {
	content: "";
	display: block;
	background: url(/images/navigation/bars-white.svg) no-repeat center;
	background-size: contain;
	width: .7em;
}

header .login:after {
	content: "\f023";
}

.secondary {
	align-items: center;
	height: 3.75rem;
	padding: 0 .5rem;
	position: absolute;
	right: 0;
	text-align: center;
	top: 2.5rem;
	display: flex;
}

.secondary .navIcon {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 4px;
	color: var(--red);
	padding: 0;
	display: flex;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
}

.secondary .navIcon:focus {
	outline: 2px solid var(--bright-blue);
}

.secondary .navIcon[aria-expanded=true] {
	background: var(--red);
}

.secondary .navIcon[aria-expanded=true] img {
	filter: brightness(100);
}

.secondary .navIcon img {
	height: 1em;
	object-fit: contain;
	object-position: center;
	vertical-align: middle;
	width: 1.5em;
}


body>nav .menu:before {
	content: "";
	display: inline-block;
	margin-right: .25em;
	background: url(/images/navigation/bars-white.svg) no-repeat center bottom;
	background-size: contain;
	width: .7em;
	height: .7em;
}

header .menu {
	cursor: pointer
}

header>.menu {
	position: fixed;
	right: -100%;
	top: 0;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	z-index: -1;
	opacity: 0;
	background-color: rgba(255, 255, 255, .5)
}

.scroll header>.menu {
	opacity: 1;
	z-index: 2;
	right: 0
}

.scroll header>.menu img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1em;
	transform: translate(-50%, -50%);
	height: auto;
}

/* smart search */
body>header>.search-container,
body.management>header>.search-container,
body.management2>header>.search-container {
	background: #fff;
	border-bottom: 1px solid #ccc;
	height: auto;
	left: 0;
	padding: 0 1em 1em;
	right: 0;
	top: var(--header-offset);
	width: 100%;
	z-index: 10;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(0.625em);
	opacity: 0;
	pointer-events: none;
	position: absolute;
}

body>header>.search-container.visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body>header>.search-container:after {
	background: rgba(07, 34, 64, .9);
	content: "";
	height: calc(100vh - 100px);
	left: 0;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 3.75em;
	width: 100vw;
}

.search-autocomplete-window,
body.management .search-autocomplete-window,
body.management2 .search-autocomplete-window {
	background: none;
	padding: 1em;
	top: calc(var(--header-offset) + 3.375em);
	z-index: 11;
}

#alertApp + header .search-autocomplete ul li:nth-child(5) {
	display: none;
}

body > header .search input {
    background: #efefef;
    color: #000;
    border-radius: 6px;
    width: 100%;
}

body > header .search input:focus {
	background: #efefef;
    box-shadow: inset 0 0 0 1px #4ca2eb;
    color: #000;
}

body > header .search button {
    filter: brightness(0);
}


body>header .search input::-webkit-input-placeholder {
	color: #666;
	opacity: 1;
}

body>header .search input::-moz-placeholder {
	color: #666;
	opacity: 1;
}

body>header .search input:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

body>header .search input:-moz-placeholder {
	color: #666;
	opacity: 1;
}


.search-autocomplete {
	max-height: calc(100vh - var(--header-offset) - 62px);
	max-width: 100%;
	overflow: auto;
}

.search-container:not(.visible)+.search-autocomplete-window.is-visible {
	opacity: 0;
	transform: translateY(0.5rem);
	visibility: hidden;
}



/* HAMBURGER */
body,
body>nav,
header>.menu {
	transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s
}







/* TYPOGRAPHY --------------------*/
h1 {
	font-size: 1.6em;
	margin-bottom: 1em
}

h1+h2 {
	margin-top: -.7em
}

h2 {
	font-size: 1.45em
}

h3 {
	font-size: 1.3em
}

h4,
th {
	font-size: 1.2em
}

h5,
h6 {
	font-size: 1.1em
}

sup,
sub {
	font-size: .6em;
	line-height: .6em;
	vertical-align: baseline;
	position: relative
}

sup {
	bottom: 1ex
}

sub {
	top: .5ex
}

table {
	border-collapse: collapse
}

.req {
	color: #c00
}

#content>section {
	margin: 2em 0
}



body>nav .search,
body>footer .search {
	width: 100%;
	display: block
}

body>nav .search {
	padding: 1rem;
	border-top: 1px solid rgba(255, 255, 255, .2);
	position: relative;
	overflow: auto
}

.search input[type="search"] {
	height: 2em;
	width: calc(100% - 2em);
	line-height: 2em;
	font-size: 1em;
	padding: 0 0 0 .5em;
	border: 0;
	float: left;
	background-color: #fff
}

.search button {
	height: 2em;
	width: 2em;
	line-height: 2em;
	font-size: 1em;
	padding: 0;
	border: 0;
	float: left;
	-webkit-appearance: none;
	background-color: #fff
}

.search button img {
	margin: .5em
}

main>div>aside {
	font-size: 1em
}


#mainnav div>ul {
	display: block
}

#mainnav div>ul>li {
	display: block;
	width: 100%;
	text-align: left
}

#mainnav div>ul>li>a {
	font-size: 1em;
	display: block;
	padding: 0 1em;
	border-left: 0
}

figure,
#content .photoright,
#content .photoleft {
	width: 100% !important;
	max-width: 100% !important;
	margin: 1em 0 !important;
	padding: 0 !important
}






/* HOMEPAGE --------------------*/

.callouts {
	display: block
}

.callouts>div {
	display: block;
	width: 100%
}

.callouts p {
	font-size: 1em
}

.categories {
	padding: 2em 1em 3em
}

.home .categoryList {
	gap: 1em;
}

.home .categoryList {
    gap: 1em;
}

.home .categoryList li {
  	width: calc(50% - 0.5em);
}

.help {
	padding-top: 1.5em;
	font-size: 1em;
	margin-top: 1.5em;
	text-align: center;
	clear: both;
	float: left;
	width: 100%;
}

.help>* {
	display: block;
	margin-bottom: 0.5em
}

.help>span {
	font-size: 1.15em;
	display: block
}

.help .button {
	font-size: 1em
}

.home .main #content.right {
	max-width: 100%;
	width: 100%;
	padding: 2em 1em 2em
}

.home .main #content.right h1 {
	font-size: 1.75em;
	line-height: 120%
}

.home .main #content.right p {
	font-size: 1em;
	line-height: 140%
}







/* MAIN --------------------*/
.pageHeader {
	display: none
}

.breadcrumb {
	font-size: 0.75rem;
	line-height: 1.25em
}

main {
	padding: 2rem 1rem;
	clear: both;
	word-wrap: break-word
}

main>.wrap {
	padding-top: 0
}

#content {
	max-width: 40rem;
	padding-right: 0;
	width: 100%;
	margin: 0 auto;
	min-height: 50vh
}

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

#content .photoright,
#content .photoleft {
	max-width: 40%;
	max-height: 40%;
	height: auto;
	border-radius: 3px
}

#content .photoright img,
#content .photoleft img {
	max-width: 100%;
	height: auto;
	border-radius: 3px
}

main>div>aside {
	width: 100%
}

main>div>aside section {
	display: none
}

img.phototreatment,
.phototreatment img {
	max-width: 100%;
	max-height: 120px
}

.photoright {
	float: right;
	padding: 0 0 10px 10px;
	clear: right
}

.photoleft {
	float: left;
	padding: 0 10px 10px 0;
	clear: left
}

.muted {
	opacity: 0.5;
	filter: alpha(opacity=50)
}

.highlight {
	background: #FFC;
	padding: 1em;
	margin: .7em 0
}

#content * h1 {
	font-size: 1.2em
}

nav.breadcrumb {
	font-size: .8em
}

nav.breadcrumb a {
	white-space: nowrap;
	overflow: visible;
	text-overflow: ellipsis;
	max-width: 35%;
	display: inline-block;
	vertical-align: bottom
}

nav.breadcrumb a:last-child {}

.advancedSearch {
	padding-top: 0;
	border-bottom: 1px solid #ccc;
	padding-bottom: 1.5em;
}

.advancedSearch .inputGroup .half {
	width: 100%;
	padding: 0 0 1.5em 0;
	border-bottom: 1px solid #ccc;
	margin-bottom: 1.5em
}

.advancedSearch .inputGroup {
	border: 0;
	margin: 0;
	padding: 0
}

.advancedSearch .inputGroup.full input[type="text"],
.advancedSearch .inputGroup select {
	width: 100%
}

#content .searchResults {
	margin: 0
}

.twoCol {
	-webkit-columns: 1;
	columns: 1;
	-webkit-column-gap: 0;
	column-gap: 0;
	-webkit-column-rule: 0;
	column-rule: 0;
}

.mapLocations li {
	width: 100%
}

main>.wrap {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: start;
	-webkit-box-pack: start;
	justify-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-ms-flex-align: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;
}

main>.wrap>.content {
}

main>.wrap>.sidebar {
}

main>.wrap>.discounts {
	display: block;
	clear: both;
	font-size: 0.875em;
	text-align: center;
	margin: 0 0 2em;
	width: 100%;
	float: left;
}

.product-page main>.wrap>.discounts {
	display: none
}

main>.wrap>.discounts .title {
	display: block;
	margin-bottom: 0.5em;
	font-weight: 800;
	font-size: 0.875em;
	line-height: 1.25em;
	color: VAR(--RED);
	text-align: center;
	text-transform: uppercase
}

main>.wrap>.discounts .box {
	border-radius: 4px;
	padding: 0;
	position: relative;
	margin-bottom: 0.5em;
	border: 1px solid #001F45;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

main>.wrap>.discounts .box:before {
	content: "";
	z-index: 1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 0.69em;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url(/images/sidebar-star.svg) no-repeat center
}

main>.wrap>.discounts .box .discount {
	width: 50%;
	padding: 1em 0.5em;
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	flex: 1 1 auto;
}

main>.wrap>.discounts .box .discount:nth-child(2) {
	margin-top: 0;
	border-top: 0
}

main>.wrap>.discounts .box .discount:nth-child(even) {
	border-left: 1px dashed #CDCDCD
}

main>.wrap>.discounts .box .discount:nth-child(n+3) {
	border-top: 1px dashed #CDCDCD;
	margin-top: 0
}

main>.wrap>.discounts .box .discount:nth-child(2):before {
	display: none
}

main>.wrap>.discounts .box .discount:nth-child(n+3):before {
	background-color: #fff;
	content: "or";
	font-weight: 400;
	font-style: italic;
	position: absolute;
	top: -.9em;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 2em;
}

main>.wrap>.discounts .box h2 {
	text-transform: uppercase;
	margin-bottom: 0.125em;
	font-weight: 800;
	font-size: 1.125rem;
	color: #001F45;
	text-align: center;
}

main>.wrap>.discounts .box p {
	font-size: 0.75rem;
	line-height: 1.45em;
	margin: 0;
	color: #4A4A4A;
	text-align: center;
}

main>.wrap>.discounts .box p span {
	text-decoration: underline
}

main>.wrap>.discounts .box p strong {
	text-transform: uppercase
}

main>.wrap>.discounts .disclaimer {
	font-size: 0.75em;
	color: #9B9B9B;
	text-align: center;
	line-height: 1.25em;
}

#content .discounts {
	display: block;
	clear: both;
	font-size: 0.875em;
	text-align: center;
	margin: 1.5em 0 -1.5em;
	width: 100%;
	float: left;
}

#content .buy + .discounts {
	margin-top: 3.5em;
}

#content .discounts .title {
	display: block;
	position: relative;
	z-index: 2;
	margin-bottom: 0.5em;
	font-weight: 800;
	font-size: 0.875em;
	line-height: 1.25em;
	color: VAR(--RED);
	text-align: center;
	text-transform: uppercase
}

#content .discounts .box {
	border-radius: 4px;
	padding: 0;
	position: relative;
	margin-bottom: 0.5em;
	border: 1px solid #001F45;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

#content .discounts .box:before {
	content: "";
	z-index: 1;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 0.69em;
	width: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: url(/images/sidebar-star.svg) no-repeat center
}

#content .discounts .box .discount {
	width: 50%;
	padding: 1em 0.5em;
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	flex: 1 1 auto;
}

#content .discounts .box .discount:nth-child(2) {
	margin-top: 0;
	border-top: 0
}

#content .discounts .box .discount:nth-child(even) {
	border-left: 1px dashed #CDCDCD
}

#content .discounts .box .discount:nth-child(n+3) {
	border-top: 1px dashed #CDCDCD;
	margin-top: 0
}

#content .discounts .box .discount:nth-child(2):before {
	display: none
}

#content .discounts .box .discount:nth-child(n+3):before {
	background-color: #fff;
	content: "or";
	font-weight: 400;
	font-style: italic;
	position: absolute;
	top: -.9em;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	width: 2em;
}

#content .discounts .box h2 {
	text-transform: uppercase;
	margin-bottom: 0.125em;
	font-weight: 800;
	font-size: 1.125rem;
	color: #001F45;
	text-align: center;
}

#content .discounts .box p {
	font-size: 0.75rem;
	line-height: 1.35em;
	margin: 0;
	color: #4A4A4A;
	text-align: center;
}

#content .discounts .box p span {
	text-decoration: underline
}

#content .discounts .box p strong {
	text-transform: uppercase
}

#content .discounts .disclaimer {
	font-size: 0.75em;
	color: #9B9B9B;
	text-align: center;
	line-height: 1.25em;
}

#ContactForm td {
	display: block;
	padding: 0 0 0.5em;
	width: 100%;
}








/* PRODUCTS --------------------*/
.productPreview {
	width: 100%;
	max-width: 100%
}

.interior .categoryList {
	display: block
}

.interior .related .categoryList a {
	width: 100%
}

.interior .categoryList a {
	width: 100%;
	margin: 0;
	padding: 2em 1em
}

.interior .categoryList a .center {
	height: auto
}

.productTable {
	border: 0;
	border-radius: 0
}

.productTable thead,
.productTable th {
	display: none
}

.productTable tbody td,
.productTable tbody td:first-child,
.productTable tbody td:nth-child(2) {
	display: block;
	width: 100%;
	border: 0;
	padding: 0;
	text-align: center
}

.productTable tbody td:first-child {
	padding-top: 2em
}

.productTable tbody td:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 2em;
    padding-right: 0;
    text-align: center;
    width: 100%;
}

.productTable tbody tr:nth-child(odd) {
	background: #fff
}

.productTable tbody td:nth-child(2) a {
	display: block;
	font-size: 1.25em;
	padding: 1em 0 0.25em
}

#content .productTable .thumbnail {
	max-width: 100%;
}

.productTable .price {
	font-size: 1.5em;
	display: block;
	padding: 0.25em 0 0.75em
}

.productTable .thumbnail img {
	float: none;
}

.product .thumbnails div {
	height: 0;
	padding-bottom: 16%;
	width: calc(25% - 0.25em);
	float: left
}

.product-page :is(.product, .buy) {
	width: 100%;
}

.product-page .product #largeImg {
    display: block;
    height: auto;
    margin: 0 auto;
    max-height: 50vh;
    max-width: 70vw;
    width: auto;
}

.col {
	width: 100%;
	float: left;
	padding-right: 0
}

#estimatedShippingCost {
	font-size: 1.25em;
	width: 100%;
	float: left;
	clear: both;
	margin-left: 1em;
	font-weight: bold;
	color: #31659b;
	text-align: center;
	margin: 1em 0;
}

#estimatedShippingCost:before {
	content: "Shipping:";
	font-size: 0.85em !important;
	margin-right: 0.25em;
	font-weight: normal;
	font-size: 1em;
	color: #333
}









/* SITE SEARCH --------------------*/
.search-results main>.wrap {
	gap: 1em;
	padding-top: 0;
}

.search-results main>.wrap .search-header {
	flex-wrap: wrap;
	gap: 1em;
	margin-bottom: 1em;
}

.search-results main>.wrap .search-header>div {
	width: 100%;
}

.search-results main>.wrap .search-header .radio-group label {
	flex: 1 1 auto;
}

.search-results h1 {
	margin: 0;
}

.search-results main>.wrap>aside,
.search-results main>.wrap #content {
	width: 100%;
}

.search-results .radio-group {
	grid-template-columns: 1fr 1fr;
}

.search-results .radio-group label {
	font-size: 1em;
	justify-content: center;
}

.search-results .radio-group label:after {
	display: none;
}

.search-results #content>section {
	margin: 0;
	padding-top: 2em;
	border-top: 2px solid #011839;
}

.search-results #results-products .resultsList {
	gap: 1.5em 1em;
	grid-template-columns: repeat(auto-fill, minmax(9.75em, 1fr));
}

.search-results #results-products .resultsList li a .result-title {
	padding: 0;
}







/* FOOTER --------------------*/
body>footer {
	padding: 2em 1em;
	text-align: center
}

footer .gnumber {
	text-align: center;
	display: block;
	font-size: 1.5em;
	font-weight: 500;
	padding: 0.25em 0 0.25em;
	margin: 0.5em 0 0.75em;
}

footer .gnumber:before {
	content: url(/images/icons/misc/phone.svg);
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em
}

footer .search input,
body>nav .search input {
	border-radius: 3px 0 0 3px
}

footer .search button,
body>nav .search button {
	border-radius: 0 3px 3px 0;
	font-style: normal;
	background: var(--light-blue);
	color: #fff
}

footer address {
	float: left;
	line-height: 130%;
	clear: both;
	width: 100%;
	margin: 1em 0
}

footer .wrap {
	clear: both;
	width: 100%;
	opacity: 0.5;
	font-size: 0.8em;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	padding-top: 1em
}

footer .wrap nav a {
	display: inline-block
}

footer .wrap nav a+a:before {
	content: "|";
	color: #74A9EB;
	margin: 0 0.25em
}

footer .wrap nav a:last-child {
	display: none
}

#web-solutions-exposure {
	display: none
}

.badges {
	margin: 0 0 1.5em
}

.badges img+img {
	margin-left: 1em
}

#site-search {
	display: block;
	margin-bottom: 1em
}

.fatFooter>div {
	width: 100%;
	margin: 1em 0;
	text-align: center
}

.fatFooter>div a {
	display: inline-block;
	text-align: center
}

.fatFooter>div a[href="/driving-directions/"] {
	display: block;
	text-align: center
}

.fatFooter .badges {
	text-align: center;
}

.fatFooter .badges img {
	float: none
}

.copyright .wrap>div {
	text-align: center
}

.copyright .wrap>div a+a {
	margin-left: 1em
}

.fatFooter .badges {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-line-pack: center;
	align-content: center;
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
}

.fatFooter .badges img+a {
	margin-top: 0;
}