:root {
    --dark-grey: #252A31;
    --yellow: #FFD204;
    --red: #B22C1B;
    --dark-orange: #733C05;
    --swiper-navigation-size: 22px;
    --lt-blue: #B0C9EF;
}

.gotham{ font-family: 'gotham'; } /*Gotham alternative*/
.eurostile{ font-family: 'eurostile'; } /*Eurostile alternative*/

.bg-yellow{ background: var(--yellow); }
.bg-black{ background:#000; }
.bg-black-transparent{ background: rgba(0,0,0,0.5); }


.text-black{color:#000;}
.text-yellow{color:var(--yellow);}
.text-lt-blue{color:var(--lt-blue);}

.fw-medium{ font-weight: 500; }
.fw-black { font-weight: 800; }

html{
    font-size:16px;
}

body{
    font-family: 'gotham';
    font-weight: 500;
    background: var(--dark-grey);
    color:#FFF;
}

.form-control {
    border-radius: 4px;
    background: #E9EBEE;
}

.form-select:disabled {
    background:#bbb;
    border-color:#bbb;
    cursor: not-allowed;
}


.heading {
    font-family: 'gotham';
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1;
}

.sub-heading{
    font-family: 'gotham';
    font-weight: 800;
    font-size:2.5rem;
    text-transform: uppercase;
    line-height: 1;
}

.custom-btn{
    border-radius: 4px;
    display:inline-block;
    text-decoration: none;
    outline: none;
    border:1px solid transparent;
    padding:8px 25px;
    font-weight: 400;
    transition: 0.3s;
}

.custom-btn.d-block{
    text-align: center;
}

.custom-btn.red {
    background: var(--red);
    color:#FFF;
}

.custom-btn.black{
    background:#000;
    color:var(--yellow);
}

    .custom-btn.black:hover {
        background: #30363F;
        border-color: #252A31;
    }

.custom-btn.transparent{
    background:rgba(0,0,0,0.5);
    color:#FFF;
    border-color: #FFF;
}

    .custom-btn.transparent:hover {
        background: rgba(37, 42, 49, 0.5);
        border-color: #252A31;
    }

.custom-btn.yellow{
    background: var(--yellow);
    color:#000;
}

    .custom-btn.yellow:hover {
        background: #E6BD00;
        border-color:#000;
    }

.custom-btn.white{
    color:#000;
}

.custom-bullets li{
    position: relative;
    padding-left:25px;
}

.custom-bullets li:before{
    content: '';
    background:var(--yellow);
    width:10px;
    height:10px;
    display:block;
    position: absolute;
    left:0;
    top:7px;
}

table.table {
    border-color: #404754;
}

.table > :not(caption) > * > * {
    background: none;
    color:#FFF;
    border-top-width: var(--bs-border-width);
}

.table .fit {
    width: 1%;
    white-space: nowrap;
}

.table-striped {
    color:#FFF;
}

.table-striped > :not(caption) > * > * {
    background: none;
    color:#FFF;
    border-bottom-width:0px;
    border-top-width:0px;
    padding: 10px 15px;
    border-right:2px solid var(--dark-grey);
}

.table-striped > :not(caption) > * > *:last-of-type {
    border-right: none;
}

    .table-striped > tbody > tr:nth-of-type(2n+1) > * {
        background: #30363F;
    }
    /* =============================================================================================
	SWIPER
============================================================================================= */
.swiper-bleed-container{
    position: relative;
    overflow-x: hidden;
}

.swiper-bleed-container .swiper {
    margin-right: calc((100vw - 100%) / -2);
    padding-right: calc((100vw - 100%) / 2);
    overflow: visible;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background: #DDE0E4;
    opacity: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--yellow);
    width: 45px;
    opacity: 1;
}

.swiper-button-next, 
.swiper-button-prev {
    background:rgba(0,0,0,0.5);
    height: 42px;
    width: 32px;
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    color:#FFF;
}

.banner {
    height: 600px;

    @media(max-width:1400px) {
        height: 500px;
    }

    @media(max-width:1200px) {
        height: 450px;
    }

    @media(max-width:992px) {
        height: 400px;
    }
}

    .banner.short {
        height: 500px;

        @media(max-width:1400px) {
            height: 400px;
        }

        @media(max-width:1200px) {
            height: 350px;
        }

        @media(max-width:992px) {
            height: 300px;
        }
    }

.banner,
.banner .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden; /*mainly here to hide the before/after skewed elements from next slide*/
}

.banner .swiper-slide > div{
    position: relative;
    z-index:2000; /*Make sure the slide content is above the after/before pseudo elements*/
}

.banner .swiper-slide:before,
.banner .swiper-slide:after {
    content: '';
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    width: 500px;
    transform-origin: center;
}

.banner:not(.home-banner) .swiper-slide:before{
    z-index: 500;
    transform: translateX(-50%) skewX(-25deg);
    background: rgba(255, 134, 12, 0.3);
}

.banner:not(.home-banner) .swiper-slide:after{
    z-index: 1000;
    background: rgba(255, 210, 0, 0.2);
    transform:translateX(-80%) skewX(-25deg);
}

.swiper-container {
    max-height: 100%; /*Helps with some swiperse that are wrapped in a ratio class*/
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next{
    left: 50px;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
    right: 50px;
}

.banner .caption {
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0)); 
    padding: 25px 0;
}

.banner.swiper-container .caption {
    padding: 35px 0 50px;
}

/* =============================================================================================
	SITEWIDE COMPONENTS
============================================================================================= */
.callout-container {
    position: relative;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

    .callout-container.homepage-products {
        height: 550px;
    }

    .callout-container.preowned {
        height: 350px;
    }

    .callout-container.subcategory{
        height:500px;
    }

    .callout-container .caption {
        /*background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));*/
        background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
    }

    .callout-container .caption .heading{
        font-size: 4rem;
    }

    .callout-container .transparent-tag {
        position: absolute;
        top: 0;
        left: 0;
        padding: 8px 65px 8px 15px;
        font-weight: 800;
        text-transform: uppercase;
        background: rgba(0,0,0,0.5);
        background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0));
    }

    

/* =============================================================================================
	HEADER
============================================================================================= */
header {
    background: #30363F;
}

.print-header {
    display: none;
}

#header-search-container {
    position: relative;
    max-width: 250px;
    border: 2px solid #FFF;
    border-radius: 25px;
    padding:5px 10px;
    
}

    #header-search-container form {
        display: flex;
        align-items: center;
        gap: 10px;
    }

#header-search-container button[type="submit"] {
    background:#FFF;
    color:var(--dark-grey);
    font-size:10px;
    border: none;
    border-radius: 50px;
    width:20px;
    height:20px;
    flex-shrink:0;

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

#header-search-container input{
    outline: none;
    background:none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;

    border:none;
    padding:0;

    
    color:#FFF;
}
    /*
    #header-search-container:before {
        font-family: 'Font Awesome 6 Free';
        content: '\f002';
        font-size: 10px;
        color:var(--dark-grey);
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);

        background:#FFF;
        height:18px;
        width:18px;
        border-radius:20px;
        display: flex;
        justify-content: center;
        align-items:center;

    }
*/
#header-search-container input::placeholder{
    color:#FFF;
}

nav .navbar-nav {
    gap: 25px;
    --bs-nav-link-padding-y: 0.75rem;
}

nav.navbar .nav-item > a{
    border-bottom:4px solid transparent;
}

nav.navbar .nav-item > a:hover,
nav.navbar .nav-item > a.active{
    color: var(--yellow) !important;
    text-decoration: none;
    border-color:var(--yellow);
}


nav.navbar.navbar-expand-lg .navbar-nav .nav-link.dropdown-toggle {
    position: relative;
    padding-right: 25px;
}

nav.navbar.navbar-expand-lg .navbar-nav .nav-link {
    
    font-size: 1.2rem;
    color: #FFF;
    font-family: 'eurostile';
}

nav.navbar .dropdown-toggle::after {
    border: none;
    font-family: 'Font Awesome 6 Free';
    content: '\f107';
    font-size:0.9rem;
    position: absolute;
    right:5px;
    top:50%;
    transform:translateY(-50%);
}

#breadcrumbs {
    background: #000;
    font-size: 1.2rem;
    padding: 12px 0;
    --bs-breadcrumb-divider: "|";
    
}

.breadcrumb {
    margin: 0;
    --bs-breadcrumb-divider-color: #828282;
}

#breadcrumbs .breadcrumb-item {
    font-size: 1.2rem;
    font-family: 'eurostile';
}

#breadcrumbs a{
    color:inherit;
    text-decoration: none;   
}

#breadcrumbs a:hover,
#breadcrumbs .active{
    color:var(--yellow);
}

#breadcrumbs .active{
    font-weight: bold;
}



/* =============================================================================================
	FOOTER
============================================================================================= */
.print-footer{
    display:none;
}

footer {
    background: #000;
}

footer,
footer a{
    color:#FFF;
}

footer a{
    text-decoration: none;
    text-wrap: nowrap;
}

footer a:hover{
    color: var(--yellow);
}



/* =============================================================================================
	HOMEPAGE
============================================================================================= */



/* =============================================================================================
	PRODUCT LANDING
============================================================================================= */
#product-slideshow {
    margin-top:-20px;
    padding-bottom: 50px;
}

#product-slideshow .swiper-slide{
    overflow:hidden;
}

    #product-slideshow .swiper-slide::before,
    #product-slideshow .swiper-slide::after {
        content: '';
        background: #30363F;
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        bottom: 30px;
    }
    #product-slideshow .swiper-slide::before {
        width: 20%;
    }

    #product-slideshow .swiper-slide::after {
        width: 90%;
        transform:skewX(-25deg);
    }

#product-slideshow .swiper-slide img{
    display: block;
    margin: auto;
    max-width: 100%;
}

#product-info {
    --bs-gutter-x: 4.5rem;
}

#product-info [class*=col] {
    border-right: 3px solid #404754;
}

#product-info [class*=col]:last-of-type {
    border-right: none;
}

.feature-option-accordion {

}

.feature-option-accordion .accordion-item,
.feature-option-accordion .accordion-button{
    background:none;
    border-radius:0;
    color:#FFF;
    font-weight: normal;
    border:none;
    box-shadow: none;
}

    .feature-option-accordion .accordion-item {
        border-bottom: 1px solid #404754;
    }

        .feature-option-accordion .accordion-item:first-of-type {
            border-top: 1px solid #404754;
        }

    .feature-option-accordion .accordion-button::after {
        background: none;
        font-family: 'Font Awesome 6 Free';
        content: '\f107';
        color: #FFF;
    }

    .feature-option-accordion .accordion-button:not(.collapsed) {
        color: var(--yellow);
        font-weight: bold;
    }

        .feature-option-accordion .accordion-button:not(.collapsed)::after {
            color: var(--yellow);
        }

    .feature-option-accordion .list-group {
    }

    .feature-option-accordion .list-group-item,
    .feature-option-list .list-group-item,
    .specifications .list-group-item {
        background: none;
        color: #FFF;
        border: none;
        border-radius: 0;
    }

        .feature-option-accordion .list-group-item:hover,
        .feature-option-accordion .list-group-item.active,
        .feature-option-list .list-group-item:hover,
        .feature-option-list .list-group-item.active,
        .specifications .list-group-item:hover,
        .specifications .list-group-item.active {
            color: var(--yellow);
            font-weight: bold;
        }

            .feature-option-accordion .list-group-item:hover::after,
            .feature-option-accordion .list-group-item.active::after,
            .feature-option-list .list-group-item:hover::after,
            .feature-option-list .list-group-item.active::after,
            .specifications .list-group-item:hover::after,
            .specifications .list-group-item.active::after {
                content: '';
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                width: 3px;
                background: var(--yellow);
            }

            .feature-option-list .list-group-item:hover::after,
            .feature-option-list .list-group-item.active::after,
            .specifications .list-group-item:hover::after,
            .specifications .list-group-item.active::after {
                top: 10px;
                bottom: 10px;
            }



.feature-option-list .list-group-item,
.specifications .list-group-item {
    border-bottom: 1px solid #404754;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .feature-option-list .list-group-item:first-of-type,
    .specifications .list-group-item:first-of-type {
        border-top: 1px solid #404754;
    }

.feature-option-accordion .swiper-container {
    height: 100%;
}

.feature-option-accordion .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* =============================================================================================
	PRE-OWNED LANDING
============================================================================================= */
.product-photos-gallery {
    position: relative;
}

.product-photos-main-wrap {
   
}

.product-photos-main {
    overflow: hidden;
    position: relative;
}

#product-photos-main .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.4);
}

.product-photos-main .swiper-slide {
    width: 100%;
    box-sizing: border-box;
    height: 450px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-photos-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-photos-main .swiper-slide::before,
.product-photos-main .swiper-slide::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 500px;
    transform-origin: center;
    pointer-events: none;
}

.product-photos-main .swiper-slide::before {
    z-index: 500;
    transform: translateX(-50%) skewX(-25deg);
    background: rgba(255, 134, 12, 0.3);
}

.product-photos-main .swiper-slide::after {
    z-index: 1000;
    background: rgba(255, 210, 0, 0.2);
    transform: translateX(-80%) skewX(-25deg);
}

.product-photos-expand {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #FFF;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.product-photos-expand:hover {
    background: rgba(0,0,0,0.75);
    color: var(--yellow);
}

.product-photos-thumbs .swiper-slide {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.product-photos-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.product-photos-thumbs .swiper-slide img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

#productPhotosFullscreenModal .modal-body {
    min-height: 80vh;
}

.product-details {
    font-size:1.2rem;
}

.product-details td {
    border:none;
}

    .product-details tr > td:first-child {
        font-weight: normal;
        padding-right: 25px;
        width: 1%;
        white-space: nowrap;
        border-top: 1px solid #404754;
        border-bottom: 1px solid #404754;
    }

.product-details tr > td:not(:first-child) {
    padding-left:30px;
}


.project-callout{
    min-height: 700px;
}

.project-content {
    font-weight: normal;
}


/*Rule to enforce background colour in styles dropdown for admin*/
/*This stylesheet is injected into the iframe*/
.cke_panel_listItem.cke_selected a,
.cke_panel_listItem a:hover,
.cke_panel_listItem a:focus,
.cke_panel_listItem a:active {
    background-color: #252A31 !important;
}