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

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

*:not(.fa) {
  font-family: 'Geist', sans-serif;
}

.container#bodyContainer {
  background: transparent;
}

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: #001D4E;
}

.page__title h1 {
  font-weight: 700;
  color: #001D4E;
  font-size: 32px;
}

.contact__title h1 {
  font-weight: 700;
  color: #001D4E;
  font-size: 32px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .page__title h1 {
    margin-top: 15px;
    font-size: 48px;
  }
}

@media screen and (min-width: 1024px) {
  .page__title h1 {
    margin-top: 15px;
    font-size: 56px;
  }
}

@media screen and (min-width: 1600px) {
  .page__title h1 {
    margin-top: 30px;
    font-size: 64px;
  }
}

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

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

  /* HIGHLIGHT/HOVER COLORS */
  --highlight-bg: #fff;
  --highlight-text: #00E0B8;

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

  /* MOBILE COLORS */
  --mobile-icon: #00E0B8;
  --mobile-bg: #001D4E;
  --mobile-text: #fff;
  --mobile-bg-highlight: #00E0B8;

  /* FOOTIE FOOTER */
  --primaryBg: #001D4E;
  --secondaryBg: #000E27;

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

  --borderLine: #fff;
  --inputField: #221e37;
  --hoverColor: #00E0B8;


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


  --primaryBg: #001D4E;
  --secondaryBg: #000E27;

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

  --borderLine: #fff;
  --inputField: #221e37;
  --hoverColor: #00E0B8;

  --divider-color: #d4d4d4;
}

/*-------------------------------------------*\ 
// BUTTON DEFAULT
\*-------------------------------------------*/
a.button.button--theme--primary,
button.button.button--theme--primary,
input[type=submit].button.button--theme--primary {
  background: #0051c2 !important;
  font-weight: 600;
  font-size: 18px !important;
  text-transform: none !important;
}

/*-------------------------------------------*\ 
// BUTTONS (GRADIENT TO WHITE HOVER) 
\*-------------------------------------------*/
.homepage__secondary-callouts .callout a:link:hover,
.homepage__secondary-callouts .callout a:visited:hover {
  color: var(--highlight-text) !important;
}

button.button.button--theme--primary,
.subscribe-button,
a.button.button--theme--primary,
button.button.button--theme--primary,
input[type=submit].button.button--theme--primary,
.error-frame .button,
a.button.button--theme--secondary,
button.ajs-button.ajs-cancel.tpHookCancel {
  min-width: 130px;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 6px;
  z-index: 0;
  background: #0051c2;
  overflow: hidden;
  /* border: 2px solid #fff !important; */
  border: 0;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

button.button.button--theme--primary:hover,
.subscribe-button:hover,
a.button.button--theme--primary:hover,
button.button.button--theme--primary:hover,
input[type=submit].button.button--theme--primary:hover,
.error-frame .button:hover,
a.button.button--theme--secondary:hover,
button.ajs-button.ajs-cancel.tpHookCancel:hover {
  color: #fff;
  border-radius: 6px;
  /*border: 2px solid #001d4e !important;*/
}

button.button.button--theme--primary:hover:after,
.subscribe-button:hover:after,
a.button.button--theme--primary:hover:after,
button.button.button--theme--primary:hover:after,
input[type=submit].button.button--theme--primary:hover:after,
.error-frame .button:hover:after,
a.button.button--theme--secondary:hover:after,
button.ajs-button.ajs-cancel.tpHookCancel:hover:after {
  width: 100%;
}

button.button.button--theme--primary:after,
.subscribe-button:after,
a.button.button--theme--primary:after,
button.button.button--theme--primary:after,
input[type=submit].button.button--theme--primary:after,
.error-frame .button:after,
a.button.button--theme--secondary:after,
button.ajs-button.ajs-cancel.tpHookCancel:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  color: #01d4e;
  background-color: #001d4e;
}

/*-------------------------------------------*\ 
// BUTTON HOMEPAGE (WHITE TO GRADIENT HOVER) 
\*-------------------------------------------*/
.boxed-section a:hover {
  color: #f96639 !important;
}

.boxed-section a {
  min-width: 130px;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 1px;
  z-index: 0;
  background: #fff;
  overflow: hidden;
  color: var(--LO-Orange);
  text-transform: uppercase;
  text-align: center;
  background-color: #fff;
}

.boxed-section a:hover {
  color: #fff !important;

}

.boxed-section a:hover:after {
  width: 100%;
}

.boxed-section a:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  color: #fff;
  background: linear-gradient(90deg, #f2684d 0%, #a3509d 100%);
}

/*-------------------------------------------*\ 
// BUTTONS (WHITE TO GRADIENT HOVER) 
\*-------------------------------------------*/
.products.products--grid .product__cta .button {
  min-width: 130px;
  height: 40px;
  color: #fff !important;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 1px;
  z-index: 0;
  background: none;
  overflow: hidden;
  border: 2px solid #fff !important;
  color: var(--LO-Orange);
}

.products.products--grid .product__cta .button:hover {
  color: var(--LO-Orange) !important;
  border-radius: 1px;
}

.products.products--grid .product__cta .button:hover:after {
  width: 100%;
}

.products.products--grid .product__cta .button:after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s ease;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  color: var(--LO-Orange);
  background: #fff;
  border: 2px solid var(--LO-Orange);
}

/*-------------------------------------------*\ 
// CONTACT FORM
\*-------------------------------------------*/

.contact .form label {
  font-size: 18px;
}

.contact .form button,
.contact .form button:disabled {
  font-size: 18px !important;
  background: #0051C2 !important;
  color: #fff !important;
  border: none;
}

/*-------------------------------------------*\ 
// 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#productQuantity,
.product__options select {
  border: 1px solid #2c245700;
  background: #d9d9d95e;
}

label#productQuantityLabel,
.product__options label {
  text-transform: uppercase;
  font-size: smaller;
  font-weight: 500;
}

/*-------------------------------------------*\ 
// 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) {

  .categories,
  .homepage__secondary-callouts .callouts,
  .products.products--grid {
    grid-gap: 2rem !important;
  }

  .categories {
    grid-template: auto/repeat(4, 1fr);
  }

  .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 (min-width: 1200px) {

  .homepage__callouts .callouts {
    grid-gap: 2rem !important;
  }

  .categories,
  .homepage__secondary-callouts .callouts,
  .products.products--grid {
    grid-gap: 3rem !important;
  }

}

@media screen and (max-width: 1023px) {
  .categories {
    grid-template: auto/repeat(3, 1fr);
  }

  .products.products--grid {
    grid-template: auto/repeat(3, 1fr);
  }

  .homepage__callouts .callouts {
    grid-template: auto/repeat(3, 1fr);
  }

  .homepage__secondary-callouts .callouts {
    grid-template: auto/repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .categories {
    grid-template: auto/repeat(2, 1fr);
  }

  .products.products--grid {
    grid-template: auto/repeat(2, 1fr);
  }

  .homepage__callouts .callouts {
    grid-template: auto/repeat(2, 1fr);
  }

  .homepage__secondary-callouts .callouts {
    grid-template: auto/repeat(2, 1fr);
  }
}

@media screen and (max-width: 375px) {
  .categories {
    grid-template: auto/repeat(1, 1fr);
  }

  .products.products--grid {
    grid-template: auto/repeat(1, 1fr);
  }

  .homepage__callouts .callouts {
    grid-template: auto/repeat(1, 1fr);
  }

  .homepage__secondary-callouts .callouts {
    grid-template: auto/repeat(1, 1fr);
  }
}

.homepage__callouts .callout {
  box-shadow: none !important;
}


/*-------------------------------------------*\ 
// MEGAMENU - FIXED VERSION
\*-------------------------------------------*/

.header-wrapper {
  background: var(--primary-bg);
  margin-top: -10px;
  margin-bottom: -10px;
  padding-bottom: 0px !important;
  border-bottom: 0px;
}

header.header--site {
  padding-left: 50px;
  padding-right: 50px;
}

header.header--site a,
header.header--site a:link,
header.header--site a:visited,
header.header--site a:active,
header.header--site p {
  color: var(--primary-text);
}

header.header--site a:hover {
  color: var(--highlight-text) !important;
}

.top-nav {
  text-align: right;
  padding: 15px 8vw;
  width: 100%;
}

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

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

.top-nav i {
  color: var(--primary-text) !important;
  transition: all 300ms ease;
}

.top-nav a:hover,
.top-nav a:hover i,
.top-nav i:hover {
  color: #00E0B8 !important;
}

@media all and (max-width: 769px) {
  .top-nav {
    text-align: center;
  }
}

/****** LOGO ******/
.main-logo-space {
  z-index: 9998;
  position: absolute;
  left: 0;
  padding-left: 30px;
  padding-right: 1rem;
  background: #fff;
}

.main-logo-space img {
  max-width: fit-content;
  height: 24px;
  margin-top: 8px;
  display: block !important;
}

/****** STICKY LOGO ******/
.sticky-logo {
  position: absolute;
  top: 0;
  left: 2%;
  visibility: hidden;
  display: none;
}

.sticky-logo img {
  max-width: fit-content;
  z-index: 99999;
  position: absolute;
  top: 5px;
  height: 50px;
}

.visible-title {
  visibility: visible;
}

@media all and (max-width: 769px) {
  .sticky .main-logo-space img {
    max-width: 268px;
    max-width: 180px !important;
    z-index: 99999;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/******* STICKY MENU ******/
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky {
  width: 100%;
  height: 60px;
  z-index: 10;
  background: var(--secondary-bg) !important;
  text-align: right;
}

.sticky li {
  display: inline-block;
}

.sticky a {
  display: inline-block;
  font-weight: 500;
  font-size: large;
  line-height: 1.8;
  color: #001D4E;
}

.sticky .mega-feature a {
  line-height: 0;
}

/****** MEGA MENU DROPDOWN ******/
.mega-dropdown {
  background-color: var(--primary-bg);
  position: absolute;
  width: 100%;
  left: 0;
  display: flex;
}

.mega-feature {
  border: 0;
  width: 300px;
  float: right;
  /* box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.3); */
}

.mega-feature:hover {
  border-color: var(--highlight-bg);
  background-color: #fff;
  /* box-shadow: 4px 4px 4px #00000054; */
  transition: all .3s ease;
}

.megamenu_container {
  transition: all 0.2s ease;
  position: relative;
  z-index: 9999;
}

.megamenu {
  list-style: none;
  padding: 0;
  position: relative;
  margin: 0;
  z-index: 10;
  font-size: 14px;
  line-height: 1;
}

.megamenu>li>a {
  font-size: 1.2em;
  text-decoration: none;
  display: block;
  padding: 15px;
}

.megamenu li {
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
}

.megamenu li:last-child {
  margin-right: 3vw;
}

.megamenu .col_3 {
  float: left;
  display: inline;
  position: relative;
  margin-left: 2%;
  width: 29.33%;
}

.megamenu .col_3.links {
  width: 66.67%;
}

.megamenu_container .megamenu>li:hover,
.megamenu_container .megamenu>li.active {
  background: var(--highlight-bg);
  opacity: 1.0;
  transition: all .3s ease;
}

.megamenu_container .megamenu li.noactive {
  background: none;
  box-shadow: none;
}

.megamenu h3 {
  padding-left: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
  color: #001d4e;
}

.megamenu p {
  line-height: 1.8;
  margin-top: 10px;
  color: var(--megamenu-text);
}

.megamenu_container .megamenu>li:hover>a {
  color: var(--hoverColor) !important;
  transition: all .3s ease;
}

.megamenu img {
  height: auto;
  border: none;
}

.dropdown_fullwidth a {
  color: var(--megamenu-links);
  font-size: 18px;
  padding: 6px 20px;
}

.dropdown_fullwidth a:hover {
  color: var(--hoverColor) !important;
  background-color: var(--highlight-bg);
  transition: all .3s ease;
}

.dropdown_fullwidth a:hover>p {
  color: var(--highlight-text);
  background-color: var(--highlight-bg);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
}

.megamenu_container .megamenu li .dropdown_fullwidth {
  background: var(--megamenu-bg);
  text-align: left;
}

li.mega-li {
  display: block;
  width: max-content;
}

ul.list_unstyled {
  display: grid;
  grid-template-rows: repeat(3, min-content);
  grid-auto-flow: column;
  margin-top: 15px;
  width: fit-content;
}

.col_3_feature a {
  display: block;
  margin-top: 0;
  background-color: var(--megamenu-border);
  color: var(--megamenu-links);
  padding: 0;
}

/* FIXED DROPDOWN POSITIONING */
.megamenu li .dropdown_fullwidth {
  position: fixed !important;
  left: -9999em !important;
  top: -9999em !important;
  width: 100% !important;
  z-index: 99999 !important;
  padding: 30px !important;
  /* box-shadow: 2px 2px 2px 2px hsl(207deg 45% 15% / 23%) !important; */
}

/* Showing Drop Down on Mouse Hover - CORRECTED */
.megamenu li:hover .dropdown_fullwidth {
  top: 60px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  box-shadow: none !important;
  border-left: none;
  border-right: none;
}

.megamenu li .dropdown_right {
  right: 0;
}

.megamenu li:hover .dropdown_right {
  top: 45px;
  left: auto;
  right: 0;
}

.sticky .megamenu li:hover .dropdown_fullwidth {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

/* MOBILE MENU TOGGLE */
.mobile-menu,
.mobile-toggle {
  display: none;
}

.mobile-toggle .fa-times,
.mobile-toggle .fa-xmark {
  display: none;
}

.mobile-toggle.open .fa-bars {
  display: none;
}

.mobile-toggle.open .fa-times,
.mobile-toggle.open .fa-xmark {
  display: inline;
}

.toggle-mobile {
  display: none;
}

.toggle-mobile.active {
  background-color: #0e3658;
  z-index: 9999;
  position: fixed;
  width: 87%;
  padding: 15px;
  margin: 31px 0;
}

@media all and (min-width: 1200px) {
  .mobile-toggle {
    display: none !important;
  }

  .desktop-toggle {
    display: block !important;
  }

  ul.megamenu {
    padding-right: 15px;
  }
}

@media all and (max-width: 1199px) {
  #mobile-menu-toggle {
    display: block;
    margin-top: 0;
    color: #fff;
    padding-top: 30px;
  }
}

@media all and (max-width: 1199px) {
  nav.sticky {
    position: static;
  }

  .mobile-toggle {
    display: inline-block !important;
    float: right;
    right: 35px;
    top: 25px;
    position: relative;
    z-index: 999999;
  }

  .desktop-toggle {
    display: none !important;
  }

  .mobile-menu.active {
    display: block;
    z-index: 999;
    position: absolute;
    width: 105vh;
    margin-top: 18px;
    text-align: center;
  }

  .mobile-menu.slide-down {
    transition: max-height 0.3s ease-in-out;
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 49px;
    padding-left: 0;
  }

  .mobile-menu a {
    line-height: 2.5;
    width: 100%;
  }

  .sticky .mobile-menu a {
    color: white !important;
  }

  .sticky .mobile-menu a:hover {
    color: white !important;
  }

  .fa {
    color: var(--mobile-icon) !important;
  }

  .mobile-toggle .fa {
    color: #0051C2 !important;
  }

  .mobile-menu.active li:hover {
    background-color: var(--mobile-bg-highlight);
  }

  .mobile-menu.active a {
    color: var(--mobile-text);
  }

  .mobile-menu ul {
    background-color: var(--mobile-bg);
    margin: 42px 0% 0;
    text-align: center;
  }

  .mobile-menu.active li {
    display: block;
    line-height: 3em;
  }

  .mobile-menu.active {
    display: block;
    z-index: 999;
    position: absolute;
    width: 100%;
  }
}

@media all and (max-width: 1199px) {
  .sticky .mobile-toggle {
    float: right;
    position: relative;
    right: 30px;
    top: 12px;
    font-size: 28px;
  }
}

@media all and (max-width: 984px) {
  .megamenu img {
    max-width: 96%;
    height: auto;
  }
}

@media all and (min-width: 480px) and (max-width: 767px) {
  .megamenu_container .megamenu>li>div>.responsive_halfs {
    width: 42%;
  }
}

@media all and (min-width: 768px) and (max-width: 984px) {
  .megamenu_container .megamenu>li {
    margin: 0 8px 0 0;
  }

  .megamenu_container .megamenu>li>a {
    padding: 16px 10px;
  }
}

@media all and (max-width: 568px) {
  .megamenu_container {
    height: auto;
  }

  .megamenu_container .megamenu>li,
  .megamenu_container .megamenu>li:hover {
    float: none;
    width: auto;
    padding-right: 0;
    margin-right: 0;
  }

  .megamenu_container .megamenu li:hover .dropdown_fullwidth {
    top: auto;
    left: -1px;
  }

  .megamenu_container .megamenu .col_3 {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
}

/* Spacing Fix */
.container#bodyContainer {
  margin-top: 10px;
}

.container--homepage {
  display: block;
}

.container.container--footer {
  margin: auto;
}

@media screen all and (min-width:1440px) {
  .container {
    margin: 0;
    width: 99%;
  }
}

/* END OF MEGA MENU */


/* HEADER OVERFLOW FIX - CRITICAL */
header {
  /* overflow-x: hidden;
  Removed overflow-x: hidden that was clipping dropdown */
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0,0,0,.1);
}


/*-------------------------------------------*\ 
// 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;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
}


.callout__image img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  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;
}

.colorswatches .circle,
.c_s .cir {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
}

.colorswatches .circle .second-color,
.c_s .cir .sc {
  width: 50%;
  height: 100%;
  top: 0;
  left: 50%;
  position: absolute;
}

.colorswatches,
.c_s {
  margin-top: 10px;
}

.cir.black {
  background: #000;
}

.sc.white {
  background: #fff;
}

.homepage__callouts h2,
.homepage__secondary-callouts h2 {
  margin-top: 120px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

@media screen and (min-width: 1200px) {
  .homepage__callouts h2 {
    margin-bottom: 30px;
  }
}

.homepage__callouts h2 {
  margin-top: 40px;
}

/*-------------------------------------------*\ 
// CATEGORY STYLE
\*-------------------------------------------*/
/* BEGINNING OF CATEGORY STYLE #3 */
.category {
  grid-template-areas:
    "image"
    "title"
    "info";
  background-color: #ffff;
  margin-bottom: 40px;
}

.category__copy {
  padding-left: 1vw;
}

.category .category__title,
.category__cta {
  display: contents;
  height: 0px;
}

.category__cta {
  display: none;
}

.category .category__title a:link,
.category .category__title a:visited,
.category .category__title a:hover,
.category .category__title a:active {
  color: #001D4E;
  font-weight: 500;
}

.category__image img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
  display: block;
  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-filter: brightness(100%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  transform-origin: center center;
  transform: scale(1);
}

.category__image img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  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%;
}


#bulkOrderingView {
  max-width: 900px;
  margin: auto;
}


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


footer ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: var(--primaryBg);
  position: relative;
  margin-top: 80px;
}

@media screen and (min-width: 1600px) {
  .footer-section {
    margin-top: 120px;
  }
}

.footie-container {
  padding-top: 2em;
  padding-bottom: 2em;
}

.footie-top-row {
  text-align: center;
  display: grid;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  grid-template-areas: 'box1 box2 box3';
  /*justify-content: space-between;*/
}

@media screen and (max-width: 768px) {
  .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,
.cta-text a {
  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: 150px;
}

.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: 600;
  margin: 0 0 30px;
  position: relative;
}

.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;
}

.footer-social-icon a {
  transition: .3s;
  display: block;
  text-decoration: none;
}

.footer-social-icon .fa {
  color: var(--secondaryText) !important;
}

.footer-social-icon a:hover .fa {
  color: var(--hoverColor) !important;
}

li.sm-list-item {
  width: auto !important;
}

.footie-row {
  display: grid;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  grid-template-areas: 'col1 col2 col3';
  /*justify-content: space-between;*/
}

@media screen and (max-width: 768px) {
  .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;
  }
}

.footer-widget-heading h3 {
  color: var(--primaryText);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

.footer-widget-heading h3::before,
.footer-social-icon>span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background: #00E0B8;
}

.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.links ul li {
  width: auto;
  margin-right: 30px;
}

.footer-widget ul li a:hover,
.footer--infoBox a:hover {
  color: var(--hoverColor);
}

.footer-widget ul li a {
  color: var(--secondaryText);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  max-width: 300px;
}

.subscribe-form input {
  width: 100%;
  padding: 12px 82px 12px 18px;
  background: var(--secondaryBg);
  border: 1px solid var(--secondaryBg);
  color: var(--primaryText);
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--hoverColor);
  padding: 11px 20px 10px;
  border: 1px solid var(--hoverColor);
  top: 0;
  border-radius: 0 4px 4px 0;
}

.subscribe-form button i {
  color: var(--primaryText) !important;
  font-size: 22px;
  transform: rotate(-6deg);
}

.footie-bottom-row {
  display: grid;
  grid-row-gap: 24px;
  grid-column-gap: 24px;
  grid-template-areas: 'col1 col2';
}

.copyright-area {
  background: #000E27;
}

.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--list .product {
  padding: 30px;
}

.products.products--grid .product__info * {
  font-weight: revert;
}

.products.products--grid .product__copy p,
.ogrid .product .info .text .description {
  font-size: 14px;
}

.product__title h3,
.category__title h3 {
  font-size: 15px !important;
  font-weight: 600 !important;
}

.category__title h3 a {
  font-weight: 600 !important;
}

.callout__title a {
  font-size: 15px;
  font-weight: 600;
}

@media screen and (min-width: 375px) {
  .product__title h3,
  .category__title h3 {
    font-size: 17px !important;
  }

  .callout__title a {
    font-size: 17px;
  }
}

@media screen and (min-width: 768px) {
  .product__title h3,
  .category__title h3 {
    font-size: 18px !important;
  }

  .callout__title a {
    font-size: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .product__title h3,
  .category__title h3 {
    font-size: 20px !important;
  }

  .callout__title a {
    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;
  height: fit-content;
}

a.productLink {
  color: #001d4e;
}

.category__image {
  grid-area: image;
  overflow: hidden;
}

.products.products--grid .product__cta {
  border-top: none;
  display: none;
}


/*-------------------------------------------*\ 
// PRODUCT PAGE
\*-------------------------------------------*/

.alert.alert--error {
    margin-bottom: 1.5rem;
}

.ogrid__toolbar {
    display: flex;
    justify-content: flex-end;
    margin: var(--gutter) 0;
    background: rgba(255, 255, 255, .9);
    padding: 10px 0;
    top: 0 !important;
}

.ogrid__products a.productLink {
  color: #001d4e;
  font-size: 20px;
}

.ogrid__products .product {
  margin-bottom: 60px;
}

.products.products--grid .product {
  grid-gap: 0;
}

.products.products--grid .product__image img {
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .ogrid__products .info .title {
    text-align: center;
  }
}
.product:hover a.productLink {
  color: #00E0B8 !important;
}

.form #itemQuantityAlert + .datum {
  margin-top: .25rem;
}

button .fa-cart-plus {
  color: #fff !important;
}

.datum .hint {
  padding: 0;
}

.unit-price {
  font-size: 14px;
  margin-bottom: .25em;
}


/*-------------------------------------------*\ 
// 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;
  }
}

/*-------------------------------------------*\ 
// SHOPPING CART / CHECKOUT
\*-------------------------------------------*/

.alert--alert, .flash--alert {
  background: #00E0B8;
  padding: 20px;
  box-shadow: none;
}

.alert--alert h1, .alert--alert h2, .alert--alert h3, .alert--alert h4, .alert--alert h5, .alert--alert h6, .flash--alert h1, .flash--alert h2, .flash--alert h3, .flash--alert h4, .flash--alert h5, .flash--alert h6 {
  color: #fff;
}

.alert--alert ul, .flash--alert ul {
  color: #fff;
  margin: 1em 0 0;
}

.cart__item .item__preview img {
  box-shadow: none;
}

.cart__item .item__details .item__text {
  box-shadow: none;
  background: #F4F7FE;
  padding: 1em;
}

.cart__item .item__details .item__controls .button {
  padding: 0.5em 0.75em;
  font-size: var(--font-size-s);
}

a.button.button--theme--negative, button.button.button--theme--negative, input[type=submit].button.button--theme--negative {
  border: none;
  background: #D93737;
  color: white;
}

a.button.button--theme--negative:hover, button.button.button--theme--negative:hover, input[type=submit].button.button--theme--negative:hover {
  border: none;
}

.cart__item .item__details .item__pricing dl {
  line-height: 1.5;
}


/*-------------------------------------------*\ 
// 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::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1));
  z-index: 1;
  pointer-events: none;
}

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

.homepage__callouts .callout .img-wrap:hover img {
  filter: brightness(50%);
}

.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%;
  color: #424242;
}

.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.table--ogrid thead tr th,
table.table--ogrid tbody tr td,
table th,
table td {
  padding: 0.5rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
  font-size: 16px;
}

table.table--ogrid thead tr th,
table thead th {
  background: #fff;
  color: #001D4E;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

table tbody tr:hover td {
  background: rgba(0, 0, 0, .05) !important;
}

.callout:hover .callout__title a {
  color: var(--hoverColor) !important;
}

a#btnSearch {
  position: relative;
  right: 35px;
  color: #2c2457;
}

.search-box {
  width: fit-content;
  margin-right: 0;
  margin-left: 2rem;
  display: none;
  justify-content: center;
}

@media screen and (min-width: 1380px) {
  .search-box {
    display: inline-flex;
  }
}

.search-form input {
  background-color: #f7f7f794;
  border-color: #d7d7d7;
  border-width: 1px;
  padding: 6px 42px 6px 10px;
  width: 180px;
}

.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;
}


@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: 100%;*/
  margin: 0 0 20px;
}

.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;
}


.dropdown_fullwidth {
  display: none;
}

.megamenu_container .megamenu>li:hover .dropdown_fullwidth {
  display: block;
  position: absolute !important;
}

#bodyContainer section.login {
  background: #eee url(https://liftoff-shop.imgix.net/qbf/images/backgrounds/splash.jpg) center center no-repeat;
}

@media screen and (min-width: 1440px) {
  .container {
    width: 1408px;
  }
}
.product-landing .product__info > * {
    margin-bottom: 0;
}