.animate-super-slow {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
.animate-slow {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.animate-normal {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}
.animate-fast {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.25s;
	animation-duration: 0.25s;
}
@-webkit-keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInDown {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInLeft {
	from,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}
@-webkit-keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}
@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}
@-webkit-keyframes rotateBanner {
	from {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.2) rotate(-45deg);
		transform: scale(1.2) rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
}
@keyframes rotateBanner {
	from {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.2) rotate(-45deg);
		transform: scale(1.2) rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
}
@-webkit-keyframes rotateBannerBack {
	from {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}
@keyframes rotateBannerBack {
	from {
		opacity: 1;
		-webkit-transform: scale(1) rotate(-45deg);
		transform: scale(1) rotate(-45deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}
}
.stock-search .stock-video-play-button {
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	background: url(https://s3-ap-southeast-2.amazonaws.com/assets.i-motor.com.au/images/play-50x50.png)
		no-repeat center center;
}
@media screen and (min-width: 450px) {
	.stock-search .stock-video-play-button {
		left: 21%;
	}
}
.stock-details .stock-video-play-button {
	position: absolute;
	top: 25%;
	left: calc(50% - 50px);
	background: url("https://s3-ap-southeast-2.amazonaws.com/assets.i-motor.com.au/images/play-100x100.png")
		no-repeat;
	width: 100px;
	height: 100px;
	cursor: pointer;
}
.stock-details .finance-button {
	padding: initial;
	border: none;
}
.pl-ribbon-vert.red,
.pl-ribbon-hor.red,
.pl-arrow-hor.red,
.pl-sash.red {
	background-color: #dc0000;
}
.pl-ribbon-vert.purple,
.pl-ribbon-hor.purple,
.pl-arrow-hor.purple,
.pl-sash.purple {
	background-color: #9c27b0;
}
.pl-ribbon-vert.blue-powder,
.pl-ribbon-hor.blue-powder,
.pl-arrow-hor.blue-powder,
.pl-sash.blue-powder {
	background-color: #2196f3;
}
.pl-ribbon-vert.lime,
.pl-ribbon-hor.lime,
.pl-arrow-hor.lime,
.pl-sash.lime {
	background-color: #4caf50;
}
.pl-ribbon-vert.orange,
.pl-ribbon-hor.orange,
.pl-arrow-hor.orange,
.pl-sash.orange {
	background-color: #ff9800;
}
.pl-ribbon-vert.black,
.pl-ribbon-hor.black,
.pl-arrow-hor.black,
.pl-sash.black {
	background-color: #000000;
}
.list-view .sl-image-wrapper:before {
	content: none;
}
.list-view .sl-image-wrapper {
	overflow: unset;
}
.list-view .sl-image-mask {
	overflow: hidden;
	position: relative;
}
@media screen and (min-width: 450px) {
	.list-view .sl-image-mask:before {
		display: block;
		content: "";
		width: 100%;
		padding-top: 66.6666666667%;
	}
	.list-view .sl-image-mask .sl-image,
	.list-view .sl-image-mask .sd-carousel-image {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
}
.list-view .pl-text {
	display: none;
}
.list-view .pl-ribbon-vert,
.list-view .pl-ribbon-hor,
.list-view .pl-arrow-hor,
.list-view .pl-sash,
.list-view .pl-arrow-hor-star {
	width: 25px;
	height: 25px;
	position: absolute;
	left: 3px;
	bottom: 3px;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 30 30' preserveAspectRatio='xMidYMid meet' %3E%3Cpolygon points='15,20.1 8,24.3 9.8,16.3 3.6,10.9 11.8,10.2 15,2.7 18.2,10.2 26.4,10.9 20.2,16.3 22,24.3' fill='%23ffffff' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100%;
}
.list-view .pl-arrow-hor-star {
	background-color: #dc0000;
}
.list-view .pl-arrow-hor-star .pl-text {
	display: none;
}
.thumb-view .pl-arrow-hor,
.thumb-view .pl-ribbon-hor,
.gallery-view .pl-arrow-hor,
.gallery-view .pl-ribbon-hor,
.stock-detail .pl-arrow-hor,
.stock-detail .pl-ribbon-hor,
.specials-view .pl-arrow-hor,
.specials-view .pl-ribbon-hor {
	position: absolute;
	min-height: 30px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	left: 0;
	bottom: 10px;
}
.thumb-view .pl-arrow-hor,
.gallery-view .pl-arrow-hor,
.stock-detail .pl-arrow-hor,
.specials-view .pl-arrow-hor {
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.thumb-view .pl-arrow-hor::after,
.gallery-view .pl-arrow-hor::after,
.stock-detail .pl-arrow-hor::after,
.specials-view .pl-arrow-hor::after {
	content: " ";
	position: absolute;
	top: 0;
	right: -10px;
	width: 0px;
	height: 0px;
	border-style: solid;
	transition: border-color 150ms ease-in;
	border-width: 15px 0 15px 10px;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #dc0000;
}
.thumb-view .pl-arrow-hor.red::after,
.gallery-view .pl-arrow-hor.red::after,
.stock-detail .pl-arrow-hor.red::after,
.specials-view .pl-arrow-hor.red::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #dc0000;
}
.thumb-view .pl-arrow-hor.purple::after,
.gallery-view .pl-arrow-hor.purple::after,
.stock-detail .pl-arrow-hor.purple::after,
.specials-view .pl-arrow-hor.purple::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #9c27b0;
}
.thumb-view .pl-arrow-hor.blue-powder::after,
.gallery-view .pl-arrow-hor.blue-powder::after,
.stock-detail .pl-arrow-hor.blue-powder::after,
.specials-view .pl-arrow-hor.blue-powder::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #2196f3;
}
.thumb-view .pl-arrow-hor.lime::after,
.gallery-view .pl-arrow-hor.lime::after,
.stock-detail .pl-arrow-hor.lime::after,
.specials-view .pl-arrow-hor.lime::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #4caf50;
}
.thumb-view .pl-arrow-hor.orange::after,
.gallery-view .pl-arrow-hor.orange::after,
.stock-detail .pl-arrow-hor.orange::after,
.specials-view .pl-arrow-hor.orange::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff9800;
}
.thumb-view .pl-arrow-hor.black::after,
.gallery-view .pl-arrow-hor.black::after,
.stock-detail .pl-arrow-hor.black::after,
.specials-view .pl-arrow-hor.black::after {
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000000;
}
.thumb-view .pl-ribbon-hor,
.gallery-view .pl-ribbon-hor,
.stock-detail .pl-ribbon-hor,
.specials-view .pl-ribbon-hor {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
}
.thumb-view .pl-ribbon-hor::after,
.gallery-view .pl-ribbon-hor::after,
.stock-detail .pl-ribbon-hor::after,
.specials-view .pl-ribbon-hor::after {
	content: " ";
	position: absolute;
	top: 0;
	right: -28px;
	width: 0px;
	height: 0px;
	border-style: solid;
	transition: border-color 150ms ease-in;
	border-width: 15px;
	border-color: #dc0000 rgba(0, 0, 0, 0) #dc0000 #dc0000;
}
.thumb-view .pl-ribbon-hor.red::after,
.gallery-view .pl-ribbon-hor.red::after,
.stock-detail .pl-ribbon-hor.red::after,
.specials-view .pl-ribbon-hor.red::after {
	border-color: #dc0000 rgba(0, 0, 0, 0) #dc0000 #dc0000;
}
.thumb-view .pl-ribbon-hor.purple::after,
.gallery-view .pl-ribbon-hor.purple::after,
.stock-detail .pl-ribbon-hor.purple::after,
.specials-view .pl-ribbon-hor.purple::after {
	border-color: #9c27b0 rgba(0, 0, 0, 0) #9c27b0 #9c27b0;
}
.thumb-view .pl-ribbon-hor.blue-powder::after,
.gallery-view .pl-ribbon-hor.blue-powder::after,
.stock-detail .pl-ribbon-hor.blue-powder::after,
.specials-view .pl-ribbon-hor.blue-powder::after {
	border-color: #2196f3 rgba(0, 0, 0, 0) #2196f3 #2196f3;
}
.thumb-view .pl-ribbon-hor.lime::after,
.gallery-view .pl-ribbon-hor.lime::after,
.stock-detail .pl-ribbon-hor.lime::after,
.specials-view .pl-ribbon-hor.lime::after {
	border-color: #4caf50 rgba(0, 0, 0, 0) #4caf50 #4caf50;
}
.thumb-view .pl-ribbon-hor.orange::after,
.gallery-view .pl-ribbon-hor.orange::after,
.stock-detail .pl-ribbon-hor.orange::after,
.specials-view .pl-ribbon-hor.orange::after {
	border-color: #ff9800 rgba(0, 0, 0, 0) #ff9800 #ff9800;
}
.thumb-view .pl-ribbon-hor.black::after,
.gallery-view .pl-ribbon-hor.black::after,
.stock-detail .pl-ribbon-hor.black::after,
.specials-view .pl-ribbon-hor.black::after {
	border-color: #000000 rgba(0, 0, 0, 0) #000000 #000000;
}
.thumb-view .pl-ribbon-vert,
.gallery-view .pl-ribbon-vert,
.stock-detail .pl-ribbon-vert,
.specials-view .pl-ribbon-vert {
	position: absolute;
	border: 0;
	min-height: 30px;
	top: 0;
	left: 40px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: top left;
	transform-origin: top left;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.25s;
	animation-duration: 0.25s;
}
.thumb-view .pl-ribbon-vert::before,
.gallery-view .pl-ribbon-vert::before,
.stock-detail .pl-ribbon-vert::before,
.specials-view .pl-ribbon-vert::before {
	content: "";
	position: absolute;
	bottom: 0;
	height: 0;
	width: 0;
	border-width: 15px;
	border-style: solid;
	right: -15px;
	z-index: -1;
}
.thumb-view .pl-ribbon-vert.red::before,
.gallery-view .pl-ribbon-vert.red::before,
.stock-detail .pl-ribbon-vert.red::before,
.specials-view .pl-ribbon-vert.red::before {
	border-color: #dc0000 rgba(0, 0, 0, 0) #dc0000 #dc0000;
}
.thumb-view .pl-ribbon-vert.purple::before,
.gallery-view .pl-ribbon-vert.purple::before,
.stock-detail .pl-ribbon-vert.purple::before,
.specials-view .pl-ribbon-vert.purple::before {
	border-color: #9c27b0 rgba(0, 0, 0, 0) #9c27b0 #9c27b0;
}
.thumb-view .pl-ribbon-vert.blue-powder::before,
.gallery-view .pl-ribbon-vert.blue-powder::before,
.stock-detail .pl-ribbon-vert.blue-powder::before,
.specials-view .pl-ribbon-vert.blue-powder::before {
	border-color: #2196f3 rgba(0, 0, 0, 0) #2196f3 #2196f3;
}
.thumb-view .pl-ribbon-vert.lime::before,
.gallery-view .pl-ribbon-vert.lime::before,
.stock-detail .pl-ribbon-vert.lime::before,
.specials-view .pl-ribbon-vert.lime::before {
	border-color: #4caf50 rgba(0, 0, 0, 0) #4caf50 #4caf50;
}
.thumb-view .pl-ribbon-vert.orange::before,
.gallery-view .pl-ribbon-vert.orange::before,
.stock-detail .pl-ribbon-vert.orange::before,
.specials-view .pl-ribbon-vert.orange::before {
	border-color: #ff9800 rgba(0, 0, 0, 0) #ff9800 #ff9800;
}
.thumb-view .pl-ribbon-vert.black::before,
.gallery-view .pl-ribbon-vert.black::before,
.stock-detail .pl-ribbon-vert.black::before,
.specials-view .pl-ribbon-vert.black::before {
	border-color: #000000 rgba(0, 0, 0, 0) #000000 #000000;
}
.thumb-view .pl-ribbon-vert .pl-text,
.gallery-view .pl-ribbon-vert .pl-text,
.stock-detail .pl-ribbon-vert .pl-text,
.specials-view .pl-ribbon-vert .pl-text {
	text-transform: uppercase;
	padding: 6px 8px;
}
.thumb-view .pl-sash,
.gallery-view .pl-sash,
.stock-detail .pl-sash,
.specials-view .pl-sash {
	position: absolute;
	width: 220px;
	top: 39px;
	left: -47px;
	padding: 8px 20px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
	-webkit-transform: scale(1) rotate(-45deg);
	transform: scale(1) rotate(-45deg);
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
	opacity: 0;
	-webkit-animation-name: rotateBanner;
	animation-name: rotateBanner;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}
.thumb-view .pl-text,
.gallery-view .pl-text,
.stock-detail .pl-text,
.specials-view .pl-text {
	display: block;
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 13px;
	font-weight: normal;
	-webkit-font-smoothing: initial;
	-moz-osx-font-smoothing: unset;
	line-height: 14px;
	letter-spacing: 0.5px;
	color: #fff;
}
.thumb-view .pl-ribbon-hor .pl-text,
.thumb-view .pl-arrow-hor .pl-text,
.gallery-view .pl-ribbon-hor .pl-text,
.gallery-view .pl-arrow-hor .pl-text,
.stock-detail .pl-ribbon-hor .pl-text,
.stock-detail .pl-arrow-hor .pl-text,
.specials-view .pl-ribbon-hor .pl-text,
.specials-view .pl-arrow-hor .pl-text {
	padding: 5px 10px;
}
.thumb-view .pl-special-star,
.gallery-view .pl-special-star,
.stock-detail .pl-special-star,
.specials-view .pl-special-star {
	position: absolute;
	left: 0;
	bottom: 5px;
	display: block;
	width: 92px;
	height: 32px;
	margin-top: 5px;
	margin-bottom: 5px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid slice' width='100%25' height='100%25' viewBox='0 0 92 32'%3E%3Cpath fill='%23dc0000' d='M82.18,31.89H0V0h82.2c1.12,0,2.15,0.62,2.66,1.62l6.63,12.77c0.44,0.86,0.45,1.88,0.01,2.74l-6.65,13.13C84.35,31.26,83.31,31.89,82.18,31.89z'/%3E%3Cpath fill='%23ffffff' d='M13.48,18.48c0-0.43-0.11-0.76-0.33-0.99c-0.22-0.22-0.63-0.45-1.21-0.69c-1.07-0.41-1.84-0.88-2.31-1.42c-0.47-0.54-0.7-1.19-0.7-1.93c0-0.9,0.32-1.62,0.96-2.16c0.64-0.54,1.45-0.82,2.43-0.82c0.65,0,1.24,0.14,1.75,0.41c0.51,0.28,0.91,0.67,1.18,1.17c0.28,0.5,0.41,1.07,0.41,1.71h-2.15c0-0.5-0.11-0.88-0.32-1.14c-0.21-0.26-0.52-0.39-0.92-0.39c-0.38,0-0.67,0.11-0.88,0.33c-0.21,0.22-0.31,0.52-0.31,0.9c0,0.29,0.12,0.56,0.35,0.79c0.23,0.24,0.65,0.48,1.25,0.74c1.04,0.38,1.8,0.84,2.27,1.38c0.47,0.55,0.71,1.24,0.71,2.09c0,0.93-0.3,1.65-0.89,2.18s-1.39,0.78-2.41,0.78c-0.69,0-1.32-0.14-1.88-0.42c-0.57-0.28-1.01-0.69-1.33-1.22c-0.32-0.53-0.48-1.15-0.48-1.87h2.16c0,0.62,0.12,1.06,0.36,1.34s0.63,0.42,1.17,0.42C13.11,19.68,13.48,19.28,13.48,18.48z'/%3E%3Cpath fill='%23ffffff' d='M19.53,17.53v3.75h-2.15V10.62h3.63c1.05,0,1.9,0.33,2.52,0.98c0.63,0.65,0.94,1.5,0.94,2.55s-0.31,1.87-0.93,2.48s-1.48,0.91-2.58,0.91H19.53z M19.53,15.73h1.48c0.41,0,0.73-0.13,0.95-0.4s0.34-0.66,0.34-1.17c0-0.53-0.12-0.96-0.34-1.27c-0.23-0.32-0.54-0.47-0.92-0.48h-1.5V15.73z'/%3E%3Cpath fill='%23ffffff' d='M31.72,16.67h-3.36v2.83h3.97v1.79h-6.12V10.62h6.11v1.79h-3.96v2.52h3.36V16.67z'/%3E%3Cpath fill='%23ffffff' d='M41.1,17.73c-0.05,1.22-0.4,2.14-1.03,2.76s-1.52,0.94-2.67,0.94c-1.21,0-2.13-0.4-2.77-1.19c-0.64-0.79-0.96-1.92-0.96-3.39v-1.79c0-1.46,0.33-2.59,1-3.39c0.66-0.79,1.59-1.19,2.77-1.19c1.16,0,2.04,0.33,2.65,0.97c0.6,0.65,0.95,1.58,1.03,2.8h-2.16c-0.02-0.75-0.13-1.27-0.35-1.56c-0.21-0.29-0.6-0.43-1.17-0.43c-0.58,0-0.98,0.2-1.22,0.6c-0.24,0.4-0.37,1.07-0.38,1.99v2.01c0,1.06,0.12,1.79,0.35,2.18c0.24,0.4,0.64,0.59,1.22,0.59c0.57,0,0.96-0.14,1.17-0.41c0.21-0.28,0.34-0.77,0.37-1.5H41.1z'/%3E%3Cpath fill='%23ffffff' d='M44.98,21.28h-2.15V10.62h2.15V21.28z'/%3E%3Cpath fill='%23ffffff' d='M52.31,19.1h-2.94l-0.57,2.18h-2.28l3.33-10.66h1.97l3.35,10.66h-2.3L52.31,19.1z M49.84,17.3h1.99l-1-3.8L49.84,17.3z'/%3E%3Cpath fill='%23ffffff' d='M58.63,19.49h3.78v1.79h-5.93V10.62h2.15V19.49z'/%3E%3Cpath fill='%23ffffff' d='M74.8,19.55l-4.96,3l1.31-5.63l-4.36-3.79l5.75-0.49l2.25-5.3l2.25,5.3l5.75,0.49l-4.36,3.79l1.31,5.63L74.8,19.55z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: auto;
	transition-property: width, background-size, height;
	transition-duration: 0.15s;
	transition-timing-function: ease-in;
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
}
.thumb-view .pl-special-star .pl-text,
.gallery-view .pl-special-star .pl-text,
.stock-detail .pl-special-star .pl-text,
.specials-view .pl-special-star .pl-text {
	display: none;
}
.thumb-view .stock-list-item:hover .pl-special-star,
.gallery-view .stock-list-item:hover .pl-special-star,
.stock-detail .stock-list-item:hover .pl-special-star,
.specials-view .stock-list-item:hover .pl-special-star {
	width: 97px;
	height: 34px;
	background-size: cover;
}
.sl-icon-wrapper.has-promo {
	left: unset;
	right: 0;
}
.sd-image-large-wrapper .owl-item {
	overflow: hidden;
}
.sl-heading-details-link {
	width: 100%;
}
.stock-banner img {
	margin: 10px 0;
}
.list-view div[data-balloon] {
	overflow: visible;
}
.list-view [data-balloon] {
	cursor: pointer;
}
.list-view [data-balloon]:after {
	font-family: sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	text-shadow: none;
	color: #fff;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	pointer-events: none;
	background: rgba(17, 17, 17, 0.9);
	border-radius: 4px;
	content: attr(data-balloon);
	padding: 0.5em 1em;
	position: absolute;
	white-space: nowrap;
	z-index: 10;
	transition: all 0.18s ease-out 0.18s;
}
.list-view [data-balloon]:before {
	background: no-repeat
		url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba(17, 17, 17, 0.9)%22%20transform%3D%22rotate(0)%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E");
	background-size: 100% auto;
	width: 18px;
	height: 6px;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	pointer-events: none;
	content: "";
	position: absolute;
	z-index: 10;
	transition: all 0.18s ease-out 0.18s;
}
.list-view [data-balloon]:hover:before,
.list-view [data-balloon]:hover:after,
.list-view [data-balloon][data-balloon-visible]:before,
.list-view [data-balloon][data-balloon-visible]:after {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
	pointer-events: auto;
}
.list-view [data-balloon][data-balloon-break]:after {
	white-space: pre;
}
.list-view [data-balloon][data-balloon-pos="up-left"]:after {
	bottom: 100%;
	left: 0;
	margin-bottom: 11px;
	-webkit-transform: translate(0, 10px);
	transform: translate(0, 10px);
	-webkit-transform-origin: top;
	transform-origin: top;
}
.list-view [data-balloon][data-balloon-pos="up-left"]:before {
	bottom: 100%;
	left: 5px;
	margin-bottom: 5px;
	-webkit-transform: translate(0, 10px);
	transform: translate(0, 10px);
	-webkit-transform-origin: top;
	transform-origin: top;
}
.list-view [data-balloon][data-balloon-pos="up-left"]:hover:after,
.list-view
	[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:after {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.list-view [data-balloon][data-balloon-pos="up-left"]:hover:before,
.list-view
	[data-balloon][data-balloon-pos="up-left"][data-balloon-visible]:before {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}
.stock-page .carly-container {
	padding: 15px 20px;
	background: #000;
}
.stockPage .carly-container {
	padding: 15px 20px;
	background: #000;
}
.carly-logo {
	display: block;
	float: left;
}
.carly-subscribe-vehicle {
	background: #000;
}
.carly-subscribe-btn {
	margin-top: -35px;
	float: right;
}
.carly-top {
	margin-top: 15px;
}
.carly-background {
	width: 100%;
}
@media screen and (min-width: 768px) {
	.carly-background {
		width: 48%;
		margin-right: 2%;
		margin-bottom: 2%;
	}
}
.carly-subscribe .sl-heading-model {
	color: #fff;
}
.carly-subscribe .sd-summary-wrapper .sd-summary-group2 .sl-heading-model {
	color: #000;
}
.carly-subscribe .sl-heading-model-wrapper {
	background-color: #000;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
}
@media screen and (min-width: 568px) {
	.carly-subscribe .sl-heading-model-wrapper {
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
	}
}
@media screen and (min-width: 768px) {
	.carly-subscribe .sl-heading-model-wrapper {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		align-items: center;
	}
}
@media screen and (min-width: 880px) {
	.carly-subscribe .sl-heading-model-wrapper {
		-webkit-flex-direction: row;
		flex-direction: row;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-webkit-align-items: center;
		align-items: center;
	}
}
.carly-white-text {
	display: inline-block;
	color: #fff;
	margin-top: 20px;
}
.carly-white-text ul {
	margin-top: -8px;
}
.carly-white-text li {
	line-height: 1.3em;
}
.carly-search-results {
	display: -webkit-flex;
	display: flex;
	display: -ms-flexbox;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	padding-top: 5px;
}
@media screen and (min-width: 568px) {
	.carly-search-results {
		padding-top: 0;
	}
}
@media screen and (min-width: 768px) {
	.carly-search-results {
		padding-top: 5px;
	}
}
@media screen and (min-width: 880px) {
	.carly-search-results {
		padding-top: 0;
	}
}
.carly-search-results-img {
	margin: 0;
	height: 24px;
	padding-right: 5px;
	width: 65px;
}
.carly-search-results-text {
	font-size: 12px;
	color: #fff;
}
.carly-lead-iframe .fancybox-close {
	width: 35px;
	height: 35px;
}
.fancybox-type-iframe .fancybox-inner {
	width: 400px !important;
	height: 700px !important; }

.fancybox-wrap.fancybox-type-iframe {
	width: 430px !important;
	height: 730px !important; }

@media screen and (min-width: 1020px) {
	.carly-lead-iframe .fancybox-close {
		width: 50px;
		height: 50px;
	}
}
.carly .banner-wrapper {
	display: none;
}
@media screen and (min-width: 768px) {
	.carly .banner-wrapper {
		display: block;
		position: relative;
	}
}
.carly .panel-default {
	display: none;
}
.carly .carly-banner-image {
	width: 100%;
	height: 880px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: left bottom;
	object-position: left bottom;
}
.carly .carly-banner-text-overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.carly .carly-page-head-wrapper {
	max-width: 800px;
	position: absolute;
	width: 80%;
	left: 50%;
	-webkit-transform: translateX(-40%);
	transform: translateX(-40%);
	top: 15%;
}
.carly .carly-page-head-wrapper {
	display: none;
}
@media screen and (min-width: 768px) {
	.carly .carly-page-head-wrapper {
		display: block;
	}
	.carly .carly-page-head-wrapper h1.carly-page-head {
		color: #fff;
		font-size: 50px;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 30px;
	}
	.carly .carly-page-head-wrapper h3.carly-page-subheading {
		color: #fff;
		font-size: 30px;
		font-weight: bold;
		margin-top: 0;
		margin-bottom: 30px;
	}
	.carly .carly-page-head-wrapper p.carly-paragraph {
		color: #fff;
		font-size: 18px;
		margin-top: 0;
		font-weight: bold;
	}
}
.carly .carly-overview-wrapper {
	background: #111;
	color: #fff;
	padding: 20px 0px;
}
.carly .co-heading {
	text-align: center;
}
.carly .co-heading-span-text {
	display: inline-block;
	color: #fff;
}
.carly .co-heading-span-image {
	display: inline-block;
	vertical-align: middle;
}
.carly .co-text {
	text-align: center;
	max-width: 450px;
	margin: auto;
	margin-bottom: 40px;
	font-size: 20px;
}
.carly .co-list {
	letter-spacing: -0.31em;
	font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
	padding: 10px;
	background: white;
	color: #111;
	margin: auto;
}
.carly .co-item {
	display: inline-block;
	width: 100%;
	letter-spacing: normal;
	vertical-align: text-top;
	text-align: center;
	padding: 2%;
}
@media screen and (min-width: 1024px) {
	.carly .co-item {
		width: 25%;
	}
}
.carly h3.co-item-heading {
	margin-top: 0;
	font-weight: 700;
}
.carly .carly-subscription-info-wrapper {
	text-align: center;
	padding: 20px 0px;
}
.carly .carly-subscription-info-wrapper h2.csi-heading {
	color: #143642;
	font-weight: 700;
}
.carly .carly-subscription-info-wrapper h3.csi-sub-heading {
	color: #143642;
	font-weight: 700;
	font-size: 17px;
}
.carly .carly-section-seperator {
	border-top: 1px solid #e8e8e8;
}
.carly .carly-how-it-works-wrapper {
	text-align: center;
	padding: 20px 0px;
	background: #f5f4fa;
}
.carly .chiw-heading {
	color: #143642;
}
.carly .chiw-text {
	max-width: 450px;
	margin: auto;
	margin-bottom: 40px;
}
.carly .chiw-list {
	letter-spacing: -0.31em;
	font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
	padding: 10px;
	color: #111;
	margin: auto;
}
.carly .chiw-item {
	display: inline-block;
	width: 100%;
	letter-spacing: normal;
	vertical-align: text-top;
	text-align: center;
	padding: 2%;
}
@media screen and (min-width: 1024px) {
	.carly .chiw-item {
		width: 25%;
	}
}
.carly .chiw-item-heading {
	color: #143642;
	font-weight: 700;
	font-size: 17px;
	padding-top: 0;
}
.carly .carly-compare-subscription-wrapper {
	text-align: center;
	padding: 20px 0px;
}
.carly .ccs-heading {
	color: #143642;
	padding-bottom: 15px;
}
.carly .ccs-table-wrapper {
	max-width: 650px;
	margin: auto;
}
.carly .ccs-table {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	text-align: left;
}
.carly .ccs-table-td {
	border: 2px solid #666;
	padding: 15px 10px;
}
.carly .ccs-table-td-bold {
	font-weight: 700;
}
.carly .ccs-table-td-tick {
	color: #00b9a3;
	border: 3px solid #00b9a3;
	padding: 5px 7px;
	border-radius: 100%;
	margin: auto;
}
.carly .ccs-table-td-cross {
	color: #f84a48;
	border: 3px solid #f84a48;
	padding: 5px 7px;
	border-radius: 100%;
}
.carly-more-info-wrapper {
	text-align: center;
	padding: 20px 0px;
}
.cmi-heading {
	color: #143642;
	padding-bottom: 15px;
}
.cmi-text {
	max-width: 550px;
	margin: auto;
}
.carly-enquiry-form-wrapper {
	padding: 20px 0px;
}
.carly-enquiry-form-wrapper .success {
	text-align: center;
}
.carly-enquiry-form-wrapper h2 {
	font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	display: block;
	text-transform: capitalize;
	font-size: 30px;
	color: #585858;
	border-bottom: 1px solid #e8e8e8;
}
.carly.loading {
	position: relative;
}
.carly.loading:after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	content: " ";
	background-image: url("https://s3-ap-southeast-2.amazonaws.com/assets.i-motor.com.au/images/loader5.gif");
	background-position: 50% 50%;
	background-size: 50px;
	background-repeat: no-repeat;
}
.carly-lead-iframe .fancybox-close {
	width: 50px;
	height: 50px;
	top: -2px;
	right: 0px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMidYMid slice' width='100%25' height='100%25' viewBox='0 0 35 35'%3E%3Cpath fill='%23ffffff' d='M28.4,7.9l-2.2-2.1l-8.7,9.5L8.8,5.8L6.6,7.9l8.9,9.6l-8.9,9.6l2.2,2.1l8.7-9.5l8.7,9.5l2.2-2.1l-8.9-9.6L28.4,7.9z'/%3E%3Cpath /%3E%3C/svg%3E");
	background-color: #bb162b;
	background-repeat: no-repeat;
	background-size: 47%;
	background-position: center center;
}
.carly-subscription-details a:hover {
	color: #fff;
}
.carly-subscribe-btn.button-brand.pure-button {
	background-color: #e11e26;
}
.carly-subscribe-btn.button-brand.pure-button:hover {
	background-color: #9b1224;
}
.stockBuyOnlineFormTextWrapper {
	padding: 10px;
	background-color: #fff;
	border: 1px solid black;
	margin: 10px 0 0;
}
.buy-now-form .box-form-first-sm label,
.buy-now-form .box-form-last-sm label {
	margin: 0.8em 0 0.2em;
}
.stockFormAccordionIcon {
	width: 10px;
	height: 10px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.collapsed .stockFormAccordionIcon {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.buy-now-form input[type="text"],
.buy-now-form input[type="email"],
.buy-now-form input[type="number"],
.buy-now-form input[type="tel"],
.buy-now-form select,
.buy-now-form textarea {
	font-family: Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #777;
	display: inline-block;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	width: 100%;
	box-shadow: inset 0 1px 3px #ddd;
	transition: 0.4s linear border;
}
.buy-now-form input[type="text"],
.buy-now-form input[type="email"],
.buy-now-form input[type="number"],
.buy-now-form input[type="tel"],
.buy-now-form textarea {
	padding: 0.8em 0.6em;
}
.buy-now-form select,
.stock-page .buy-now-form select {
	padding: 3px 0.6em;
}
.StripeElement {
	margin-top: 10px;
	box-sizing: border-box;
	height: 38px;
	padding: 0.8em 0.6em;
	color: #777;
	background-color: #fff;
	display: inline-block;
	border: 1px solid #e5e5e5;
	border-radius: 3px;
	width: 100%;
	box-shadow: inset 0 1px 3px #ddd;
	transition: 0.3s linear border;
	-webkit-transition: 0.3s linear border;
}
.payment-methods {
	display: -webkit-flex;
	display: flex;
}
.stockFormPaymentLogoLink {
	display: block;
}
.stockFormPaymentLogo {
	height: 24px;
	width: auto;
	margin: 5px 20px 5px 0;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
}
.stockFormPaymentLogo:hover {
	cursor: pointer;
	-webkit-filter: none;
	filter: none;
}
.stock-detail .sdCtaBuyNowWrapper {
	height: 50px;
	background-color: #636363;
	border-radius: 25px;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: -webkit-transform 150ms ease-in-out;
	transition: transform 150ms ease-in-out;
	transition: transform 150ms ease-in-out, -webkit-transform 150ms ease-in-out;
}
.stock-detail .sdCtaBuyNowWrapper:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.stock-detail .sdCtaBuyNowIcon {
	height: 50px;
	width: 50px;
	fill: #dc0000;
	border-radius: 25px;
	background-color: #ffffff;
	border: 5px solid #dc0000;
	padding: 7px;
}
.sdCtaBuyNowIconText {
	color: white;
	font-size: 18px;
	font-weight: bold;
	margin-left: 8px;
}
.sdCtaBuyNowText {
	color: white;
	font-size: 18px;
	font-weight: bold;
	margin-left: 8px;
}
