/* Riverside Trailer Center Stylesheet - Frank Davis & Alex Clemons 2015 */

/* Accordion UX --Alex */

button#filter-control-expand.accordion {
	display: none;
}

a#filter-reset-button {
	border: 1px solid #ccc;
	padding: 2px 8px;
	font-weight: normal;
	letter-spacing: normal;
	text-transform: none;
	border-radius: 5px;
	color: #83868f;
	text-decoration: none;
	transition: .35s all;
	line-height: inherit;
	left: 12px;
	margin: 0;
	position: relative;
}

a#mobile-filter-reset-button {
	display: none;
	width: 100%;
	border-width: 1px;
	height: 38px;
	font-size: 11px;
	line-height: 36px;
	margin-right: 5px;
	margin-left: 5px;
}

a#filter-reset-button:hover {
	color: red;
	border: 1px solid red;
}

img.filter-icon, img.button-filter-icon {
	vertical-align: middle;
	margin-right: 6px;
}

@media screen and (max-width: 768px) {
	a#filter-reset-button {
		display: none
	}
	a#mobile-filter-reset-button {
		display: block;
	}
	button#filter-control-expand.accordion {
		display: block;
		padding: 0px 10px;
		margin-bottom: 10px;
		border-radius: 5px;
		background-color: transparent;
		border: 2px solid #58585a;
		background-color: #58585a;
		color: white;
		cursor: pointer;
		position: relative;
		font-size: 12px;
		font-weight: bold;
		height: 45px;
	}
	button#filter-control-expand.accordion:before {
		display: block;
		position: absolute;
		transition: transform 0.3s ease;
		content: "✕";
		transform: rotate(-45deg);
		font-size: 20px;
		line-height: 20px;
		top: 10px;
		right: 10px;
		color: white;
	}
	button#filter-control-expand.accordion.active:before {
		/* content: "-";
    top: 7px;
    right: 13px; */
		transform: rotate(0deg);
		color: white;
	}
	/* Style the buttons that are used to open and close the accordion panel */
	.accordion {
		color: #444;
		cursor: pointer;
		width: 100%;
		text-align: left;
		transition: 0.4s;
	}
	/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
	.active, .accordion:hover {}
	/* Style the accordion panel. Note: hidden by default */
	.panel {
		display: none;
		overflow: hidden;
	}
}

@media screen and (min-width: 769px) {
	.panel {
		display: block !important;
	}
}

/* Filter UX 2018 --Alex */

form#filter-controls,
form#rental {
	padding: 5px;
	background-color: #f9f9f9;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	margin-top: 10px;
	display: flex;
	vertical-align: middle;
	/* align-content: space-between; */
	align-items: center;
}

form#filter-controls div.select,
form#rental div.select {
	padding: 5px;
	margin-right: 10px;
	flex: 1;
	vertical-align: middle;
}

form#filter-controls div.select select, .edit-ui div.select select {
	background-color: #ffffff;
}

form#filter-controls div.select select.selected, .edit-ui div.select select.selected {
	background-color: #f1fff3;
	border: 1px solid #78b56e;
}

div.select select:focus {
	outline: 0;
}

div.select select:active {
	color: initial;
}

form#filter-controls input.button-primary {
	margin-right: 5px;
	margin-bottom: 0;
	flex: 0 1 auto;
	vertical-align: middle;
	line-height: 37px;
	height: 38px;
}

h6#filter-options {
	display: inline;
	vertical-align: middle;
	position: relative;
}

h6#filter-options.selected::before, button#filter-control-expand.selected.accordion::after {
	opacity: 1;
	position: absolute;
	content: "•";
	font-size: 24px;
	color: #6dbb1e;
	left: -13px;
	text-shadow: 0 0 1px white;
	animation: fade 2s ease-in infinite;
}

button#filter-control-expand.selected.accordion::after {
	left: 18px;
}

@keyframes fade {
	0%, 100% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
}

small#filter-count {
	display: inline;
	float: right;
	margin-bottom: 6px;
}

/* Unit flexbox 2018, --Alex */

.inventory-container-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	align-content: stretch;
	justify-content: space-between;
	margin-bottom: 20px;
}

.inventory-container-inner::after {
	content: '';
	flex: 0 1 31%;
}

.inventory-container-inner .unit {
	flex: 0 1 31%;
	background-color: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	/* overflow: hidden; */
	margin-bottom: 35px;
}

/* New bxSlider on inventory page - June 2019 */

.inventory-container .unit .bx-viewport.bx-viewport {
	height: auto !important;
	width: 100%;
	overflow: hidden;
	position: relative;
	height: 10px;
	box-shadow: none;
	background: transparent;
	left: 0;
	border: 0;
}

.inventory-container .unit .bx-wrapper {
	margin-bottom: 0;
}

.inventory-container .unit .bx-pager {
	position: relative;
	top: 0;
	padding: 0;
	bottom: auto;
}

.inventory-container .unit .bx-wrapper .bx-pager a {
	height: 3px;
	width: 30px;
	background-color: #e4e4e4;
	border-radius: 0;
}

.inventory-container .unit .bx-prev, .inventory-container .unit .bx-next {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.inventory-container .unit-image:hover .bx-prev, .inventory-container .unit-image:hover .bx-next {
	opacity: 1;
}

.inventory-container .unit .bx-prev:hover, .inventory-container .unit .bx-next:hover {
	background-color: transparent;
}

.inventory-container .unit .bx-prev {
	left: 0;
	background: url('/images/arrow-updated.svg') no-repeat;
	background-position: center top;
	background-size: 80px 80px;
	height: 40px;
	border-radius: 0;
}

.inventory-container .unit .bx-next {
	right: 0;
	background: url('/images/arrow-updated.svg') no-repeat;
	background-position: center bottom;
	background-size: 80px 80px;
	height: 40px;
	border-radius: 0;
}

.inventory-container .unit .bx-wrapper .bx-pager {
	position: absolute;
	bottom: 3%;
	top: auto;
	width: 100%;
	left: 0;
}

.inventory-container .unit .bx-wrapper .bx-pager a.active {
	background-color: #E35700;
}

/* New inventory carousel end slide CTA */

.unit div.inventory-grid-carousel img.bx-clone {
	display: none;
}

div.inventory-grid-carousel-cta {
	max-width: 100%;
	height: auto;
	border: 2px solid red;
}

/* Protect against single unit divs */

.inventory-container-inner .unit:first-child:last-child {
	flex: 0 1 31%;
}

.inventory-container-inner .unit::nth-child(3n+2):last-of-type {
	margin-right: auto;
	border: 4px solid red;
}

.inventory-container-inner .unit:last-child {
	/* margin-right: auto;
	margin-left: 3%; */
}

section.homepage-inventory .unit:last-child {
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.unit.new:before, .unit.sale:before, .unit.used:before, .camper-detail.new .bx-wrapper:after, .camper-detail.sale .bx-wrapper:after, .camper-detail.used .bx-wrapper:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 60px 60px 0 0;
	position: absolute;
	z-index: 98;
}

.unit.used:before, .camper-detail.used .bx-wrapper:after {
	border-color: #3262de transparent transparent transparent;
}

.unit.new:before, .camper-detail.new .bx-wrapper:after {
	border-color: #de7032 transparent transparent transparent;
}

.camper-detail.sale .bx-wrapper:after, .unit.sale:before {
	border-color: #de3232 transparent transparent transparent;
}

.camper-detail.new .bx-wrapper:after, .camper-detail.sale .bx-wrapper:after, .camper-detail.used .bx-wrapper:after {
	top: 0;
	left: 0;
}

.unit.new h5:after, .unit.sale h5:after, .unit.used h5:after, .camper-detail.new h1:after, .camper-detail.used h1:after, .camper-detail.sale h1:after {
	font-size: 10px;
	font-family: sans-serif;
	vertical-align: bottom;
	padding: 2px 5px;
	border-radius: 5px;
	margin-left: 5px;
	letter-spacing: 0.2px;
}

.unit.used h5:after, .camper-detail.used h1:after {
	content: "USED";
	color: #3262de;
	border: 1px solid #3262de;
}

.unit.new h5:after, .camper-detail.new h1:after {
	content: "NEW";
	color: #de7032;
	border: 1px solid #de7032;
}

.unit.sale h5:before, .camper-detail.sale h1:before {
	content: "SALE";
	color: #de3232;
	border: 1px solid #de3232;
}

.unit .unit-image {
	position: relative;
}

.unit .unit-image .view-floorplan {
	opacity: 0;
	position: absolute;
	text-align: center;
	bottom: 12%;
	border-radius: 5px;
	background-color: #00ace3;
	text-decoration: none;
	margin: 0 auto;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	padding: 4px 10px;
	z-index: 1;
	font-size: 0.9em;
	transition: opacity 0.3s ease;
	width: auto;
	min-width: 60%;
}

.unit .unit-image:hover .view-floorplan {
	opacity: 1;
	/* transition: background-color 0.3s ease; */
}

.unit .unit-image:hover .view-floorplan:hover {}

.view-floorplan::before {
	content: "";
	display: inline-block;
	font-size: 0.5em;
	margin-right: 5px;
	background-image: url("/images/chevrons.gif");
	background-size: 100%;
	width: 12px;
	height: 6px;
	position: relative;
	top: -1px;
	transform: rotate(-180deg);
	transform-origin: 50% 52%;
	transition: transform 0.3s ease;
}

.unit .unit-image .view-floorplan.floorplan-is-visible {
	opacity: 1;
}

.view-floorplan.floorplan-is-visible::before {
	transform: rotate(0deg);
}

.view-floorplan span:first-child {
	display: inline;
}

.view-floorplan span:last-child {
	display: none;
}

.view-floorplan.floorplan-is-visible span:first-child {
	display: none;
}

.view-floorplan.floorplan-is-visible span:last-child {
	display: inline;
}

.unit .unit-image+.floorplan-container {
	height: 0;
	max-height: 0;
	overflow: hidden;
	width: 100%;
	opacity: 0;
	position: relative;
	transition: all 0.3s ease-in-out;
	top: -8px;
}

.unit .unit-image+.floorplan-container.floorplan-is-visible {
	/* height: auto;
	opacity: 1;
	transition: all 0.3s ease-in-out; */
	overflow: hidden;
	opacity: 1;
	transition: max-height 0.3s ease-out;
	height: auto;
	max-height: 400px;
}

.unit .unit-image+.floorplan-container.floorplan-is-visible+.unit-card-inner ul.meta {
	display: none;
}

.unit .unit-image+.floorplan-container img {
	height: auto;
	width: 100%;
	transition: transform 0.1s ease;
}

.unit.new .unit-image:before, .unit.sale .unit-image:before, .unit.used .unit-image:before, .camper-detail.used .bx-wrapper:before, .camper-detail.sale .bx-wrapper:before, .camper-detail.new .bx-wrapper:before {
	position: absolute;
	z-index: 99;
	color: white;
	text-transform: uppercase;
	top: 0;
	left: 0;
	top: 11px;
	left: 5px;
	font-size: 12px;
	font-weight: bold;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}

.unit.new .unit-image:before, .camper-detail.new .bx-wrapper:before {
	content: "New";
}

.unit.sale .unit-image:before, .camper-detail.sale .bx-wrapper:before {
	content: "Sale";
}

.unit.used .unit-image:before, .camper-detail.used .bx-wrapper:before {
	content: "Used";
}

.unit span.stock {
	display: block;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 auto;
	text-align: center;
	color: #56a533;
	font-size: 12px;
	letter-spacing: 0.6px;
	line-height: 100%;
}

.unit span.stock.out {
	color: #e32a2a;
}

.unit span.stock.soon {
	color: #e39f2a;
}

.unit span.stock:before {
	content: "●";
	margin-right: 6px;
	font-size: 16px;
}

.unit .price-wrapper {
	text-align: center;
	padding-top: 10px;
	margin: 10px 0;
	border-top: 1px solid #e2e2e2;
}

.unit .price-wrapper div.monthly-payments {
	/* margin-bottom: 10px; */
	margin-top: 15px;
	/* color: #22a4c1; */
	border-top: 1px solid #e2e2e2;
	display: block;
	padding: 10px 0 5px 0;
}

/* div.monthly-payments span::before {
	content: '';
	position: relative;
	margin-right: 7px;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 16px;
	height: 16px;
	opacity: 1;
	background-repeat: no-repeat;
	background-size: 100%;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxNzkyIiB2aWV3Qm94PSIwIDAgMTc5MiAxNzkyIiB3aWR0aD0iMTc5MiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjMDA4NGNmIiBkPSJNMTMwMyA5NjRsLTUxMiA1MTJxLTEwIDktMjMgOXQtMjMtOWwtMjg4LTI4OHEtOS0xMC05LTIzdDktMjJsNDYtNDZxOS05IDIyLTl0MjMgOWwyMjAgMjIwIDQ0NC00NDRxMTAtOSAyMy05dDIyIDlsNDYgNDZxOSA5IDkgMjJ0LTkgMjN6bS0xMTc1IDcwMGgxNDA4di0xMDI0aC0xNDA4djEwMjR6bTM4NC0xMjE2di0yODhxMC0xNC05LTIzdC0yMy05aC02NHEtMTQgMC0yMyA5dC05IDIzdjI4OHEwIDE0IDkgMjN0MjMgOWg2NHExNCAwIDIzLTl0OS0yM3ptNzY4IDB2LTI4OHEwLTE0LTktMjN0LTIzLTloLTY0cS0xNCAwLTIzIDl0LTkgMjN2Mjg4cTAgMTQgOSAyM3QyMyA5aDY0cTE0IDAgMjMtOXQ5LTIzem0zODQtNjR2MTI4MHEwIDUyLTM4IDkwdC05MCAzOGgtMTQwOHEtNTIgMC05MC0zOHQtMzgtOTB2LTEyODBxMC01MiAzOC05MHQ5MC0zOGgxMjh2LTk2cTAtNjYgNDctMTEzdDExMy00N2g2NHE2NiAwIDExMyA0N3Q0NyAxMTN2OTZoMzg0di05NnEwLTY2IDQ3LTExM3QxMTMtNDdoNjRxNjYgMCAxMTMgNDd0NDcgMTEzdjk2aDEyOHE1MiAwIDkwIDM4dDM4IDkweiIvPjwvc3ZnPg==);
} */

/* Parts style */

.unit.part {
	padding-top: 15px;
	flex-basis: 100%;
	flex-direction: row;
	padding-bottom: 15px;
	margin-bottom: 20px;
	align-items: center;
	overflow: hidden;
}

.unit.part .price-wrapper {
	padding-bottom: 0;
	border: none;
}

.unit.part .price-wrapper hr {
	display: none;
}

.unit.part .unit-card-inner {
	/* width: 80%; */
	flex-basis: 60%;
}

.unit.part .unit-image {
	overflow: visible;
	max-width: 200px;
	height: auto;
}

.unit.part .unit-cta {
	/* width: 20%; */
	margin-top: 0;
	flex-basis: 20%;
}

.inventory-container-inner .unit.part+.unit.part:last-child {
	margin: 0 auto;
}

.unit.part h5 {
	font-size: 18px;
}

div.monthly-payments span {
	position: relative;
	padding: 4px 8px;
	/* background-color: #f2f8fa; */
	/* color: #0084cf; */
	border: 4px;
}

div.monthly-payments span>strong {
	color: #199ce7;
	font-size: 16px;
	font-weight: normal;
}

.unit .price {
	font-size: 22px;
	/* color: #8dc63f; */
	position: relative;
}

.unit.map .price {
	color: #808080;
}

.unit.map .price:after {
	content: "";
	position: absolute;
	width: 100%;
	top: 40%;
	left: 0;
	border-top: 2px solid #a61d1d;
}

.unit .unit-cta a.call {
	display: none;
}

.unit .unit-cta a.contact {
	display: block;
	color: #6d675c !important;
	border-color: #ccc !important;
}

.unit.map .unit-cta a.call {
	display: block;
	/* padding: 0; */
	padding: 3px 0;
}

.unit.map .unit-cta a.contact {
	display: none;
	color: #6d675c !important;
	border-color: #ccc !important;
}

.unit-cta a.call {
	position: relative;
	color: #6d675c !important;
	border-color: #ccc !important;
}

.unit-cta a.call img {
	margin-right: 5px;
	position: relative;
	/* display: inline-block; */
	top: 2px;
	left: -1px;
	height: 14px;
	width: 14px;
}

.unit .name {
	font-size: 22px;
	font-weight: bold;
	line-height: 115%;
	margin-bottom: 5px;
	margin-top: 5px;
}

.unit .description {
	font-size: 18px;
	margin-bottom: 10px;
}

.unit ul.meta {
	text-align: left;
	list-style-type: none;
	margin-top: 10px;
	margin-bottom: 5px;
}

.unit ul.meta li {
	margin: 0;
	/* line-height: 140%; */
	line-height: 160%;
}

.unit-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	vertical-align: middle;
}

.unit-title .unit-name {
	/* flex: 0 1 75%; */
	flex: 0 1 100%;
}

.unit-title .unit-brand-logo {
	/* flex: 0 1 22%; */
	/* currently unused */
}

.unit .unit-image {
	overflow: hidden;
	margin-bottom: 8px;
}

.unit .unit-image a {
	display: block;
	overflow: hidden;
	cursor: pointer;
}

.unit .unit-image img {
	transition: transform 0.1s ease;
	display: block;
}

.unit .unit-image:hover img, .floorplan-container img:hover {
	/* -ms-transform: scale(1.05); */
	/* -webkit-transform: scale(1.05); */
	/* transform: scale(1.05); */
}

img.brand-logo {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.unit-card-inner, .unit-cta {
	padding-left: 15px;
	padding-right: 15px;
}

.unit-cta hr {
	margin-top: 10px;
	margin-bottom: 20px;
}

.unit-cta {
	margin-top: auto;
	vertical-align: bottom;
	padding-bottom: 10px;
}

.unit-cta a.button {
	width: 100%;
	height: auto;
	padding: 3px 30px;
}

.unit-image img {
	width: 100%;
	height: auto;
}

/* unit flexbox cards end */

body {
	font-family: "Arial", Arial, sans;
	font-weight: 400;
	color: #58585a;
	height: 100%;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Afacad Flux", sans;
	color: #58585a;
}

.big {
	font-family: "Arial", Arial, sans;
	font-weight: 400;
	color: #58585a;
	font-size: 1.2em;
}

.phone-pre {
	margin-left: 30px;
	margin-right: 5px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
}

.phone {
	font-family: "Afacad Flux", sans;
	font-weight: 700;
	color: #fff;
	font-size: 1.2em;
}

.phone a:link, .phone a:visited, .phone a:hover, .phone a:active {
	color: white;
	text-decoration: none;
}

#header-wrapper, .section-wrapper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

#header {
	width: 80%;
	max-width: 960px;
	min-height: 100px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

h2.statusMessage {
	display: block;
	color: #1b70a1;
	background-color: #ddf2ff;
	font-size: 18px;
	margin-bottom: 0px;
	margin-top: 45px;
	line-height: 130%;
	padding: 10px;
}

#nav-container {
	margin: 0 auto;
}

#nav-container-inner {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

ul.left-nav, ul.right-nav, a#logo-container {
	display: inline;
}

ul.left-nav li, ul.right-nav li {
	display: inline;
	list-style-type: none;
	margin-right: 20px;
}

ul.right-nav li:last-child {
	margin-right: 0;
}

ul.right-nav li:first-child {
	margin-left: 20px;
}

ul.left-nav li a, ul.right-nav li a {
	display: inline-block;
	text-transform: uppercase;
	font-weight: 600;
	text-decoration: none;
	position: relative;
	font-family: "Arial", Arial, sans;
}

ul.left-nav li a:before, ul.right-nav li a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #91d7e8;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

ul.left-nav li a:hover:before, ul.right-nav li a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

ul.left-nav li a:link, ul.left-nav li a:visited, ul.right-nav li a:link, ul.right-nav li a:visited {
	-moz-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
	color: #58585a;
}

ul.left-nav li a:hover, ul.left-nav li a:active, ul.right-nav li a:hover, ul.right-nav li a:active {
	color: #91d7e8;
}

a#menu-icon {
	display: none;
	width: 32px;
	height: 32px;
	background: url(../images/menu-icon.svg) center no-repeat transparent;
	float: right;
}

img#logo {
	width: 96px;
	height: 96px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: -35px;
}

img#logo-mobile {
	display: none;
}

.banner-height {
	margin-top: 4%;
}

.header-image {
	background: url('../images/header-bg.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}

.bg-delivery {
	background-color: rgba(248, 237, 216, 0.27);
	padding-top: 1rem;
}

.bg-about {
	margin-top: 2rem;
	background-color: rgba(241, 241, 241, 0.43);
	padding-bottom: 1rem;
}

.bg-inventory {
	/* background: url('../images/bg-inventory.jpg');
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
*/
}

.bg-contact {
	background: url('../images/bg-contact.gif') no-repeat center bottom aliceblue;
	background-size: cover;
	margin-top: 3%;
	padding-bottom: 2rem;
}

.bg-contact h5, .bg-contact h6, .bg-contact form label {
	color: #587FA0;
}

label[for='message-input'] {
	margin-top: 15px;
}

textarea#message-input {
	margin-bottom: 10px;
}

.small, p.hours small {
	text-transform: uppercase;
	color: #587FA0;
	font-size: 0.9em;
}

small.disclaimer {
	padding: 8px;
	display: block;
	margin-bottom: 20px;
	line-height: 180%;
	color: #a7a7a7;
	border: 1px solid #ddd;
}

.bg-contact p {
	color: grey;
}

.bg-contact .content-margin a:link, .bg-contact .content-margin a:visited {
	color: #587FA0;
	text-decoration: underline;
}

.bg-contact .content-margin a:hover, .bg-contact .content-margin a:active {
	color: #78A2C6;
}

.bg-details small {
	text-transform: uppercase;
	font-size: 80%;
	font-weight: 700;
	/*color: #91D7E8*/
	;
	color: #1eaedb;
}

p.disclaimer {
	font-size: 80%;
	color: #aaaaaa;
	line-height: 2em;
}

.vert-center {
	margin-top: 65%;
}

.bg-about h5 {
	color: #838384;
}

.bg-about p {
	color: #888;
}

.bg-delivery h5 {
	color: #BFB2A0;
}

.bg-delivery p {
	color: #7B715E;
}

.camper-wrapper {
	top: 1rem;
	margin-bottom: -105px;
	position: relative;
	overflow: visible;
}

.camper {
	width: 115%;
}

.tagline {
	width: 100%;
}

.tagline-wrapper {
	position: relative;
}

.button-margin {
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 30%;
}

.subtext-margin {
	margin-top: 4rem;
}

.small-nudge {
	margin-top: 10px;
}

.content-margin {
	margin-top: 4rem;
}

.icons {
	width: 100%;
}

.background-dim {
	background-color: rgba(0, 48, 81, 0.25);
}

.inventory img {
	/* 	width: 220px;
	height: 165px;
*/
	width: 100%;
}

.inventory {
	background-color: #FAFAFA;
	padding: 8px;
	margin-bottom: 20px;
	line-height: 0;
	border-radius: 5px;
	-webkit-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 100px rgba(0, 0, 0, 0.1);
}

/*
.type-fifth-wheel {
	border: 4px solid red;
}
.type-travel-trailer {
	border: 4px solid blue;
}
.type-toy-hauler {
	border: 4px solid green;
}
*/

.button-reset:hover {
	color: red;
	border-color: red;
}

.inventory-price {
	float: right;
	display: block;
	margin-right: -8px;
	font-size: 1.5em;
	color: #58585a;
	padding: 16px;
	margin-top: 4px;
	background-color: rgb(198, 234, 244);
}

.inventory-price.strike {
	text-decoration: line-through;
}

.inventory-no-price {
	float: right;
	display: block;
	margin-right: -8px;
	font-size: 1em;
	color: #58585a;
	padding: 16px;
	margin-top: 4px;
	background-color: rgb(198, 234, 244);
}

.cta-wrapper {
	margin-top: 23px;
	float: right;
}

.cta-wrapper a:first-child {}

.cta-wrapper .spacer {
	display: inline;
}

.availability {
	font-size: small;
	display: block;
	width: auto;
	height: 20px;
	text-indent: 18px;
}

.availability.available {
	color: #8dc63f;
	background: url('../images/ava.png') 0px 8px transparent no-repeat;
	background-size: 12px;
	line-height: 29px;
}

.availability.sold {
	color: #bf1e2e;
	background: url('../images/ava.png') 0px -12px transparent no-repeat;
	background-size: 12px;
	line-height: 1;
}

/* Google Maps */

#google-maps {
	/*height:400px;
    width:550px;*/
	height: 400px;
	width: 100%;
}

.gm-style-iw * {
	display: block;
	width: 100%;
}

.gm-style-iw h4, .gm-style-iw p {
	margin: 0;
	padding: 0;
}

.gm-style-iw a {
	color: #4272db;
}

.details-image-wrapper-mobile {
	display: none;
}

.details-image-wrapper-mobile img, .details-image-wrapper img {
	width: 100%;
}

/* bx-pager thing*/

.thumb-container {
	width: 100%;
	overflow-y: hidden;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
	position: relative;
}

ul.thumb-wrapper::after {
	display: inline-block;
	content: "";
	width: 20px;
	position: relative;
	right: 0;
	top: 0;
}

div.thumb-container-wrapper {
	position: relative
}

div.thumb-container-wrapper::after {
	z-index: 1;
	content: "";
	opacity: 1;
	transition: opacity 0.6s ease;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
	pointer-events: none;
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

div.thumb-container-wrapper::before {
	z-index: 1;
	content: "";
	opacity: 1;
	transition: opacity 0.6s ease;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
	pointer-events: none;
	transform: rotate(180deg);
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

div.thumb-container-wrapper.hide-fader::after {
	opacity: 0;
}

/* thumb container scrollbar */

/* div#bx-pager.thumb-container::-webkit-scrollbar {
		height: 5px;
}

div#bx-pager.thumb-container::-webkit-scrollbar-track {
		background-color: #eeeeee;
    border-radius: 5px;
}

div#bx-pager.thumb-container::-webkit-scrollbar-thumb {
    border-radius: 5px;
		background-color: #929292;
} */

section#parts-carousel-wrapper {
	margin-bottom: 20px;
	margin-top: 20px;
}

#parts-carousel {}

#parts-carousel li.thumb-pic {
	width: 200px;
	white-space: pre-line;
	vertical-align: top;
	line-height: 120%;
	height: 250px;
	margin-right: 5px;
}

#parts-carousel li.thumb-pic strong {
	display: block;
}

ul.thumb-wrapper {
	list-style-type: none;
	margin-bottom: 0;
}

.thumb-container li.thumb-pic {
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 0;
}

.thumb-container li.thumb-pic img {
	border-radius: 3px;
}

.thumb-container li.thumb-pic:first-of-type {
	position: relative;
	z-index: 2;
}

.thumb-container li.thumb-pic a {
	border-bottom: 4px solid transparent;
	transition: all 0.3s ease-in;
}

.thumb-container li.thumb-pic a.active {
	border-bottom: 4px solid #E35700;
}

div.bx-wrapper ul li a img {
	/* opacity: 0; */
	transition: opacity .15s ease-in-out;
	-moz-transition: opacity .15s ease-in-out;
	-webkit-transition: opacity .15s ease-in-out;
}

div.bx-wrapper ul li.active-slide a img {
	/* opacity: 1; */
}

/* footer */

.bg-footer {
	background: #555;
	padding-top: 5rem;
}

.bg-footer a:link, .bg-footer a:visited {
	color: #7E7E7E;
	text-decoration: none;
	font-size: 10pt;
}

.bg-footer a:hover, .bg-footer a:active {
	color: #fff;
}

.bg-footer ul li {
	margin-bottom: 0.5em;
}

.footer-left {
	padding-top: 10px;
	padding-bottom: 30px;
}

.footer-left-inner {
	margin-right: 40px;
	float: right;
	text-align: right;
}

.footer-left-inner ul, .footer-right-inner ul {
	list-style-type: none;
	padding-right: 10%;
	margin-bottom: 0;
}

.footer-right {
	padding-top: 10px;
	border-left: 1px solid #6b6b6b;
}

.footer-right-inner {
	margin-left: 40px;
	float: left;
	text-align: left;
}

ul#social li:last-child {
	font-size: small;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 3px;
}

ul#social li {
	color: grey;
}

ul#social li a {
	padding-left: 10px;
}

.margin-zero {
	margin-left: 0;
}

img.footer-logo {
	width: 100px;
	height: 100px;
	position: relative;
	left: 50%;
	margin-left: -70px;
	margin-bottom: 30px;
}

div.mobile-swipe-help-container {
	display: none;
}

/* Tabbed Navigation */

ul.tabbed-nav {
	display: block;
	clear: both;
	/* border: 1px solid red; */
}

ul.tabbed-nav li {
	float: left;
	list-style-type: none;
	position: relative;
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: -1px;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
}

ul.tabbed-nav li.is-active {
	background-color: #f7feff;
	border: 1px solid #e2f9ff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom: 1px solid #f7feff;
	padding-top: 9px;
	padding-bottom: 9px;
}

ul.tabbed-nav li:hover {
	background-color: #f4f7f9;
	padding-bottom: 9px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

ul.tabbed-nav li.is-active:hover {
	background-color: #f7feff;
}

ul.tabbed-nav li a {
	text-decoration: none;
}

div.tabbed-content-container {
	background-color: #f7feff;
	border: 1px solid #e2f9ff;
	padding: 20px;
	clear: both;
	margin-bottom: 1em;
}

@media (min-width: 768px) {
	.column.newspaper {
		column-count: 3;
	}
}

.tab-content {
	display: none;
}

.tab-content.is-active {
	display: inherit;
}

.tab-content table td {
	border-bottom: 1px solid #c6eaf4;
	padding: 4px 0px;
}

ul.tab-content-ul {
	list-style-type: none;
}

ul.tab-content-ul li {
	margin-bottom: 6px;
	background-image: url('/images/check.svg');
	background-repeat: no-repeat;
	background-size: 16px;
	background-position-y: 7px;
	padding-left: 35px;
	break-inside: auto;
}

ul.tab-content-options-ul {
	list-style-type: none;
}

ul.tab-content-options-ul li {
	margin-bottom: 6px;
	background-repeat: no-repeat;
	background-size: 16px;
	background-position-y: 7px;
	padding-left: 35px;
}

ul.tab-content-options-ul li {
	margin-bottom: 6px;
	background-image: url(/images/plus.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position-y: 6px;
	padding-left: 30px;
}

.tab-link-mobile {
	display: none;
}

@media screen and (max-width: 600px) {
	ul.tabbed-nav li {
		display: none;
	}
	.tab-link-mobile {
		display: block;
		padding: 5px 10px;
		margin-bottom: 10px;
		border-radius: 5px;
		transition: background-color 0.3s ease;
		background-color: transparent;
		border: 1px solid #1eaedb;
		color: #1eaedb;
		cursor: pointer;
		position: relative;
	}
	.tab-link-mobile:after {
		display: block;
		position: absolute;
		transition: transform 0.3s ease;
		content: "✕";
		transform: rotate(-45deg);
		font-size: 20px;
		line-height: 20px;
		top: 7px;
		right: 10px;
		color: #1eaedb;
	}
	.tab-link-mobile.active {
		background-color: #1eaedb;
		border: 1px solid #1eaedb;
		color: white;
	}
	.tab-link-mobile.active:after {
		/* content: "-"; */
		/* top: 1px; */
		transform: rotate(0deg);
		/* right: 12px; */
		color: white;
	}
}

/* Filter Classes for Inventory Listing Page */

/* Mobile "first" queries */

@media screen and (max-width: 1200px) {
	.phone-pre {
		margin-left: 10px;
	}
	.camper-detail .camper-detail-meta {
		padding-left: 0 !important;
	}
	.camper-detail a.download-brochure, .camper-detail a.get-financing {
		/* margin-left: 35px; */
		position: relative;
		top: 6px;
	}
}

@media screen and (max-width: 1080px) {
	.inventory-button {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (max-width: 1000px) {
	.phone-pre {
		display: none;
	}
	.phone {
		display: inline-block;
		margin-top: 5px;
		float: left;
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}
	.inventory-button {
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}
	.camper-wrapper {
		margin-top: 5%;
		overflow-x: hidden;
		/* top: 1.3em; */
	}
	.camper {
		width: 130%;
	}
	.icons {
		margin-top: 15%;
	}
}

@media only screen and (max-width: 800px) {
	.camper-detail a.download-brochure, .camper-detail a.get-financing {
		margin-left: 0;
		width: 100%;
		top: 0;
	}
	.camper-detail li.thumb-pic img {
		width: 100px;
		height: 75px;
	}
}

/* was 750 */

@media only screen and (max-width: 700px) {
	.background-dim {
		background-color: rgba(0, 48, 81, 0.2);
	}
	.camper-wrapper {
		top: 1em;
		left: -18px;
	}
	a#logo-container {
		display: block;
		float: left;
	}
	img#logo {
		width: 80px;
		height: 80px;
		margin-left: 0;
	}
	.icons {
		margin-top: 33.3333%;
	}
	#header {
		padding-bottom: 0;
	}
	ul.right-nav li:first-child {
		margin-left: 0;
	}
	ul.left-nav, ul.right-nav {
		position: relative;
		top: 30px;
	}
	.vert-center {
		margin-top: 85%;
	}
	.bg-contact {
		margin-top: 6%;
	}
	h2.statusMessage {
		display: block;
		margin-bottom: 10px;
		margin-top: 0px;
		line-height: 130%;
		padding: 10px;
	}
}

/* mobile menu break point */

@media only screen and (max-width: 670px) {
	.content-margin {
		margin-top: 1em;
	}
	.background-dim {
		background-color: rgba(0, 48, 81, 0.3);
	}
	.header-image {
		background: url('../images/header-bg-mobile.jpg');
		background-size: cover;
		background-repeat: no-repeat;
		background-attachment: scroll;
	}
	.camper-wrapper {
		top: 2.0em;
	}
	.camper {
		width: 110%;
	}
	a#menu-icon {
		display: block;
		position: relative;
		top: 18px;
	}
	a#menu-icon.mobile {
		background: url(../images/menu-icon-close.svg) center no-repeat transparent;
	}
	ul.left-nav, ul.right-nav {
		display: none;
	}
	ul.left-nav.mobile, ul.right-nav.mobile {
		display: block;
		position: absolute;
		z-index: 9999;
		background: rgba(42, 42, 42, 0.94);
		width: 100%;
		left: 0;
		margin-bottom: 0;
	}
	ul.left-nav.mobile {
		top: 90px;
	}
	ul.right-nav.mobile {
		top: 218px;
	}
	ul.left-nav.mobile li, ul.right-nav.mobile li {
		display: block;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 0;
		margin-top: 0;
	}
	ul.left-nav.mobile li a, ul.right-nav.mobile li a {
		color: #fff;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	ul.left-nav.mobile li a:hover, ul.right-nav.mobile li a:hover {
		transition: none;
	}
	ul.left-nav.mobile li a:before, ul.right-nav.mobile li a:before {
		visibility: hidden;
		transition: none;
	}
	ul.left-nav.mobile li a:before:hover, ul.right-nav.mobile li a:before:hover {
		transition: none;
		visibility: hidden;
	}
	img#logo {
		display: none;
	}
	img#logo-mobile {
		display: block;
		width: 140px;
		height: 70px;
	}
	#header {
		padding-top: 10px;
		min-height: 80px;
		width: 85%;
		max-width: 960px;
		margin: 0 auto;
	}
	.google-maps-container {
		background: url('../images/scroll.png') no-repeat center right transparent;
	}
	#google-maps {
		width: 90%;
		float: left;
	}
	div.mobile-swipe-help-container {
		display: block;
		text-transform: uppercase;
		font-size: 12px;
		color: grey;
		letter-spacing: 1px;
		margin-bottom: 10px;
		position: relative;
	}
	div.mobile-swipe-help-container span {
		display: inline-block;
		top: 3px;
		position: absolute;
		margin-left: 10px;
		/* line-height: 0em; */
	}
	img.mobile-swipe-help {
		height: 22px;
		width: 22px;
	}
	.big {
		font-size: 1.0em;
	}
	.button.button-primary.inventory-button {
		background-color: orange;
		border-color: orange;
	}
}

@media only screen and (max-width: 550px) {
	.cta-wrapper {
		margin-top: 10px;
		margin-bottom: 10px;
		float: none;
	}
	/* .cta-wrapper a {
	width: 49%;
} */
	.cta-wrapper a:first-child {
		margin-right: 2%;
	}
	.cta-wrapper .spacer {
		display: none;
	}
	.price h4 {
		margin-bottom: 2px;
	}
	.details-image-wrapper-mobile {
		display: block;
	}
	.details-image-wrapper {
		display: none;
	}
	.background-dim {
		background-color: rgba(0, 0, 0, 0);
	}
	.tagline {
		margin-bottom: 10px;
	}
	.camper {
		width: 110%;
		margin-right: -5px;
		margin-bottom: 15px;
	}
	.camper-wrapper {
		top: -0.5em;
		overflow: hidden;
	}
	.phone {
		margin-bottom: -10px;
		font-size: 3rem;
	}
	.inventory-button {
		font-size: 1.8rem;
		padding: 25px;
		line-height: 0.2em;
	}
	.vert-center {
		margin-top: 2em;
	}
	.content-margin {
		margin-top: 1em;
	}
	.subtext-margin {
		margin-top: 18%;
	}
	.banner-height {
		margin-top: 8%;
	}
	.bg-about {
		padding-top: 1rem;
	}
	.icons {
		display: none;
	}
	.bg-delivery {
		background-image: url('../images/route-s.png');
		background-color: rgba(248, 237, 216, 0.27);
		background-size: 160px;
		background-repeat: no-repeat;
		background-position: 80% center;
	}
	.bg-about {
		background-image: url('../images/about-s.png');
		background-size: 160px;
		background-repeat: no-repeat;
		background-position: 8% center;
	}
	.footer-left, .footer-right {
		border-left: 1px solid #6b6b6b;
	}
	.footer-right {
		margin-top: -40px;
	}
	.footer-left-inner {
		float: left;
		text-align: left;
		margin-left: 20px;
		margin-right: 0;
	}
	.footer-right-inner {
		margin-left: 20px;
		margin-right: 0;
	}
	.camper-wrapper {
		width: 100%;
		margin-left: 40px;
	}
}

/* was 400 */

@media only screen and (max-width: 480px) {
	img.footer-logo {
		margin-left: -55px;
	}
	.background-dim {
		background-color: rgba(0, 0, 0, 0);
	}
}

@media only screen and (max-width: 400px) {
	.cta-wrapper a {
		width: 100%;
	}
	.cta-wrapper a:first-child {
		margin-right: 0;
	}
	.cta-wrapper.fixed {
		position: fixed;
		bottom: 0;
		width: 100%;
		margin: 0;
		background: white;
		left: 0;
		padding: 15px 15px 5px 15px;
		box-sizing: border-box;
		z-index: 999999;
		-webkit-box-shadow: 0px -4px 30px 0px rgba(0, 0, 0, 0.6);
		-moz-box-shadow: 0px -4px 30px 0px rgba(0, 0, 0, 0.6);
		box-shadow: 0px -4px 30px 0px rgba(0, 0, 0, 0.6);
	}
	.cta-wrapper.fixed a {
		width: 49%;
	}
	.cta-wrapper.fixed a:first-child {
		margin-right: 2%;
	}
	.bg-footer.allow-fixed-cta {
		padding-bottom: 120px;
	}
}

@media screen and (max-width: 1200px) {
	/* moved unit queries below */
}

@media screen and (max-width: 1000px) {
	.inventory-container-inner .unit, .inventory-container-inner .unit:first-child:last-child {
		flex: 0 1 48%;
	}
	.inventory-container-inner::after {
		content: '';
		flex: 0 1 48%;
	}
	.unit .name {
		font-size: 26px;
	}
	form#filter-controls {
		flex-wrap: wrap;
	}
	form#filter-controls input.button-primary {
		flex: 1 1 10%;
		margin-top: 5px;
		margin-bottom: 5px;
		margin-left: 5px;
	}
	form#filter-controls div.select:last-of-type {
		flex: 1 1 100%;
	}
	form#filter-controls div.select {
		flex: 1 1 40%;
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.inventory-container-inner .unit, .inventory-container-inner .unit:first-child:last-child {
		flex: 0 1 100%;
	}
	.inventory-container-inner .unit:last-child {
		margin-right: auto;
		margin-left: 0;
	}
	.inventory-container-inner::after {
		content: '';
		flex: 0 1 100%;
	}
	.unit .name {
		font-size: 24px;
	}
	h6#filter-options {
		display: none;
	}
	img.filter-icon {
		display: none;
	}
	.unit .unit-image .view-floorplan {
		opacity: 1;
		font-size: 1.0em;
		padding: 6px 10px;
	}
}

@media only screen and (max-width: 670px) {
	form#filter-controls {
		flex-wrap: wrap;
		/* flex-direction: column; */
		padding: 10px;
		margin-top: 0;
	}
	form#filter-controls input.button-primary {
		flex: 1 1 100%;
		/* margin-right: 0; */
		width: 100%;
		margin-top: 5px;
		margin-bottom: 10px;
		/* padding-right: 5px; */
	}
	form#filter-controls div.select {
		flex: 1 1 100%;
		margin-right: 0;
		width: 100%;
	}
	.unit .name {
		font-size: 20px;
	}
	.unit .description {
		font-size: 16px;
	}
	/* .unit .meta {
		display: none;
	} */
}

div#finance-calculator-wrapper {
	padding: 10px 20px;
}

form#finance-calculator label {
	display: block;
}

div#payment-container {
	font-family: "Afacad Flux", sans;
	font-size: 3em;
	font-weight: 100;
}