.loading
{
	z-index: 1001;
}

.page-banner
{
	width: 100%;
	background: #f3f3f3;
	border-bottom: 2px solid #dadada;
}
.page-banner .wrapper
{
	padding: 0 20px;
}
.page-banner h1
{
	font-size: 13pt;
}

@media (min-width: 700px)
{
	.page-banner h1
	{
		font-size: 18pt;
	}
}

.wheels-holder
{
   overflow: auto;
   width: 100%;
}

/* filters */

#wheel-filters
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	z-index: 1001;
	display: flex;
	flex-direction: column;
	background: rgba(0,0,0,0.2);
	
	-ms-transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#wheel-filters.visible
{
	-ms-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	pointer-events: all;
}
#wheel-filters .container
{
	width: 100%;
	height: auto;
	max-height: 100%;
	margin: auto;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
#wheel-filters .top
{
	padding: 10px;
}
#wheel-filters .top .heading
{
	margin: 0;
	position: relative;
	padding: 6px 0px;
}
#wheel-filters .top .heading .close
{
	position: absolute;
	right: 0;
	top: -3px;
	width: 34px;
	height: 34px;
	border-radius: 100%;
	background: #ddd;
	background-image: url('/images/icons/close-thin.png');
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
}
#wheel-filters .filter-group-holder
{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 70vh;
	overflow: hidden;
	padding: 5px 10px;
	position: relative;
}
#wheel-filters .bottom
{
	padding: 10px;
	border-top: 1px solid #ddd;
	text-align: right;
}
#wheel-filters .filter-group
{
	width: 100%;
	height: 32%;
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #ddd;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
#wheel-filters .filter-group:last-child,
#wheel-filters .filter-group.open
{
	border-bottom: 0;
}
#wheel-filters .filter-group.open
{
	height: 100%;
}
#wheel-filters .filter-group.closed
{
	height: 0;
	opacity: 0;
}
#wheel-filters .filter-group .filter-section-heading
{
	width: 100%;
	font-size: 16pt;
	display: flex;
	margin: 0;
	align-items: center;
	justify-content: left;
	padding: 0 10%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#wheel-filters .filter-group.open .filter-section-heading
{
	opacity: 0;
}
#wheel-filters .filter-group .filter-section-heading img
{
	width: 60px;
	margin-right: 20px;
}
#wheel-filters .filter-group .filter-section
{
	position: absolute;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	z-index: 2;
	/*transform: translateX(100%);*/
	height: 100%;
	overflow: auto;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#wheel-filters:not(.visible) .filter-group.open .filter-section
{
	opacity: 0;
	pointer-events: none;
}
#wheel-filters .filter-group.open .filter-section
{
	/*transform: translateX(0%);*/
	opacity: 1;
	pointer-events: all;
}
#wheel-filters .filter-group .filter-section .option-top
{
	text-align: left;
	padding: 5px 20px;
	border-bottom: 1px solid #e3e3e3;
}
#wheel-filters .filter-group .filter-section .option-top .option-back span
{
	font-size: 12pt;
}
#wheel-filters .filter-group .filter-section .option-top .option-title
{
	float: right;
	font-weight: bold;
	padding-top: 4px;
}

#wheel-filters .filter-option
{
	display: none;
}
#wheel-filters .filter-option + label
{
	position: relative;
	display: block;
	width: 100%;
	padding: 13px 50px;
	border-bottom: 1px solid #eee;
}
#wheel-filters .filter-option + label:last-child
{
	border-bottom: 0;
}
#wheel-filters .filter-option:checked + label
{
	background: #fafafa;
}
#wheel-filters .filter-option + label:before
{
	content: '';
	position: absolute;
	z-index: 2;
	display: block;
	width: 16px;
	height: 25px;
	top: 10px;
	left: 20px;
	background: url(/images/icons/tick.png) no-repeat center;
	background-size: contain;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
#wheel-filters .filter-option:checked + label:before
{
	-webkit-transition: all 0.3s cubic-bezier(.36,2,.78,.8);
	-moz-transition: all 0.3s cubic-bezier(.36,2,.78,.8);
	-ms-transition: all 0.3s cubic-bezier(.36,2,.78,.8);
	-o-transition: all 0.3s cubic-bezier(.36,2,.78,.8);
	transition: all 0.3s cubic-bezier(.36,2,.78,.8);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
#wheel-filters .filter-option + label:after
{
	content: '';
	position: absolute;
	z-index: 1;
	display: block;
	width: 10px;
	height: 10px;
	top: 18px;
	left: 22px;
	border-radius: 100%;
	border: 2px solid #ddd;
}
#wheel-filters .filter-option:checked + label:after
{
	width: 0px;
	height: 0px;
	border: 0;
}

#wheel-filters .filter-btn-red
{
	color: #529c35;
	background: transparent;
}
#wheel-filters .filter-btn-red:hover
{
	border-color: #529c35;
}

.current-filters
{
	display: none;
}

@media (min-width: 700px)
{
	#wheel-filters
	{
		top: 15px;
		z-index: 12;
	}
	#wheel-filters .filter-group-holder
	{
		flex-direction: row;
		height: auto;
		padding: 40px 10px;
	}
	#wheel-filters .filter-group
	{
		height: 100% !important;
		display: block;
		border: 0;
		opacity: 1 !important;
		padding: 0 4px;
	}
	#wheel-filters .filter-group .filter-section-heading
	{
		background: #eee;
		padding: 0 5px;
		font-size: 12pt;
		opacity: 1 !important;
	}
	#wheel-filters .filter-group .filter-section-heading img
	{
		width: 40px;
		margin-right: 5px;
	}
	#wheel-filters .filter-group .filter-section
	{
		position: relative;
		height: auto;
		opacity: 1;
		border: 1px solid #ddd;
		border-top: 0;
		max-height: 350px;
		max-height: 38vh;
	}
	#wheel-filters.visible .filter-group .filter-section
	{
		pointer-events: all;
	}
	#wheel-filters .filter-group .filter-section .option-top
	{
		display: none;
	}
	#wheel-filters .filter-option + label
	{
		padding: 13px 5px 13px 25px;
	}
	#wheel-filters .filter-option + label:before
	{
		left: 10px;
	}
	#wheel-filters .filter-option + label:after
	{
		left: 12px;
	}
	
	.current-filters
	{
		display: inline-block;
		background: #eee;
		font-size: 10pt;
		padding: 6px 10px;
		position: relative;
	}

	.current-filters.faded
	{
		opacity: 0.3;
		text-decoration: line-through;
		pointer-events: none;
	}

	.current-filters #clear-filters-instant
	{
		position: absolute;
		right: -32px;
		top: 0px;
		width: 32px;
		height: 100%;
		cursor: pointer;
		background-color: #e2dddd;
		background-image: url('/images/icons/cross-red.png');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
	}
}

@media (min-width: 1000px)
{
	#wheel-filters
	{
		position: absolute;
		padding: 0 10px;
		height: auto;
		background: transparent;
	}
	#wheel-filters .top .heading .close
	{
		cursor: pointer;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	#wheel-filters .top .heading .close:hover
	{
		background-color: #ccc;
	}
	
	#wheel-filters .filter-group .filter-section-heading
	{
		padding: 3px 10px;
		font-size: 13pt;
	}
	#wheel-filters .filter-group .filter-section-heading img
	{
		width: 45px;
		margin-right: 10px;
	}
	
	#wheel-filters .filter-option + label
	{
		font-size: 11pt;
		cursor: pointer;
	}
	
	#wheel-filters .filter-option + label
	{
		padding: 13px 20px 13px 40px;
	}
	#wheel-filters .filter-option + label:before
	{
		left: 14px;
	}
	#wheel-filters .filter-option + label:after
	{
		left: 16px;
	}
}

/* results */

.wheel-results
{
	/*border: solid #ccc;
	border-width: 2px 2px 0 2px;*/
	display: block;
	position: relative;
	overflow: hidden;
}
.wheel-results .load
{
	display: block;
	width: 100%;
	position: relative;
	height: 3em;
}
.wheel-results .wheels
{
	vertical-align: top;
	display: block;
	position: relative;
	overflow-x: scroll;
	white-space: nowrap;
	-webkit-transform: translate3d(0,0,1px);
	transform: translate3d(0,0,1px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	/*-webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;*/
}
.wheel-results #favourite-wheels
{
	display: none;
}
.wheel-results .wheel-page
{
	vertical-align: top;
	display: inline-block;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: flex-start;
	overflow: hidden;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: translate3d(0,0,1px);
	transform: translate3d(0,0,1px);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.wheel-results .wheels .wheel
{
	display: block;
	vertical-align: top;
	width: 33%;
	float: left;
	padding: 10px;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	opacity: 1;
}
.wheel-results .wheels .wheel-page.lazy .wheel
{
	opacity: 0;
}
.wheel-results .wheels .wheel .wheel-img
{
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	display: block;
	margin: auto;
}
.wheel-results .wheels .wheel .brand-img
{
	position: absolute;
	bottom: 2px;
	right: 2px;
	width: 45%;
	z-index: 2;
}
.wheel-results .wheels .wheel .fav-img
{
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	z-index: 2;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-image: url('/images/icons/favourite-grey.png');
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wheel-results .wheels .wheel.favourite .fav-img
{
	background-image: url('/images/icons/favourite-red.png');
}
.wheel-results .wheels .wheel.favourite.in-fav .fav-img
{
	background-image: url('/images/icons/cross-red.png');
}
.wheel-results .wheels .wheel.selected
{
	background: #eee;
}
.wheel-results .wheels .wheel.selected .wheel-img
{
	-ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.wheel-results .ss-scroll
{
	opacity: 1 !important;
}

.wheel-results .loading-page
{
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 70px;
}

.wheel-results .navigation
{
	display: block;
	margin-top: 2px;
	background: #eee;
	overflow: auto;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.wheel-results .navigation .previous,
.wheel-results .navigation .next
{
	display: block;
	float: left;
	cursor: pointer;
	font-size: 20px;
	padding: 10px;
	background: #ddd;
	width: 15%;
	text-align: center;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wheel-results .navigation .previous:hover,
.wheel-results .navigation .next:hover
{
	background: #ddd;
}
.wheel-results .navigation .current
{
	display: block;
	float: left;
	width: 70%;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}

@media (min-width: 600px)
{
	.wheel-results .wheels .wheel
	{
		width: 16.6%;
		padding: 16px;
	}
}

@media (min-width: 900px)
{
	.wheel-results .hide-overflow
	{
		width: 80%;
		width: calc(100% - 60px);
		display: block;
		margin: auto;
	}
	
	.wheel-results .navigation
	{
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		margin: 0;
		overflow: visible;
		pointer-events: none;
	}
	.wheel-results .navigation .current
	{
		display: none;
	}
	.wheel-results .navigation .previous,
	.wheel-results .navigation .next
	{
		position: absolute;
		z-index: 10;
		pointer-events: all;
		top: 0;
		left: 0;
		width: 30px;
		height: 100%;
		float: none;
		background: transparent;
	}
	.wheel-results .navigation .next
	{
		left: auto;
		right: 0;
	}
	.wheel-results .navigation .previous span,
	.wheel-results .navigation .next span
	{
		font-size: 24pt;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 34px;
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#form-success
	{
		text-align: right;
		width: 100%;
	}
}

.wheels-holder .top-buttons
{
	display: block;
	width: 100%;
	text-align: center;
	overflow: auto;
	margin-bottom: 10px;
}
.wheels-holder .top-buttons button, .wheels-holder .top-buttons a
{
	position: relative;
	border: none;
	display: inline-block;
	width: auto;
	color: #529c35;
	background: #f3f3f3;
	padding: 8px;
	line-height: 1.4em;
	margin: 0;
	text-align: left;
	vertical-align: middle;
	font-size: 11pt;
	-webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.wheels-holder .top-buttons button img, .wheels-holder .top-buttons a img
{
	vertical-align: text-bottom;
	width: 20px;
}
.wheels-holder .top-buttons a img
{
	display: inline-block;
}
.wheels-holder .top-buttons #see-tyres-for-vehicle
{
	margin-top: 4px;
}

.wheels-holder .top-buttons button.disabled
{
	color: #666;
}
.wheels-holder .top-buttons button.disabled:hover
{
	border-color: #fff;
}
.wheels-holder .top-buttons button.disabled img
{
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.wheels-holder .top-buttons .current
{
	display: none;
}

@media (min-width: 530px)
{
	.wheels-holder .top-buttons #see-tyres-for-vehicle
	{
		margin-top: 0px;
	}
}
@media (min-width: 900px)
{
	.wheels-holder .top-buttons
	{
		text-align: left;
		padding-bottom: 5px;
	}
	.wheels-holder .top-buttons button, .wheels-holder .top-buttons a
	{
		border: 2px solid #fff;
		background: transparent;
	}
	.wheels-holder .top-buttons button:hover, .wheels-holder .top-buttons a:hover
	{
		border-color: #529c35;
		background: transparent;
	}
	.wheels-holder .top-buttons a:hover
	{
		text-decoration: none;
	}
	
	.wheels-holder .top-buttons .current
	{
		display: inline-block;
		float: right;
		font-size: 10pt;
		position: relative;
		top: 10px;
	}
}

.wheel-filter
{
	background: #529c35;
	color: #fff;
	padding: 7px 10px;
	cursor: pointer;
	display: none; /* TEMP */
}
.wheel-filter > *
{
	vertical-align: middle;
}
.wheel-filter h3
{
	color: #fff;
	margin: 0;
	padding: 0;
	display: inline-block;
	width: auto;
}
.wheel-filter .total
{
	font-size: 11pt;
	border-left: 1px solid #fff;
	padding-left: 7px;
	margin-left: 5px;
}

/* social share */

.share-holder
{
	margin-top: 10px;
	border-top: 1px solid #eee;
	padding-top: 10px;
}
.share-holder.top
{
	display: none;
}
.share-holder .share-toggle
{
	display: none;
}
.share-holder .share-btns
{
	display: flex;
	flex-direction: row;
	justify-content: center;
	vertical-align: middle;
}
.share-holder .share-btn
{
	display: block;
	width: 40px;
	height: 40px;
	background: #529c35;
	margin: 0 4px;
	color: #fff;
	font-size: 20px;
}
.share-holder .share-btn.facebook
{
	background-color: #3b5998;
}
.share-holder .share-btn.twitter
{
	background-color: #38A1F3;
}
.share-holder .share-btn.pinterest
{
	background-color: #BD081C;
}
.share-holder .share-btn .tooltip
{
	display: none;
}

@media (min-width: 700px)
{
	.share-holder .share-btn
	{
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
}

@media (min-width: 900px)
{
	.share-holder
	{
		display: none;
	}
	.share-holder.top
	{
		position: absolute;
		z-index: 2;
		top: 10px;
		right: 3px;
		padding: 0;
		border: 0;
		margin: 0;
		text-align: right;
	}
	.share-holder.top
	{
		display: block;
	}
	.share-holder .share-toggle
	{
		background: #333;
		color: #fff;
		font-size: 12pt;
		display: inline-block;
		padding: 10px;
		border: 0;
		margin-bottom: 5px;
	}
	.share-holder .share-toggle img
	{
		display: inline-block;
		width: 17px;
		height: 17px;
		vertical-align: text-bottom;
		margin-left: 2px;
	}
	.share-holder .share-toggle .text
	{
		vertical-align: middle;
	}
	.share-holder .share-btns
	{
		overflow: hidden;
		flex-direction: column;
		align-items: flex-end;
	}
	.share-holder .share-btn
	{
		width: 40px;
		height: 40px;
		font-size: 20px;
		padding: 8px 10px;
		margin: 5px 0;
		position: relative;
		white-space: nowrap;
		opacity: 0;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: all 0.3s ease, -webkit-transform 0.3s ease, opacity 0.3s ease;
		-moz-transition: all 0.3s ease, -moz-transform 0.3s ease, opacity 0.3s ease;
		-ms-transition: all 0.3s ease, -ms-transform 0.3s ease, opacity 0.3s ease;
		-o-transition: all 0.3s ease, -o-transform 0.3s ease, opacity 0.3s ease;
		transition: all 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
	}
	.share-holder .share-btn:hover
	{
		width: 150px;
	}
	.share-holder .share-btns.visible .share-btn
	{
		opacity: 1;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%);
	}
	.share-holder .share-btn .tooltip
	{
		margin-left: 10px;
		color: #fff;
		font-size: 9pt;
		white-space: nowrap;
		display: inline-block;
		opacity: 0;
		pointer-events: none;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.share-holder .share-btn:hover .tooltip
	{
		margin-left: 10px;
		opacity: 1;
		-webkit-transform: translateX(0%);
		-moz-transform: translateX(0%);
		-ms-transform: translateX(0%);
		-o-transform: translateX(0%);
		transform: translateX(0%);
	}
	
	.share-holder .share-btn.twitter
	{
		-webkit-transition: all 0.3s ease, -webkit-transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
		-moz-transition: all 0.3s ease, -moz-transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
		-ms-transition: all 0.3s ease, -ms-transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
		-o-transition: all 0.3s ease, -o-transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
		transition: all 0.3s ease, transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
	}
	.share-holder .share-btn.pinterest
	{
		-webkit-transition: all 0.3s ease, -webkit-transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
		-moz-transition: all 0.3s ease, -moz-transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
		-ms-transition: all 0.3s ease, -ms-transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
		-o-transition: all 0.3s ease, -o-transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
		transition: all 0.3s ease, transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
	}
	.share-holder .share-btn.email
	{
		-webkit-transition: all 0.3s ease, -webkit-transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
		-moz-transition: all 0.3s ease, -moz-transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
		-ms-transition: all 0.3s ease, -ms-transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
		-o-transition: all 0.3s ease, -o-transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
		transition: all 0.3s ease, transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
	}
}

/* vehicle */

#vehicle
{
	position: relative;
	width: 100%;
	margin: 0 auto;
	z-index: 1;
	overflow: visible;
}

#vehicle img
{
	position: relative;
	z-index: 2;
}
#vehicle #shadow
{
	z-index: 1;
}
#vehicle #front-tyre,
#vehicle #rear-tyre
{
	z-index: 3;
}
#vehicle #front-wheel,
#vehicle #rear-wheel
{
	z-index: 4;
}

.vehicle-holder
{
	position: relative;
	z-index: 1;
	width: 100%;
	padding-top: 30px;
}
/*.vehicle-holder.load:before
{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	z-index: 2;
}*/
.vehicle-holder.load:after,
.wheel-results .loading-page:after
{
	content: '';
	display: block;
	position: absolute;
	top: 48%;
	left: 48%;
	z-index: 3;
	font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -.5em;
    -webkit-animation: spinner 1.5s infinite linear;
    -moz-animation: spinner 1.5s infinite linear;
    -ms-animation: spinner 1.5s infinite linear;
    -o-animation: spinner 1.5s infinite linear;
    animation: spinner 1.5s infinite linear;
    border-radius: .5em;
    -webkit-box-shadow: rgba(0, 0, 0, .75) 1.5em 0 0 0, rgba(0, 0, 0, .75) 1.1em 1.1em 0 0, rgba(0, 0, 0, .75) 0 1.5em 0 0, rgba(0, 0, 0, .75) -1.1em 1.1em 0 0, rgba(0, 0, 0, .5) -1.5em 0 0 0, rgba(0, 0, 0, .5) -1.1em -1.1em 0 0, rgba(0, 0, 0, .75) 0 -1.5em 0 0, rgba(0, 0, 0, .75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, .75) 1.5em 0 0 0, rgba(0, 0, 0, .75) 1.1em 1.1em 0 0, rgba(0, 0, 0, .75) 0 1.5em 0 0, rgba(0, 0, 0, .75) -1.1em 1.1em 0 0, rgba(0, 0, 0, .75) -1.5em 0 0 0, rgba(0, 0, 0, .75) -1.1em -1.1em 0 0, rgba(0, 0, 0, .75) 0 -1.5em 0 0, rgba(0, 0, 0, .75) 1.1em -1.1em 0 0;
}

.vehicle-holder .details
{
	display: block;
	overflow: visible;
}
.vehicle-holder .wheel-info
{
	display: block;
	overflow: auto;
}
.vehicle-holder .wheel-info .brand-logo
{
	display: block;
	float: left;
	width: 35%;
	padding: 5px;
}
.vehicle-holder .wheel-info .wheel-details
{
	display: block;
	float: left;
	width: 65%;
	text-align: left;
	padding-left: 5px;
}
.vehicle-holder .wheel-info .wheel-details h3
{
	color: #529c35;
	margin-top: 0;
}
.vehicle-holder .rim-diameters
{
	display: inline-block;
	padding: 5px;
	vertical-align: bottom;
}
.vehicle-holder .rim-diameters .rim-diameter
{
	padding: 5px;
	margin: 0 2px;
	background: transparent;
	border: 2px solid #529c35;
	color: #529c35;
}
.vehicle-holder .rim-diameters .rim-diameter.selected
{
	background: #529c35;
	color: #fff;
}

@media (min-width: 900px)
{
	#vehicle
	{
		margin: 0 auto;
	}
	
	.wheel-results .wheels .wheel:not(.selected):hover .wheel-img
	{
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	#wheel-on-car .wrapper
	{
		display: flex;
		flex-wrap: wrap;
	}
	#wheel-on-car .wheels-holder
	{
		display: inline-block;
	}
	#wheel-on-car .vehicle-holder
	{
		/*display: inline-block;*/
	}
	
	.vehicle-holder .wheel-info
	{
		float: left;
		width: 50%;
	}
	.vehicle-holder .wheel-info .wheel-details
	{
		padding-left: 20px;
	}
}

.vehicle-options
{
	display: block;
	text-align: right;
	margin-top: 5px;
	position: relative;
	z-index: 3;
	padding: 3px;
}
.vehicle-options .option
{
	border: 0;
	background: #fff;
	background-position: center;
	background-size: 80%;
	background-repeat: no-repeat;
	border-radius: 100%;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	display: none;
	width: 40px;
	height: 40px;
	margin: 0 3px;
	vertical-align: bottom;
}
.vehicle-options .option.show
{
	display: inline-block;
}
.vehicle-options .option#v-colour
{
	background-image: url('/images/icons/colour-wheel.png');
}
.vehicle-options .option#v-susp
{
	background-image: url('/images/icons/suspension-angle.png');
}
.vehicle-options .option#v-tyre
{
	background-image: url('/images/icons/onroad-tyre.png');
}

.vehicle-options .option-popup
{
	display: block;
	width: auto;
	height: auto;
	position: absolute;
	padding: 5px;
	bottom: 100%;
	right: 3px;
	border-radius: 2px;
	background: #fff;
	z-index: 10;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
	-ms-transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.vehicle-options .option-popup.visible
{
	-ms-transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	opacity: 1;
	pointer-events: all;
}
.vehicle-options .option-popup .option-heading
{
	margin: 0;
	margin-bottom: 5px;
	padding: 3px 5px;
	width: 100%;
	font-size: 9pt;
	text-align: left;
}
.option-popup .c-list
{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
}
.option-popup .c-list li
{
	margin: 2px 3px;
	padding: 0;
	display: block;
	float: left;
	width: 36px;
	height: 36px;
	border-radius: 100%;
	border: 1px solid #ddd;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.option-popup .c-list li.selected
{
	-ms-transform: scale(0.9);
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	border-color: #666;
	border-width: 2px;
}

@media (min-width: 900px)
{
	.vehicle-options
	{
		float: left;
		width: 50%;
	}
	.vehicle-options .option
	{
		width: 50px;
		height: 50px;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.vehicle-options .option:hover
	{
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

.susp-config
{
	display: block;
	overflow: visible;
	padding-top: 17px;
}
.susp-config .susp-btn
{
	display: none;
	float: left;
	margin: 0;
	padding: 0;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: center;
}
.susp-config .susp-btn.susp-down
{
	background-image: url('/images/icons/minus.png');
}
.susp-config .susp-btn.susp-up
{
	background-image: url('/images/icons/plus.png');
}
.susp-config .susp-slider
{
	display: block;
	position: relative;
	float: left;
	margin: 0 22px;
	padding: 0;
	width: 180px;
	height: 30px;
}
.susp-config .susp-slider .susp-back
{
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background: #ccc;
	top: 14px;
	left: 0;
	z-index: 0;
	pointer-events: none;
}
.susp-config .susp-slider .susp-notch
{
	display: block;
	position: absolute;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background: #666;
	top: 8px;
	left: 0px;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: left 0.3s ease;
	transition: left 0.3s ease;
	z-index: 3;
	pointer-events: none;
}
.susp-config .susp-slider .susp-step,
.susp-config .susp-slider .susp-step-label
{
	display: block;
	position: absolute;
	width: 8px;
	height: 8px;
	background: #ccc;
	border-radius: 100%;
	top: 11px;
	left: 0;
	z-index: 1;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	pointer-events: none;
}
.susp-config .susp-slider .susp-step.hover
{
	-ms-transform: translateX(-50%) scale(1.5);
	-webkit-transform: translateX(-50%) scale(1.5);
	transform: translateX(-50%) scale(1.5);
	background: #999;
}
.susp-config .susp-slider .susp-step-label
{
	background: transparent;
	width: auto;
	height: auto;
	border-radius: 0;
	top: -19px;
	font-size: 9pt;
	font-weight: bold;
	color: #888;
	z-index: 2;
}
.susp-config .susp-slider .susp-step-label:after
{
	content: '';
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	width: 29px;
	height: 29px;
	background: #eee;
	border-radius: 100%;
	z-index: -1;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0);
	-ms-transform: translateX(-50%) translateY(-50%) scale(0);
	-o-transform: translateX(-50%) translateY(-50%) scale(0);
	transform: translateX(-50%) translateY(-50%) scale(0);
}
.susp-config .susp-slider .susp-step-label.hover:after
{
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	-ms-transform: translateX(-50%) translateY(-50%) scale(1);
	-o-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}
.susp-config .susp-slider .susp-step-btn
{
	display: block;
	position: absolute;
	width: 40px;
	height: 50px;
	background: transparent;
	top: -18px;
	left: 0;
	z-index: 0;
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	cursor: pointer;
}

@media (min-width: 900px)
{
	.susp-config .susp-btn:hover
	{
		background-color: #eee;
	}
	
	/*.susp-config .susp-slider .susp-step-btn
	{
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	.susp-config .susp-slider .susp-step-btn:hover
	{
		background: #eee;
	}*/
}

.option-popup .tyre-list
{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: auto;
}
.tyre-list .tyre-option
{
	margin: 2px 3px;
	padding: 0;
	display: block;
	float: left;
	width: 46px;
	height: 46px;
	border-radius: 100%;
	cursor: pointer;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: 65%;
	background-position: center;
	-webkit-transition: left 0.3s ease;
	transition: left 0.3s ease;
}
.tyre-list .tyre-option.selected
{
	background-color: #ddd;
}
.tyre-list .tyre-option.upsize
{
	background-size: 80%;
}

.tyre-list .tyre-option[tyre-type="passenger"]
{
	background-image: url('/images/icons/onroad-tyre.png');
}
.tyre-list .tyre-option[tyre-type="offroad"]
{
	background-image: url('/images/icons/offroad-tyre.png');
}

/* details */

.details-section
{
	background: #ddd;
	display: none;
}

.details-section .wheel-images
{
	text-align: center;
}
.details-section .wheel-images .wheel-image-main,
.details-section .wheel-images .wheel-image-secondary
{
	display: inline-block;
	width: 45%;
	max-width: 360px;
	padding-right: 5px;
	margin: 0;
}

.details-section .wheel-info
{
	text-align: center;
	display: block;
	padding: 10px 0;
	margin: 10px 0;
	border-top: 1px dashed #bbb;
	border-bottom: 1px dashed #bbb;
}

.details-section .sizes
{
	overflow: auto;
}
.details-section .sizes .rim-diameters
{
	/*float: left;
	width: 20%;
	display: block;
	border-right: 1px solid #ccc;
	padding-right: 4px;*/
	display: block;
	margin-bottom: 10px;
}
.details-section .sizes .rim-diameters .rim-diameter
{
	display: inline-block;
	text-align: center;
	padding: 10px;
	border-bottom: 2px solid #fff;
	/*width: 100%;*/
}
.details-section .sizes .rim-diameters .rim-diameter.selected
{
	border-bottom: 2px solid #529c35;
}
.details-section .sizes .fitments
{
	/*float: left;
	width: 80%;*/
	display: block;
	/*padding-left: 4px;*/
}
.details-section .sizes .fitments .fitment
{
	width: 100%;
	/*background: #ccc;*/
	background: #fff;
    border: 2px solid #529c35;
    color: #529c35;
	margin-bottom: 3px;
	overflow: auto;
	display: flex;
	flex-wrap: wrap;
}
.details-section .sizes .fitments .fitment .desc
{
	padding: 7px;
	display: inline-block;
	flex-grow: 1;
	cursor: pointer;
}
.details-section .sizes .fitments .fitment.selected .desc
{
	background: #529c35;
	color: #fff;
}
.details-section .sizes .fitments .fitment .desc .size
{
	display: block;
}
.details-section .sizes .fitments .fitment .specs
{
	float: right;
	display: inline-block;
	padding: 7px;
	background: #d8ecff;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.details-section .sizes .fitments .fitment .specs .material-icons
{
	vertical-align: middle;
	line-height: 0.5em;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.details-section .sizes .fitments .fitment.show-specs .specs .material-icons
{
	-ms-transform: rotateZ(-180deg);
    -webkit-transform: rotateZ(-180deg);
    transform: rotateZ(-180deg);
}
.details-section .sizes .fitments .fitment .wheel-specs
{
	display: none;
	width: 100%;
	border-top: 2px solid #ccc;
}
.details-section .sizes .fitments .fitment .wheel-specs ul
{
	display: block;
	margin: auto;
	padding: 5px;
	list-style: none;
}
.details-section .sizes .fitments .fitment .wheel-specs ul li
{
	padding: 3px 6px;
	border-bottom: 1px solid #ddd;
	color: #000;
}
.details-section .sizes .fitments .fitment .wheel-specs ul li.heading
{
	font-weight: bold;
}
.details-section .sizes .fitments .fitment .wheel-specs ul li span
{
	float: right;
	color: #529c35;
}

@media (min-width: 600px)
{
	.details-section .sizes .rim-diameters
	{
		width: 100%;
		float: none;
		padding: 0;
		border: 0;
		margin-bottom: 10px;
	}
	.details-section .sizes .rim-diameters .rim-diameter
	{
		width: auto;
		display: inline-block;
		padding: 10px 20px;
	}
	.details-section .sizes .fitments
	{
		width: 100%;
		float: none;
		padding: 0;
	}
	
	.details-section .sizes .fitments .fitment .desc .size
	{
		display: inline-block;
	}
	.details-section .sizes .fitments .fitment .desc .size:nth-child(2)
	{
		margin-left: 5px;
	}
	.details-section .sizes .fitments .fitment .wheel-specs
	{
		overflow: auto;
	}
	.details-section .sizes .fitments .fitment .wheel-specs.staggered ul
	{
		width: 50%;
		float: left;
	}
}

@media (min-width: 900px)
{
	.details-section .wheel-images
	{
		/*width: 30%;
		float: left;
		overflow: hidden;*/
	}
	.details-section .wheel-images .wheel-image-main,
	.details-section .wheel-images .wheel-image-secondary
	{
		/*width: 100%;
		float: none;*/
		padding: 10px;
	}
	.details-section .wheel-details
	{
		width: 65%;
		float: left;
		padding-right: 20px;
	}
	
	.details-section .wheel-details .wheel-info
	{
		width: 100%;
		overflow: auto;
		border: 0;
		padding: 0;
		margin: 0;
		margin-bottom: 20px;
	}
	.details-section .wheel-details .wheel-info .brand
	{
		width: 30%;
		float: left;
		padding: 0;
		height: auto;
	}
	.details-section .wheel-details .wheel-info .wheel-title
	{
		width: 70%;
		float: left;
		overflow: hidden;
		text-align: left;
		padding-left: 30px;
	}
	.details-section .wheel-details .wheel-info .wheel-title .wheel-style
	{
		margin-top: 0;
		margin-bottom: 20px;
	}
	.details-section .wheel-details .wheel-info .wheel-title .wheel-finish
	{
		margin: 0;
	}
	
	.details-section .sizes .fitments .fitment .specs:hover
	{
		background: #eee;
	}
	
	.details-section #wheel_form
	{
		width: 35%;
		float: left;
		margin: 0;
	}
}

#wheel_form .wheel-form-details
{
	margin: 10px 0;
	padding: 10px;
	list-style: none;
	background: #fff;
	color: #666;
}
#wheel_form .wheel-form-details li
{
	padding: 5px 10px;
	border-bottom: 1px solid #666;
}
#wheel_form .wheel-form-details li span
{
	float: right;
	color: #529c35;
}

.details-section .package-btn
{
	margin-top: 20px;
}
.package-btn .big
{
	font-weight: bold;
	margin-bottom: 10px;
	display: block;
}
.package-btn .small
{
	display: inline-block;
	padding: 5px 10px;
	border: 2px solid #fff;
	text-transform: none;
}

/* gallery */

.pswp__bg
{
	background: #eee !important;
}