﻿.section-wraps{
	max-height:350px;
	overflow-y:scroll;
	padding-right:20px;
}
.buy-now-section{
	padding:15px;
	background:#f7eff3;
	margin-bottom:15px;
	border-radius:3px;
	border: dashed 1px #505050;
}
.finance-section{
	padding:10px 0 10px 0;
	border-bottom:solid 1px #dfdfdf;
	margin-bottom:20px;
}
.buy-now-section h3.buy-now-heading,
.finance-section h3.buy-now-heading
{
	font-size:1.875rem;
	font-weight:bold;
	color:#c12025;
}
.buy-now-section h4.buy-now-heading,
.finance-section h4.buy-now-heading
{
	font-size:1.625rem;
	font-weight:bold;
	color:#222;
}
.main-buy-price{
	margin-bottom:15px;	
	float:left;
}
.mp-inventory{
    margin: 0;
    float: right;
    padding: 5px 10px;
    background: #fff;
    border-radius: 3px;	
	box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 3px 1px rgba(0,0,0,0.2);    
}
.mp-inv-summary{
	font-size:16px;
}
.mp-delivery-zip{
	position: relative;
}
.mp-delivery-zip--modal {
	max-width: 280px; /* adjust to whatever width you want */
}
.mp-delivery-zip-inner {
	display: flex;
	align-items: stretch;
	gap: 8px;
	width: 100%;
}
.mp-delivery-zip input.text,
.mp-delivery-zip input.title,
.mp-delivery-zip input:not([type]), 
.mp-delivery-zip input[type=text], 
.mp-delivery-zip input[type=search], 
.mp-delivery-zip textarea,
.mp-delivery-zip select
{
	margin: 0;
}
.mp-delivery-zip--modal .delivery-zip-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 46px;
	margin: 0;
}
.mp-delivery-zip label.zipper-label{
	color:#414141;
	font-size:16px;
	font-weight:normal;
}
.mp-delivery-zip .zip-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 0 14px;
	height: 46px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	background: #585858;
	color: #fff;
	white-space: nowrap;
}
.mp-delivery-zip .zip-check:hover{
	background:#363636;
}
.delivery-zip-status-modal {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.4;
}
.buy-now{
	display:inline-block;
	padding:15px 45px;
	background:#c40000; /* primary red */
	text-align:center;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	text-transform:uppercase;
	border-radius:4px;
	position:relative;
	overflow:hidden;
	transition:.3s ease;	
	/* pulse background + glow */
	animation: pulseRedToBlack 2s infinite ease-in-out;
}
.buy-now::after{
	content:"";
	position:absolute;
	inset:0;
	border-radius:4px;
	pointer-events:none;
	
	/* dark overlay that pulses in/out */
	background: radial-gradient(
		circle at center,
		rgba(0,0,0,0) 0%,
		rgba(0,0,0,.15) 35%,
		rgba(0,0,0,.45) 100%
	);
	opacity:.15;
	animation: darkPulse 2s ease-in-out infinite;
}
.buy-now:hover{
	color:#fff;
	background:#e00000;
	animation:none;	
	transform:translateY(-2px);
}

@keyframes pulseRedToBlack {
	0% {
		background:#d10000;
	}
	50% {
		background:#4a0000; /* dark red / almost black */
	}
	100% {
		background:#d10000;
	}
}

@keyframes darkPulse {
	0%{
		opacity:.08;
		transform:scale(1);
	}
	50%{
		opacity:.35;
		transform:scale(1.03);
	}
	100%{
		opacity:.08;
		transform:scale(1);
	}
}

.buystore-form,
.finance-form
{
	padding:20px;
	background:#dfdfdf;
}
#delivery-zip-status {
    display: none;
}
#delivery-zip-status.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
.delivery-zip-modal-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.delivery-zip-modal {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: #fff;
    border-radius: 12px;
    padding: 30px 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    text-align: left;
}
.delivery-zip-modal.successful {
    border-top: 8px solid #2e8b57;
}
.delivery-zip-modal.alertful {
    border-top: 8px solid #c0392b;
}
.delivery-zip-modal-title {
    margin: 0 0 14px;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
}
.delivery-zip-modal-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}
.delivery-zip-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    z-index:10000;
}
.delivery-zip-modal-close:hover {
    color: #000;
}
.mp-delivery-zip--modal {
    margin-bottom: 5px;
    text-align:left;
}
#delivery-zip-status-modal {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
    text-align:left;
}
#delivery-zip-status-modal .successful {
    color: #a3e3c1;
}
#delivery-zip-status-modal .alertful {
    color: #ebbebf;
}
.mp-delivery-zip-inner input.text, 
.mp-delivery-zip-inner input.title, 
.mp-delivery-zip-inner input:not([type]), 
.mp-delivery-zip-inner input[type=text], 
.mp-delivery-zip-inner textarea, 
.mp-delivery-zip-inner select
 {
    background-color: #dcdcdc;
    border: 1px solid #f1f1f1;
    color:#000;
}
.mp-delivery-zip-inner input::placeholder,
.mp-delivery-zip-inner textarea::placeholder {
	color: #000;
	opacity: 1;
}
.mp-delivery-zip-inner .delivery-zip-input::-webkit-input-placeholder { color: #000; } /* Chrome/Safari */
.mp-delivery-zip-inner .delivery-zip-input::-moz-placeholder { color: #000; opacity: 1; } /* Firefox */
.mp-delivery-zip-inner .delivery-zip-input:-ms-input-placeholder { color: #000; } /* old IE/Edge */
.mp-delivery-zip-inner .delivery-zip-input::-ms-input-placeholder { color: #000; } /* old Edge */
.mp-delivery-zip-inner .delivery-zip-input::placeholder { color: #000; } /* modern */

.mp-finance-preapproval input.text, 
.mp-finance-preapproval input.title, 
.mp-finance-preapproval input:not([type]), 
.mp-finance-preapproval input[type=text], 
.mp-finance-preapproval textarea, 
.mp-finance-preapproval select
 {
    background-color: #dcdcdc;
    border: 1px solid #f1f1f1;
    color:#000;
}
.mp-finance-preapproval input::placeholder,
.mp-finance-preapproval textarea::placeholder {
	color: #000;
	opacity: 1;
}
.mp-finance-preapproval .mp-finance-preapproval-input::-webkit-input-placeholder { color: #000; } /* Chrome/Safari */
.mp-finance-preapproval .mp-finance-preapproval-input::-moz-placeholder { color: #000; opacity: 1; } /* Firefox */
.mp-finance-preapproval .mp-finance-preapproval-input:-ms-input-placeholder { color: #000; } /* old IE/Edge */
.mp-finance-preapproval .mp-finance-preapproval-input::-ms-input-placeholder { color: #000; } /* old Edge */
.mp-finance-preapproval .mp-finance-preapproval-input::placeholder { color: #000; } /* modern */

.mp-finance-intro {
    margin-bottom: 12px;
}
.mp-finance-sheffield-btn {
    float: left;
    margin: 0 14px 8px 0;
    white-space: nowrap;
}
.mp-finance-note {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size:14px;
    line-height:1.4;
}
.mp-finance-preapproval {
    clear: both;
    margin-top: 12px;
    text-align: left;
}
.mp-finance-preapproval label {
    display: block;
    margin-bottom: 5px;
}
.mp-finance-preapproval-input {
    width: 100%;
    max-width: 420px;
}
.mp-finance-actions {
    margin-top: 10px;
    text-align: left;
}
.mp-pay-modal.remodal{
	max-width: 1180px;
	width: 95%;
	padding: 0;
	background: #0a0a0a;
	color: #fff;
	overflow: hidden;
}
.mp-pay-layout{
    display: flex;
    min-height: 780px;
}
.mp-pay-left{
    width: 32%;
    min-height: 780px;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.mp-pay-left-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.mp-pay-left-text{
    color: #fff;
    font-size: 64px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
}
.mp-pay-right{
    width: 68%;
    padding: 44px 38px 38px;
    background: linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.84));
}
.mp-pay-section{
    margin-bottom: 42px;
}
.mp-pay-heading-row{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 14px;
}
.mp-pay-heading-row h3{
    margin: 0;
    font-size: 28px;
    line-height: 1;
    color: #f2c230;
    font-weight: 900;
    text-transform: uppercase;
}
.mp-pay-price{
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: right;
    white-space: nowrap;
}
.mp-pay-card{
    position: relative;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 4px;
    padding: 30px 22px 20px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.02);
}
.mp-pay-card-label{
    position: absolute;
    top: -12px;
    left: 18px;
    background: #0a0a0a;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.mp-pay-card-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.mp-pay-card-copy{
    flex: 1 1 auto;
}
.mp-pay-card-title,
.mp-pay-delivery-message{
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-align:left;
}
.mp-store-options{
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 12px;
}
.mp-store-options label{
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.mp-store-options input{
    margin-right: 8px;
    transform: scale(1.05);
}
.mp-pay-card-action{
    flex: 0 0 auto;
}
.mp-red-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    background: linear-gradient(180deg, #ff2a2a 0%, #db1f27 100%);
    color: #fff !important;
    text-transform: none;
    font-size: 16px;
    font-weight: 800;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    text-decoration: none;
}
.mp-red-btn:hover,
.mp-red-btn:focus{
    background: linear-gradient(180deg, #ff3838 0%, #c91820 100%);
    color: #fff !important;
}
.mp-yellow-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    background: #f2c230;
    color: #000 !important;
    text-transform: none;
    font-size: 16px;
    font-weight: 800;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    text-decoration: none;
}
.mp-yellow-btn:hover,
.mp-yellow-btn:focus{
    background:#dcaa12;
}
.mp-green-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: #0A5C44;
    color: #fff !important;
    text-transform: none;
    font-size: 16px;
    font-weight: 800;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    text-decoration: none;
}
.mp-green-btn:hover,
.mp-green-btn:focus{
    background:#086c4f;
    color:#fff;
}
.mp-pay-close{
    color: #fff;
    top: 18px;
    right: 18px;
    z-index:3000;
}
.mp-pay-close:before{
    font-size: 32px;
    font-weight: 700;
}
@media (max-width: 1024px){
    .mp-pay-layout{
        flex-direction: column;
    }
    .mp-pay-left,
    .mp-pay-right{
        width: 100%;
        padding: 30px;
    }
    .mp-pay-left{
        min-height: 200px;
    }
    .mp-pay-left-text{
        font-size: 34px;
        text-align: center;
    }
    .mp-pay-card-row,
    .mp-pay-heading-row{
        flex-direction: column;
        align-items: flex-start;
    }
    .mp-pay-price{
        text-align: left;
        white-space: normal;
    }
    .mp-pay-card-action{
        width: 100%;
    }
    .mp-red-btn,
    .mp-green-btn,
    .mp-yellow-btn    
    {
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    .mp-finance-sheffield-btn {
        float: none;
        display: block;
        margin: 0 0 10px 0;
    }
	.mp-finance-preapproval input.text, 
	.mp-finance-preapproval input.title, 
	.mp-finance-preapproval input:not([type]), 
	.mp-finance-preapproval input[type=text], 
	.mp-finance-preapproval textarea, 
	.mp-finance-preapproval select
	 {
	    width:100%;
	}
    .mp-finance-preapproval-input {
        max-width: 100%;
    }
    .delivery-zip-modal {
        padding: 24px 20px 20px;
    }
    .delivery-zip-modal-title {
        font-size: 1.4rem;
    }
    .delivery-zip-modal-text {
        font-size: 1rem;
        line-height: 1.6;
    }    
}

.price-disclaimer-asterisk {
    color: #c62828;
    font-weight: 700;
    margin-left: 2px;
}
.price-disclaimer {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #c62828;
}
.price-disclaimer--prominent {
    padding: 10px 12px;
    margin-top: 12px;
    background: #fff3f3;
    border: 1px solid #e0b4b4;
    border-left: 4px solid #c62828;
    border-radius: 4px;
}
.mp-pay-price-note {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #c62828;
}

/* Foxy side */
#fc .fc-action--checkout--button, 
#fc .fc-button--subscription-cancel, 
#fc .fc-button--submit,
#fc .fc-fixed-button-right .fc-btn-action {
    border-color: #357ebd !important;
    background: #428bca !important;
}
#fc .fc-action--checkout--button:hover, 
#fc .fc-action--checkout--button:focus, 
#fc .fc-button--subscription-cancel:hover, 
#fc .fc-button--subscription-cancel:focus, 
#fc .fc-button--submit:hover, 
#fc .fc-button--submit:focus
{
    border-color: #000000 !important;
    background: #3a3a3a !important;
    color: white !important;
}
#fc .fc-button {
    font-size:14px !important;
}
.fc-cart__item__option--code,
.fc-cart__item__option--category {
    display:none;
}
.fc-checkout .typography p {
    padding:0;
}
.fc-postal-code-entry__submit,
.fc-container__grid--postal-code-actions p.fc-postal-code-entry__submit {
    padding-top:0;
}
#fc .fc-cart__item__option__value {
    white-space:initial;
}
#fc #cnv-custom-message {
    padding: 0 10px;
    margin-bottom:10px;
    background: #fadfe2;
    border: 2px solid #dc3144;
    border-radius:5px;
}
#fc-custom-purchase-info {
    margin: 10px 0 15px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f8f8;
    font-size: 14px;
    line-height: 1.5;
}
#fc-custom-purchase-info .fc-custom-purchase-info__row + .fc-custom-purchase-info__row {
    margin-top: 4px;
}
.fc-cart__discounts a,
.fc-discounts a,
a[href*="coupon"],
button[aria-label*="coupon"],
button[title*="coupon"] {
	display: none !important;
}
.fc-cart__discounts .fc-remove,
.fc-discounts .fc-remove,
.fc-cart__discounts .fc-icon--remove,
.fc-discounts .fc-icon--remove,
.fc-cart__discounts [aria-label*="remove"],
.fc-discounts [aria-label*="remove"],
.fc-transaction__discounts div,
.fc-transaction__discounts .fc-transaction__ui
{
	display: none !important;
}
.fc-subtotal__label .fc-coupon__code{
	display:none !important;
}
.remodal-wrapper.remodal-is-closing,
.remodal-overlay.remodal-is-closing {
	pointer-events: none !important;
}

/*********************************************************************************** END BUY NOW SECTION *********************************************************************/




/* main content area */

.main h1.prod-title {
    font-size: 24px;
    font-weight: bold;
    color: #606060;
    margin: 0 0 4px 0;
    padding: 0;
}
.main h2.model-name {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    color: #303030;
    margin: 10px 0 12px 0;
    padding: 0 0 1px 0;
    text-transform: uppercase;
}
.main .reddish {
    color: #f23105;
    font-family: inherit;
}
.main .price-label {
	font-size:1.25rem;
	font-weight:bold;
	color:#242424;
	line-height:normal;
}
.main .price-tag-large {
	font-size:2.125rem;
	font-weight:900;
	color:#c12025;
	line-height:normal;
}
.main .price-tag {
	font-size:1.75rem;
	font-weight:bold;
	color:#c12025;
	line-height:normal;
}
.main h3.series-name {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    color: #4a4a4a;
    margin: 0 0 7px 0;
    padding: 0 0 7px 0;
}

/* model selector nav */

.model-select-box {
    margin: 0 0 10px 0;
    padding:5px 0 5px 0;
    display:block;
}
#mod-select {
    margin: 0;
    padding: 0 30px 0 0;
    width:auto;
    height: auto;
    border:0 transparent none;
    font-size:15px;
    font-weight:700;
    color:#c12025;
}

/* print only */
.show-for-print-only {
    display: none;
}

/* primary info */

.social-grey-box{
	padding:20px 0 0 0;
}
.social-grey-box h1.series-name{
	font-size:30px;
	font-weight:bold;
	color:#333;
}
.social-grey-box h2.series-name{
	font-size:24px;
	font-weight:bold;
	color:#333;
	margin:0 0 8px 0;
	line-height:normal;
}
.social-grey-box .print-button{
	padding:5px;
}
.social-grey-box .popups {
    vertical-align: middle;
    display: flex;
    position: relative;
    bottom: 50%;
    transform: translateY(-50%);
}
.social-grey-box .chevron::before {
	border-style: solid;
	border-width: 0.17em 0.17em 0 0;
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	top:-1px;
	font-weight:normal;
	position: relative;
	transform: rotate(-45deg);
	vertical-align: middle;
}
.social-grey-box .chevron.rightarrow:before {
	left: 0;
	transform: rotate(45deg);
}
.social-grey-box .chevron.bottomarrow:before {
	top: 0;
	transform: rotate(135deg);
}
.social-grey-box .chevron.leftarrow:before {
	left: 0.25em;
	transform: rotate(-135deg);
}
.social-grey-box .overview-section {
    margin: 0 0 10px 0;
}
.social-grey-box .overview-section ul {
    margin: 0 0;
    padding-left: 20px;
}
.social-grey-box h3.overview-title {
    font-size: 17px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.social-grey-box .overview-section p{
    font-size:15px;
}
.social-holder {
    z-index: 0;
    position: relative;
}

/* New Call To Action Section */

.product-detail-call-to-action-section ul.product-detail-button-section-holder{
	list-style-type:none;
	list-style-position:inside;
	margin:0;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li {
	display:block;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button {
	font-size:15px;
	color:#c12025;
	font-weight:700;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button:hover {
	color:#333;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button-Main {
	display:inline-block;
	padding:16px 35px;
	margin:5px 0 20px 0;
	font-size:14px;
	font-weight:bold;
	text-align:center;
	text-transform:uppercase;
    color: #fff;
    background:#c12025;
	text-decoration:none;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button-Main:hover {
	background:#9f1a1e;
	color:#fff;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button--primary {
	background:#c12025;
	color:#fff;
	border-color:transparent;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li a.product-detail-button--primary:hover {
	color:#fff;
	background:#9f1a1e;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li .print-button {
	margin:10px 0 10px 0;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li .deere-color {
	color:#c12025;
	font-size:15px;
	font-weight:700;
}
.product-detail-call-to-action-section ul.product-detail-button-section-holder li .deere-color:hover {
	color:#333;
}
.product-detail-button-section--first-brochure {
	margin-top:10px;
}

/* Tabs */

.info-tabs {
    margin: 0;
	background:#e5e6e6;
}
#modeltabs {
    margin: 0;
    padding: 0;
    background: transparent;
}
#modeltabs:after {
    content: " ";
    display: table;
    clear: both;
    float: none;
}
#modeltabs li {
    list-style-type: none;
    margin: 0 6px 0 0;
    padding: 0;
    float: left;
}
#modeltabs li a {
    display: block;
    color: #c12025;
    padding: 12px;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    background:#eff0f0;
}
#modeltabs .inactive {
    color: #333;
    border-bottom: 0px;
    background:#e5e6e6;
}

/* Forms */

#Product_Quote--holder form#Form_QuoteForm {
	width:100%;
}
#Product_Quote--holder form#Form_QuoteForm fieldset #Name,
#Product_Quote--holder form#Form_QuoteForm fieldset #Email,
#Product_Quote--holder form#Form_QuoteForm fieldset #Phone,
#Product_Quote--holder form#Form_QuoteForm fieldset #Address,
#Product_Quote--holder form#Form_QuoteForm fieldset #City,
#Product_Quote--holder form#Form_QuoteForm fieldset #State,
#Product_Quote--holder form#Form_QuoteForm fieldset #Zip,
#Product_Quote--holder form#Form_QuoteForm fieldset #NearestLocation
{
	display:inline-block;
	width:48%;
	margin:0 5px 0 5px;
}
#Product_Quote--holder form#Form_QuoteForm fieldset #ModelName,
#Product_Quote--holder form#Form_QuoteForm fieldset #trades,
#Product_Quote--holder form#Form_QuoteForm fieldset #TradeIn,
#Product_Quote--holder form#Form_QuoteForm fieldset #Comments
{
	width:98%;
	margin:0 auto 10px auto;
}
#Product_Quote--holder form#Form_QuoteForm fieldset #trades .optionset{
	margin-bottom:10px;
}


/* tabs content/container */

.container {
    clear: both;
    z-index: 5000;
    min-height: 200px;
    padding: 30px;  
}
.container ul {
    margin-left: 0;
}
.container ul li {
    margin: 0 0 0 20px;
}
.container table {
    width: 100%;
    color: #000;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #000;
}
.container table td {
    border: 1px #4b4b4b solid;
    padding: 6px;
    text-align: center;
    color: #000;
}
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6 {
    color: #000;
}
.container p {
    color: #000;
}
.container ul {
    color: #000;
    padding: 0;
}
.container ol {
    color: #000;
}
.right-arrow {
    float: right;
}

#tab1C {
    overflow:hidden;
    background:#eff0f0;
    color:#000;
    text-align: left !important;
}
#tab2C {
    overflow:hidden;
    background:#fff;
    border:10px #eff0f0 solid;
    color:#000;
}
#tab1C fieldset,
#tab2C fieldset {
    margin: 0px !important;
    padding: 0px !important;
    width: 75%;
}

/* features and accessories toggles */

.mp-features .toggle-expand--title {
	color:#333;
	font-size:18px;
	font-weight:400;
	padding:15px 0 15px 0;
	cursor:pointer;
	border-bottom:1px solid #c2c2c2;
}
.mp-features .toggle-expand--title:before {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 14px;
	color: #c12025;
	float: left;
	margin-right:10px;
}
.mp-features .toggle-expand--title.active:before {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
}
.mp-features .toggle-expand--content {
	display:none;
    padding: 0 13px;
}

/* features sub tabs */

.mp-features-tab-labels {
    position: relative;
	display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    z-index: 1;
}
.mp-features-tab-labels--expanded {
	display:block;
    position: absolute;
    left: 0;
    right: 0;
	top: 100%;
    border-top: 1px solid #ccc;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 0px 8px 10px -5px rgb(0 0 0 / 25%);
}
.mp-features-mobile-selected-tab-label {
	position: relative;
    margin: 0 0 10px 0;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
	background-color: #fff;
}
.mp-features-mobile-selected-tab-label:before,
.mp-features-mobile-selected-tab-label:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    border-top: 2px solid #000;
    width: 10px;
    -webkit-transform-origin: center;
    transform-origin: center;
}
.mp-features-mobile-selected-tab-label:before {
    -webkit-transform: translate(3px) rotate(-45deg);
    transform: translate(3px) rotate(-45deg);
}
.mp-features-mobile-selected-tab-label:after {
    -webkit-transform: translate(-3px) rotate(45deg);
    transform: translate(-3px) rotate(45deg)
}
.mp-features-mobile-selected-tab-label--expanded {
	font-weight: normal;
}
.mp-features-mobile-selected-tab-label--expanded::before {
    -webkit-transform: translate(-3px) rotate(-45deg);
    transform: translate(-3px) rotate(-45deg);
}
.mp-features-mobile-selected-tab-label--expanded::after {
    -webkit-transform: translate(3px) rotate(45deg);
    transform: translate(3px) rotate(45deg);
}
.mp-features-tab-labels .mp-features-tab-label {
    position: relative;
    cursor: pointer;
	display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
    border-radius: 4px;
    background-color: #fff;
}
.mp-features-tab-labels a:focus {
	outline: none;
}
.mp-features-tab-labels a.mp-features-tab-label,
.mp-features-tab-labels .mp-features-tab-label a {
	color: inherit;
}
.mp-features-tab-labels .mp-features-tab-label.active {
	color: #860101;
}
.mp-features-tab {
	padding: 12px;
}
.mp-features-tabs > .mp-features-tab {
	display: none;
}
.mp-features-tabs > .mp-features-tab.active {
	display: block;
    background-color: #fff;
    overflow: hidden;
}
@media only screen and (min-width: 768px) {
	.mp-features-tab-labels .mp-features-tab-label.active {
		background-color: #fff;
	}
	.mp-features-mobile-selected-tab-label {
		display: none;
	}
	.mp-features-tab-labels {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
	}
    .mp-features-tab-labels .mp-features-tab-label {
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-ms-flex: 1 1 100px;
		-webkit-flex: 1 1 100px;
		flex: 1 1 100px;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
    }
}
@media only screen and (min-width: 1024px) {
    .mp-features-tab-labels .mp-features-tab-label+.mp-features-tab-label {
        margin-left: 20px
    }
}

/* tableizer */

.tableizer-table {
    width: 100%;
}
.stacktable {
    width: 100%;
}
.stacktable th {
    background: black;
    color: white;
    font-weight: bold;
}
.st-head-row {
    padding-top: 1em;
}
.st-head-row.st-head-row-main {
    font-size: 1.5em;
    padding-top: 0;
}
.st-key {
    width: 49%;
    text-align: right;
    padding-right: 1%;
}
.st-val {
    width: 49%;
    padding-left: 1%;
}

/* RESPONSIVE EXAMPLE */

.stacktable.large-only {
    display: table;
}
.stacktable.small-only {
    display: none;
}
.container > table {
    width: 100%;
}
.container > table tr td {
    border: 1px solid #333;
    padding: 5px;
}
.container > table tr td:first-child {
    font-weight: bold;
}
.productbanner {
    position: relative;
    height: 154px;
    overflow: hidden;
}
.productbanner ul {
    margin: 0;
    padding: 0;
}
.productbanner li {
    list-style: none;
}
.productbanner ul li {
    float: left;
}
/*
.productacc-content {
    border-left: thin silver dashed;
    border-right: thin silver dashed;
    border-bottom: thin silver dashed;
}
*/

/* success message */

.success-script {
    padding: 20px;
    background-color: #f8f792;
    border: 2px #f8f66d solid;
    margin: 30px 0 30px 0;
}
#success-script {
    margin-bottom: 10px;
}


/* Forms */

form#Form_QuoteForm fieldset,
form#Form_FriendForm fieldset{
	margin:0;
	padding:0;
}
#Form_QuoteForm label,
#Form_FriendForm label {
    display: block;
    width: 100%;
    color: #000;
}
#Form_QuoteForm input,
#Form_QuoteForm textarea,
#Form_FriendForm input,
#Form_FriendForm textarea {
    display: block;
    clear: both;
}
#Form_QuoteForm_action_SendQuoteForm,
#Form_FriendForm_action_SendFriendForm {
	background: #c12025;
	color: #fff;
	font-weight:bold;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    padding: 12px 25px;
    text-align:center;
}
#Form_QuoteForm_action_SendQuoteForm:hover,
#Form_FriendForm_action_SendFriendForm:hover {
	background: #9f1a1e;
	color:#fff;
}

/* generic form mods */

form p.message.error {
    background-color: #FFC9C9;
    margin-bottom: 10px;
    padding: 8px 12px;
    color: #8E0000;
}
input.text,
input.title {
    padding: 5px;
}

/* trade in form section */

#trades {
    margin: 12px 0 12px 0;
}
#trades label {
    margin: 0 0 6px 0;
    font-weight: bold;
    background: #eaeaea;
    padding: 10px;
    color: #092954 !important;
}
#quoteform-tradein-fields {
    background: #eaeaea;
    border: thin gray dashed;
    padding: 20px;
    margin: 0 0 20px 0;
}
#Form_QuoteForm_trades {
    display: block !important;
    margin: 0;
    padding: 0;
}
#Form_QuoteForm_trades li {
    display: inline-block !important;
    clear: none !important;
    vertical-align: top !important;
    line-height: normal !important;
    margin: 0 16px 0 0 !important;
}
#Form_QuoteForm_trades li input {
    float: left !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top !important;
    line-height: normal !important;
    background: transparent !important;
}
#Form_QuoteForm_trades li label {
    float: left !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top !important;
    line-height: normal !important;
    font-weight: normal !important;
    background: transparent !important;
}
/* end trade in form section */


/* Loan Calculator */

.loan-calculator form#loan-calculator input.details-calculate-button, .loan-calculator form#loan-calculator input.details-reset-button {
	background: #c12025;
	color: #fff;
	font-weight:bold;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0;
    padding: 12px 25px;
    text-align:center;
    border:0 transparent none;
}
.loan-calculator form#loan-calculator input.details-calculate-button:hover, .loan-calculator form#loan-calculator input.details-reset-button:hover {
	background:#9f1a1e;
	color:#fff;
}
.attach-btn {
    margin: 20px 0 0 0;
}
#attach-link {
    color: #188728;
    font-size: 16px;
    text-decoration: none;
    margin: 20px 0 0 0;
}
#attach-link:hover {
    text-decoration: underline;
}
span.reddish {
    color: #e31e0a;
}


/* add to cart*/

#customcart-notification {
    display: none;
    margin-top: 10px;
    padding: 3px 15px 3px 35px;
    color: #333;
    background: transparent url('../images/loader.gif') left center no-repeat;
    border-radius: 5px;
    transition: background 300ms ease-out;
}
#customcart-notification.success {
    padding-left: 15px;
    background-image: none;
    background-color: #b6e0b6;
}
.cart-func {
    overflow: hidden;
    text-align: center
}
.cart-func label {
    display: inline-block;
    height: 38px;
    margin: 0 0.4rem 0 0.4rem;
    line-height: 38px;
    font-weight: bold;
}
.cart-func input {
    display: block;
    height: 38px;
}
.cart-func .cart-qty {
    display: inline-block;
    margin: 0 0.4rem 0 0.4rem;
    vertical-align: bottom;
    overflow: hidden;
}
.cart-func .cart-qty input {
    float: left;
    width: 50px;
    margin: 0;
}
.cart-qty-controller {
    float: left;
    height: 38px;
    margin: 0;
}
.cart-qty-controller .cart-inc-qty,
.cart-qty-controller .cart-dec-qty {
    display: block;
    width: 19px;
    height: 19px;
    background-color: #e4e1e1;
    background-image: url('../images/qty-arrows.png');
    background-repeat: no-repeat;
}
.cart-qty-controller .cart-inc-qty {
    background-position: 0 center;
    border-bottom: 1px solid #cecdcd;
}
.cart-qty-controller .cart-dec-qty {
    background-position: -19px center;
    border-top: 1px solid #cecdcd;
}
.cart-qty-controller .cart-inc-qty:hover,
.cart-qty-controller .cart-dec-qty:hover {
    background-color: #aaa;
    border-color: #aaa;
}
.cart-func input.americart-add {
    display: block;
    width: 100%;
    padding: 5px 15px;
    margin: 1rem 0 0 0;
    border: 0;
    outline: 0;
    background-color: #105ea8;
    color: #FFF;
    transition: background-color 300ms ease-out;
}
.cart-func input.americart-add:hover {
    background-color: #000;
}

/* pic holder thumbnail gallery */
#gallery_01 img,
#gallery_03 img {
    border: 2px solid white;
}
#gallery_01 div,
#gallery_03 div {
    float: left;
    background: white;
}
#gallery_01,
#gallery_03 {
    margin: 0 0 10px 0;
    overflow: hidden;
}

/*Change the colour*/
.active img {
    border: 2px solid #cecece !important;
}

/* pic holder */
.large-pic-holder {
    margin: 0 auto 10px auto;
    position: relative;
}
.large-pic-holder img {
    max-width: 100%;
}

/* read more overview */
.mp-read-more--shortened {
	max-height:100px;
	overflow:hidden;
}
.mp-read-more-trigger {
	font-size:12px;
	display:block;
	margin:0 0 12px 0;
}

/* Specs and Compare */
#specs-compare-header { border-bottom: 3px solid transparent; }
#specs-compare-header > table { margin-bottom:0; }
#specs-compare-header th { font-weight:normal; }
#specs-compare-header td { position:relative; }
.is-sticky #specs-compare-header { border-color: #eff0f0; z-index: 9999 !important; }
#specs-compare-header a.close { position:absolute; top:0; right:8px; font-size:12px; }
#specs-compare-header a.close:focus { outline:none; }
.specs-compare-header__model { font-weight:bold; }
.compare-picker__options {
    padding: 0.75rem 0.5rem;
    height: 3rem;
    background-color: #ffbe1e;
    font-weight: bold;
    font-size: 0.9rem;
    border: 0;
}
.compare-picker__title { font-size: 14px; font-weight: bold; text-transform: uppercase; }
#specs-compare-header-message { display:none; }
.default-col-label-spacer { height:1rem; }
.default-col-label, .default-col-label-spacer { display:none; }
.compare-compact .default-col-label, .compare-compact .default-col-label-spacer { display:block; }
.compare-compact #specs-compare-header-message { display:block; }
.compare-compact .table-container tr th { display:none; }

/* End Specs and Compare */


/* media queries */
@media only screen and (max-width: 1024px) {
    .social-grey-box a.calculator-btn {
        width: 100%;
    }
    .social-grey-box a.product-quote-btn {
        width: 100%;
    }
    .social-grey-box a.product-friend-btn {
        width: 100%;
    }
    .social-grey-box a.calculator-btn {
        margin: 0 0 10px 0;
    }
    .social-grey-box a.product-quote-btn {
        margin: 0 0 10px 0;
    }
    .social-grey-box a.product-friend-btn {
        margin: 0 0 10px 0;
    }
    #mod-select {
        width: 100%;
    }
	.main-buy-price{
		display:block;
		margin-bottom:10px;	
		float:none;
		width:100%
	}
	.mp-inventory{
		display:inline-block;
	    float: none;
	}
    
}
@media (max-width: 800px) {
    .stacktable.large-only {
        display: none;
    }
    .stacktable.small-only {
        display: table;
    }
    .stacktable th {
        background: transparent;
        color: black;
        font-weight: bold;
    }
}
@media (max-width: 768px) {
    .container > table tr td {
        display: block;
		width:auto !important;
        border-bottom: none;
    }
}
@media only screen and (max-width: 768px) {
	.mp-pay-left-overlay {
	    padding: 20px;
	}
	.mp-store-options {
	    display: block;
	}
	.mp-store-options label {
	    font-size: 16px;
	    text-align: left;
	}
    .cart-func input.customcart-add {
        border-radius: 0px;
    }
	#Product_Quote--holder form#Form_QuoteForm fieldset #Name,
	#Product_Quote--holder form#Form_QuoteForm fieldset #Email,
	#Product_Quote--holder form#Form_QuoteForm fieldset #Phone,
	#Product_Quote--holder form#Form_QuoteForm fieldset #Address,
	#Product_Quote--holder form#Form_QuoteForm fieldset #City,
	#Product_Quote--holder form#Form_QuoteForm fieldset #State,
	#Product_Quote--holder form#Form_QuoteForm fieldset #Zip,
	#Product_Quote--holder form#Form_QuoteForm fieldset #NearestLocation
	{
		display:block;
		width:100%;
		margin:0 0 10px 0;
	}
	#Product_Quote--holder form#Form_QuoteForm fieldset #ModelName,
	#Product_Quote--holder form#Form_QuoteForm fieldset #trades,
	#Product_Quote--holder form#Form_QuoteForm fieldset #TradeIn,
	#Product_Quote--holder form#Form_QuoteForm fieldset #Comments
	{
		width:100%;
		margin:0 0 10px 0;
	}
	#Product_Quote--holder form#Form_QuoteForm fieldset #trades .optionset{
		margin-bottom:10px;
	}
    
}
@media only screen and (min-width: 25.9375em) {
    .cart-func {
        text-align: left;
    }
    .cart-func.right-align {
        text-align: right;
    }
    .cart-func input.americart-add {
        display: inline-block;
        width: auto;
        margin: 0 0.4rem;
    }
}
@media (max-width: 599px) {
    .prod-breadcrumbs {
        display: none;
    }
}
@media only screen and (max-width: 580px) {
    #modeltabs li {
        margin: 0 !important;
        float: none !important;
    }
    #modeltabs li a {
        width: 100% !important;
        padding: 5px 10px 5px 10px !important;
    }
    /*.view-switcher {
        width: auto;
    }*/
    #tab1C fieldset,
    #tab2C fieldset,
    #tab3C fieldset,
    #tab4C fieldset {
        width: 100%;
    } 
}

