﻿/***** BEGIN RESET *****/

*{
    margin:0;
    padding: 0;
}




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;
}

/*-------- VARIABLES --------*/
:root {
        --color-primary: #000000;
        --color-secondary: #ffffff;
        --color-dark-background: #ff0000;
        --color-light-background: #ff0000;
        --color-body-dark: #000000;
        --color-body-light: #000000;
        --color-primary-button: #000000;
        --color-secondary-button: #000000;
        --color-white: #fff;
        --color-black: #000;
        --color-button-hover: #000000;
        --font-header: Impact, sans-serif;
        --font-secondary: "Manrope", sans-serif;
        --font-body: "Open Sans", sans-serif;
        --font-header-size: 72px;
        --font-header-size-medium: 48px;
        --font-header-size-sml: 32px;
        --font-header-span-size: 21px;
        --font-header-span-size-sml: 18px;
        --font-secondary-header-size: 48px;
        --font-secondary-header-size-medium: 36px;
        --font-secondary-header-size-sml: 18px;
        --font-body-size: 16px;
        --font-weight-normal: 500;
        --font-weight-bold: 700;
        --padding-button: 10px 15px;
}


@font-face {
    font-family: Impact;
    src: url(/fonts/impact.ttf) format("truetype");
}


/*-------- UNIVERSAL STYLES --------*/
section{
    padding: 50px 40px;
}

button{
    border: none;
    background-color: var(--color-primary-button);
    transition:.25s;

    a{
    font-family: var(--font-body);
    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-body);
    font-size: var(--font-body-size);
    background-color: var(--color-primary-button);
    color: var(--color-white);
    padding: var(--padding-button);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    transition:.25s;
}

button:hover{
    background-color: var(--color-primary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}

.btn:hover{
    background-color: var(--color-primary-button);
    color: var(--color-primary);

    a{
    color: var(--color-primary);
    }
}


.secondary-btn{
    border: none;
    background-color: var(--color-secondary-button);
    transition:.25s;
}

.secondary-btn:hover{
    background-color: var(--color-button-hover);
    color: var(--color-body-light);

    a{
    color: var(--color-body-light);
    }
}

.drk-background{
    background-color: var(--color-dark-background);
    color: white;
}

.lgt-background{
    background-color: var(--color-light-background);
}

.accent-background{
    background-color: var(--color-primary);
}

.span{
    font-weight: 700;
}

.button-container{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.maxi{
    max-width: 1600px;
    margin: 0 auto;
}

.maxi-2{
    max-width: 1350px;
    margin: 0 auto; 
}


/*-------- 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);
}

h1, h2{
    span{
        font-size: var(--font-header-span-size);
    }
}

h1{
    font-size: var(--font-header-size);
    margin-bottom: 10px;
}

h2{
    font-size: var(--font-secondary-header-size);
    margin-bottom: 10px;
}

a:link, a:visited, a:active {text-decoration:none;}
a:hover {text-decoration:none;}


hr{border:#000 1px solid;}





/*          HEADER           */
.logo {
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    padding: 0px 10px;
}

.logo img {
	width: 100%;
}


.top-nav {
	background-color: #fff;
	color: #000;
	padding: 5px 40px;
	display: flex;
	justify-content: space-between;
}

.top-links{
	gap: 25px;
}

.top-links a{
	color: #000;
}

.bottom-links{
	gap: 5px;
    align-items: center;
}

.bottom-links a{
	color: #FFFFFF;
    font-family: Impact;
    text-transform: uppercase;
    font-size: 22px;
}



.top-links{
    gap: 50px;
}



.left-menu {}

.right-menu {}

.bottom-nav {

	padding: 10px 40px;
	gap: 25px;
    z-index: 2;
    position: relative;

}

.bottom-nav-maxi{
    	display: flex;
	justify-content: space-between;
	align-items: center;
       max-width: 1400px;
    margin: 0 auto; 
}

.bottom-links-wraps{
    flex-wrap: wrap;
    justify-content: center;
}



.inventory-text{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 68px;
    position: relative;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    padding-bottom: 100px;
    margin-top: 50px;
}

.bricks{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #00000050, #00000050), url(/siteart/sprinkles.svg);
}


.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);
  }




/*--------HOME STYLES--------------------*/
.home-cover{
    padding: 150px 40px;
    background-size: cover;

}

.home-title{
    max-width: 700px;
}

.cover{
    background-color: #000;
    color:#fff;
    padding: 100px 40px;
    background-size: cover;
}

.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: 1px solid #8B8B8B25 !important;
    width: 50%;
    padding: 10px 10px;
    border-radius: 5px;
    font-family: var(--font-body);
}

#formpage textarea{
    border: 1px solid #8B8B8B25 !important;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: var(--font-body);
}

input.submit-button{
    background-color: #000;
    border: none;
    color: #fff !important;
    padding: var(--padding-button);
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    transition: .25s;
    cursor: pointer;
    font-size: 16px;
}

div#submit-btn{
    margin-top: 25px;
}

.button button{
    padding: var(--padding-button);
    color: #fff;
    font-family: var(--font-body);
    cursor: pointer;
    font-size: 16px;
}


/*-------- CONTACT STYLES --------*/

.google-maps{
    
}

/*-------- FOOTER STYLES ----------------*/
footer{
    font-family: var(--font-body);

    ul{
        list-style-type: none;
        line-height: 34px;
        
       li a{
        font-size: 22px;

        }

    }

}

.maxi-ft{
    max-width: 1216.8px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

.top-footer{
    

    padding: 25px 40px;
    background-color: #2a2a2a;
    color: #fff;
    font-family: Impact;
    text-align: center;

    a{
        color: #fff;
    }
}

.ft-title{
    font-size: 36px;
    text-transform: uppercase;
}

.footer-logo{
    width: 250px;
}

.left-footer{

    p{
        font-size: 22px;
        margin-top: 15px;
    }

    img{
        width: 100%;
    }

}

.right-footer{

}

.underline-ft{
    text-decoration: underline !important;
    color: #e78a3d !important;
}

.contact-info-ft{
    line-height: 32px;
    margin: 15px 0;
}


.bottom-footer{
    text-align: center;
    padding: 10px 40px;
    background-color: #000;
    color: #ffffff80;
    position: relative;
}

.nav-footer{
    position: relative;
    z-index: 2;
    font-size: 12px;
}


/*----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: 1360px){
	.currency-tab{
		top: 60px !important;
	}
}

@media only screen and (max-width: 1300px){
	.bottom-links a{
		font-size: 20px;
	}
}


@media only screen and (max-width: 1200px) {
.top-links{
    gap: 25px;
}
}


@media only screen and (max-width: 1024px) {


.bottom-links{
    justify-content: center;
    gap: 15px;
}

.maxi-ft{
    display: grid;
    grid-template-columns: 1fr 1fr;

    .col-4{
        width: inherit;
    }
}


}


/*----------    MOBILE MENU    ----------*/
@media only screen and (max-width: 900px) {
    nav.mobile .logo {
        width: 175px;
    }
}

@media only screen and (max-width: 750px) {

    h1{
        font-size: var(--font-header-size-medium);
    }

    h2{
        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: inherit !important;
    }
    
    .no-break{
        display: none;
    }
}

@media only screen and (max-width: 640px){

    .maxi-ft{
        grid-template-columns: 1fr;
    }

}

@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;
    }

	
}

@media only screen and (max-width: 375px) {
    section{
        padding: 50px 25px;
    }
	
}


@media only screen and (min-width:768px) and (max-width: 1130px) {
	
}



@media only screen and (min-width: 768px) {
	
}



