.module {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	position: relative;
	transition: opacity 1s;
	margin-top: 100px;
}

.module:first-child {
	margin-top: 0;
}

.module-inner {
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0 25px;
}

.module .copy ul {
	list-style: none;
	padding-left: 10px;
}

.module .copy ul li {
	display: flex;
	align-items: start;
	margin-bottom: 25px;
}

ul li.no-bullet {
	list-style: none;
}

.module picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.background.with-overlay::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,.65);
}

.background.with-overlay.dark::after {
	background: rgba(0,0,0,.5);
}

.overlay {
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
}

input::placeholder {
	font-family: 'Kong', sans-serif;
	font-weight: 300;
	color: #101010;
	opacity: 1;
}

.ajax-content {
	transition: opacity .25s;
}

/**************************
 * CTA ********************
 * ***********************/

.cta-row {
	display: flex;
	justify-content: flex-start;
	margin-top: 50px;
	flex-wrap: wrap;
}

.cta {
	padding: 9px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	min-width: 150px;
	transition: all .4s;
	color: #fff;
	background-color: var( --blue-color );
	transition: background-color: .35s;
}

.cta:hover {
	background-color: var( --orange-color );
}

.cta.alt {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
	transition: background-color .35s;
}

.cta.alt:hover {
	background-color: var( --blue-color );
	color: #fff;
	border-color: var( --blue-color );
}

.cta-row .cta:nth-child(2),
.cta-row .cta:nth-child(3) {
	margin-left: 15px;
}

/**************************
 * Hero *******************
 * ***********************/

.hero {
	color: #fff;
	display: flex;
	align-items: center;
	padding-top: 130px;
	min-height: 40vh;
}

.home .hero {
	min-height: 75vh;
}

.hero .background.offset img {
	object-position: center 130px;
}

.home .hero .background.with-overlay::after {

}

.search .hero .hero-content {
	padding: 75px 0 50px;
}

.hero .module-inner {
	display: flex;
	justify-content: center;
}

.hero-content {
	text-align: center;
	padding: 110px 0 130px;
	opacity: 0;
	transition: opacity .5s;
}

.home .hero-content {
	padding: 130px 0 130px;
}

.home .hero-content h1 {
	margin-bottom: 35px;
}

.hero-content p {
	margin-bottom: 0;
	font-size: 1.75rem;
	font-weight: 300;
}

.wf-active .hero-content,
.wf-inactive .hero-content {
	opacity: 1;
}

.hero .preheader {
	display: flex;
	font-size: 1.25rem;
	padding-left: 3px;
	white-space: nowrap;
}

.hero .preheader::after {
	content: '';
	border-bottom: 1px solid #fff;
	width: 100%;
	flex-basis: 80%;
	margin-left: 8px;
	margin-bottom: 9px;
}

.hero h1 {
	margin-top: 0;
}

.hero .cta-row .cta {
	color: #fff;
	border-color: #fff;
}

.hero .cta-row .cta:hover {
	border-color: var( --red-color );
}

/**************************
 * Narrative Content ******
 * ***********************/

.narrative-content.center {
	text-align: center;
}

.narrative-content.center .content {
	max-width: 80%;
	margin: auto;
}

.narrative-content h2 {
	color: var( --blue-color );
}

.narrative-content .separator {
	margin-top: 50px;
}

.narrative-content .separator span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-color: var( --orange-color );
	margin: 0 10px;
	border-radius: 50%;
}

/**************************
 * Triple Column **********
 * ***********************/

.triple-column .content-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.triple-column .column {
	flex-basis: 33.3%;
	padding: 25px;
	display: flex;
}

.triple-column.four .column {
	flex-basis: 25%;
}

.triple-column .column-inner {
	/*max-width: 80%;*/
	margin: 0 auto;
	/*padding: 25px; */
	box-shadow: 0 0 43px 0 rgba(0,0,0,.15);
	width: 100%;
	display: flex;
	flex-direction: column;
}

.triple-column .art-inner {
	height: 0;
	padding-bottom: 66%;
}

.triple-column .art-inner picture {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.triple-column .copy {
	padding: 0 25px 25px;
}

.triple-column h2 {
	text-align: center;
}

.triple-column h3 {
	margin-top: 25px;
}

.triple-column .cta-row {
	margin-top: auto;
	padding: 0 25px 25px;
}

.iwfa-partner-organizations .triple-column .art img {
	object-fit: contain;
}

/***********************
 * Bold Content ********
 * ********************/

.bold-content .content {
	padding: 50px 0 75px;
	color: #fff;
	display: flex;
	justify-content: space-between; 
	align-items: center;
}

.bold-content .content .copy {
	flex-basis: 65%;
}

.bold-content .content .copy p:last-child {
	margin-bottom: 0;
}

.bold-content .content .ctas {
	flex-basis: 30%;
}

.bold-content .content .cta-row {
	margin-top: 0;
}

.bold-content .content .cta {
	max-width: 70%;
	width: 100%;
	margin: auto;
	margin-top: 25px;
	padding: 14px 40px;
}

/**************************
 * Bold Video *************
 * ***********************/

.bold-video {
	padding: 150px 0;
}

.bold-video-container {
	display: flex;
	align-items: center;
}

.bold-video-container .content {
	flex-basis: 50%;
	padding: 0 25px;
}

.bold-video-container .content .cta-row {
	justify-content: flex-start;
}

.bold-video-container .media {
	flex-basis: 50%;
}

.bold-video-container .media::after {
	content: '';
}

.play-button {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.play-button span {
	width: 65px;
	height: 65px;
	background: rgba(0,0,0,.45);
	border-radius: 50%;
	padding: 2px;
}

/***********************
 * Bold Social *********
 * ********************/

.bold-social {
	color: #fff;
	text-align: center;
	padding: 75px 25px 100px;
}

.bold-social .channels {
	display: flex;
	justify-content: center;
}

.bold-social .channel {
	flex-basis: 100px;
}

.bold-social .channel-inner {
	padding: 0 25px;
}

.bold-social .channel img {
	object-fit: contain;
}

/**************************
 * Copy and Art ***********
 * ***********************/

.copy-and-art-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex: 0 0 100%;
}

.copy-and-art-container.reverse {
	flex-direction: row-reverse;
}

.copy-and-art .art {
	flex-basis: 40%;
	box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
}

.copy-and-art .copy {
	flex-basis: 50%;
	padding: 50px 25px 75px;
}

.copy-and-art .copy p {
	max-width: 80%;
}


/**************************
 * Double Column **********
 * ***********************/

.double-column {
	color: #fff;
	overflow: hidden;
	padding: 150px 0;
}

.double-column .left.background {
	background-color: var( --orange-color );
	position: absolute;
	top: 0;
	right: 50%;
	bottom: 0;
	left: 0;
}

.double-column .right.background {
	background-color: var( --blue-color );
	position: absolute;
	top: -500px;
	right: -500px;
	bottom: -500px;
	left: 45%;
	transform: rotate(20deg);
}

.double-column .content-container {
	display: flex;
}

.double-column .column {
	flex-basis: 50%;
}

.double-column .column.left p {
	max-width: 65%;
}

/**************************
 * Content Boxes **********
 * ***********************/

.content-boxes h2 {
	text-align: center;
}

.content-boxes .content-container {
	display: flex;
	flex-wrap: wrap;
}

.content-boxes .box {
	flex-basis: 50%;
	color: #fff;
	padding: 15px;
	display: flex;
}

.content-boxes .columns-3 .box {
	flex-basis: 33%;
}

.content-boxes .box-inner {
	padding: 60px 35px 75px 35px;
	width: 100%;
}

.content-boxes .box .art {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/***********************
 * Search Modal ********
 * ********************/

.search-modal.module {
	position: fixed; 
	top: 91px; 
	right: 0; 
	bottom: 100%; 
	left: 0; 
	margin: 0;
	background: rgba( 255,255,255,1);
	transition: bottom .5s;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.search-modal.module.active {
	bottom: 0;
}

.search-modal.module form {
	display: flex;
	align-items: center;
}

.search-modal.module input {
	font-size: 1.25rem;
	border: 0;
	border-bottom: 1px solid #1d1d1d;
	padding: 7.5px 50px 7.5px 15px;
}

.search-modal.module input:focus {
	border-bottom: 0;
	outline: 2px solid var( --red-color );
}

.search-modal.module picture {
	width: 25px;
	margin-left: -37.5px;
	cursor: pointer;
}

/***********************
 * Search Results ******
 * ********************/

.search-results ul.search-results-list {
	text-align: left;
	padding-left: 0;
}

/**************************
 * Board Documents ********
 * ***********************/

.board-documents .hero {
	min-height: 300px;
	height: 50vh;
}

.board-documents.module li {
	margin-bottom: 10px;
}

/**************************
 * Dealer Locator *********
 * ***********************/

.dealer-locator.module {
	text-align: left;
	margin-top: 25px;
	overflow: hidden;
}

.dealer-locator .module-inner {
	max-width: 100%;
}

.dealer-locator .content-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.dealer-locator .name {
	font-family: var( --header-font );
}

.dealer-locator .listings {
	flex-basis: 30%;
	padding: 25px;
}

.dealer-locator .instructions {
	display: block;
	margin-top: 35px;
	margin-bottom: 25px;
}

.results-list {
	border-bottom: 0;
}

.results-list .result {
	font-size: .8rem;
	padding: 15px;
	text-align: left;
	box-shadow: 0 0 5px 0 var( --shadow-color );
	margin-bottom: 15px;
}

.results-list .result span {
	display: block;
}

.results-list .result .name {
	margin-bottom: 10px;
	font-weight: 600;
}

.results-list .result a.phone,
.results-list .result a.website,
.results-list .result a.email,
.results-list .result div.hubspotid,
.results-list .result .accreditations {
	display: none;
}
.results-list .result span.address,
.results-list .result span.csz {
	font-size: .7rem;
	margin-bottom: 7.5px;
	font-weight: 400;
}

.results-list button {
	position: absolute;
	top: calc(50% - 30px );
	right: 0px;
	width: 40px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: var( --orange-color );
	font-size: 1rem;
	font-weight: 600;
	background-image: url('/wp-content/uploads/2023/05/Icons_Testimonial_Arrow-Right.png');
	background-size: 20px 30px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.manual-search {
	display: flex;
	margin-bottom: 35px;
}

.manual-search input {
	padding: 5px;
	font-size: .75rem;
	border: 1px solid var( --blue-color );
	border-radius: 0;
}

.manual-search button {
	margin-left: 10px;
	padding: 5px 8px;
	font-size: .75rem;
	background-color: var( --blue-color );
	color: #fff;
	border: none;
	border-radius: 0;
	outline: none;
	cursor: pointer;
}

.map-container {
	padding-bottom: 45%;
	height: 0;
	flex-basis: 65%;
}

.map-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

#map {
	height: 100%;
}

.dealer-locator .info-window h4 {
	margin-top: 10px;
}

.info-window p {
	margin-bottom: 5px;
	font-size: .9rem;
	line-height: 1.2;
}

.dealer-details {
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 101;
	width: 100%;
	max-width: 700px;
	padding: 50px 35px;
	box-shadow: 0 0 30px 0 var( --shadow-color );
	background-color: #fff;
	transform: translateX( 100% );
	transition: all .3s;
	font-size: .8rem;
}

.dealer-details .name {
	font-size: 1.2rem;
	margin-bottom: 25px;
}

.dealer-details .csz {
	margin-bottom: 25px;
}

.dealer-details .phone {
	color: var( --orange-color );
	font-weight: 400;
	margin-bottom: 5px;
}

.dealer-details .email {
	color: var( --orange-color );
	font-weight: 400;
	margin-bottom: 5px;
}

.dealer-details .website {
	margin-bottom: 25px;
	color: var( --orange-color );
	font-weight: 400;
}

.dealer-details a {
	font-weight: 400;
}

.dealer-details .accreditations .title,
.dealer-details .actions .title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

.dealer-details .accreditations-content span {
	display: block;
	margin-bottom: 5px;
}

.dealer-details .actions {
	margin-top: 25px;
}

.dealer-details .actions .cta-row {
	margin-top: 10px;
}

.dealer-details .close {
	position: absolute;
	top: 0;
	right: 15px;
	font-size: 1.5rem;
	background-color: var( --blue-color );
	cursor: pointer;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

/**************************
 * Documents **************
 * ***********************/

.documents {
	text-align: center;
}

.documents .documents-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.documents .document {
	padding: 25px;
	text-align: center;
	flex-basis: 33%;
}

.documents .document picture {
	height: auto;
}

.documents .document img {
	max-width: 75px;
	margin: 0 auto;
}

/***********************
 * Members *************
 * ********************/

.members .module-inner {
	max-width: 80%;
}

.members p {
	margin-bottom: 5px;	
}

.members .company::after {
	content: '';
	display: block;
	width: 200px;
	border-top: 2px solid var(--font-color);
	margin: 50px 0;
}

/***********************
 * Search Results ******
 * ********************/

.search-results {
	/*text-align: center; */
}

.search-results-list {
	list-style: none;
	padding: 0;
	text-align: center;
}

.search-results-list li {
	margin-bottom: 7.5px;
}

/**************
 * Articles ***
 * ***********/

.articles.module .standard-row {
	display: flex;
	flex-wrap: wrap;
}

.articles.module .article-container {
	flex-basis: 33%;
	padding: 15px;
	display: flex;
	/*flex-direction: column;*/
}

.articles.module .article-container-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.articles.module .article-art-inner {
	height: 0;
	padding-bottom: 66%;
}

.articles.module .article-art picture {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.articles.module .article-content {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.articles.module .article-container h3 a {
	color: var(--blue-color);
	font-size: 1.35rem;
}

.articles.module .article-container p {
	font-size: .9rem;
}

.articles.module .article-container .cta-row {
	margin-top: auto;
}

.articles-navigation {
	margin-top: 90px;
	display: flex;
	justify-content: center;
}

.articles-navigation a {
	background-color: var(--blue-color);
	padding: 9px 40px;
	color: #fff;
	margin: 0 15px;
}

.articles-navigation a:hover {
	background-color: var(--orange-color);
}

/**************************
 * Single Article *********
 * ***********************/

.article-container {
	display: flex;
 	justify-content: space-between;
	max-width: 90%;
	margin: 100px auto 0;
}

.article-content {
	flex-basis: 73%;
}

.article-content .module-inner {
	max-width: 100%;
}

.article-sidebar {
	flex-basis: 24%;
}

.article-sidebar a {
	display: block;
	margin-bottom: 25px;
}

/**************************
 * Interactive Tint Laws **
 * ***********************/

.tint-laws.module {
	margin-top: 45px;	
}


.tint-laws.module .module-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.state-select {
	display: flex;
	flex-wrap: wrap;
}

.state-container {
	flex-basis: 25%;
}

.state-dropdown select {
	font-size: 1rem;
}

.tint-laws .tint-laws-container {
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: height .75s;
}

.tint-laws .disclaimer {
	display: block;
	margin: 35px auto 0 auto;
	max-width: 750px;
	font-size: .85rem;
	text-align: center;
	/*font-style: italic;*/
	font-weight: 600;
	scroll-padding-top: 130px;
}

.tint-laws .rules {
	/*text-decoration: underline;*/
	color: var(--blue-color);
	font-size: .65rem;
	display: block;
	max-width: 1000px;
  	margin: 50px auto 0;
  	text-align: center;
}

.tint-laws .photo-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.tint-laws .photo-container > div {
	flex: 0 0 48%;
}

.tint-laws .photo-container picture img {
	object-fit: contain;
}

.tint-laws a {
	font-size: .9rem;
}
.tint-laws .photo-container .vehicletype {
	/*position: absolute;
	bottom: 0;*/
	width: 100%;
	padding: 25px;
	text-align: center;
	background: rgba(0,0,0,.75);
	transition: background .35s;
	color: #fff;
	text-transform: uppercase;
}

.tint-laws .photo-container .vehicletype.active {
	background: var( --orange-color );
}

.tint-laws .photo-container .vehicletype .title {
	font-weight: 600;
	margin-top: 20px;
	font-family: 'Oswald', sans-serif;
}

.tint-laws .photo-container .vehicletype .details {
	font-size: .75rem;
	display: block;
	margin-top: 20px;
}

.tint-laws .tint-laws-content {
	height: 0;
	overflow: hidden;
	transition: height .75s;
	scroll-padding-top: 130px;
	margin-top: 50px;
}

.tint-laws-content p {
	margin-bottom: 20px;
}

.tint-laws .shared-information ul {
	list-style: none;
}

 /* Dropdown Menu */

/* The search field */
#myInput {
	box-sizing: border-box;
	background-position: 14px 12px;
	background-repeat: no-repeat;
	font-size: 16px;
	padding: 14px 20px 12px 14px;
	border: none;
	border-bottom: 1px solid #ddd;
	font-size: 1rem;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 3px solid #ddd;}

#myInput::placeholder {
	font-family: 'Lato', sans-serif;
	opacity: 1;
	font-size: 1rem;
	color: #000;
	font-weight: 400;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-container {
	height: 50px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  	position: absolute;
	left: calc( 50% - 141px);
  	background-color: #fff;
	max-height: 200px;
	overflow: hidden;
  	min-width: 230px;
  	border: 1px solid #ddd;
 	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  	color: black;
  	padding: 12px 16px;
  	text-decoration: none;
	display: none;
	font-weight: 400;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/**************************
 * People *****************
 * ***********************/

.people-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.people-container .people {
	flex-basis: 32%;
	padding: 25px;
	display: flex;
}

.people-container .people-inner {
	border-bottom: 2px solid #000;
	padding-bottom: 20px;
	flex-basis: 100%;
}

.people-container .people-inner > div:not(:last-child) {
	margin-bottom: 15px;
}

.people-container .people .name-company {
	font-weight: 600;
	font-size: 1.1rem;
}

.people-container .people .email {
	font-size: .8rem;
}

.people-container .people .title {
	font-style: italic;
	font-weight: 600;
	font-size: .8rem;
	text-transform: uppercase;
}

/******************
 * Mobile CTAs ****
 * ***************/

.mobile-ctas {
	display: none;
	justify-content: space-evenly;
	align-items: center;
	color: #fff;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}

.mobile-ctas .mobile-tint-laws {
	background-color: var( --blue-color );
	flex-basis: 50%;
	padding: 10px;
}

.mobile-ctas .mobile-find-film {
	background-color: var( --orange-color );
	flex-basis: 50%;
	padding: 10px;
}

.mobile-ctas a {
	padding: 9px 40px;
 	display: flex;
  	align-items: center;
  	justify-content: center;
  	font-weight: 400;
	letter-spacing: .4px;
	font-size: 1.2rem;
}

@media( max-width: 1200px ) {
	.module {
		margin-top: 50px;
	}
	.module-inner {
		max-width: 100%;
	}
	.hero {
		padding-top: 75px;
		padding-bottom: 0px;
	}
	.hero-content {
		padding: 50px 0 40px;
	}
	.home .hero {
		height: 100vh;
	}
	.home .hero-content {
		padding: 0;
	}
	.narrative-content.center .content {
		max-width: 100%;
	}
	.triple-column .column {
		flex-basis: 100%;
		padding: 0;
		margin-bottom: 25px;
	}	
	.triple-column .column:last-child {
		margin-bottom: 0;
	}
	.triple-column.four .column {
		flex-basis: 100%;
	}
	.copy-and-art-container {
		flex-wrap: wrap;
	}
	.copy-and-art-container .copy {
		padding: 0;
		flex-basis: 100%;
	}
	.copy-and-art .copy h2 {
		margin-top: 0;
		margin-bottom: 15px;
	}
	.copy-and-art .copy p {
		max-width: 100%;
	}
	.copy-and-art .copy .cta-row {
		margin-top: 0;
	}
	.copy-and-art-container .art {
		flex-basis: 100%;
		display: none;
	}
	.bold-content .content {
		flex-wrap: wrap;
	}
	.bold-content .content .copy {
		flex-basis: 100%;
	}
	.bold-content .content .ctas {
		flex-basis: 100%;
	}
	.bold-content .content .cta {
		max-width: 100%;
		margin-top: 40px;
	}
	.bold-video {
		padding: 0;
	}
	.bold-video-container {
		flex-wrap: wrap;
	}
	.bold-video-container .content {
		flex-basis: 100%;
		padding: 0;
	}
	.bold-video .content h2 {
		margin-top: 0;
	}
	.bold-video-container .content .cta-row {
		margin-top: 0;
	}
	.bold-video-container .media {
		flex-basis: 100%;
		margin-top: 15px;
	}
	.double-column {
		padding: 50px 0 75px;
	}
	.double-column .content-container {
		flex-wrap: wrap;
	}
	.double-column .column {
		flex-basis: 100%;
	}
	.double-column .left.background {
		right: 25%;
	}
	.content-boxes .box {
		flex-basis: 100%;
		padding: 15px 0;
	}
	.documents .documents-container {
		flex-wrap: wrap;
	}
	.documents .document {
		flex-basis: 48%;
		padding: 15px;
	}
	.members .module-inner {
		max-width: 100%;
	}
	.dealer-locator .content-container {
		flex-wrap: wrap;
	}
	.dealer-locator .listings {
		flex-basis: 100%;
		padding: 0;
	}
	.dealer-locator .map-container {
		flex-basis: 100%;
		padding-bottom: 80%;
		margin-top: 35px;
	}
	.dealer-details .actions .cta-row .cta {
		flex-basis: 100%;
		margin-left: 0;
		margin-top: 15px;
	}
	.dealer-details .close {
		width: 40px;
		height: 40px;
		right: 0;
	}
	.search-modal.module {
		top: 60px;
	}
	.articles.module .article-container {
		flex-basis: 100%;
		padding: 0;
		max-width: 100%;
		margin: 35px auto 0;
	}
	.people-container .people {
		flex-basis: 100%;
	}
	.tint-laws .photo-container {
		margin-top: 25px;
	}
	.tint-laws .photo-container picture {
		display: none;
	}
	.tint-laws a {
		height: 100%;
	}
	.tint-laws .photo-container .vehicletype {
		height: 100%;
	}
	.tint-laws #myInput {
		width: 100%;
	}
	.desktop {
		display: none;
	}
	.mobile-ctas {
		display: flex;
	}
}