@charset "UTF-8";
/* Web Solutions 4.0 Compatible */

/* All clamps 750 - 1200 unless noted */

html {
	scroll-padding-top: 8.375em; /* Scroll offset for sticky header */
}





/* HEADER ------------------------------*/
body>header {
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 5rem;
  transition: all .2s ease;
}

body.management>header {
	top: 35px;
}
body.management2>header {
	top: 70px;
}

#brand {
	display: block;
	margin-left: 1rem;
	max-width: 19em;
	padding-block: 1em;
	transition: all 0s;
}

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

nav ul {
	margin: 0;
}

#mainnav {
	background: transparent;
	overflow: visible;
}

#mainnav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

#mainnav li {
	display: inline-block;
	position: relative;
}

#mainnav > ul > li {
	margin-left: 1px;
}

#mainnav a {
  color: #FFF;
  font-size: 0.8125rem;
  display: inline-block;
	line-height: 1;
	padding: 0.8125rem 0.875rem;
	text-decoration: none;
	font-size: var(--ws-text-18);
}

#navContainer #mainnav>ul>li:hover>a {
	background: var(--ws-orange);
	color: #fff;
}

#mainnav>ul>li.on>a {
	background: var(--ws-orange);
	color: #fff;
}

#navContainer #mainnav ul ul li a {
	font-size: 1rem;
}

body.scroll>header,
body>header:is(:hover, :focus-within) {
	background: #FFF;
}

body.scroll>header {
	border-bottom: 1px solid var(--ws-lt-gray);
}
body.scroll #brand,
body>header:is(:hover, :focus-within) #brand {
	background: url(/images/ford-ulrich-color-logo.svg) no-repeat center / contain;
}
body.scroll #brand img,
body>header:is(:hover, :focus-within) #brand img {
	opacity: 0;
}
body.scroll #mainnav a,
body>header:is(:hover, :focus-within) #mainnav a {
	color: #000;
}
body>header:is(:hover, :focus-within) #mainnav ul li ul li a {
	color: var(--ws-gray);
}
body>header:is(:hover, :focus-within) #mainnav>ul>li.on>a,
body>header:is(:hover, :focus-within) #mainnav ul li ul li a:is(:hover,:focus) {
	color: #fff;
}
#ancillary {
	display: flex;
}

#ancillary input#search {
	padding: 0.125rem 0.6875rem;
	background: var(--ws-lt-gray);
	outline: 0;
	border: 0;
	width: 8.875rem;
}
#ancillary input#search::placeholder {
	color: var(--ws-gray);
}


#ancillary form.on + button {
	display: none;
}

#ancillary button {
	background: var(--ws-orange);
	width: 1.75rem;
	height: 1.75rem;
	position: relative;
	margin-left: -2px;
	padding: 0;
	position: relative;
}

#ancillary button::after {
	background: #FFF;
	content: '';
	inset: 0;
	mask: url('/images/icons/misc/magnifying-glass.svg') no-repeat center/ 14px;
	position: absolute;
}

#ancillary button:is(:hover,:focus-visible) {
	background: #000;
}

/* Accessible dropdowns */
#mainnav>ul>li>button {
	background: transparent;
	bottom: 0;
	border: 0;
	height: .5rem;
	padding: 0;
	pointer-events: none;
	position: absolute;
	right: 50%;
	transform: translate(50%,-50%);
	width: 1.25rem;
}

#mainnav>ul>li>button:focus-visible {
	opacity: 1;
}

#mainnav>ul>li>button:before {
	background: url('/images/icons/misc/chevron-down.svg') no-repeat center / contain;
	content: '';
	height: .75rem;
	left: 0;
	position: absolute;
	right: 0;
	top: calc(50% - 6px);
	transition: var(--ws-transition);
}

.scroll #mainnav>ul>li>button:before,
header:is(:hover, :focus-within) #mainnav>ul>li>button:before,
#mainnav>ul>li:is(:hover, :focus-within, .on)>button:before {
	filter: brightness(0);
}

#navContainer #mainnav>ul>li.on>button:before,
#navContainer #mainnav>ul>li:hover>button:before {
	filter: none;
}

/* Drop-down menu */
#mainnav li ul {
  background: var(--ws-lt-gray-alt2);
	height: auto !important;
  left:0;
  opacity: 0;
  padding: .25em 0;
  position: absolute;
  top: -200vh;
  width: 250px;
  visibility: hidden;
  font-size: 1rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

/* fade out */
#mainnav li:not(.expand) ul {
	transition:
		opacity .2s ease-out 0.25s,
		visibility .2s ease-out 0.25s,
		top 0s linear 0.7s;
}

#mainnav li:hover ul,
#mainnav>ul>li.tapped > ul,
#mainnav>ul>li>a:focus + ul,
#mainnav>ul>li.expand>ul {
    opacity: 1;
    top: 100%;
	visibility: visible;
}

/* fade in */
#mainnav>ul>li:is(:hover, .expand)>ul {
    transition:
		opacity .2s ease-in .3s,
		visibility .2s ease-in 0s,
        top 0s linear .3s;
}

#mainnav>ul>li:last-child ul {
	left:auto;
	right: 0;
}

#mainnav li ul li {
    display: block;
    width: 100%;
}

#mainnav ul li ul li a {
    background: none;
    color: var(--ws-gray);
}

#mainnav li ul li a {
  display: block;
  line-height: 1.1em;
  padding: .3em .75em;
  text-align: left;
  width: 100%;
}

#mainnav li ul li a:is(:hover, :focus) {
	background: #000;
	color: #fff;
}

#mainnav li ul ul {
	display: none;
}

header .search button {

}

.interior-hero {
	position: relative;
}
.interior-hero:before,
.pageHeader:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 100%;
	background: rgba(0,0,0,0.25) linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0));
	z-index: 1;
}


/* ANCILLARY ----------------------------- */
#ancillary {
  position: absolute;
  right: 0;
  top: 0;
}

#ancillary ul {
	display: inline;
}

#ancillary li {
	display: inline;
}

#ancillary a {
  color: #000;
  background: #FFF;
  font-size: 0.9375rem;
  padding: .22em .95em;
  text-decoration: none;
  height: 1.75rem;
  display: flex;
  align-items: center;
}

#ancillary li.on a,
#ancillary a:is(:hover, :focus) {
	color: #666;
}

#ancillary li.on a {
	color: #666;
  text-decoration: none;
}

#ancillary .search {
	display: contents;
}

#ancillary .search input {
	display: inline-block;
}


/* mini-cart */
#ancillary .small-cart {
	display: inline-block;
}

#ancillary #cart-popover {
  background: #FFF;
  box-shadow: 0 0 10px rgba(0,0,0,0.95);
  height: auto;
  display: block;
	opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  transition: ease all 200ms;
  width: 20rem;
  z-index: -1;
}

#ancillary .small-cart.on #cart-popover,
#ancillary .small-cart:hover #cart-popover {
	opacity: 1;
	pointer-events: all;
  z-index: 10;
}

#ancillary #cart-popover:before {
  border-style: solid;
	border-width: 0 10px 8px 10px;
	border-color: transparent transparent #FFF transparent;
	content: '';
  display: block;
  height: 0;
	position: absolute;
  right: 3rem;
	top: -0.5rem;
	width: 0;
}

#ancillary #cart-popover .no-items {
	background: #FFF;
  color: #000;
  font-size: 1em;
	padding: 1em;
	text-align: center;
}

#ancillary #cart-popover .no-items .button {
  color: #FFF;
	display: block;
  margin-top: 0.75rem;
	text-align: center;
}

#ancillary #cart-popover .products {
	overflow: auto;
  max-height: 21.5em;
	padding: 0.25em 1em;
}

#ancillary #cart-popover .products > p {
  font-size: 1rem;
	text-align: center;
}

#ancillary #cart-popover .product {
  display: block;
  height: auto;
  line-height: 1rem;
  overflow: auto;
  padding: 1.25em 1em;
	position: relative;
	text-align: left;
  text-transform: inherit;
}

#ancillary #cart-popover .product + .product {
	border-top: 1px dashed #D1D1D1;
}

#ancillary #cart-popover .product-image {
	position: relative;
	float: left;
	-webkit-transition: ease all 200ms;
	transition: ease all 200ms;
	width: 5em;
}

#ancillary #cart-popover .product-image img {
	display: block;
	max-width: 100%;
	height: auto
}

#ancillary #cart-popover .product-details {
	overflow: auto;
	float: right;
	width: calc(100% - 6em)
}

#ancillary #cart-popover .product-name {
  color: #8A1538;
	font-size: 1.125rem;
  font-weight: 600;
	line-height: 1em;
	margin-bottom: 0.25em;
	white-space: initial;
}

#ancillary #cart-popover .price,
#ancillary #cart-popover .quantity {
	color: #666;
  font-size: 0.875rem;
	margin-bottom: 0.5em;
}

#ancillary #cart-popover .product:hover .product-name {
	color: #007DB5;
}

#ancillary #cart-popover .cart-bottom {
  background: #032839;
  color: #fff;
  font-family: "Gotham A", "Gotham B", sans-serif;
	padding: 1rem 1rem 2rem;
	text-align: center;
  text-transform: capitalize;
}

#ancillary #cart-popover .cart-bottom .cart-total {
  margin: 0 0 1em;
	font-size: 1rem;
}

#ancillary #cart-popover .cart-bottom .checkout .button {
  color: #FFF;
  font-size: 1rem;
	height: auto;
	line-height: 1em;
	padding: 0.7em 2em;
	text-transform: capitalize;
}

/* mobile */
#mobilenav, .toggleNav {
	content-visibility: hidden;
  display: none;
}

/* sidenav */
#sidenav li a:is(:hover, :focus) {
	background: #E5E5E5;
}


/* t2 */
#sidenav li ul li a:is(:hover, :focus) {
	background: #CCC;
	color: #000;
}

/* t3 */
#sidenav li ul li ul li a:is(:hover, :focus) {
	background: #E5E5E5;
	color: #000;
}

/* t4 */
#sidenav li ul li ul li a:is(:hover, :focus),
#sidenav li ul li ul li ul li a:is(:hover, :focus) {
	background: #F5F5F5;
	color: #000;
}



/* MAIN ------------------------------ */
main>div>aside {
  float: left;
	overflow: hidden;
  padding-right: 5.3125rem;
  width: 19.0625rem;
}

main>div>#content {
	float: right;
	width: calc(100% - 19.0625rem);
	padding: 2em 0 4em;
	overflow: hidden;
	min-height: 600px;
	position: relative
}

.products main>div>#content {
	clear: both;
	overflow: visible;
}

body.fullWidth main>div>#content {
  float: none;
	margin: 0 auto;
  width: 100%;
}


.photoright {
	margin: 0 0 3em 4em;
}

.photoleft {
	margin: 0 4em 3em 0;
}

.wsManagementLogin td:first-child {
  text-align: right;
	width: 40%;
}

:is(button, .button, input:is([type="button"], [type="submit"], [type="reset"])):is(:hover, :focus) {
	background-color: #000;
	color: #fff;
}
:is(button, .button).black:is(:hover,:focus) {
	background-color: var(--ws-lt-orange);
	color: #000;
}

.breadcrumb a:is(:hover,:focus) {
	text-decoration: underline;
}

.logo-rotator button:is(:hover,:focus) {
	background-color: var(--ws-lt-orange);
}

#popover .close:is(:hover, :focus) {
	opacity: 0.5;
}

.shareIcons a:is(:hover, :focus) {
	background-color: var(--link-color-hover);
}

.twoCol, .threeCol, .resCol {
	column-rule: 1px outset rgba(0,0,0,.15);
}

.twoCol {
	column-count: 2;
}

.threeCol {
	column-count: 3;
}

.resCol {
	column-count: auto;
	column-width: 13em;
}

.formTable td {
	width: 50%
}

.formTable td {
	padding: 0 0 .5em .5em
}

.formTable td:first-child {
	padding: 0 .5em .5em 0
}

.formTable td[colspan="2"] {
	padding-right: 0
}

.formTable.formLoose,
.formTable.formLoose td {
	width: auto
}


/* Contact Form - table removed ----- */
.form-flex .half {
	width: calc(50% - .5em); /* Full on mobile */
}

.form-flex .third {
	width: calc(33.33% - .5em); /* Full on mobile */
}

.form-flex .quarter {
	width: calc(25% - .5em); /* Half on mobile */
}



/* FOOTER ------------------------------ */
body>footer .fatFooter {
	display: flex;
	justify-content: space-between;
}

body>footer .fatFooter address {
	display: flex;
	flex-wrap: wrap;
	gap: 5% 10%;
	position: relative;
	width: 21.5625rem;
}
body>footer .fatFooter address strong {
	position: absolute;
	left: 0;
	top: -35px;
}

body>footer .fatFooter address div {
	width: calc(45%);
}

.fatFooter>nav {
	display: flex;
	width: 12rem;
	gap: 5px;
}

.fatFooter>nav>ul {
	width: 50%;
}

.fatFooter .fatFooter-copyright {
	width: 12.5rem;
}

#web-solutions {
	float: right;
	margin-left: 11px;
}

body>footer a:is(:hover, :focus) {
	color: #FFF;
}

body>footer .wrap nav span:before {
	content: "|";
	margin: 0 0.5em
}
body>footer .fatFooter {
	margin-bottom: 3em;
}

/* HOME */
.home .hero .wrap {
	padding-block: 15.625rem 9.375rem;
}
.home .welcome .welcome-image {
	width: calc(46% - 2.1875rem);
}
.home .welcome .welcome-content {
	width: calc(54% - 2.1875rem);
}
.home .callouts li {
	width: calc(33.33% - 1.0813rem);
}
.home .welcome h2 span {
	display: block;
}


.interior .logos .slick-track {
	gap: 6.25rem;
	margin: 0 auto;
}

.interior .product-text .logos .slick-list {
	justify-content: flex-start;
}

.interior .product-text .logos .slick-track {
	gap: 2.125rem;
	margin: 0;
}

.interior .hero.interior-hero .wrap {
	padding-block: 9.375rem 4.5rem;
}

.interior .full-width-callouts.interior-callouts ul li {
	width: calc(25% - .75rem);
}

.product .product-image {
	width: 45%;
}
.product .product-text {
	width: 45%;
}
.product.products {
	justify-content: space-between;
}
.product .image-box img {
    height: 24.25rem;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.product-image .thumbnails {
	--ws-column-count: 6;
}



/* 1100px */
@media (max-width: 68.75rem) {
	#brand {
		max-width: 13em;
	}
	#mainnav a {
		padding: .8125rem .5rem;
	}
	.interior-welcome-cta {
		gap: 50px;
	}
	.interior-welcome-cta .welcome-content {
		width: calc(50% - 50px);
	}
	.product.products {
		gap: 4.6875rem;
	}
}

/* 900px */
@media (max-width: 56.25rem) {
	#brand {
		max-width: 10em;
		margin-left: .5rem;
	}
	#mainnav a {
		padding-inline: .4rem;
		font-size: 1rem;
	}

	.full-width-callouts ul li a {
		aspect-ratio: .75;
	}
	.full-width-callouts ul li a p {
		padding: 0 .75rem;
	}

	.fatFooter>nav {
		align-items: center;
		flex-direction: column;
		gap: 1.25em;
	}

	body>footer .fatFooter address {
		gap: 5%;
	}

	.product-image .thumbnails {
		--ws-column-count: 4;
	}


}




/* min 1500 */
@media (min-width: 93.75rem) {
	.interior-welcome-cta .welcome-image img {
		aspect-ratio: 1.75;
	}
}
