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

/* All clamps 320 - 750 unless noted */

html {
	scroll-padding-top: 2.5em; /* Scroll offset for sticky mobile nav */
}


body {
	background: #FFF;
}

body.slideNav {
	overflow: hidden;
}



/* HEADER ------------------------------ */
body>header {
	background: #FFF;
	display: contents;
	position: relative;
	z-index: 1;
}
body #brand {
	background: url(/images/ford-ulrich-color-logo.svg) no-repeat center / contain;
}
body #brand img {
	opacity: 0;
}
body>header:before {
	background-color: #fff;
	content: '';
	display: block;
	height: 100vh;
	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: .9;
	transition: left 0ms ease 0ms, opacity 200ms ease;
}

#brand {
	display: block;
	margin: 0 auto;
	max-width: 15em;
	padding: 1em 0;
}

#navContainer {
	background-color: #000;
	bottom: 0;
	left: 100%;
	max-height: 100vh;
	overflow: auto;
	position: fixed;
	top: 0;
	transition: left 200ms ease;
	width: 75%;
	z-index: 3;
	-webkit-overflow-scrolling: touch;
}

body.slideNav #navContainer {
	left: 25%;
}

#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.25);
	display: block;
	position: relative;
	width: 100%;
}
#ancillary > a {
	border-top: 1px solid rgba(255,255,255,0.25);
}

#navContainer li li {
	border: 0;
}

#navContainer :is(a, .toggleNav) {
	background: none;
	color: #fff;
	display: block;
	line-height: 2.75em;
	text-align: left;
	font-size: 1em;
	padding: 0 1rem;
	width: 100%;
}

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

#navContainer li.open {
	background-color: #000;
}

#navContainer li>button {
	display: block;
	height: 2.8125rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 2.8125rem;
	background: transparent;
}

#navContainer ul ul {
	height: 0;
	overflow: hidden;
	transition: var(--ws-transition);
}

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

#navContainer ul ul li.on a {
	background-color: rgba(255,255,255,.2);
}

#navContainer li>button::before,
#navContainer li>button::after {
	background-color: #fff;
	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);
}


/* ANCILLARY ------------------------------ */
#ancillary {
	display: block;
}

#ancillary .search {
	border-top: 1px solid rgba(255,255,255,0.25);
	display: flex;
	align-items: center;
	overflow: auto;
	padding: 1rem;
}

#ancillary .search input[type="text"] {
	width: calc(100% - 2rem);
}

#ancillary .search input[type="text"]:focus {
	background:#fff;
	box-shadow: inset 0 0 0 1px var(--ws-orange);
}

#ancillary .search input[type="submit"] {
	padding-inline: .5em;
	width: 6.5rem;
}
#ancillary button {
	width: 2rem;
	height: 2rem;
	position: relative;
	background-image: url(/images/icons/misc/magnifying-glass.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
	background-color: var(--ws-orange);
	margin-left: -4px;
	padding: 0;
}
#ancillary .search input[type="text"] {
	border: 0;
	height: 2rem;
}

/* MOBILE NAV ------------------------------ */
#mobilenav {
	align-items: center;
	background-color: #000;
	display: flex;
	justify-content: center;
	position: sticky;
	text-align: center;
	top: 0;
	width: 100%;
	z-index: 1;
}

#mobilenav :is(a, .toggleNav) {
	background: none;
	font-size: 1em;
	color: #FFF;
	padding: 0;
	flex: 1 1 auto;
	line-height: 2.25;
}

#mobilenav a {
	border-right: 1px solid #888;
}

#mobilenav .toggleNav svg {
	fill: #FFF;
	pointer-events: none;
	position: relative;
	top: .25em;
	width: 1em;
}



/* MAIN ------------------------------ */
.photoright {
	margin: 0 0 .75em 1em;
}

.photoleft {
	margin: 0 1em .75em 0;
}

.pageHeader {
	height: 6rem;
}

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

.formTable, .formTable table {
	display: block;
	width: 100%;
}

.formTable tbody {
	display: block;
}

.formTable tr {
	display: block;
}

.formTable td {
	display: block;
	padding: 0;
	width: 100%;
}

.formTable :is(input:is([type="text"], [type="password"], [type="tel"], [type="number"], [type="email"], [type="url"]), textarea) {
	margin-bottom: 1em
}

.formTable table td + td {
	padding-left: 0 !important;
}


/* Contact Form - table removed ----- */
.form-flex :where(.half, .third) {
	width: 100%;
}

.form-flex .quarter {
	width: calc(50% - .5em);
}

.interior-hero .hero-slider {
	opacity: .6;
}


/* FOOTER ------------------------------ */
body>footer {
	background: #000;
	text-align: center;
}
body>footer .wrap {
	align-items: stretch;
	align-content: stretch;
	display: flex;
	flex-direction: column;
	text-align: center;
}

#web-solutions {
	order: 1;
}

body>footer .wrap nav a+span:before {
	content: "|";
	margin: 0 0.5em;
}


/* HOME */
.home .hero .wrap {
	padding-block: 7rem;
}
.home .full-width-callouts ul {
	flex-wrap: wrap;
}
.home .full-width-callouts ul li {
	width: 100%;
}
.full-width-callouts ul li a {
	aspect-ratio: 1.75;
}
.home .full-width-callouts {
	background: var(--ws-lt-gray);
}
.home .callouts ul {
	flex-direction: column;
}
.home .callouts li {
	width: 100%;
}

.home .welcome .wrap {
	flex-direction: column;
}
.home .welcome:before {
	right: 0;
	bottom: 80%;
}

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

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

.interior-welcome-cta {
	flex-direction: column;
	gap: 0;
}
.interior-welcome-cta .welcome-image, .interior-welcome-cta .welcome-content {
	width: 100%;
}
.interior-welcome-cta .welcome-content {
	padding: 2.5rem 1.5rem;
}
.interior-welcome-cta .welcome-image img {
	aspect-ratio: 1.75;
}

.product.products {
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 2rem;
}

.product-image .image-box {
	margin-bottom: 1em;
}

.product-image .image-box img {
	height:14.5em;
}

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



.vbox-next,
.vbox-prev {
	top: auto !important;
	bottom: 2em;
}

.images-ribbon {
	flex-wrap: wrap;
	margin-top: 4.5rem;
}
.images-ribbon img {
	width: 50%;
}



/* 500px */
@media (max-width: 31.25rem) {
	.full-width-callouts ul li a {
		aspect-ratio: 1;
	}

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


}


/* 400px */
@media (max-width: 25rem) {
	.interior .full-width-callouts.interior-callouts ul li {
		width: 100%;
	}
}
