/*-------------------------------------------*\ 
// GLOBAL
\*-------------------------------------------*/

@font-face {
    font-family: 'FK Grotesk';
    src: url('/files/fonts/FKGroteskTrial-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'FK Grotesk';
    src: url('/files/fonts/FKGroteskTrial-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'FK Grotesk';
    src: url('/files/fonts/FKGroteskTrial-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
*:not(.fa){
font-family: 'FK Grotesk', 'Arial', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}
.container--homepage h1, .container--homepage h2, .container--homepage h3, .container--homepage h4, .container--homepage h5, .container--homepage h6 {
    color:var(--hoverColor);
}



/*-------------------------------------------*\ 
// VARIABLES
\*-------------------------------------------*/
:root {
/* TOP NAVIGATION BAR COLORS */
  --primary-bg: #144733;
  --primary-text: #fff;

--button-primary-background-color: var(--primary-bg);
--button-primary-hover-background-color: var(--hoverColor);

/* MAIN MENU COLORS */
  --secondary-bg: #fff;
  --secondary-text: #000;

/* HIGHLIGHT/HOVER COLORS */
  --highlight-bg: #fff;
  --highlight-text: #6cc071;

/* MEGAMENU DROPDOWN COLORS */
  --megamenu-bg: #fff;
  --megamenu-links: #000;
  --megamenu-title: #000;
  --megamenu-text: #000;

/* MOBILE COLORS */
  --mobile-icon: #000;
	--mobile-bg: #000;
	--mobile-text: #fff;
	--mobile-bg-highlight: #422254;

/* FOOTIE FOOTER */
    --primaryBg: #144733;
    --secondaryBg: #144733;

    --primaryText: #fff;
    --secondaryText: #d7d7d7;

    --borderLine: #fff;
    --inputField: #221e37;
    --hoverColor: #6cc071;



  --LO-Orange: #144733;
  --LO-Grey: #808080;
  --LO-Bgcolor: #eeeceb;
  --LO-Gradient: linear-gradient(90deg, #f2684d 0%, #a3509d 100%);
  --validation-required-color: #f2684d;



  --divider-color: #d4d4d4;
}

.slide-tray li a:hover, .header-nav-item a:hover {
    color: var(--hoverColor) !important;
}
a:hover {
text-decoration: underline;
    color: var(--hoverColor) !important;
}

/*-------------------------------------------*\ 
// INPUT SELECT FIELDS
\*-------------------------------------------*/
input, select, input[type=text], input[type=email], input[type=number], input[type=password], input[type=search], textarea {
    border: 2px solid #e3e3e3;
    background: #f0f0f0;
    border-radius: 4px;
padding: 10px;
}
input#searchTerm {
    background: white;
    border: 0;
    box-shadow: none;
}
input#productQuantity, .product__options select {
border: 1px solid #2c245700;
    background: #d9d9d95e;
}
label#productQuantityLabel, .product__options label {
    text-transform: uppercase;
    font-size: smaller;
    font-weight: 500;
}



/*-------------------------------------------*\ 
// HEADER
\*-------------------------------------------*/

        /* Keystone Header Styles */
        .header {
            background-color: #fff;
            border-bottom: 1px solid #e9ecef;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .header-logo img {
            height: 40px;
            width: auto;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .header-nav-item {
            position: relative;
        }

        .header-nav-link {
            text-decoration: none;
            color: #666;
            font-size: 16px;
            font-weight: 500;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .header-nav-link:hover {
            color: #333;
        }

        .header-search-container {
            position: relative;
        }

        .header-search-form {
           display: flex;
    align-items: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    border: 2px solid #e3e3e3;
    background: #ffffff;
    border-radius: 4px;
    padding: 3px;
        }

        .header-search-input {
            background: none;
            border: none;
            outline: none;
            padding: 4px 8px;
            font-size: 14px;
            color: #333;
            width: 200px;
        }

        .header-search-input::placeholder {
            color: #999;
        }

        .header-search-btn {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            padding: 4px;
            transition: color 0.2s ease;
        }

        .header-search-btn:hover {
            color: #333;
        }

        .header-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger {
            width: 24px;
            height: 2px;
            background-color: #333;
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        .hamburger::before {
            top: -8px;
        }

        .hamburger::after {
            top: 8px;
        }

        /* Impersonation bar styles */
        .imp-container-parent {
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .imp-container {
            background: black;
            color: white;
            font-size: .75rem;
            padding: .5rem;
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            align-items: center;
        }

        select#userToImpersonate {
            width: 100%;
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            .header-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                flex-direction: column;
                padding: 24px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                gap: 16px;
                margin: 0;
            }

            .header-nav.active {
                display: flex;
            }

            .header-mobile-toggle {
                display: block;
            }

            .header-container {
                padding: 0 16px;
            }

            .header-search-container {
                order: -1;
                width: 100%;
                margin-bottom: 16px;
            }

            .header-search-input {
                width: 100%;
            }
        }

        /* Override mobile menu styles from existing CSS */
        .mobile-menu {
            display: none;
        }


/*-------------------------------------------*\ 
// SLIDER
\*-------------------------------------------*/

.slide img {
    border: 0;
    background: white;
    box-shadow: var(--homepage-slide-shadow, none);
}
.slider {
    margin-top: 0;
}

/*-------------------------------------------*\ 
// HOMEPAGE
\*-------------------------------------------*/
.homepage__secondary-callouts .callout__image {
    box-shadow: none;
}
@media screen and (min-width: 1024px) {
	.products.products--grid {
    	grid-template: auto/repeat(4, 1fr);
	}
	.homepage__secondary-callouts .callouts {
    	grid-template: auto/repeat(4, 1fr);
	}
	.homepage__callouts .callouts {
    	grid-template: auto/repeat(5, 1fr);
	}
}
@media screen and (max-width: 1023px) {
	.homepage__callouts .callouts {
    	grid-template: auto/repeat(5, 1fr);
	}
}
.homepage__callouts .callout {
    box-shadow: none !important;
}






/*-------------------------------------------*\ 
// FAQ
\*-------------------------------------------*/

.topic {
    font-weight: 700;
    color: #e96958;
    text-transform: uppercase;
    font-size: 16px;
}

/*-------------------------------------------*\ 
// HOMEPAGE CALLOUTS HOVER EFFECT
\*-------------------------------------------*/

  .callout {
    grid-template-areas:
        "image"
        "title"
        "info";
	background-color:#fff;
}
.callout:hover {
      transition: 1.2s ease;
}


.callout__image img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
    transition: 1s ease;
    -webkit-filter: brightness(100%);
}
.callout__image {
    overflow: hidden;
}
.callout__image img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
      -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    background: radial-gradient(#00000026 50%, #000000b8);
    backdrop-filter: opacity(3.5);
    box-shadow: 0 19px 38px rgba(#000, 0.3), 0 15px 12px rgba(#000, 0.2);
    transition: 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transform-origin: center center;
}


/*-------------------------------------------*\ 
// HOMEPAGE SECONDARY CALLOUTS
\*-------------------------------------------*/
.homepage__secondary-callouts .callout__subtitle {
    position: relative;
  
    padding: 0;
    background: none;
    color: black;
font-size: 14px;
    pointer-events: none;
    /* border-bottom-left-radius: var(--homepage-secondary-callout-subtitle-border-radius, 0); */
    padding-top: 10px;
}

.homepage__secondary-callouts .callout__title {
    text-align: left;
}
.circle {
width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
}
.colorswatches {
    margin-top: 10px;
}

.homepage__callouts h2,
.homepage__secondary-callouts h2 {
    margin-top: 78px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
}
.homepage__callouts h2 {

    margin-top: 38px;
}
.callout__title a {
    font-size: 20px;
    font-weight: 600;
}

/*-------------------------------------------*\ 
// CATEGORY STYLE
\*-------------------------------------------*/
/* BEGINNING OF CATEGORY STYLE #3 */
  .categories {
    grid-template: auto/repeat(5, 1fr);
}
.category {
    grid-template-areas:
        "image"
        "title"
        "info";
	background-color:#ffff;
}
.category__copy {
    padding-left: 1vw;
}

.category__cta {
    display: none;
    height: 0px;
}




.category__image img {
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
    display: block;
    transition: all 1s ease;
    transform-origin: center center;
      transform: scale(1);
}

.category__image img:hover {
    transform: scale(1.05);
    opacity: 1;
      transition: 1s ease;
    -webkit-filter: brightness(100%);
}
  /* END OF CATEGORY STYLE #3 */

.categories + .categories.subcategories {
    display: none;
    width: 100%;
}


/*-------------------------------------------*\ 
// FOOTER
\*-------------------------------------------*/


footer ul {
    margin: 0px;
    padding: 0px;
}
.footer-section {
    background: var(--primaryBg);
    position: relative;
    margin-top: 50px;
}
.footie-container {
  padding: 2em 4em;
}
.footie-top-row {
  text-align: center;
  display: grid;
  grid-row-gap: 25px;
  grid-column-gap: 25px;
  grid-template-areas: 'box1 box2 box3';
}
@media screen and (max-width: 1080px){
  .footie-top-row {
      grid-template-areas:
          'box1'
          'box2'
          'box3';
  }
.sticky li {
        display: block;
    color: white;
	}
}
.footer-cta {
    border-bottom: 1px solid var(--borderLine);
    padding: 35px 0 50px 0;
}
.single-cta i {
    color: var(--hoverColor) !important;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}
.cta-text {
    padding-left: 55px;
	  text-align:left;
}

.cta-text h4 {
    color: var(--primaryText);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}
.cta-text span {
    color: var(--secondaryText);
    font-size: 15px;
overflow-wrap: anywhere;
}
.footer-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
    max-width: 300px;
}
.footer-text {
    width: 100%;
    max-width: 420px;
}
.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--secondaryText);
    line-height: 28px;
}
.footer-social-icon span {
    color: var(--primaryText);
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 20px;
}
.footer-social-icon a {
    color: var(--primaryText);
    font-size: 16px;
    margin-right: 15px;
}
.footer-social-icon i {
    text-align: center;
    border-radius: 50%;
	  width:25% !important;
}
li.sm-list-item {
    width: 12% !important;
}
.footie-row {
  display: grid;
  grid-row-gap: 25px;
  grid-column-gap: 25px;
  grid-template-areas: 'col1 col2 col3';
}

@media screen and (max-width: 1080px){
  .footie-row {
      grid-template-areas:
          'col1'
          'col2'
          'col3';
  }
.footie-bottom-row {
    display: block !important;
}
.footer-menu ul {
    float: none !important;
}
.footer-menu li {
    margin: 10px  20px 5px 0 !important
}
}

@media screen and (min-width: 1080px) {
.footer--infoBox {
    margin-left: 20%;
}
.footer--column,
.footer--infoBox {
    width: 27vw;
}


}
header {
    overflow-x: hidden;
	overflow-y:hidden;
    width: 100%;
    box-shadow: 3px 3px 3px #79797942;
}
.footer-widget-heading h3 {
  color: var(--primaryText);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--hoverColor);
}
.footer-menu ul {
    float: right;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a{
  color: var(--hoverColor);
}
.footer-menu li a {
  font-size: 14px;
  color: var(--secondaryText);
}
.footer-widget ul li {
    display: inline-block;
    float: left;
    margin-bottom: 12px;
    width: 50%;
}
.footer-widget ul li a:hover{
    color: var(--hoverColor);
}
.footer-widget ul li a {
    color: var(--secondaryText);
    text-transform: capitalize;
}
.subscribe-form {
    position: relative;
    overflow: hidden;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
}
.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: var(--secondaryBg);
    border: 1px solid var(--secondaryBg);
    color: var(--primaryText);
}
.subscribe-form button {
    position: absolute;
    right: 0;
    background: var(--hoverColor);
    padding: 13px 20px;
    border: 1px solid var(--hoverColor);
    top: 0;
}
.subscribe-form button i {
    color: var(--primaryText);
    font-size: 22px;
    transform: rotate(-6deg);
}
.footie-bottom-row {
    display: grid;
    grid-row-gap: 25px;
    grid-column-gap: 25px;
    grid-template-areas: 'col1 col2';
}
.copyright-area{
    background: var(--secondaryBg);
}
.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: var(--secondaryText);
}
.copyright-text p a{
    color: var(--hoverColor);
}
.footer-menu .cc-list li {
  width: 30px;
}




/*-------------------------------------------*\ 
// PRODUCT LIST PAGE
\*-------------------------------------------*/
.products.products--grid .product__info * {
    font-weight: revert;
}
.product__title h3 {
    font-size: 20px;
}
.products.products--grid .product__cta .button {
    display: none;
}
.products.products--grid .product__cta {
    border-top: none;
}

.circle.red {
background-color: red;
}
.circle.heathergrey {
background-color: #565b64;
}
.circle.grey {
background-color: #8c8a89;
}
.circle.olive {
background-color: #6c6953;
}
.circle.black {
background-color: #000;
}
.circle.white {
background-color: #fff;
border:1px solid black;
}
.circle.navy {
background-color: #3d4858;
}
.circle.blue {
background-color: #2a317d;
}
.circle.space {
background-image: url('https://demo.liftoff.shop/images/assets/solarsystem1.jpg');
    background-size: cover;
}
.circle.invader {
background-image: url('https://demo.liftoff.shop/images/assets/invadersreturn.jpg');
    background-size: cover;
}
.circle.liftoff {
background-image: url('https://demo.liftoff.shop/images/assets/shuttlelaunch.jpg');
    background-size: cover;
}
.products.products--grid .product__info {
    display: grid;
    grid-template: 4fr auto/9fr;
}
.product__title h3 {
    font-size: 18px !important;
}
a.productLink, p {
    color: #000;
}
.category__image {
    grid-area: image;
    overflow: hidden;
}
.products.products--grid .product__cta {
    border-top: none;
    display: none;
}






/*-------------------------------------------*\ 
// PAGEFLEX CUSTOMIZE PRODUCT PAGE
\*-------------------------------------------*/
.accordion__panel__header {
    border-radius: 5px;
    border: 1px solid var(--divider-color);
    background: #2c2457;
    padding: var(--half-gutter) var(--half-gutter);
}


/*-------------------------------------------*\ 
// STICKY PRODUCT IMAGES
\*-------------------------------------------*/
@media all and (min-width:771px) {
.product-landing .product__images {
    position: sticky;
    top: 30px;
}
}
/*-------------------------------------------*\ 
// PRODUCT LANDING PAGE
\*-------------------------------------------*/
@media all and (min-width:771px) {
.ogrid .product .info {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    align-content: start;
}
.product-landing .product__info {
	display: grid;
    grid-template: auto auto 1fr/1fr;
    grid-template-areas:
        "options"
        "pricing"
        "details";
}
.product-landing .product__info > * {
    grid-template: auto auto 1fr/1fr;
    display: grid;
    grid-template-areas:
        "quantity"
        "cost"
        "addtocart";
}
.product__details {
    grid-area: details;
}
.product__options.form {
    grid-area: options;
}
button.button.button--theme--primary.btnCTA.btnAddToCart.noClickOnEnter {
    grid-area: addtocart;
}
.estimated-cost {
    grid-area: cost;
}

.product-landing .product__images img {
    display: block;
    width: 100%;
    max-width: 100%;
    float: left;
    display: inline-block;
    padding-right: 20px;
}
.product-landing .product__images .img-wrap {
    position: relative;
    width: 75%;
    float: right;
}
.product-landing .product__images {
    grid-template-columns: repeat(auto-fit, minmax(1fr, auto));
    display: inline-block;
}
.product-landing .product__images ul {
    grid-template: auto/repeat(1, 3fr);
}
.product-landing .product__ordering *:not(.button) + .button {
    margin-top: var(--gutter);
    width: 100%;
    padding: 15px;
}
.product-landing .estimated-cost .cost {
    display: inline-block;
    float: left;
    font-size: 30px;
    font-weight: 400;
}
span.estimated-cost-label.upcharge-price-label {
    min-width: fit-content !important;
}
.estimated-cost-label.unit-price-label {
    display: none;
}
.estimated-cost-label.cost-label {
    display: none;
}

.product-landing {
    --product-grid-template: auto / 2.5fr 2fr;
}
}



/*-------------------------------------------*\ 
// DROPDOWN DETAILS - PRODUCT PAGE
\*-------------------------------------------*/
details[open] summary {
    border-bottom: none;
    margin-bottom: 0.5em;
    border-radius: 0;
    font-weight: 600;
}
details summary {
    cursor: pointer;
    margin: -0.5em -0.5em 0;
    background: var(--details-background-color, #eee);
    padding: 0.5em;
    border-radius: 4px;
}
details {
    --details-border-color: var(--divider-color, #ddd);
    border: none;
    border-radius: 4px;
    overflow: hidden;
    padding: 0.5em 0.5em 0;
    box-shadow: none;
}




/* BEGINNING OF CATEGORY STYLE #6 */
  .homepage__callouts .callout {
    overflow: hidden;
}
.homepage__callouts .callout img {
	display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    transition: 1s ease;
    	-webkit-transition: all 1s ease;
    	-moz-transition: all 1s ease;
    	-o-transition: all 1s ease;
    	-ms-transition: all 1s ease;
    transform-origin: center center;
    opacity: 1;
}

.homepage__callouts .callout img:hover, .homepage__callouts .callout:hover img {
    -webkit-filter: brightness(50%);
    box-shadow: 0 19px 38px rgba(#000, 0.3), 0 15px 12px rgba(#000, 0.2);
}
.homepage__callouts .callout {
    grid-template-areas:
        "image"
        "title"
        "info";
  box-shadow: 0 19px 38px rgba(#000, 0.3), 0 15px 12px rgba(#000, 0.2);
}
.homepage__callouts .callout .callout-cta {
    grid-area: title;
    text-align: var(--category-title-text-alignment, left);
    font-size: var(--category-title-font-size, 1.2rem);
    color: var(--category-title-text-color, black);
    text-align: left;
    padding-left: 1vw;
  		-moz-transition:all .5s ease-in-out;
		-o-transition:all .5s ease-in-out;
		-ms-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
}
	.homepage__callouts .callout{
		float: left;
		padding: 0px;
		position: relative;
		overflow: hidden;
	}
.homepage__callouts .callout-title{
  	display:none;
}
.homepage__callouts .callout:hover .callout-info, .homepage__callouts .callout:hover .callout-title{
	opacity: 1;
	transform: translateY(-185px);
		-webkit-transform:translateY(-185px);
		-moz-transform:translateY(-185px);
		-ms-transform:translateY(-185px);
		-o-transform:translateY(-185px);
          		-webkit-transition:all .5s ease-in-out;
		-moz-transition:all .5s ease-in-out;
		-o-transition:all .5s ease-in-out;
		-ms-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
	display:block;
	z-index:9999;
}
  .homepage__callouts .callout .cta, .homepage__callouts .callout__title a {
    color: #fff !important;

}
.homepage__callouts .callout img{
	margin: 0px;
	padding: 0px;
	float: left;
	z-index: 4;
}
.homepage__callouts .callout .category__info{
	cursor: pointer;
	opacity: 0;
	top:300px;
    padding-left:1vw;
}
.homepage__callouts .callout .category__copy{
	z-index: 10;
	color: #fff;
	position: absolute;
    height: fit-content;
  	width: 80% !important;
}

   .homepage__callouts .callout:hover .homepage__callouts .callout figcaption .cta{
	opacity: 1;
	transform: translateY(-100px);
          		-webkit-transition:all .5s ease-in-out;
		-moz-transition:all .5s ease-in-out;
		-o-transition:all .5s ease-in-out;
		-ms-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
	display:block;
	z-index:9999;
}

.homepage__callouts .callout figcaption .cta {
    background: hsl(0deg 0% 50% / 0%));
}

.homepage__callouts .callout a.img-wrap:hover + figcaption .cta {
    background: #ff000000;
}
.homepage__callouts .callout figcaption .cta {
    background: #ff000000;
    z-index: 999;
}
.homepage__callouts .callout figcaption {
    bottom: -75%;

}.homepage__callouts .callout .img-wrap {
  position: relative;
  overflow: hidden;
}


.homepage__callouts .callout .img-wrap img {
  transition: filter 0.3s ease;
}

.homepage__callouts .callout .img-wrap:hover img {
  filter: brightness(80%);
}
.homepage__callouts .callout figcaption .cta {
    text-transform: uppercase;
    font-size: 1.2em;
font-weight: 600;
}
.subcategorySelector {
    text-align: center;
}
a.button.button.button--theme--primary {
 padding: 12px 10px !important;
}
.lp-slide .lp-description {
    display: none;
}
.lp-cta a.button.button--small.button--theme--secondary {
    color: #fff;
    border: 0 !important;
    padding: 10px 20px;
}
.lp-cta a.button.button--small.button--theme--secondary:hover {
color: #f96639 !important;
}
.lp-slider-container .owl-stage {
    place-items: start;
}
.ajs-body .linked-product-description {
    display: none;
}
.ajs-header {
    background-color: #2c2457 !important;
    color: #fff;
}
.alertify .ajs-footer .ajs-buttons.ajs-primary {
    text-align: center;
}
.ajs-button {
    border: 2px solid black;
    width: 40%;
}
.linked-product--modal {
    grid-template: auto / 88px 1fr !important;
    place-items: center;
}
button.ajs-button.ajs-cancel.tpHookCancel {
    background-color: red;
    color: white;
}
.alertify .ajs-footer {
    background-color: #f6f6f6;
}
.ajs-content div {
    border: 0 !important;
    margin-bottom: 0 !important;
}
.ajs-button {
    border: 0 !important;
    width: 45%;
    background-color: #fff;
    padding: 12px !important;
    text-transform: uppercase;
}
.lp-name {
    min-height: 50px;
}
.progress-bar li.active::after {
    border-top-color: #f66943;
}
.progress-bar li.active {
    border-top: 4px solid #f96639;
}
/*  Please Read
/*
/*  The following is just an example! If you're inserting the GridFlex section into 
/*  an area that is controlled by a Grid Area Template, you should update 
/*  the Grid Template Areas accordingly. In this example, we have two sections 
/*  called Gridflex-1 and Gridflex-2, which we have inserted between the 
/*  existing sections called Callouts and Secondary Callouts within the 
/*  .container--homepage div. Therefore, we need to specify these sections, 
/*  along with the existing default layout sections, in the desired order of 
/*  appearance. Apply this concept to your specific use case. 
*/
.container--homepage {
    grid-template-areas:
        var(--homepage-grid-template-areas,
        "callouts"
        "gridflex"
        "secondary-callouts"
        "content");
}


/* BEGINNING OF FLEXGRID */
body {
  overflow-x:hidden;
width: 100%;
}

.boxed-section {
    background-color: var(--primary-bg);
    width: 100%;
    padding: 5%;
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    margin-top: 5rem;
    position: relative;
    height: 420px;
}
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}
.boxed-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.boxed-section h2, .boxed-section p {
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgb(0 0 0);
    font-weight: 500;
    margin: 15px;
}
.boxed-section a {
    padding: 20px;
    display: block;
    margin: 5% auto;

}

@media (max-width: 610px) {
    .boxed-section {
        width: 106%;
        margin-left: -3%;
    }
}
@media (min-width: 611px) {
    .boxed-section {
        width: 103%;
        margin-left: -2%;
    }
}
@media (min-width: 1440px) {
.boxed-section {
    width: 160%;
    margin-left: -30%;
}
}
@media (max-width: 1020px) {
    .boxed-section a {
        width: 60%;
    }
}
/* END OF FLEXGRID */

.container#bodyContainer:has(.login) {
  margin-top:0px;
width: 100%;
margin-bottom: -50px;
}
.owl-theme .owl-nav {
    margin-bottom: -.8em !important;
}
.lp-slider-container {
    background: #f1f1f1 !important;
}
p#btnDownloadProof a.button.button--theme--primary {
    border: 1px solid #f96639 !important;
    background: white !important;
    color: #f96639 !important;
}
.configuration-wrapper h1 {
font-size: var(--h1-font-size, var(--font-size-xxxl, 2.488rem));
font-weight: 500;
}
table thead th {
    background: var(--hoverColor);
}
.callout:hover .callout__title a {
  color: #f96639 !important;
}
a#btnSearch {
    position: relative;
    right: 35px;
    color: #2c2457;
}
.search-box {
width: fit-content;
    margin-right: 5rem;
    display: inline-flex;
    justify-content: center;
}
.search-form input {
    background-color: #f7f7f794;
    border-color: #d7d7d7;
    border-width: 1px;
}
.products.products--list .product {
    grid-template: auto/2fr 4fr;
}
.products.products--list .product .img-wrap img {
    max-height: unset;
    object-fit: cover;
}
.product__cta {
    margin-top: 20px;
}
.products--list .product__title a {
    font-weight: 600;
    color: black;
}
.products--list .product__copy strong {
    text-transform: uppercase;
}
@media (max-width: 2771px) {
a.button.button--theme--secondary.button--small.btnViewCart {
    position: relative !important;
    top: 8px !important;
}
a.button.button--theme--secondary:link, button.button.button--theme--secondary:link, input[type=submit].button.button--theme--secondary:link {
    color: #fff !important;
    padding: 5px;
    margin-top: 5px;
    min-width: 100px;
}
button.button.button--small {
    min-width: 100px !important;
    padding: 5px !important;
}
}
.cart__item.bundle .item__details {
    display: contents;
}

nav.mobile-menu.slide-down.shown {
    display: block !important;
}


.top-nav {
    text-align: right;
    padding: 8px 10vw;
    width: 100%;
    background: var(--primary-bg);

}
.top-nav ul, .top-nav li {
    list-style: none;
    color: var(--primary-text);
    display: inline-block;
    padding: 0 2vh;
    font-size: small;
max-width: 1200px;
    margin: 0 auto;

}
.top-nav a, .top-nav a:link {
    color: var(--primary-text);
}

@media (max-width: 1080px) {
  .footie-container {
    padding: 1em 1em;
    width: 96%;
  }
  .top-nav li:not(li.login-link--mobile) {
    display: none;
  }
  .subscribe-form {
     display: none;
  }
}

.footer--infoBox {
    margin-left: 10%;
}
.footer--column, .footer--infoBox {
    width: fit-content;
    margin: auto;
}
.cta-text span {
    overflow-wrap: break-word;
}
.footer-section {
    display: inline-table;
}
@media (max-width: 1080px) {
.hoverZoomContainer {
    display: none;
}
}
.welcome-true img {
    width: 100%;
}

button.button.button--large.button--theme--primary.button--small.btnCopyToCurrentCart, a.button.button--theme--secondary.button--small.btnViewCart {
    color: var(--LO-Orange) !important;
    border-radius: 1px;
    border: 2px solid var(--LO-Orange) !important;
    background: white !important;
}
img.slider-login {
    min-width: 100vw;
}
.cart__item.bundle .bundle__info a:link, .cart__contents a:not(.button):visited { 
    color: #4f4f4f;
}
a.button.button--theme--secondary.btnSplitShipping {
    color: white;
}
a.button.button--theme--secondary.btnSplitShipping:hover {
    color: var(--LO-Orange);
}
.cart__item .item__details h2 {
    font-weight: 800;
}


/* ============================== *
 * SLIDE OUT TRAYS (MOBILE MENU)
 * ============================== */
.slide-tray {
    position: fixed;
    top: 0;
    height: 100%;
    width: var(--slide-tray-width, 55%);
    background-color: var(--slide-tray-background-color, #fff);
    z-index: 1001;
    box-shadow: var(--slide-tray-shadow, 2px 0px 10px rgba(0, 0, 0, 0.2));
    transform: translateX(-100%); 
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-y: auto;
}

.left-tray {
    left: 0;
    transform: translateX(-105%);
}

.right-tray {
    right: 0;
    transform: translateX(100%);
}

.left-tray, .right-tray {
    z-index: 1001; 
}

.slide-tray.active {
    transform: translateX(0);
}

.tray-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--tray-overlay-background, rgba(0, 0, 0, 0.5));
    z-index: 1000;
    transition: opacity 0.4s ease out;
    opacity: 0;
}

.tray-overlay.active {
    display: block;
    z-index: 999999;
    opacity: 1;
}

.left-tray.active {
    left: calc(-4.6875 * var(--gutter, 1rem));
    transform: translateX(-100%);
    z-index: 9999999;
    padding-left: calc(1.5625 * var(--gutter, 1rem));
}

.right-tray.active {
    right: calc(-4.6875 * var(--gutter, 1rem));
    z-index: 9999999;
    padding-right: calc(2.8125 * var(--gutter, 1rem));
}

.left-tray.active, .right-tray.active {
    transform: translateX(0);
}  

.left-tray a, .right-tray a, .left-tray button, .right-tray button {      
    position: relative; 
}  

/* Tray Navigation Structure */
.tray.has-children > ul,
.tray2.has-children > ul,
.tray3.has-children > ul {
    display: none !important; 
}

.has-children.tray ul {
    position: relative;
}

.has-children.tray ul ul {
    left: 0;
    top: 0;
    background: var(--nav-tray-secondary-background, #d8d8d8);
    border-bottom: 1px solid var(--color-grey, grey);
    border-top: 1px solid var(--color-grey, grey);
}

.has-children.tray ul ul ul {
    background: var(--nav-tray-tertiary-background, #b9b9b9);
}

.tray.active > ul,
.tray2.active > ul,
.tray3.active > ul {
    display: block !important; 
}

.nav--site .has-children:hover > ul {
    display: block;
}

.slide-tray li a {
    color: var(--text-copy-color, black) !important;
    padding: 0 calc(1.875 * var(--gutter, 1rem));
    line-height: 3;
}

#leftTray ul, #rightTray ul {
    list-style: none;
    line-height: 3;
    font-size: var(--form-input-font-size, 18px) !important;
    letter-spacing: 2px !important;
    width: 100%;
    margin-left: 0em;
}

#leftTray nav {
    padding-left: calc(3.4375 * var(--gutter, 1rem));
    padding-top: calc(3.4375 * var(--gutter, 1rem));
}

#rightTray nav {
    padding-left: calc(3.4375 * var(--gutter, 1rem));
    padding-top: calc(3.4375 * var(--gutter, 1rem));
}

.has-children.tray ul {
    color: var(--text-copy-color, #000000) !important;
    background: var(--nav-tray-background, #ededed);
}

.has-children.tray:hover > a, 
.has-children.tray2:hover > a, 
.has-children.tray3:hover > a {
    color: #000 !important;
    background: var(--nav-tray-hover-background, #dd6220) !important;
}

.has-children.tray .has-children.tray2 > a::after, 
.has-children.tray .has-children.tray3 > a::after {
    content: "\f107" !important;
}

.has-children > a::after {
    margin-left: 10px;
    right: initial;
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    right: 8px; 
}
/* ============================== *
 * IDENTITY SELECTOR
 * ============================== */
.identity-selector {
    position: relative;
    display: inline-flex; 
    align-items: center; 
}

.identity-selector::after {
    content: '\25BC';
    position: absolute;
    right: calc(1.25 * var(--gutter, 1rem));
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--identity-selector-text-color, #323232);
    font-size: var(--font-size-s, 12px); 
    z-index: 9999;
}

.identity-selector:hover::after {
    color: var(--icon-button-background-color, #202020) !important;
}

.identity-selector select {
    height: var(--icon-button-size, 40px) !important;
    width: fit-content;
    padding: var(--quarter-gutter, 0.25rem) !important;
    font-size: var(--form-input-font-size, 18px) !important;
    letter-spacing: 2px !important;
    border: none !important;
    outline: none !important;
    transition: all 0.4s ease !important;
    padding-right: calc(2.8125 * var(--gutter, 1rem)) !important;
    background-color: var(--identity-selector-background-color, #f7f7f7) !important;
    padding-left: calc(1.5625 * var(--gutter, 1rem)) !important;
    appearance: none;
    background-size: 12px 12px;
    color: var(--identity-selector-text-color, #323232);
    border: 1px solid var(--identity-selector-border-color, #bdbdbd) !important;
    cursor: pointer;
    z-index: 1000;
    position: inherit;
    border-radius: 25px;
}   

.identity-selector select:hover {
    color: var(--text-copy-color, #454545);
}

.identity-selector select:focus {
    box-shadow: var(--shadow-standard, 0 2px 5px rgba(0, 0, 0, 0.2));
}

.identity-selector select option {
    background-color: var(--body-background-color, white); 
    color: var(--text-copy-color, black); 
    padding: var(--half-gutter, 0.5rem); 
    font-size: var(--font-size-s, 14px); 
}

.identity-selector select option:hover {
    background-color: var(--color-x-light-grey, #f0f0f0) !important;
}

.identity-selector select option:checked {
    background-color: var(--icon-button-background-color, #202020) !important;
    color: var(--icon-button-color, white); 
}

.identity-selector select option:focus {
    background-color: var(--color-light-grey, #e6e6e6) !important;
}

label#identitySelectorLabel {
    background-color: rgba(255, 255, 255, 0.11);
    margin-right: 0px;
    border-radius: 25px 0 0 25px;
}