span.iisdollar {
    font-size: 18px;
    vertical-align: top;
}

.iis-container ul.tabs.wc-tabs {
    clear: both;
}

.iisupulldiv .iisfitmentlabel .iis-col-md-6 {
    display: none;
}

.iiscountblock {
    color: #766c6c;
    padding: 0px 4px;
    border: 1px solid #c1b2b2;
    border-radius: 50px;
    font-size: 12px;
}

.iissmallloading {
    position: absolute;
    top: 10%;
    left: 50%;
    z-index: 999;
}

.iis-buy-now-ex-message {
    background: #e4971f;
    color: #fff;
    padding: 12px;
    margin-top: 2px;
    width: auto;
    text-align: center;
}

/* .latestArrivalSearch {
    border: 1px solid #f0f0f0;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
} */

form.carte {
    /*display: inline-block;*/
}

.iislastsearches a {
    font-size: 14px;
    text-decoration: underline;
    font-style: italic;
    margin-left: 12px;
}

ul#breadcrumbs-one {
    padding: 0;
    margin: 0;
}

.iislastsearches {
    padding: 8px;
}

.iismodal-footer .iisyearsdyn:after {
    content: 'My Vehicle:';
    background: #0a650a;
    border-radius: 20px 0 0 20px;
    padding: 10px;
    color: #fff;
    margin-left: 20px
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 23.285714%;
    float: left;
    margin-right: 2.285714%;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4.imagesx {
    width: 91.1764705882%;
    float: left;
    margin-right: 5.8823529412%;
    margin-bottom: 0.706325903em;
}

.flex-control-nav {
    list-style-type: none;
}

.iisitem.list-group-item {
    float: none;
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.iisitem.list-group-item:nth-of-type(odd):hover,
.iisitem.list-group-item:hover {
    background: #428bca;
}

.iisitem.list-group-item .list-group-image {
    margin-right: 10px;
}

.iisitem.list-group-item .thumbnail {
    margin-bottom: 0px;
}

.iisitem.list-group-item .caption {
    padding: 9px 9px 0px 9px;
}

.iisitem.list-group-item:nth-of-type(odd) {
    background: #eeeeee;
}

.iisitem.list-group-item:before,
.iisitem.list-group-item:after {
    display: table;
    content: " ";
}

.iisitem.list-group-item img {
    float: left;
}

.iisitem.list-group-item:after {
    clear: both;
}

.list-group-item-text {
    margin: 0 0 11px;
}

td.pricecol {
    color: #a94442;
    font-size: 32px;
    font-weight: 700;
}

.iisPrice {
    color: #a94442;
}

.iis-table td,
.iis-table th {
    padding: .1em !important;
}

/* table {

    margin-bottom: 0;
} */

input.single_add_to_cart_button.button.alt.ah-button {
    background-color: #1c7637;
    padding: 2px 10px;
    font-family: inherit;
    font-weight: normal;
    text-align: center;
    width: 100%;
    float: left;
    z-index: 15;
    opacity: .9;
    font-size: 18px;
    max-height: 50px;
    margin: 12px 0 12px 0;
}


.iis-table td,
.iis-table th {
    padding: .1em;
}





.items {
    display: flex;
    flex-direction: column;
    counter-reset: iisdone-items iisundone-items;
    border-color: #f8f8f8;
    border-width: 1px;
    border-style: solid;
    background: #fbfbfb;
    border: 1px solid #e2e2ec;
    padding: 5px;
    margin-bottom: 4px;
}

h2.iish2 {
    position: relative;
    margin: 0;
    padding: 10px 0;
    font-size: 1.2em;
}

h2.iish2::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -20px;
    width: 5px;
    background-color: #435757;
}



.iisdone {
    order: 1;
}

.iisdone::after {
    content: ' (' counter(iisdone-items) ')';
}

.iisundone {
    order: 3;
}

.iisundone::after {
    content: ' (' counter(iisundone-items) ')';
}

/* hide inputs offscreen, but at the same vertical positions as the correpsonding labels, so that tabbing scrolls the viewport as expected */
input.iisappfilcbx {
    display: inline-block;
    height: 14px;
    width: 14px;
    margin: 0 0 0px 0px !important;
    order: 4;
    outline: none;
    counter-increment: iisundone-items;
    cursor: pointer;
}

input.iisappfilcbx:checked {
    /* order: 2; */
    counter-increment: iisdone-items;
}

label.iisappfilcbxlabel {
    display: inline !important;
    position: relative;
    padding: 2px 0 2px 2px;
    order: 4;
    cursor: pointer;
    animation: iisundone .5s;
    font-size: 12px !important;
}

label.iisappfilcbxlabel::before {
    /* content: '\f10c'; */
    /* circle outline */
    display: block;
    position: absolute;
    top: 11px;
    left: 10px;
    font: 1.5em 'FontAwesome';
}

label.iisappfilcbxlabel:hover,
input:focus+label {
    background-color: rgba(255, 255, 255, .2);
}

input.iisappfilcbx:checked+label {
    order: 2;
    animation: iisdone .5s;
}

input.iisappfilcbx:checked+label::before {
    /* content: '\f058'; */
    /* circle checkmark */
}

@keyframes iisdone {
    0% {
        opacity: 0;
        background-color: rgba(255, 255, 255, .4);
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        background-color: rgba(255, 255, 255, .4);
    }
}

@keyframes iisundone {
    0% {
        opacity: 0;
        background-color: rgba(255, 255, 255, .4);
        transform: translateY(-20px);
    }

    50% {
        opacity: 1;
        background-color: rgba(255, 255, 255, .4);
    }
}

.iismodal,
.iismodal-box {
    z-index: 900;
}

.iismodal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.iismodal {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;


    overflow: visible;
    z-index: 10000000;
}

.iismodal-box {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin: 10px auto;
    animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
}

.iismodal2 {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .8);
    overflow: visible;
    z-index: 10000000;
}

.iismodal-header {
    padding: 10px 20px;
    background: #dbdee0;
    color: #000;
}

.iismodal-body {
    background: #f8fafb;
    padding: 12px 8px;
}

/* Close Button */
.iisclose-modal {
    text-align: right;
    cursor: pointer;
}

/* Animation */
@-webkit-keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }

    100% {
        top: 0;
        opacity: 1;
    }
}





.iisselect,
select#fitmentx {
    /*color: #555;*/
    /*background-color: #fff;*/
    /*background-image: none;*/
    /*border-radius: 0;*/
    /*max-width: 168px;*/
    /*min-width: 168px;*/
    /*font-size: 12px;   */
    /*margin: 0;*/
    /*background: #fff;*/
    /*border: 2px solid #dddddd;*/
    /*padding: 5px 15px;*/
    /*margin-bottom: 3px;*/
}


/* .modal-trigger,
button {
    padding: 20px 40px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
}

.modal-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: ease .2s;
}

button {
    border: 1px solid #333333;
    outline: none;
    color: #333333;
}

.modal-trigger:hover {
    padding: 20px 60px;
} */








.shopping_cart {

    font-size: 12px;

}

.shopping_cart h2 {

    font-size: 14px;

}

.shopping_cart img {

    border: none;

}

.shopping_cart input {

    width: auto !important;

}

.wp-cart-button-form input {

    width: auto !important;

}

.wp_cart_checkout_button:hover {

    opacity: 0.7;

}

.wp_cart_button:hover {

    opacity: 0.7;

}

.wp_cart_button_wrapper input {

    margin: 0;

}

.wpspsc_error_message {

    color: red !important;

    font-weight: bold;

}

.wpspsc_success_message {

    color: green !important;

    font-weight: bold;

}

/* product display specific CSS */



.wp_cart_product_display_box {

    border: 1px solid #E8E5DC;

    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);

    margin-bottom: 25px;

    padding-bottom: 5px;

    width: 300px;

}

.wp_cart_product_thumbnail img {

    max-width: 100%;

}

.wp_cart_product_display_bottom {

    padding: 10px 15px;

}

.wp_cart_product_name {

    color: #525351;

    font-size: 16px;

    font-weight: bold;

    line-height: 20px;

    margin: 0 0 10px 0;

    text-transform: uppercase;

}

.wp_cart_product_description {

    font-style: italic;

}

.wp_cart_product_price {

    color: #525351;

    display: block;

    font-size: 22px;

    font-weight: bold;

    line-height: 24px;

    margin: 0;

    padding: 10px 10px 10px 0;

}

tr.wpspsc_checkout_form {

    text-align: right;

}

.wpspsc_coupon_section input[type="text"] {

    padding: 0;

}

.orangebuttonx {
    display: inline-block;
    text-align: center;
    margin: 5px 5px 0 0;
    padding: 9px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 3px;
    background-color: #E44A32;
    text-decoration: none !important;
    outline: none !important;
    visibility: visible;
    border: none;
    white-space: normal;
    -webkit-box-shadow: 0 2px 0 #567ab4;
    -moz-box-shadow: 0 2px 0 #567ab4;
    box-shadow: 0 2px 0 #567ab4;
}

ul#breadcrumbs-one li {
    display: inline;
    padding-right: 10px;
    /*background: #eee;
    border: 1px solid #ccc;
    padding: 2px 10px;
    color: #000;*/
}

ul.iispagination {
    margin: 2px;
}

.iispagination>li,
.iispagination>li {
    display: inline;
}

.iispagination>li>a,
.iispagination>li>span {
    display: inline;
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

input#filteriiscats {
    width: 100%;
}

i.fa.fa-check {
    color: green;
    font-size: 1.4rem;
}


i.fa.fa-star {
    color: #addb25;
}

i.fa.fa-star-o {
    color: #addb25;
}

td.desccol {
    overflow: hidden;
}

.iisquesgroup {
    background: #fff;
    border: 1px solid #dedee6;
    padding: 5px 15px;
    margin-bottom: 5px;
    color: #868686;
    line-height: 15px;
}

/* .textwidget .button {
    width: 100%;
    text-align: center;
    border: 1px solid #222;
    margin-bottom: 2px;
    border-color: #222 !important;
} */

td.iis-y-status-message {
    margin-top: -43px;
    background-color: #d8a51c !important;
    color: #fff;
    text-align: center;
    font-style: italic;
}

/* end of product display specific CSS */

.yearfilt .yearbuttonv2,
.makefilt .makebuttonv2,
.makefilt .modelbuttonv2,
.iiscatmenuul li,
.iiscatmenuul .PartCats {

    text-align: center;
    font-size: 20px !important;
    text-transform: uppercase;
    margin: 3px;
    white-space: nowrap;
}

li.iis-y-status-message,
span.iis-y-status-message {
    color: #000000;
    background: #ffed00;
    list-style: none;
    font-size: 12px;
    padding: 2px;
    border: 1px solid #000000;
}

button.iiscloseform-modal {
    cursor: pointer;
    background: #333;
    padding: 14px;
    color: #fff;
}


.carousel-inner img {
    border-radius: 0;
}

span.iis-latest-block {
    color: #000000;
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background: #eee;
    padding: 7px 10px;
    border: 1px solid black;
    min-height: 170px;
}

.iis-latest-arrivals-item img.lazyload.img-responsive {
    min-height: 159px;
}

span.iis-latest-stk-vin {
    background: #000;
    display: block;
    color: #fff;
    padding: 4px;
}

span.iis-latest-year {
    font-size: 38px;
    font-weight: bold;
    line-height: 44px;
}

span.iis-latest-make {
    font-size: 20px;
}

span.iis-latest-model {
    display: block;
    line-height: 26px;
    font-size: 32px;
    color: #615a5a;
}

span.iis-latest-stk-vin {
    background: #000;
    display: block;
    color: #fff;
    padding: 4px;
}

span.iis-latest-stk {
    display: block;
    font-size: 20px;
}

span.iis-latest-vin {
    display: block;
    color: #bdb4b4;
}

.iisfitmentlabel {
    background: #eee;
    padding: 2px 10px;
    text-align: center;
    width: 100%;
    float: left;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.iisbrowseimage img {
    max-width: 106px;
    height: auto;
}

.woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-1.imagesx {
    position: relative;
}

img.emoji {
    position: absolute;
    z-index: 1000;
    right: 6px;
    font-size: 27px;
}

.iislrlabel {
    background: green;
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}

figure .wp-post-image {
    margin-bottom: 0 !important;
}

.iislrlabel.iis-col-md-6 {
    padding: 3px;
    border: 2px solid #eee;
}

.iislatestarrivaltable th {
    white-space: nowrap;

}

.iismenu {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.iisnopartsmatching {
    display: none;

}

.iisnopartsmatching {
    padding: 10px;
    font-size: 24px;
    border: 5px solid #710c0c;
    background-color: red;
    color: #fff;
    text-align: center;
}

.iisnsoptions {
    display: none;
}

img.lazyloadx.attachment-shop_single.size-shop_single.wp-post-image {
    width: 100%;
}

.sale-price-description-single {
    padding: 4px 10px;
    background-color: #ffffff;
    font-size: 31px;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
}

.stm-single-car-side {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.6);
    background: #f0f2f6;
}

.single-car-prices {
    background-color: #337ab7;
    min-height: 82px;
}

img.lazyloadx.attachment-shop_single.size-shop_single.wp-post-image {
    border: 4px solid #fff;
    margin: 0px;
}

.single-car-data tr {
    border-bottom: 1px solid #d5d9e0;
}

.single-car-data>table tr td.t-label {
    padding-right: 3px;
    text-transform: uppercase;
    /*color: #888;*/
    font-size: 10px;
}

.single-car-data {
    padding: 10px;
    margin-bottom: 26px;
    background-color: #f0f2f5;
    color: #000;
}

td.rowlocation {
    vertical-align: top;
    padding-top: 6px;
}

td.iisbrowseimage {
    width: 30%;
}

td.rowlocation .h4 {
    display: inline-block;
}

.product_imagesiis .woocommerce-product-gallery__image.iis-col-md-1 {
    border: 1px solid #fff;
    width: 7%;
    margin: 2px;
    float: left;
}

.imagesiis {
    float: left;
}

.iis-upull-section .imagesiis {
    width: 100%;
}

.iis-upull-section .product {

    display: block !important;
}


.imagesiis .wp-post-image {
    margin-bottom: 0;
}

a.iis-view-det-button {
    border: 2px solid #337ab7;
    display: inline-block;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #fff !important;
    border-radius: 6px;
    background-color: #1b578b;
    text-decoration: none !important;
    outline: none !important;
    visibility: visible;
    white-space: normal;

}

.iis-location,
.iis-stock,
.iis-vin {

    font-size: 12px;
}

.iis-upull-message-block {
    background: #b62a35;
    padding: 2px;
    text-align: center;
    color: #ffcfd7;
    font-style: italic;
}

.iis-upull-message-button {
    text-align: center;
    padding: 6px;
    background: #337ab7;
    color: #fff;
}

.iismodelsale {
    font-size: 20px;
}

.iisyearsale {
    font-size: 46px;
}

.iismodal-footer a.button:empty {
    display: none;
}

.iisplay {
    background: red;
    border-radius: 50% / 10%;
    color: #FFFFFF;
    font-size: 12px;
    height: 2em;
    margin-right: 6px;
    padding: 0;
    position: relative;
    text-align: center;
    text-indent: 0.1em;
    transition: all 150ms ease-out;
    width: 3em;
    float: left;
}

.iisplay:hover {
    background: #bf1e1e;
}

.iisplay::before {
    background: inherit;
    border-radius: 5% / 50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%;
}

a.iisvideoa:hover {
    background-color: #f8820a;
    text-shadow: 1px 1px 1px #cac3c3;
    background: linear-gradient(0deg, rgb(255, 204, 0) 0%, rgb(255, 139, 0) 100%);
}

a.iisvideoa {
    font-size: 16px;
    padding: 8px;
    border-radius: 0 20px 20px 0;
    color: #000000;
    font-weight: bold;
    display: inline-block;
    border-top: 4px solid #f1c613;
    border-right: 4px solid #f1c613;
    border: 2px solid #f1c613;
    background-color: #f8820a;
    text-shadow: 1px 1px 1px #ffffff;
    background: linear-gradient(0deg, rgba(247, 110, 4, 1) 0%, rgba(253, 251, 45, 1) 100%);
}


.iisplay::after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.75);
    content: ' ';
    font-size: 0.75em;
    height: 0;
    margin: -1em 0 0 -0.75em;
    top: 50%;
    position: absolute;
    width: 0;
}


.iis-video-modal,
.iis-video-modal .iis-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
}

.iis-video-modal {
    overflow: hidden;
    position: fixed;
    opacity: 0.0;

    -webkit-transform: translate(500%, 0%);
    transform: translate(500%, 0%);

    -webkit-transition: -webkit-transform 0s linear 0s;
    transition: transform 0s linear 0s;


    /* using flexbox for vertical centering */

    /* Flexbox display */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;

    /* Vertical alignment */
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.iis-video-modal .iis-overlay {
    z-index: 0;
    background: rgba(13, 1, 61, 0.82);
    /* overlay color */

    opacity: 0.0;

    -webkit-transition: opacity 0.2s ease-out 0.05s;
    transition: opacity 0.2s ease-out 0.05s;
}


.iis-video-modal-content {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 1;

    margin: 0 auto;

    overflow-y: visible;

    background: #000;

    width: calc(100% - 12em);
    height: 0;
    padding-top: calc((100% - 12em) * 0.5625);
    /* 16:9 calc */
}

/* Scaling to fit within the current Viewport size:
   When viewport aspect ratio is greater than 16:9
   work off the height instead of the width for calc */
@media (min-aspect-ratio: 16/9) {
    .iis-video-modal-content {
        width: 0;
        height: calc(100vh - 10em);
        padding-top: 0;
        padding-left: calc((100vh - 10em) * 1.7778);
        /* 16:9 calc */
    }
}

/* Mobile Layout Tweaks - side margins reduced */
@media (max-width: 640px) {
    .iis-video-modal-content {
        width: calc(100% - 1em);
        padding-top: calc((100% - 1em) * 0.5625);
        /* 16:9 calc */
    }
}

/* modal close button */
.iis-close-video-modal {
    display: block;
    position: absolute;
    left: 0;
    top: -40px;

    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

/* set the iframe element to stretch to fit its parent element */
iframe#iis-youtube {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

    background: #000;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
}

/* show the modal: 
   add class to the body to reveal */
.iis-show-video-modal .iis-video-modal {
    opacity: 1.0;

    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

.iis-show-video-modal .iis-video-modal .iis-overlay {
    opacity: 1.0;
}

.iis-show-video-modal .iis-video-modal-content {
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
}

.iiscatmenuul li {
    list-style: none;
}


/*Product View*/


.product__meta table {
    border-collapse: collapse;
}




.iisbtn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    text-decoration: none;
}

@media (prefers-reduced-motion:reduce) {
    .iisbtn {
        transition: none;
    }
}

.iisbtn:hover {
    color: #212529;
    text-decoration: none;
}

.iisbtn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

.iisbtn:disabled {
    opacity: .65;
}

.iisbtn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.iisbtn-info {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.iisbtn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.iisbtn-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.iisbtn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.iisbtn-lg {
    padding: .5rem 1rem;
    font-size: 1.3rem;
    line-height: 1.5;
    border-radius: .0rem;
}

.iisbtn.iisbtn-md {
    padding: .4rem 1rem;
    font-size: .9rem;
    line-height: 1.5;
    border-radius: .0rem;
}

.iisbtn-block {
    display: block;
    width: 100%;
}




.iisbtn-primary:hover {
    border-color: #333;
    background: #333;
    color: #fff;
}

.iisbtn-primary,
.iisbtn-primary:disabled {
    border-color: #e52727;
    background: #e52727;
    color: #fff;
}

.iisbtn-primary:focus {
    box-shadow: none;
}


.fitmentx,
.iisselect {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    height: 28px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
    font-size: 13px;
    font-weight: 500;
    padding: 0 12px 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: box-shadow .15s;
}


.status-badge {
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}

.status-badge__body {
    position: relative;
    min-height: 23px;
    border-radius: 11.5px;
    min-width: 31px;
}

.status-badge__text {
    font-size: 13px;
    line-height: 15px;
    padding: 4px 12px;
}

.status-badge__tooltip {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.status-badge__tooltip:focus {
    outline: none;
}

.status-badge--has-text .status-badge__tooltip {
    display: none;
}

.status-badge--style--success .status-badge__body {
    background-color: #e2f2da;
    color: #44782a;
}



.product__info-card {
    position: relative;
}

.product__info-body {
    padding: 28px 28px 24px;
}

.product__prices-stock {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 22px;
}

.product__meta {
    margin: -3px 0;
}

.product__meta table {
    width: 100%;
    font-size: 14px;
}

.product__meta td,
.product__meta th {
    padding: 3px 0;
}

.product__meta th,
.product__meta li:nth-child(2n+2) {
    font-weight: bold;
    padding-right: 12px;
    text-align: left;
}

.product__meta tr+tr>* {
    border-top: 1px solid #ebebeb;
}

.product__meta a {
    color: #cb1818;
}

.product__meta a:hover {
    text-decoration: underline;
}

.product__badge {
    top: -7px;
    position: absolute;
    left: 22px;
}

.product__prices {
    padding: 8px 0 7px;
    line-height: 1;
}

.product__price {
    font-size: 30px;
    font-weight: bold;
    color: #262626;
}

.product__form {
    background: #f9f9f9;
    margin-bottom: 24px;
    margin-top: -4px;
    padding: 16px 28px 18px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.product__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    white-space: nowrap;
    padding: 0 28px 24px;
}

.product__actions-item--addtocart {
    -ms-flex-positive: 1;
    flex-grow: 1;
}






.product-form__row+.product-form__row {
    margin-top: 12px;
}

.product-form__title {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 500;
    color: #6c7177;
    margin-bottom: 4px;
}



/*added by AT */
a.partQuesAdv {
    font-size: 15px !important;
}

.pswp {
    z-index: 99999 !important;
}

a.call_button {
    background-color: #1c7637;
    color: #ffffff;
    padding: 2px 10px;
    font-family: inherit;
    font-weight: normal;
    text-align: center;
    width: 100%;
    float: left;
    z-index: 15;
    opacity: .9;
    font-size: 18px;
    max-height: 50px;
    margin: 12px 0 12px 0;
}

.upullbrowseimage .woocommerce-product-gallery {
    margin-bottom: 2rem;
}

.upullbrowseimage img {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

.upullbrowseimage {
    max-height: 200px;
    overflow: hidden;
}

.upullrowlocation {
    text-align: center;
}

.upullrowlocation span {
    font-size: 20px;
    font-weight: 600;
}

.single-car-data .t-value {
    font-size: 14px;
}

.alertmessupull {
    padding: 2px 20px;
    background: #ffd600;
    color: #270014;
    border: none;
    border-radius: 0;
    text-align: center;
    font-size: 32px;
    line-height: 30px;
}

.printdiv.iis-iis-row {
    padding-bottom: 10px;
}

@media print {
    .iisupulldiv {
        display: none;
    }

    .printbuttonimage {
        display: none;
    }

    .sale-price-description-single .iis-view-det-button {
        display: none;
    }

    .upullsingle {
        /*
        break-after: page;
        */
        width: 50%;
    }

    .demo-gallery a[href^=http]:after {
        content: "";
    }

    .woocommerce-product-gallery {
        max-width: unset;
    }
}

.iis_view_cart_button {
    background-color: #1c7637 !important;
    color: #FFFFFF !important;
    /* padding: 2px 10px; */
    font-family: inherit;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    float: left;
    z-index: 15;
    opacity: .9;
    font-size: 18px;
    max-height: 50px;
    margin: 12px 0 12px 0;
}

.iis_view_cart_button:hover {
    text-decoration: none !important;
}

#products .woocommerce-product-gallery {
    margin-bottom: 1rem !important;
}

div#inquireModal.fade.show {
    opacity: unset !important;
}

.iisSticky {
    position: fixed;
    top: 30%;
    left: 5%;
    margin: 0;
    width: 185px;
    border: 1px solid #ccc !important;
    border-radius: 16px;
    padding: 10px;
}

.iisAbs {
    position: absolute;
    bottom: 0;
}

.iisRemoveScroll {
    background: unset !important;
    border: unset !important;
    border-color: unset !important;
    border-width: unset !important;
}

.by_brand {
    padding: 15px;
    border: 1px solid #d5d5d5;
    margin: 1px;
    color: #FFFFFF;
    white-space: nowrap;
    text-align: center;
}

.by_brand .large_img {
    max-width: 125px;
}

.by_brand .small_img {
    max-width: 55px;
}


.add-to-cart-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.add-to-cart-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .th-inner {
        font-size: 8px;
    }

    td {
        font-size: 6px !important;
    }

    .table-image {
        max-width: 35px !important;
    }

    .bootstrap-table .fixed-table-container .table thead th .th-inner {
        padding: unset !important;
    }

    .bootstrapiis .table th,
    .bootstrapiis .table td {
        padding: unset !important;
    }

}

.iis-offerpop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Transparent black background */
    display: none;
    /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* On top of everything */
}

.iis-offerpop-content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.3s ease-in-out;
    /* Animation effect */
}

/* Close Button */
.iis-offerpop-close-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.iis-offerpop-close-btn:hover {
    background: #0056b3;
}

span.custom-name-label {
    position: absolute;
    top: -3px;
    left: 153px;
    font-size: 12px;
    background-color: #000;
    color: #fff;
    box-shadow: 0 1px 3px rgb(0, 0, 0, .25);
    border-radius: 4px;
    padding: 4px 8px;
    display: none;
    white-space: nowrap;
}



/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .mobile-breadcrumb {
        padding: 12px 0 !important;
        margin: 0;
    }

    .justify-content-end {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .justify-content-end li {
        margin-bottom: 8px;
    }

    .list-unstyled {
        font-size: 10px;
    }

    .iisPrice {
        margin-top: 8px !important;
    }

    .iis-y-status-message {
        margin-top: 6px;
        margin-bottom: 6px;
    }

    label[for="warrantyOption"] {
        font-size: 12px;
    }
}

/* Added for makes and models grid parity with iis-pro-v2 */
.aps-makes-list, .aps-models-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px;
  margin: 1em 0;
  padding: 0;
  list-style: none;
}
.aps-make-link, .aps-model-link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #007bff;
  color: #fff;
  padding: 5px 15px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid #0056b3;
  transition: background-color 0.2s;
  min-height: 40px;
}
.aps-make-link:hover, .aps-model-link:hover {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}
.aps-count {
  font-size: 0.85em;
  font-weight: bold;
  background: #f8f9fa;
  color: #333;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

/* --- START PREMIUM LATEST ARRIVALS CARD DESIGN --- */
.aps-latest-arrivals { padding: 20px 0; }
.aps-la-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.aps-la-card-premium { background: #ffffff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; width: 100%; display: flex; flex-direction: column; border: 1px solid #f0f0f0; }
.aps-la-card-premium:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12); }
.aps-la-card-link-premium { text-decoration: none !important; color: inherit; display: flex; flex-direction: column; height: 100%; }
.aps-la-img-wrap-premium { width: 100%; height: 260px; position: relative; padding: 12px 12px 0 12px; }
.aps-la-img-premium { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.aps-la-badge-premium { position: absolute; top: 24px; left: 24px; background: #ffffff; color: #111827; font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 20px; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.aps-la-dot-premium { width: 8px; height: 8px; background: #10b981; border-radius: 50%; display: inline-block; }
.aps-la-content-premium { padding: 20px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.aps-la-header-premium { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.aps-la-headline-premium { flex: 1; padding-right: 15px; }
.bootstrapiis .aps-la-title-premium { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 0 0 4px 0; line-height: 1.3; }
.aps-la-subtitle-premium { font-size: 0.85rem; color: #6b7280; margin: 0; }
.aps-la-right-val-premium { font-size: 1.15rem; font-weight: 700; color: #111827; }
.aps-la-footer-premium { display: flex; background: #f9fafb; border-radius: 12px; padding: 16px; margin-top: auto; justify-content: space-between; border: 1px solid #f3f4f6; }
.aps-la-stat-premium { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.aps-la-stat-divider { width: 1px; background: #e5e7eb; margin: 0 16px; }
.aps-la-stat-label { font-size: 0.75rem; font-weight: 600; color: #6b7280; }
.aps-la-stat-value { font-size: 0.95rem; font-weight: 700; color: #111827; }
/* --- END PREMIUM LATEST ARRIVALS CARD DESIGN --- */
@media (max-width: 576px) {
  .aps-la-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .aps-la-img-wrap-premium {
    height: 220px;
  }
  .aps-la-content-premium {
    padding: 16px;
  }
  .aps-la-footer-premium {
    padding: 12px;
  }
  .aps-la-title-premium {
    font-size: 1.15rem;
  }
  .aps-la-stat-value {
    font-size: 0.85rem;
  }
}
/* --- END EXTRA MOBILE RESPONSIVENESS --- */

/* ═══════════════════════════════════════════════════════════════════
   Latest Arrivals — Toolbar (filter input + vehicle count)
   Design tokens: teal #009baa | dark teal #054f59 | border #dee2e6
   radius-md 0.375rem | shadow 0 2px 6px rgba(0,0,0,.08)
════════════════════════════════════════════════════════════════════ */

/* Toolbar row: count badge on left, search input on right */
.aps-la-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem 1rem;
	background: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
	flex-wrap: wrap;
}

/* Count: "Displaying 12 of 24 vehicles" */
.aps-la-count {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin: 0;
	font-size: 0.875rem;
	color: #6c757d;
	font-weight: 400;
	line-height: 1;
	white-space: nowrap;
}

.aps-la-count__label {
	color: #6c757d;
}

/* Pill badge: "12 of 24" — teal brand */
.aps-la-count__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.2rem 0.65rem;
	background: #e6f7f8;
	border: 1px solid #b2dde2;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #009baa;
	letter-spacing: 0.01em;
}

.aps-la-count__sep {
	font-weight: 400;
	color: #6c757d;
	font-size: 0.75rem;
}

/* Search input wrapper — icon pinned inside left edge */
.aps-la-filter-wrap {
	position: relative;
	flex: 1;
	min-width: 220px;
	max-width: 380px;
}

.aps-la-filter-icon {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: #6c757d;
	pointer-events: none;
	display: flex;
	align-items: center;
	line-height: 1;
}

.aps-la-filter-input {
	width: 100%;
	padding: 0.5rem 0.875rem 0.5rem 2.25rem;
	font-size: 0.875rem;
	color: #212529;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 0.375rem;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.aps-la-filter-input::placeholder {
	color: #adb5bd;
	font-weight: 400;
}

.aps-la-filter-input:focus {
	outline: none;
	background: #fff;
	border-color: #009baa;
	box-shadow: 0 0 0 3px rgba(0, 155, 170, 0.18);
}

/* Custom styled ×-clear on type=search */
.aps-la-filter-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	height: 14px;
	width: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236c757d'%3E%3Cpath fill-rule='evenodd' d='M10 8.586L4.707 3.293a1 1 0 00-1.414 1.414L8.586 10l-5.293 5.293a1 1 0 101.414 1.414L10 11.414l5.293 5.293a1 1 0 001.414-1.414L11.414 10l5.293-5.293a1 1 0 00-1.414-1.414L10 8.586z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
	cursor: pointer;
	opacity: 0.6;
}
.aps-la-filter-input::-webkit-search-cancel-button:hover {
	opacity: 1;
}

/* Bootstrap 4 input-group variant ──────────────────────────────
   Icon delivered via .input-group-prepend; override left padding.
────────────────────────────────────────────────────────────────*/
.aps-la-filter-icon-wrap {
	background: #f0fafb;
	border-color: #b2dde2;
	color: #009baa;
	border-right: none;
}

.input-group .aps-la-filter-input {
	padding-left: 0.75rem;
	border-left: none;
	background: #f8f9fa;
}
.input-group .aps-la-filter-input:focus {
	border-color: #009baa;
	box-shadow: 0 0 0 3px rgba(0, 155, 170, 0.18);
	z-index: 3;
}

/* Count number styles (shared) ─────────────────────────────*/
.aps-la-count-num,
.aps-la-count-total {
	font-weight: 700;
	color: #009baa;
	font-size: 1.25rem;
	line-height: 1;
}

.aps-la-count-sep {
	font-weight: 400;
	color: #adb5bd;
	font-size: 0.85rem;
	margin: 0 4px;
}

.aps-la-count-label {
	font-weight: 500;
	color: #054f59;
	font-size: 0.8125rem;
}

/* ══════════════════════════════════════════════════════════════════
   Latest Arrivals — Toolbar CARD
   Card with left-border accent, count LEFT · search RIGHT
══════════════════════════════════════════════════════════════════ */

/* Card shell — matches the plugin admin card style */
.aps-la-toolbar-card {
	border: 1px solid #dee2e6;
	border-left: 4px solid #009baa;
	border-radius: 6px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
	background: #fff;
}

/* Card body: flexbox row with space-between */
.aps-la-toolbar-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0.875rem 1.25rem;
}

/* LEFT side: car icon + count ──────────────────────────────*/
.aps-la-toolbar-left {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	flex-shrink: 0;
}

/* Circular teal icon badge */
.aps-la-toolbar-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #009baa 0%, #054f59 100%);
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 2px 6px rgba(0, 155, 170, 0.35);
}

/* Count text block */
.aps-la-toolbar-count-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.aps-la-toolbar-count-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #6c757d;
}

.aps-la-toolbar-count-numbers {
	display: flex;
	align-items: baseline;
	gap: 0;
	line-height: 1;
}

/* RIGHT side: search input ─────────────────────────────────*/
.aps-la-toolbar-body .aps-la-filter-wrap {
	flex: 1;
	min-width: 220px;
	max-width: 360px;
	position: static; /* override legacy absolute positioning context */
}

/* Responsive: stack on mobile */
@media (max-width: 540px) {
	.aps-la-toolbar-body {
		flex-direction: column;
		align-items: flex-start;
	}
	.aps-la-toolbar-body .aps-la-filter-wrap {
		max-width: 100% !important;
		min-width: 0 !important;
		width: 100%;
	}
	/* Old toolbar fallback */
	.aps-la-toolbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.aps-la-filter-wrap {
		width: 100%;
		max-width: 100% !important;
		min-width: 0 !important;
	}
}

/* ══════════════════════════════════════════════════════════════════════
   PREMIUM SEARCH BANNER — Latest Arrivals
   Gradient hero strip · count stat LEFT · live search RIGHT
   Brand: #009baa (teal) · #054f59 (dark teal) · white text
══════════════════════════════════════════════════════════════════════ */

/* Banner shell ────────────────────────────────────────────────*/
.aps-la-search-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.25rem;
	padding: 1.25rem 1.75rem;
	background: linear-gradient(135deg, #054f59 0%, #009baa 55%, #00b6c8 100%);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 155, 170, 0.28);
    margin-bottom: 30px;
}

/* Decorative background blobs ─────────────────────────────────*/
.aps-la-banner-blob {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	pointer-events: none;
}
.aps-la-banner-blob--1 {
	width: 180px;
	height: 180px;
	top: -60px;
	left: -40px;
}
.aps-la-banner-blob--2 {
	width: 120px;
	height: 120px;
	bottom: -50px;
	right: 320px;
}

/* LEFT: stat block ────────────────────────────────────────────*/
.aps-la-banner-stat {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

/* Frosted circle icon */
.aps-la-banner-stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	backdrop-filter: blur(4px);
}

/* Text stack */
.aps-la-banner-stat-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.aps-la-banner-eyebrow {
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.70);
	display: block;
}

.aps-la-banner-count-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	line-height: 1;
}

.aps-la-banner-num {
	font-size: 2rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.5px;
	line-height: 1;
}

.aps-la-banner-of {
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
}

.aps-la-banner-total {
	font-size: 1.1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1;
}

.aps-la-banner-sub {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.60);
	display: block;
	margin-top: 1px;
	letter-spacing: 0.2px;
}

/* Centre divider ──────────────────────────────────────────────*/
.aps-la-banner-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.20);
	flex-shrink: 0;
	display: none; /* visible from md up */
}
@media (min-width: 640px) {
	.aps-la-banner-divider { display: block; }
}

/* RIGHT: search block ─────────────────────────────────────────*/
.aps-la-banner-search {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 220px;
	max-width: 400px;
	position: relative;
	z-index: 1;
}

/* "● Live Filter" label */
.aps-la-banner-search-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	cursor: default;
}

/* Animated green pulse dot */
.aps-la-live-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: #4ade80;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
	animation: aps-la-pulse 1.8s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes aps-la-pulse {
	0%   { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0.6); }
	60%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);   }
	100% { box-shadow: 0 0 0 0   rgba(74, 222, 128, 0);   }
}

/* Floating glass search pill */
.aps-la-search-field-wrap {
	position: relative;
	display: flex;
	align-items: center;
}

.aps-la-search-icon {
	position: absolute;
	right: 14px;
	top: 40%;
	transform: translateY(-50%);
	color: #009baa;
	pointer-events: none;
	display: flex;
	align-items: center;
	z-index: 1;
}

.aps-la-search-input {
	width: 100%;
	padding: 0.65rem 1rem 0.65rem 2.6rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #1e293b;
	background: rgba(255, 255, 255, 0.96);
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), inset 0 1px 2px rgba(255,255,255,0.8);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	outline: none;
}

.aps-la-search-input::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.aps-la-search-input:focus {
	background: #fff;
	border-color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.30), 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ×-clear button */
.aps-la-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	height: 14px;
	width: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23009baa'%3E%3Cpath fill-rule='evenodd' d='M10 8.586L4.707 3.293a1 1 0 00-1.414 1.414L8.586 10l-5.293 5.293a1 1 0 101.414 1.414L10 11.414l5.293 5.293a1 1 0 001.414-1.414L11.414 10l5.293-5.293a1 1 0 00-1.414-1.414L10 8.586z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
	cursor: pointer;
	opacity: 0.7;
	margin-right: 4px;
}
.aps-la-search-input::-webkit-search-cancel-button:hover { opacity: 1; }

/* Mobile stack ────────────────────────────────────────────────*/
@media (max-width: 600px) {
	.aps-la-search-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 1.1rem 1.25rem;
	}
	.aps-la-banner-search {
		max-width: 100%;
		width: 100%;
	}
	.aps-la-banner-num { font-size: 1.75rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   APS Latest Arrivals — Image Lightbox, Gallery Modal & Card Styles
   (replaces all inline styles in latest-arrivals.php)
   ═══════════════════════════════════════════════════════════════════ */

/* Image wrapper */
.aps-la-img-wrap-premium {
	position: relative;
}

.aps-la-lightbox-trigger {
	cursor: pointer;
}

/* Gallery badge (image count pill) */
.aps-la-gallery-badge {
	position: absolute;
	bottom: 10px;
	right: 18px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.65);
	color: #fff;
	border-radius: 20px;
	padding: 4px 10px 3px;
	font-size: 0.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 5px;
	backdrop-filter: blur(4px);
	pointer-events: none;
	transition: opacity 0.2s;
}

/* Hover overlay on image — inset matches the wrapper padding so it covers only the image */
.aps-la-img-hover-overlay {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 0;
	background: rgba(0, 155, 170, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s;
	border-radius: 12px;
}

.aps-la-lightbox-trigger:hover .aps-la-img-hover-overlay {
	background: rgba(0, 155, 170, 0.3);
}

/* Zoom icon inside overlay */
.aps-la-zoom-icon {
	opacity: 0;
	transition: opacity 0.25s;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.aps-la-lightbox-trigger:hover .aps-la-zoom-icon {
	opacity: 1;
}

/* Card details: field label (Make/Model, Year, etc.) */
.aps-la-field-label {
	display: block;
	font-size: 0.7rem;
	color: #6b7280;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

/* Subtitle spacing variants */
.aps-la-subtitle-premium--vin  { margin-top: 4px; }
.aps-la-subtitle-premium--yard { margin-top: 2px; }

/* Right-aligned year column */
.aps-la-right-val-premium {
	text-align: right;
}

/* Footer stat column widths */
.aps-la-stat--arrive {
	flex: 1.4;
	white-space: nowrap;
	overflow: hidden;
}

.aps-la-stat--stock {
	flex: 1;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}

.aps-la-stat--mileage {
	flex: 1;
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
}

.aps-la-stat-value {
	text-overflow: ellipsis;
	overflow: hidden;
}

/* Stock number link inside stat */
.aps-la-stock-link {
	color: #009baa;
	text-decoration: none;
	font-weight: 700;
}
.aps-la-stock-link:hover {
	color: #054f59;
	text-decoration: underline;
}

/* Warning banner above grid */
.aps-la-warning-banner {
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Card action buttons layout */
.bootstrapiis .aps-la-card-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* "See Parts" / "Not Inventoried Yet" button */
.bootstrapiis .aps-la-parts-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background-color: #198754;
	border-radius: 8px;
	transition: background-color 0.2s;
	font-size: 0.95rem;
	padding: 0.6rem;
	color: #fff;
	font-weight: 700;
	width: 100%;
	border: none;
	text-decoration: none;
}

.bootstrapiis .aps-la-parts-btn:hover {
	background-color: #146c43;
	color: #fff;
	text-decoration: none;
}

/* "Inquire" button */
.bootstrapiis .aps-la-inq-btn {
	background-color: #009baa;
	border-radius: 8px;
	transition: background-color 0.2s;
	font-size: 0.95rem;
	padding: 0.6rem;
	color: #fff;
	font-weight: 700;
	width: 100%;
	border: none;
}

.bootstrapiis .aps-la-inq-btn:hover {
	background-color: #054f59;
	color: #fff;
}

/* Video play trigger (matches old plugin style) */
.bootstrapiis .aps-la-video-slot {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.bootstrapiis .aps-la-video-trigger {
	font-size: 14px;
	color: #fff;
	background: #58d0e2;
	padding: 10px 18px;
	border-radius: 7px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.bootstrapiis .aps-la-video-trigger:hover {
	background: #3abfcf;
}

.bootstrapiis .aps-la-video-loader {
	width: 20px;
	height: 20px;
	border: 3px solid #e5e7eb;
	border-top: 3px solid #58d0e2;
	border-radius: 50%;
	display: inline-block;
	animation: aps-la-spin 1s linear infinite;
}

@keyframes aps-la-spin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/* ════════════════════════════════════════════════════════════════════
   APS Modal Wrapper — ensures Bootstrap-namespaced CSS applies
   ════════════════════════════════════════════════════════════════════ */
.bootstrapiis.aps-modal-wrapper {
	/* Must not create a stacking context (no transform/filter/will-change)
	   so that position:fixed children position relative to the viewport */
	position: static !important;
	transform: none !important;
}

/* ════════════════════════════════════════════════════════════════════
   Gallery Lightbox Modal  — scoped inside .bootstrapiis
   ════════════════════════════════════════════════════════════════════ */

/* The modal element itself must sit above the backdrop */
.bootstrapiis #apsLaGalleryModal,
#apsLaGalleryModal,
.bootstrapiis #apsPartsGalleryModal,
#apsPartsGalleryModal {
	z-index: 999995;
}

/* Backdrop always below the modal */
.bootstrapiis .modal-backdrop {
	z-index: 999990;
}

.bootstrapiis #apsLaGalleryModal .modal-dialog,
.bootstrapiis #apsPartsGalleryModal .modal-dialog {
	max-width: min(92vw, 1100px);
}

.bootstrapiis #apsLaGalleryModal .modal-content,
.bootstrapiis #apsPartsGalleryModal .modal-content {
	background: #0a0a0a;
	border-radius: 12px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
	border: 0;
}

.bootstrapiis #apsLaGalleryModal .modal-header,
.bootstrapiis #apsPartsGalleryModal .modal-header {
	background: rgba(255, 255, 255, 0.05);
	border: 0;
	padding: 0.75rem 1rem;
}

.bootstrapiis #apsLaGalleryTitle,
.bootstrapiis #apsPartsGalleryTitle {
	font-size: 0.9rem;
	letter-spacing: 0.5px;
	opacity: 0.85;
}

.bootstrapiis #apsLaGalleryTitle svg,
.bootstrapiis #apsPartsGalleryTitle svg {
	margin-right: 6px;
	vertical-align: -2px;
}

.bootstrapiis #apsLaGalleryCounter,
.bootstrapiis #apsPartsGalleryCounter {
	font-size: 0.8rem;
	opacity: 0.6;
	font-weight: 600;
}

.bootstrapiis #apsLaGalleryModal .btn-close,
.bootstrapiis #apsPartsGalleryModal .btn-close {
	opacity: 0.7;
	filter: brightness(2);
}

.bootstrapiis #apsLaGalleryModal .modal-body,
.bootstrapiis #apsPartsGalleryModal .modal-body {
	background: #000;
	padding: 0;
}

.bootstrapiis #apsLaCarouselInner,
.bootstrapiis #apsPartsCarouselInner {
	border-radius: 0;
}

.aps-gallery-carousel-img {
	width: 100%;
	max-height: 75vh;
	object-fit: contain;
	background: #000;
	display: block;
}

.bootstrapiis .carousel-control-prev.aps-gallery-carousel-control,
.bootstrapiis .carousel-control-next.aps-gallery-carousel-control {
	width: 56px;
	opacity: 0.9;
}

.bootstrapiis #apsLaGalleryThumbs,
.bootstrapiis #apsPartsGalleryThumbs {
	background: #111;
	overflow-x: auto;
	min-height: 0;
}

.aps-gallery-thumb {
	height: 60px;
	width: 90px;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	flex-shrink: 0;
	border: 2px solid transparent;
	opacity: 0.55;
	transition: border-color 0.2s, opacity 0.2s;
}

.aps-gallery-thumb--active,
.aps-gallery-thumb:hover {
	border-color: #009baa;
	opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════
   Inquiry Modal  — scoped inside .bootstrapiis
   ════════════════════════════════════════════════════════════════════ */

/* Give inquiry modal the same high z-index so no backdrop can cover it */
.bootstrapiis #apsLaInquiryModal,
#apsLaInquiryModal,
.bootstrapiis #apsPartsInquiryModal,
#apsPartsInquiryModal {
	z-index: 999995;
	overflow-x: hidden;
	overflow-y: auto;
}

#apsLaInquiryModal .modal-header h5,
#apsPartsInquiryModal .modal-header h5{color: #fff !important;}
.bootstrapiis #apsLaInquiryModal .modal-content,
.bootstrapiis #apsPartsInquiryModal .modal-content {
	border-radius: 12px;
	border: 0;
}

.bootstrapiis #apsLaInquiryModal .modal-header,
.bootstrapiis #apsPartsInquiryModal .modal-header {
	background: linear-gradient(135deg, #054f59 0%, #009baa 100%);
	border: 0;
}

.bootstrapiis #apsLaInquiryModal .modal-header .btn-close,
.bootstrapiis #apsPartsInquiryModal .modal-header .btn-close {
	opacity: 0.9;
}

.bootstrapiis #apsInqVehicle,
.bootstrapiis #apsPartsInqVehicle {
	color: #009baa;
}

/* #apsLaInquiryMsg hidden by default; jQuery slideDown/slideUp toggles it */
#apsLaInquiryMsg,
#apsPartsInquiryMsg {
	display: none;
}

.bootstrapiis #apsLaInquirySubmitBtn,
.bootstrapiis #apsPartsInquirySubmitBtn {
	background-color: #009baa;
	border-radius: 8px;
}

.bootstrapiis #apsLaInquirySubmitBtn:hover,
.bootstrapiis #apsPartsInquirySubmitBtn:hover {
	background-color: #054f59;
}

#apsLaInquiryMsg .alert,
#apsPartsInquiryMsg .alert {
	border-radius: 8px;
}

/* ════════════════════════════════════════════════════════════════════
   Fix: Force APS modals visible when .show is applied
   WordPress themes often set .fade { opacity:0 } with high specificity,
   preventing Bootstrap's .fade.show transition from restoring opacity.
   (Same pattern as #inquireModal fix above.)
   ════════════════════════════════════════════════════════════════════ */
.bootstrapiis #apsLaGalleryModal.fade.show,
#apsLaGalleryModal.fade.show,
.bootstrapiis #apsPartsGalleryModal.fade.show,
#apsPartsGalleryModal.fade.show,
.bootstrapiis #apsLaInquiryModal.fade.show,
#apsLaInquiryModal.fade.show,
.bootstrapiis #apsPartsInquiryModal.fade.show,
#apsPartsInquiryModal.fade.show {
	opacity: 1 !important;
	display: block !important;
}

.bootstrapiis #apsLaGalleryModal.show .modal-dialog,
#apsLaGalleryModal.show .modal-dialog,
.bootstrapiis #apsPartsGalleryModal.show .modal-dialog,
#apsPartsGalleryModal.show .modal-dialog,
.bootstrapiis #apsLaInquiryModal.show .modal-dialog,
#apsLaInquiryModal.show .modal-dialog,
.bootstrapiis #apsPartsInquiryModal.show .modal-dialog,
#apsPartsInquiryModal.show .modal-dialog {
	transform: none !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.bootstrapiis #apsLaGalleryModal.show .modal-content,
#apsLaGalleryModal.show .modal-content,
.bootstrapiis #apsPartsGalleryModal.show .modal-content,
#apsPartsGalleryModal.show .modal-content,
.bootstrapiis #apsLaInquiryModal.show .modal-content,
#apsLaInquiryModal.show .modal-content,
.bootstrapiis #apsPartsInquiryModal.show .modal-content,
#apsPartsInquiryModal.show .modal-content {
	opacity: 1 !important;
	visibility: visible !important;
}

