﻿/***** BEGIN RESET *****/

*{
    margin:0;
    padding: 0;
}



/*-------- VARIABLES --------*/
:root {
        --color-primary: #000000;
        --color-secondary: #E71F25;
        --color-dark-background: #000000;
        --color-light-background: #F3F3F3;
        --color-body-dark: #000000;
        --color-body-light: #000000;
        --color-primary-button: #E71F25;
        --color-secondary-button: transparent;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #CB040A;
        --font-header: "Teko", sans-serif;
        --font-secondary: "Teko", sans-serif;
        --font-body: "Manrope", sans-serif;
        --font-header-size: 110px;
        --font-header-size-medium: 62px;
        --font-header-size-sml: 52px;
        --font-header-span-size: 21px;
        --font-header-span-size-sml: 18px;
        --font-secondary-header-size: 52px;
        --font-secondary-header-size-medium: 36px;
        --font-secondary-header-size-sml: 28px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 25px;
}



table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

*/

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}




/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    background-color: var(--color-primary-button);
    transition:.25s;
    border-radius: 4px;
        font-family: var(--font-header);


    a{
    font-family: var(--font-header);
    font-size: var(--font-body-size);
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
    }
}

.btn{
    font-family: var(--font-header) !important;
    font-size: 18px;
    text-transform: uppercase;
    background-color: var(--color-primary-button);
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    transition:.25s;
    font-weight: 400;

    i{
        color: var(--color-secondary);
        font-size: 12px;
        transform: rotate(315deg);
    }
}

button:hover{
    background-color: var(--color-primary-button);

    a{
    color: var(--color-primary);
    }

}

.btn:hover{
    background-color: var(--color-button-hover);

}


.secondary-btn{
    border: none;
    background-color: var(--color-secondary-button);
    transition:.25s;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    gap: 5px;

    i{
        color: var(--color-secondary);
        font-size: 12px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 0.5);

    }
}

.secondary-btn:hover{
    background-color: #fff;
    color: #000;

  i{
        transform: rotate(0deg);
    }
}


.transparent-btn{
    color: #fff !important;
    background-color: transparent;
    justify-content: flex-start;
    padding-left: 0px;

    i{
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.transparent-btn:hover{
    background-color: transparent;
    transition: .25s;

    i{
        transform: rotate(0deg);
    }
}

.text-btn{
    color: #000;
    background-color: transparent;
    justify-content: flex-start;
    padding-left: 0px;

    i{
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 0.5);
    }
}

.text-btn:hover{
    background-color: transparent;
    transition: .25s;

    i{
        transform: rotate(0deg);
    }
}



.drk-background{
    background-color: var(--color-dark-background);
    color: white;
}

.lgt-background{
    background-color: var(--color-light-background);

    h2 span{
        color: #fff;
    }
}

.accent-background{
    background-color: var(--color-primary);
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 90%;
    margin: 0 auto;
}

.maxi-2{
    max-width: 75%;
    margin: 0 auto; 
}

.maxi-text{
    max-width: 500px;

    h2{
        max-width: 350px;
    }


}


/*-------- FLEX STYLES --------*/
.flexy{
    display: flex;
    gap: 25px;
}

.flexy2{
    display: flex;
    gap: 50px;
}

.col-2{
    width: 50%;
}

.col-2-lrg{
    width: 60%;
}

.col-2-sml{
    width: 40%;
}

.col-3 {
    width: 33.33%;
}

.col-4{
    width: 25%;
}

.image-container{

    img{
        width: 100%;
    }
}



/*-------------SLIDER----------------------*/

.slider{
	display: flex;
	justify-content: center;
	gap: 50px !important;

      .slick-slide {
      margin: 0 27px;
  }

  /* the parent */
  .slick-list {
      margin: 0 -27px;
  }

  .slick-button {
    color: #fff;
    padding: var(--padding-button);
    font-family: var(--font-body);
    font-size: var(--font-body-size);
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    cursor: pointer;
    bottom: -75px;
}

.slick-prev {
    right: 160px;
}

.slick-next {
    right: 40px;
} 


.slider .slider-link-contain{
	border: 1px solid #FFFFFF50;
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 0 10px;
}
}






/*-------- BODY STYLES --------*/

body {
 font-family: var(--font-body);
}

h1, h2, h3{
    font-family: var(--font-header);
    text-transform: uppercase;
    line-height: 1;
}

h1, h2{
    
    span{
        font-size: var(--font-header-span-size);
    }
}

h1{
    font-size: var(--font-header-size);
    margin-bottom: 10px;
    display: contents;
}

h2{
    font-size: var(--font-secondary-header-size);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    font-weight: 600;

     span{
        font-size: 150px;
        position: absolute;
        z-index: -1;
        color: #F9F9F9;
        font-weight: 400;
        bottom: -2px

    }
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*          HEADER           */
.logo {
	width: 300px;
}

.logo img {
	max-width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 0px;
	display: flex;
	justify-content: flex-end;
}

.top-links{
    display: flex;
	gap: 15px;
    list-style: none;
    align-items: center;

    a{
        color: #000;
        font-family: var(--font-header);
        font-weight: 400;
        font-size: 16px;
        text-transform: uppercase;
    }
}

.last-btn{
    background-color: var(--color-secondary);
    color: #fff !important;
    padding: 8px 25px;
    display: block;
}



.bottom-links{
	gap: 25px;
}

.bottom-links a{
	color: #FFFFFF;
    font-family: var(--font-secondary-header-size);
}



.left-menu {}

.right-menu {}

.bottom-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
	gap: 25px;
	background-color: black;

    .flexy{
        align-items: center;
    }

    a{
        font-family: var(--font-header) !important;
    }
}

.right-bt-menu{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;

    a{
        display: block;
        white-space: nowrap;
        color: #fff;
                font-family: var(--font-header) !important;


        i{
            background-color: #fff;
            padding: 6px 5px;
            color: #000;
            border-radius: 4px;
            width: auto !important;
        }
    }

    .btn{
        border-radius: 4px;
        font-family: var(--font-header) !important;
    }
}

.sml-link{
    font-family: var(--font-header);
    font-weight: 400;
    font-size: 15px;
}


.error-cover{
    text-align: center;
        padding: 275px 40px 250px 40px !important;

    p{
        margin: 0 auto;
    }
    h1{
        font-size: 72px;
        line-height: 80px;

        span{
            font-size: 150px;
        }
    }

    .button-container{
        justify-content: center;
    }
}


/* Search Header */
/*---INVENTORY SEARCH IN HEADER---*/


#search {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--black);
	z-index: 999999999999;
	  position: absolute;
	display: flex;
	  align-items: center;
	  justify-content: center;
	height: 45px;
  }
  
  form.search-header {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
  }
  
  .search-bg {
	-webkit-animation: slide-down .3s ease-out;
	-moz-animation: slide-down .3s ease-out;
  }
  .search-btn {
	border: none !important;
	background: transparent !important;

    i{
        color: var(--white);
    }

  }
  .search-btn img {
	width: 35px !important;
  }

  #search-header input {
	caret-color: #000;
  }
  .searchTerm::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: var(--white);
	opacity: 1; /* Firefox */
  }
  .searchTerm:-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #000;
  }
  .searchTerm::-ms-input-placeholder { /* Microsoft Edge */
	color: #000;
  }
  .search-wrap {
	  margin: 0 auto;
	width: 97%;
  }

  .search-header input[type="text"]:not([class^="Mui"]) {
	width: 90% !important;
	border: none !important;
	font-size: 16px !important;
	color: var(--white) !important;
	font-family: var(--font-body);
	font-weight: 500 !important;
	  -webkit-user-select: initial;
	  -khtml-user-select: initial;
	  -moz-user-select: initial;
	  -ms-user-select: initial;
	  user-select: initial;
	  height: auto !important;
	  line-height: 70px !important;
	  background: var(--red);
  }

   .search-header input[type="text"]{
    color: var(--white) !important;
  }
  .search-nav {
	opacity: .7;
	transition: ease all 0.2s !important;
  }
  .search-nav:hover {
	opacity: 1;
  }
  
  .search-header input:focus {
	  outline: none;
      color: var(--white);
  }

.smll-span{

}


/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 125px 50px;
    background-size: cover;
    background-color: #000;
    color: #fff;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(/siteart/hero-cover.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    .button-container{
        max-width: 450px;
    }
}

.smll-span{
    text-transform: uppercase;
    font-family: var(--font-header);
    font-weight: 500;
    font-size: 20px;
}


.home-title{
    max-width: 575px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 75px 50px;
    background-size: cover;
    position: relative;



    .contact-text{
        width: 300px;
        position: absolute;
        right: 40px;
        bottom: 50px;
    }
}

.grid-5{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}

.truck-categories{
    align-items: stretch;
	.flexy{
		gap: 10px;
	}
    .truck-cat-box{
        border: 1px solid #E9E9E9;
        padding: 25px 20px 15px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #fff;
        

        img{
            margin: auto auto 15px 0;
            width: 150px;
            height: auto;
            object-fit: contain;

        }

    }

    .button-container{
        margin-top: 15px;
    }
}

.xta-m{
	margin-top: 10px;
}

.category-info{
    p{
        font-size: 15px;
    }
}

.about-us{
    padding-top: 0px;
    padding-right: 0px;
    align-items: center;
}

.about-image-container{
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/siteart/rollback-car.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px;
    height: 475px;
    position: relative;

    img{
        width: 275px;
        opacity: 50%;
    }
}

.about-text{
    position: absolute;
    bottom: 50px;
 
}

.section-1{

}

.section-2{

}

.section-3{

}

/*--------FORM STYLES--------------------*/
.include-captcha{display:none;}

#formpage{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}
.form-field-flex{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.form-field-flex input{
    border: none !important;
    width: 50%;
    padding: 10px 10px;
    border-radius: 4px;
    font-family: var(--font-body);
    background-color: #00000005;
}

#formpage textarea{
    border: none !important;
    border-radius: 4px;
    padding: 10px 10px;
    font-family: var(--font-body);
    background-color: #00000005;
}

input.submit-button{
    background-color: var(--color-secondary);
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    color: #fff !important;
    padding: var(--padding-button);
    font-family: var(--font-header);
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-optical-sizing: auto;
    font-style: normal;
    transition: .25s;
    cursor: pointer;
    font-size: 18px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: var(--padding-button);
    color: #fff;
    font-family: var(--font-header);
    cursor: pointer;
    font-size: 18px;
    text-transform: uppercase;
}

.inner-page{

    section:not(.cover){
        padding: 100px 50px;
    }

    p{
        a{
            color: var(--color-primary);
        }
    }

    .button-container{
        margin-top: 15px;
    }



}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}

.bready{
    padding: 20px 50px 15px;
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #E9E9E9;

    a{
        font-family: var(--font-header);
        text-transform: uppercase;
        color: #131313;
    }
}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.internal-section{
    gap: 50px;
    align-items: flex-start;
}

.form{
    padding: 15px 25px 30px;
    border: 1px solid #E9E9E9;
    border-radius: 4px;
}


.two-part{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;

}

.box-item{
        border: 1px solid #E9E9E9;
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background-color: #fff;
}

.about-section{
    align-items: center;
    gap: 75px;
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: #fff;

    ul{
        list-style-type: none;
        line-height: 2;
    }

    a{
        color: #fff;
    }

}

.footer-logo{
    width: 250px;

    img{
        width: 100%;
    }
}

.top-footer{
    
    padding: 75px 50px 50px;

    .flexy{
        justify-content: space-between;
        gap: 25px;
    }

        p{
        max-width: 300px;
        margin-bottom: 50px;
        margin-top: 15px;
    }


}



.ft-content{
position: relative;

    .contact-text{
        width: 27%;
        position: absolute;
        right: 0px;
        top: -100px;

        img{
            width: 100%;
        }
    }

}

.contact-text{

    img{
        width: 100%;
    }

    span{
        font-family: var(--font-header);
        text-transform: uppercase;
        font-size: 150px;
        font-weight: 500;
        line-height: 0.8;

        letter-spacing: -2px;

  color: rgba(147, 149, 152, 0.05);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    }
}



.bottom-footer{
    text-align: left;
    padding: 10px 40px;
    font-size: 11px;
}

.ft-quick-links{
    justify-content: space-between;
    

    span{
        font-family: var(--font-header);
        text-transform: uppercase;
        font-size: 21px;
        font-weight: 700;
    }
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
.body-wrapper{
padding: 50px 40px;

h1, h2{
    line-height: unset;
}

span{
    all: unset;
}
}

.body-wrapper section{
    padding: inherit;
}

.body-wrapper p.disclaimer{
    font-size: 12px;
}

.faceted-search, .faceted-search-content .faceted-section-box .faceted-btn-container .faceted-show-all-btn{
    border-radius: 0px !important;
    background-color: var(--color-primary) !important;
}

.faceted-search-content .faceted-section-box .faceted-option-checkbox-container label{
    display: flex;
    gap: 5px;
}

/*  INVENTORY BUTTONS  */
a.view-listing-details-link.des-view-listingDetails, a.email-seller.des-email-seller.collapsible-contact-list-item,a.video-chat.des-video-chat.collapsible-contact-list-item{
    border-radius: 0px;
}

a.view-listing-details-link.des-view-listingDetails{
    background-color: var(--color-primary);
}

a.email-seller.des-email-seller.collapsible-contact-list-item{
    background-color: var(--color-primary);
}

a.video-chat.des-video-chat.collapsible-contact-list-item{
    background-color: var(--color-secondary);
}

/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1200px){
    .grid-5{
        grid-template-columns: 1fr 1fr 1fr;
    }

}


@media only screen and (max-width: 1070px) {

    .truck-categories{
        .flexy{
            flex-wrap: wrap;
        }
    
        .col-4{
            width: 48%;
            box-sizing: border-box;
        }
    }
}

@media only screen and (max-width: 980px){

    .home-cover{
        flex-direction: column;

        .col-2{
            width: 100%;
        }

        .contact-text{
            display: none;
        }

        }

            .grid-5{
        grid-template-columns: 1fr 1fr;
    }


    }




/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }

        .cover{
        .contact-text{
            position: static;
            img{
                display: none;
            }
        }
    }
}

@media only screen and (max-width: 800px){
    .ft-content .contact-text{
        position: static;
    }
}

@media only screen and (max-width: 790px){
    .truck-categories{

    
        .col-4{
            width: 100%;
            box-sizing: border-box;
        }
}
}

@media only screen and (max-width: 750px) {

    h1{
        font-size: var(--font-header-size-medium);
    }

    h2{
        span{
            font-size: 110px;
        }
        font-size: var(--font-secondary-header-size-medium);
    }

    .flexy,.flexy2{
        flex-direction: column !important;
    }
    
    .col-2, .col-3, .col-4, .col-2-sml, .col-2-lrg{
        width: 100% !important;
         box-sizing: border-box;
    }
    
    .no-break{
        display: none;
    }

    .about-us{
        padding: 50px 40px;
        padding-top: 75px;
        gap: 50px;

        col-2{
            width: 100%;
            box-sizing: border-box;
        }

        .maxi-text{
        max-width: unset;

        }

    }

    .about-image-container{
        width: 100% !important;
        box-sizing: border-box;
    }

        .ft-content .contact-text{
        max-width: 310px;
        width: 100%;
    }

    .about-image-container{
        padding: 25px;

    }

    .about-text{
        bottom: 25px;
        left: 30px;
    }


}



@media only screen and (max-width: 750px) {
    .logo{
        width: 250px;
    }
}



@media only screen and (max-width: 500px) {
    h1{
        font-size: var(--font-header-size-sml);
    }

    h2{
        font-size: var(--font-secondary-header-size-sml);
    }

 .form-field-flex{
        flex-direction: column;
    }

    .form-field-flex input{
        width: inherit;
    }

    div#captcha{
        width: inherit;
    }


    .home-cover{
        padding: 75px 25px;
    }


    .about-image-container{
        img{
            width: 175px;
        }
    }

    .about-image-container{
        height: 375px;
    }

    h2{
        span{
            font-size: 72px;
        }
    }

    .top-footer{
        padding: 50px 25px;
    }

    .grid-5{
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 375px) {
    section, .about-us{
        padding: 50px 25px;
    }
	
}


