/* This allows the proper encoding to work for special characters used in our css. DO NOT REMOVE - Dustin */
@charset "UTF-8";

/* Wunderkind Continuity Bar */

.bx-impress.continuityBar.cbv_1 {
  display: none !important;
}

    /* CSS to make cursor a pointer for elements with a data-url attribute */
    [data-href] {
      cursor: pointer;
      }
      
/* Accessibility Support */

/*
Accordion Focus
****************************************
This class will allow ONLY KEYBOARD FOCUSING
to have this border styling. MOUSE CLICK will not create a focus border.

This allows us to make our styling look good for accessibility users while not ruining the
user experience for non-a11y users.
****************************************
*/

.accordion-trigger:focus-visible {
  border: 2px solid var(--brand-color-dark);
  border-radius: 0.5rem;
}

/* End of Accessibility Support */

/* ******************************** */
/*      NASM Light Mode Buttons     */
/* ******************************** */

a.nasm-primary-btn,
button.nasm-primary-btn {
  display: block;
  text-align: center;
  font-family: "peridot-pe-variable", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.32px;
  line-height: 50px;
  background-color: var(--ui-color-light);
  color: var(--brand-color-black);
  width: 100%;
  transition: all 0.2s ease-out;
}

#pdp-choose a.nasm-primary-btn {
  color: var(--ui-color-light);
  background-color: var(--brand-color-dark);
}

.nasm-primary-btn:focus,
.nasm-primary-btn:hover {
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.nasm-primary-btn:active {
  background-color: var(--ui-color-light);
  color: var(--brand-color-black);
}

/* NASM Buttons */

/* ******************************** */
/*      NASM Dark Mode Buttons      */
/* ******************************** */

a.nasm-primary-btn-dark,
button.nasm-primary-btn-dark {
  display: block;
  text-align: center;
  font-family: "peridot-pe-variable", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.32px;
  line-height: 50px;
  background: var(--brand-color-dark);
  color: var(--ui-color-light);
  width: 100%;
  transition: all 0.2s ease-out;
}

.nasm-primary-btn-dark:focus,
.nasm-primary-btn-dark:hover {
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.nasm-primary-btn-dark:active {
  background: var(--ui-color-off-dark);
  color: var(--ui-color-light);
}

/* Fill-In Animation Buttons */

/*
  ************************
  Add this supporting class to the nasm-primary-btn class
  in order to get the fill-in animation effect.

  Keep in mind that you will need to wrap any content within the button
  inside of a <span>.

  This prevents the text from being covered by the fill-in effect.
  ************************
  */

a.fill-right-btn,
button.fill-right-btn {
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

a.fill-right-btn::before,
button.fill-right-btn::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);

  /* Use any color you want. We are using the brand highlight color for the background */
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

a.fill-right-btn:hover::before,
a.fill-right-btn:active::before,
a.fill-right-btn:focus::before,
button.fill-right-btn:hover::before,
button.fill-right-btn:active::before,
button.fill-right-btn:focus::before {
  width: 100%;
}

a.fill-right-btn:active::before,
button.fill-right-btn:active::before {
  background-color: var(--ui-color-light);
}

a.fill-right-btn:active span,
button.fill-right-btn:active span {
  color: var(--brand-color-black);
}

a.fill-right-btn span,
button.fill-right-btn span {
  position: relative;
}

a.fill-right-btn:hover span,
button.fill-right-btn:hover span {
  background-color: transparent;

  /* Override with any color you want to use. We are using the brand's color here */
  color: var(--brand-color-black);
}

/*
  ************************
  Add this supporting class to the nasm-primary-btn-dark class
  in order to get the fill-in animation effect.

  Keep in mind that you will need to wrap any content within the button
  inside of a <span>.

  This prevents the text from being covered by the fill-in effect.
  ************************
  */

.fill-right-btn-dark {
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.fill-right-btn-dark::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.335);

  /* Override with any color you want to use. We are using the brand's color here */
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-black);
}

.fill-right-btn-dark:hover::before,
.fill-right-btn-dark:active::before,
.fill-right-btn-dark:focus::before {
  width: 100%;
}

.fill-right-btn-dark:active::before {
  background: var(--ui-color-off-dark);
}

a.fill-right-btn-dark:active span,
button.fill-right-btn-dark:active span {
  color: var(--ui-color-light);
}

.fill-right-btn-dark span {
  position: relative;
}

.fill-right-btn-dark:hover span {
  background-color: transparent;

  /* Override with any color you want to use. We are using the brand's color here */
  color: var(--brand-color-black);
}

/* End of Fill-In Animation Buttons */

/* End of NASM Buttons */

/* Fade-in Classes */

.fade-in-place {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.fade-in-up {
  opacity: 1 !important;
  transform: translateY(-1.5rem) !important;
}

.fade-in-right {
  opacity: 1 !important;
  transform: translateX(1.5rem) !important;
}

.fade-in-down {
  opacity: 1 !important;
  transform: translateY(1.5rem) !important;
}

.fade-in-left {
  opacity: 1 !important;
  transform: translateX(-1.5rem) !important;
}

.fade-expand-top-bottom {
  height: 100% !important;
  opacity: 1 !important;
}

.fade-expand-bottom {
  height: 100% !important;
  opacity: 1 !important;
  transform: translateY(1.5rem) !important;
}

/* Hubspot Form Styling */

/* End of Hubspot Form Styling */

/* NASM Marquee Widget */

#nasm-marquee {
  --marquee-gap: 0.2rem;
  display: flex;
  overflow: hidden;
  gap: var(--marquee-gap);
  position: relative;
  user-select: none;
  width: 100%;
  height: 2.5rem;
  background-color: var(--brand-color-highlight);
  color: var(--brand-color-dark);
}
.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--marquee-gap);
  animation: marquee-animation 60s linear reverse infinite;
}
.marquee-content li {
  display: inline-block;
  /* Remove default margins */
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  font-variation-settings: 'wght' 600;
  font-family: "peridot-pe-variable", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}
.marquee-content img {
  width: 0.75rem;
  /* Vertical aligns arrow to text */
  margin-top: -0.15rem;
}

/* End of NASM Marquee Widget */

/* Start of NASM Flexible Payment Options Bar */

#pdp-choose {
  padding: 16px;
  text-align: center;
  background: var(--ui-color-off-light);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

#pdp-choose p {
  color: var(--brand-color-dark);
  font-size: 0.69rem;
  font-style: normal;
  line-height: normal;
  margin: 0 0 19px;
}

#pdp-choose a {
  max-width: 395;
  text-transform: capitalize;
}

#pdp-flexible-payments-ready {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--ui-color-light);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 3rem 0 0;
  padding: 27.67px 0;
}

.pdp-flexible-payments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--brand-color-dark);
  margin: 0 0 15px;
}

.pdp-fp-call p {
  font-family: "peridot-pe-variable", sans-serif;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: 0.36px;
}

.pdp-fp-number a {
  color: var(--brand-color-dark);
  font-family: "peridot-pe-variable", sans-serif;
  font-size: 1.125rem;
  font-variation-settings: 'wght' 900;
  letter-spacing: 0.36px;
  line-height: 150%;
  text-decoration: none;
}

.pdp-ready-choose {
  display: flex;
  gap: 16px;
  padding: 0;
  align-items: center;
}

.pdp-ready-cta p {
  font-family: "peridot-pe-variable", sans-serif;
  font-variation-settings: 'wght' 900, 'wdth' 60;
  color: var(--brand-color-dark);
  font-size: 1.5rem;
  line-height: 96%;
  text-transform: uppercase;
}

.pdp-choose-button a {
  font-size: 1.25rem;
  text-transform: capitalize;
  letter-spacing: 0.6px;
  line-height: 150%;
}

.pdp-choose-button a:nth-of-type(2) {
  display: none;
}

/* Styling for cookie notification banner */
.cookie-banner {
  display: flex;
  align-items: center;
  padding: 15px 45px 15px 20px;
  color: var(--ui-color-light);
  background-color: var(--brand-color-dark) !important;
  position: relative;

  /* z-index quick fix for nav blur */
  z-index: 1000;
}

.cookie-banner a {
  color: var(--brand-color-highlight);
}

.cookie-banner .btn {
  background: var(--brand-color-highlight);
  color: var(--brand-color-black);
  padding: 1px 7px;
  border-radius: 12px;
}

.cookie-banner.banner-hidden {
  display: none;
}

/**********************
  Mid Phone - 400px
**********************/
@media (min-width: 400px) {
  #pdp-choose p {
    font-size: 0.75rem;
  }
}

/**********************
  Tablet Portrait - 768px
**********************/
@media (min-width: 768px) {
  #pdp-flexible-payments-ready {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin: 4.375rem 0 0;
    padding: 15px 0;
  }

  .pdp-flexible-payments {
    flex-direction: row;
    gap: 59px;
    padding: 0;
  }

  .pdp-ready-cta {
    display: flex;
    align-items: center;
  }

  .pdp-choose-button a {
    color: var(--ui-color-light);
    background: var(--brand-color-dark);
    width: 306px;
    height: 50px;
    text-decoration: none;
    text-transform: capitalize;
  }

  .pdp-choose-button a:nth-of-type(1) {
    display: none;
  }

  .pdp-choose-button a:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/**********************
  Tablet Landscape - 1024px
**********************/
@media (min-width: 1024px) {
  #pdp-flexible-payments-ready {
    background: var(--ui-color-light);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 3rem 0 0;
    flex-direction: row;
    padding: 15px 0;
    height: auto;
  }

  .pdp-flexible-payments {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--brand-color-dark);
    margin: 0;
  }
    
  .pdp-fp-call p {
  /* Override for 1024 due to space issues */
    font-size: 1rem;
  }

  .pdp-ready-choose {
    gap: 10px;
  }

  .pdp-fp-number a {
    font-size: 1rem;
  }

}

/**********************
     Laptop - 1440px
**********************/
@media (min-width: 1440px) {
  #pdp-flexible-payments-ready {
    flex-direction: row;
    justify-content: space-between;
    background: var(--ui-color-light);
    padding: 15px 0;
  }

  .pdp-flexible-payments {
    flex-direction: row;
    padding: 0 0 0 26px;
    margin: 0;
  }

  .pdp-ready-choose {
    display: flex;
    gap: 16px;
    padding: 0 23px 0 0;
  }

  .pdp-fp-call p {
    /* Override for 1024 due to space issues */
     font-size: 1.125rem;
   }

   .pdp-fp-number a {
    font-size: 1.125rem;
  }

  .pdp-ready-cta p {
    font-size: 1.5rem;
  }
}

/**********************
     Desktop - 1920px
**********************/
@media (min-width: 1920px) {
}

/* End of NASM Flexible Payment Options Bar */