/** Shopify CDN: Minification failed

Line 1810:1 Unexpected ";"

**/
/* Debug Outlines (commented out) */
/* 
* { outline: 1px solid red; }
* * { outline: 1px solid green; }
* * * { outline: 1px solid blue; }
*/

.h1, .h2, .h3 {
  text-transform: uppercase;
}

/* Masthead Styles */
.byd-masthead__wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  color: rgb(var(--text-color));
  border-radius: inherit;
  transition: inherit;
  width: 100%;
  max-width: 100%;
  background-color: #f5f5f5;
}

/* Masthead Info Bar */
.masthead-info-bar {
  display: none;
  max-width: 350px;
  margin: 0 auto; 
  font-size: 0.8rem;
}

.masthead-info-bar .info-item {
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.masthead-info-bar .info-item .available-now-label {
  display: none;
}

.masthead-info-bar .info-item .phone-number {
  font-weight: bold;
  text-decoration: underline;
}

.masthead-info-bar .info-item.live-chat {
  cursor: pointer;
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.masthead-info-bar .info-item.live-chat:hover {
  text-decoration: underline;
}

.masthead-info-bar .info-item.support {
  padding-left: 8px;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.masthead-info-bar .info-item.support .support-link:hover {
  text-decoration: underline;
}

/* Free Shipping Container */
.byd-masthead-free-shipping-container {
  display: flex;
  flex-direction: column;
  color: #2C7320;
  align-items: flex-end;
}

.byd-masthead-free-shipping-heading {
  font-weight: bold;
  font-size: 1.5rem;
}

.byd-masthead-free-shipping-subheading {
  font-size: 1rem;
  line-height: 0rem;
}

/* Search Drawer */
.byd-masthead__wrapper .byd-masthead-search-drawer {
  display: unset;
}

.byd-masthead-search-drawer {
  position: relative;
}

.masthead-search-input {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px;
  transition: border-color 0.2s;
  background-color: #fff;
  position: relative;
}

.masthead-search-input:focus-within {
  border-color: #6eb340;
  border-width: 2px;
}

.masthead-search-input input[type="search"] {
  flex: 1;
  border: none;
  padding: 8px;
  font-size: 16px;
  outline: none;
}

.masthead-search-input button {
  background-color: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.masthead-search-input button img {
  width: 20px;
  height: 20px;
}

/* Predictive Search */
.predictive-search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: none;
  z-index: 1000;
}

.predictive-search {
  display: block;
}

.predictive-search__tabs {
  padding: 2rem;
}

/* Header Logo Animation */
.sticky-logo {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1000;
  transition: none;
}

.sticky-logo.visible {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* Hide High Demand Alert */
#effectiveAppsProductVisitorsCounterElement {
  display: none !important;
}

/* PDP Product Description See More/Less */
.product-info__description {
  position: relative;
}

.short-description {
  max-height: 75px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.short-description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  z-index: 2;
}

.short-description.full {
  max-height: none;
  overflow: visible;
}

.short-description.full::after {
  display: none;
}

.see-more-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  position: relative;
  z-index: 3;
}

.full-description {
  display: none;
}

/* PLP Product Excerpt */
.PLP-product-excerpt {
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
}

/* Shipping Modal */

.shipping-included__text {
  margin-right: 0.25rem;
}

@media screen and (max-width:942px) {
  .shipping-included__wrapper {
      font-size: 0.6rem;
  }

  .shipping-included__text {
      margin-right: 0.125rem;
  }
}

.shipping-included__icon {
  width: 3rem;
  height: auto;
  margin-right: 0.5rem;
}

.shipping-included__link {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: .5px;
}

.shipping-included__link:hover {
  color: var(--color-primary) !important;
  text-decoration: underline;
}

.shipping-included__modal-wrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 200;
}

.shipping-included__modal-wrapper::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.shipping-included__modal {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 24rem;
  width: calc(100% - 0.5rem);
  height: auto;
  padding: 1rem;
  border-radius: var(--rounded-soft);
  background-color: #fff;
  box-shadow: 1px 2px 20px 1px rgb(0 0 0 / 10%),
      1px 5px 4px 1px rgb(0 0 0 / 6%);
  ;
}

.shipping-included__modal-wrapper.shipping-included__modal--is-active {
  display: block;
}

.shipping-included__close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.shipping-included__close i {
  cursor: pointer;
  transition: color 215ms;
}

.shipping-included__close:hover i {
  color: var(--color-primary);
}

.footer__block--menu {
  font-weight: bold;
}
/* Media Queries */
@media (min-width: 640px) {
  .masthead-info-bar {
    justify-content: space-evenly;
  }
}

@media (min-width: 768px) {
  .masthead-info-bar .info-item .available-now-label {
    display: inline-block;
    padding-right: 8px;
  }
}

@media (min-width: 1024px) {
  .masthead-info-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    text-align: center;
    gap: 0;
  }

  .masthead-info-bar .info-item {
    border-right: 1px solid #ccc;
    padding-left: 16px;
    padding-right: 16px;
  }

  .masthead-info-bar .info-item:last-child {
    border-right: none;
  }

  .masthead-info-bar .info-item.live-chat {
    padding-left: 16px;
    padding-right: 16px;
  }

  .masthead-info-bar .info-item.support {
    padding-left: 16px;
    padding-right: 0;
  }
}

@media (max-width: 1150px) {
  .byd-masthead__wrapper {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
    text-align: center;
  }

  .byd-masthead-free-shipping-container {
    align-items: center;
  }

  .byd-masthead-free-shipping-heading {
    font-size: 1rem;
  }

  .byd-masthead-free-shipping-subheading {
    font-size: 0.7rem;
  }

  h1 {
    /* margin: 0 auto; */
  }

  .byd-masthead__wrapper .byd-masthead-search-drawer {
    display: none;
  }
}

#cart-agreement-container {
  display: none;
  padding: 0;
  border-radius: 5px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease-out;

  /* Shimmer effect */
  /* background: #fce4e4;
  background-image: linear-gradient(to right, #fce4e4 0%, #fff3f4 20%, #fce4e4 40%, #fce4e4 100%);
  background-repeat: no-repeat;
  background-size: 800px 140px;
  
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeholderShimmer;
  animation-timing-function: linear; */
}

#cart-agreement-container.is-visible {
  display: block;
  max-height: 300px;
  padding: 6px 12px;
  background: #f5f5f5;
  /* animation: slideDown 0.3s ease-out, placeholderShimmer 1.5s infinite linear; */
}

.cart-agreement-checkbox {
  margin-right: 12px;
  transform: scale(1.5);
}

.cart-agreement-label {
  font-size: 12px;
}

#cart-agreement-instruction {
  font-size: 12px;
  margin-bottom: 10px;
}

@keyframes placeholderShimmer {
  0% {
    background-position: -468px 0;
  }
  
  100% {
    background-position: 468px 0; 
  }
}

@keyframes slideDown {
  from {
    max-height: 0;
    padding: 0 15px;
  }
  to {
    max-height: 300px;
    padding: 15px;
  }
}

.header__logo {
  opacity: 0;
}

.header__logo.visible {
  opacity: 1;
}
.header-search-icon {
  opacity: 0;
}

.header-search-icon.visible {
  opacity: 1;
}

/* .header__link-list .contents {
  text-transform: uppercase;
} */

.page-width {
  zoom: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-width--mb {
  margin-bottom: 2rem;
}

.page-width::after {
  content: '';
  display: table;
  clear: both;
}

.btn-outline {
  border: 2px solid #6CB33F;
  font-weight: bold;
  color: #6CB33F;
  text-transform: uppercase;
  width: 100%;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.btn-outline:hover {
  background-color: #6CB33F;
  color: #fff;
}

.company-template-center-h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
  font-size: calc(((var(--font-h2-desktop))/ (var(--font-size-base))) * 1em);
}

.company-template-center-h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 75px;
  border-radius: 5px;
  background-color: #cde5bd;
}

.company-template-left-h2 {
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
  font-size: calc(((var(--font-h2-desktop))/ (var(--font-size-base))) * 1em);
}

.company-template-left-h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  height: 4px;
  width: 75px;
  border-radius: 5px;
  background-color: #cde5bd;
}

.company-template-center-h3 {
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
  font-size: calc(((var(--font-h3-desktop))/ (var(--font-size-base))) * 1em);
}

.company-template-center-h3::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 45%;
  height: 4px;
  width: 75px;
  border-radius: 5px;
  background-color: var(--color-primary);
}

.company-template-left-h3 {
  color: var(--color-primary);
  text-transform: uppercase;
  position: relative;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
  font-size: calc(((var(--font-h3-desktop))/ (var(--font-size-base))) * 1em);
}

.company-template-left-h3::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  height: 4px;
  width: 75px;
  border-radius: 5px;
  background-color: var(--color-primary);
}

#shopify-section-article-template img {
  margin-bottom: 20px;
}

.sidebar-page__content h1,
.sidebar-page__content h2,
.sidebar-page__content h3,
.sidebar-page__content h4,
.sidebar-page__content h5,
.sidebar-page__content h6,
.sidebar-page__content .h1,
.sidebar-page__content .h2,
.sidebar-page__content .h3,
.sidebar-page__content .h4,
.sidebar-page__content .h5,
.sidebar-page__content .h6 {
  color: var(--color-collection-title);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
  font-size: 1.5rem;
}

.sidebar-page__content h1::after .sidebar-page__content h2::after .sidebar-page__content h3::after .sidebar-page__content h4::after .sidebar-page__content h5::after .sidebar-page__content h6::after .sidebar-page__content .h1::after,
.sidebar-page__content .h2::after,
.sidebar-page__content .h3::after,
.sidebar-page__content .h4::after,
.sidebar-page__content .h5::after,
.sidebar-page__content .h6::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5.125rem;
  height: 0.3125rem;
  border-radius: 3px;
  background-color: var(--color-collection-title);
}

.sidebar-page__content .ll-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.sidebar-page__content .ll-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sidebar-page__content a {
  color: var(--color-primary) !important;
}

.sidebar-page__content a:hover {
  text-decoration: underline;
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.assembly-instructions__item {
  padding: 1rem;
}

a.download-pdf {
  color: var(--color-primary) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-left: 0.5rem;
}

a.download-pdf:hover {
  text-decoration: underline;
}

.assembly-instructions__item h4 {
  margin-bottom: 0;
}

.instruction-manuals__section-title {
  color: var(--color-collection-title);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: var(--letter-spacing-title);
}

.instruction-manuals__section-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5.125rem;
  height: 0.3125rem;
  border-radius: 3px;
  background-color: #cde5bd;
}


/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 749px) {

  /* Whole */
  .small--one-whole {
      width: 100%;
  }

  /* Halves */
  .small--one-half {
      width: 50%;
  }

  /* Thirds */
  .small--one-third {
      width: 33.33333%;
  }

  .small--two-thirds {
      width: 66.66667%;
  }

  /* Quarters */
  .small--one-quarter {
      width: 25%;
  }

  .small--two-quarters {
      width: 50%;
  }

  .small--three-quarters {
      width: 75%;
  }

  /* Fifths */
  .small--one-fifth {
      width: 20%;
  }

  .small--two-fifths {
      width: 40%;
  }

  .small--three-fifths {
      width: 60%;
  }

  .small--four-fifths {
      width: 80%;
  }

  /* Sixths */
  .small--one-sixth {
      width: 16.66667%;
  }

  .small--two-sixths {
      width: 33.33333%;
  }

  .small--three-sixths {
      width: 50%;
  }

  .small--four-sixths {
      width: 66.66667%;
  }

  .small--five-sixths {
      width: 83.33333%;
  }

  /* Eighths */
  .small--one-eighth {
      width: 12.5%;
  }

  .small--two-eighths {
      width: 25%;
  }

  .small--three-eighths {
      width: 37.5%;
  }

  .small--four-eighths {
      width: 50%;
  }

  .small--five-eighths {
      width: 62.5%;
  }

  .small--six-eighths {
      width: 75%;
  }

  .small--seven-eighths {
      width: 87.5%;
  }

  /* Tenths */
  .small--one-tenth {
      width: 10%;
  }

  .small--two-tenths {
      width: 20%;
  }

  .small--three-tenths {
      width: 30%;
  }

  .small--four-tenths {
      width: 40%;
  }

  .small--five-tenths {
      width: 50%;
  }

  .small--six-tenths {
      width: 60%;
  }

  .small--seven-tenths {
      width: 70%;
  }

  .small--eight-tenths {
      width: 80%;
  }

  .small--nine-tenths {
      width: 90%;
  }

  /* Twelfths */
  .small--one-twelfth {
      width: 8.33333%;
  }

  .small--two-twelfths {
      width: 16.66667%;
  }

  .small--three-twelfths {
      width: 25%;
  }

  .small--four-twelfths {
      width: 33.33333%;
  }

  .small--five-twelfths {
      width: 41.66667%;
  }

  .small--six-twelfths {
      width: 50%;
  }

  .small--seven-twelfths {
      width: 58.33333%;
  }

  .small--eight-twelfths {
      width: 66.66667%;
  }

  .small--nine-twelfths {
      width: 75%;
  }

  .small--ten-twelfths {
      width: 83.33333%;
  }

  .small--eleven-twelfths {
      width: 91.66667%;
  }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
      clear: both;
  }

  .small--show {
      display: block !important;
  }

  .small--hide {
      display: none !important;
  }

  .small--text-left {
      text-align: left !important;
  }

  .small--text-right {
      text-align: right !important;
  }

  .small--text-center {
      text-align: center !important;
  }
}

@media only screen and (min-width: 750px) {

  /* Whole */
  .medium-up--one-whole {
      width: 100%;
  }

  /* Halves */
  .medium-up--one-half {
      width: 50%;
  }

  /* Thirds */
  .medium-up--one-third {
      width: 33.33333%;
  }

  .medium-up--two-thirds {
      width: 66.66667%;
  }

  /* Quarters */
  .medium-up--one-quarter {
      width: 25%;
  }

  .medium-up--two-quarters {
      width: 50%;
  }

  .medium-up--three-quarters {
      width: 75%;
  }

  /* Fifths */
  .medium-up--one-fifth {
      width: 20%;
  }

  .medium-up--two-fifths {
      width: 40%;
  }

  .medium-up--three-fifths {
      width: 60%;
  }

  .medium-up--four-fifths {
      width: 80%;
  }

  /* Sixths */
  .medium-up--one-sixth {
      width: 16.66667%;
  }

  .medium-up--two-sixths {
      width: 33.33333%;
  }

  .medium-up--three-sixths {
      width: 50%;
  }

  .medium-up--four-sixths {
      width: 66.66667%;
  }

  .medium-up--five-sixths {
      width: 83.33333%;
  }

  /* Eighths */
  .medium-up--one-eighth {
      width: 12.5%;
  }

  .medium-up--two-eighths {
      width: 25%;
  }

  .medium-up--three-eighths {
      width: 37.5%;
  }

  .medium-up--four-eighths {
      width: 50%;
  }

  .medium-up--five-eighths {
      width: 62.5%;
  }

  .medium-up--six-eighths {
      width: 75%;
  }

  .medium-up--seven-eighths {
      width: 87.5%;
  }

  /* Tenths */
  .medium-up--one-tenth {
      width: 10%;
  }

  .medium-up--two-tenths {
      width: 20%;
  }

  .medium-up--three-tenths {
      width: 30%;
  }

  .medium-up--four-tenths {
      width: 40%;
  }

  .medium-up--five-tenths {
      width: 50%;
  }

  .medium-up--six-tenths {
      width: 60%;
  }

  .medium-up--seven-tenths {
      width: 70%;
  }

  .medium-up--eight-tenths {
      width: 80%;
  }

  .medium-up--nine-tenths {
      width: 90%;
  }

  /* Twelfths */
  .medium-up--one-twelfth {
      width: 8.33333%;
  }

  .medium-up--two-twelfths {
      width: 16.66667%;
  }

  .medium-up--three-twelfths {
      width: 25%;
  }

  .medium-up--four-twelfths {
      width: 33.33333%;
  }

  .medium-up--five-twelfths {
      width: 41.66667%;
  }

  .medium-up--six-twelfths {
      width: 50%;
  }

  .medium-up--seven-twelfths {
      width: 58.33333%;
  }

  .medium-up--eight-twelfths {
      width: 66.66667%;
  }

  .medium-up--nine-twelfths {
      width: 75%;
  }

  .medium-up--ten-twelfths {
      width: 83.33333%;
  }

  .medium-up--eleven-twelfths {
      width: 91.66667%;
  }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
      clear: both;
  }

  .medium-up--show {
      display: block !important;
  }

  .medium-up--show-table-cell {
      display: table-cell !important;
  }

  .medium-up--hide {
      display: none !important;
  }

  .medium-up--text-left {
      text-align: left !important;
  }

  .medium-up--text-right {
      text-align: right !important;
  }

  .medium-up--text-center {
      text-align: center !important;
  }
}

/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 749px) {

  /* Halves */
  .small--push-one-half {
      left: 50%;
  }

  /* Thirds */
  .small--push-one-third {
      left: 33.33333%;
  }

  .small--push-two-thirds {
      left: 66.66667%;
  }

  /* Quarters */
  .small--push-one-quarter {
      left: 25%;
  }

  .small--push-two-quarters {
      left: 50%;
  }

  .small--push-three-quarters {
      left: 75%;
  }

  /* Fifths */
  .small--push-one-fifth {
      left: 20%;
  }

  .small--push-two-fifths {
      left: 40%;
  }

  .small--push-three-fifths {
      left: 60%;
  }

  .small--push-four-fifths {
      left: 80%;
  }

  /* Sixths */
  .small--push-one-sixth {
      left: 16.66667%;
  }

  .small--push-two-sixths {
      left: 33.33333%;
  }

  .small--push-three-sixths {
      left: 50%;
  }

  .small--push-four-sixths {
      left: 66.66667%;
  }

  .small--push-five-sixths {
      left: 83.33333%;
  }

  /* Eighths */
  .small--push-one-eighth {
      left: 12.5%;
  }

  .small--push-two-eighths {
      left: 25%;
  }

  .small--push-three-eighths {
      left: 37.5%;
  }

  .small--push-four-eighths {
      left: 50%;
  }

  .small--push-five-eighths {
      left: 62.5%;
  }

  .small--push-six-eighths {
      left: 75%;
  }

  .small--push-seven-eighths {
      left: 87.5%;
  }

  /* Tenths */
  .small--push-one-tenth {
      left: 10%;
  }

  .small--push-two-tenths {
      left: 20%;
  }

  .small--push-three-tenths {
      left: 30%;
  }

  .small--push-four-tenths {
      left: 40%;
  }

  .small--push-five-tenths {
      left: 50%;
  }

  .small--push-six-tenths {
      left: 60%;
  }

  .small--push-seven-tenths {
      left: 70%;
  }

  .small--push-eight-tenths {
      left: 80%;
  }

  .small--push-nine-tenths {
      left: 90%;
  }

  /* Twelfths */
  .small--push-one-twelfth {
      left: 8.33333%;
  }

  .small--push-two-twelfths {
      left: 16.66667%;
  }

  .small--push-three-twelfths {
      left: 25%;
  }

  .small--push-four-twelfths {
      left: 33.33333%;
  }

  .small--push-five-twelfths {
      left: 41.66667%;
  }

  .small--push-six-twelfths {
      left: 50%;
  }

  .small--push-seven-twelfths {
      left: 58.33333%;
  }

  .small--push-eight-twelfths {
      left: 66.66667%;
  }

  .small--push-nine-twelfths {
      left: 75%;
  }

  .small--push-ten-twelfths {
      left: 83.33333%;
  }

  .small--push-eleven-twelfths {
      left: 91.66667%;
  }
}

@media only screen and (min-width: 750px) {

  /* Halves */
  .medium-up--push-one-half {
      left: 50%;
  }

  /* Thirds */
  .medium-up--push-one-third {
      left: 33.33333%;
  }

  .medium-up--push-two-thirds {
      left: 66.66667%;
  }

  /* Quarters */
  .medium-up--push-one-quarter {
      left: 25%;
  }

  .medium-up--push-two-quarters {
      left: 50%;
  }

  .medium-up--push-three-quarters {
      left: 75%;
  }

  /* Fifths */
  .medium-up--push-one-fifth {
      left: 20%;
  }

  .medium-up--push-two-fifths {
      left: 40%;
  }

  .medium-up--push-three-fifths {
      left: 60%;
  }

  .medium-up--push-four-fifths {
      left: 80%;
  }

  /* Sixths */
  .medium-up--push-one-sixth {
      left: 16.66667%;
  }

  .medium-up--push-two-sixths {
      left: 33.33333%;
  }

  .medium-up--push-three-sixths {
      left: 50%;
  }

  .medium-up--push-four-sixths {
      left: 66.66667%;
  }

  .medium-up--push-five-sixths {
      left: 83.33333%;
  }

  /* Eighths */
  .medium-up--push-one-eighth {
      left: 12.5%;
  }

  .medium-up--push-two-eighths {
      left: 25%;
  }

  .medium-up--push-three-eighths {
      left: 37.5%;
  }

  .medium-up--push-four-eighths {
      left: 50%;
  }

  .medium-up--push-five-eighths {
      left: 62.5%;
  }

  .medium-up--push-six-eighths {
      left: 75%;
  }

  .medium-up--push-seven-eighths {
      left: 87.5%;
  }

  /* Tenths */
  .medium-up--push-one-tenth {
      left: 10%;
  }

  .medium-up--push-two-tenths {
      left: 20%;
  }

  .medium-up--push-three-tenths {
      left: 30%;
  }

  .medium-up--push-four-tenths {
      left: 40%;
  }

  .medium-up--push-five-tenths {
      left: 50%;
  }

  .medium-up--push-six-tenths {
      left: 60%;
  }

  .medium-up--push-seven-tenths {
      left: 70%;
  }

  .medium-up--push-eight-tenths {
      left: 80%;
  }

  .medium-up--push-nine-tenths {
      left: 90%;
  }

  /* Twelfths */
  .medium-up--push-one-twelfth {
      left: 8.33333%;
  }

  .medium-up--push-two-twelfths {
      left: 16.66667%;
  }

  .medium-up--push-three-twelfths {
      left: 25%;
  }

  .medium-up--push-four-twelfths {
      left: 33.33333%;
  }

  .medium-up--push-five-twelfths {
      left: 41.66667%;
  }

  .medium-up--push-six-twelfths {
      left: 50%;
  }

  .medium-up--push-seven-twelfths {
      left: 58.33333%;
  }

  .medium-up--push-eight-twelfths {
      left: 66.66667%;
  }

  .medium-up--push-nine-twelfths {
      left: 75%;
  }

  .medium-up--push-ten-twelfths {
      left: 83.33333%;
  }

  .medium-up--push-eleven-twelfths {
      left: 91.66667%;
  }
}


.page-header {
  background-color: #4b7d2c;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.page-header--has-banner {
  margin-bottom: 0;
}

.page-header__title {
  color: #fff;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 55px;
  padding-right: 55px;
  letter-spacing: var(--letter-spacing-title);
}

@media screen and (max-width: 749px) {
  .page-header__title {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 2rem;
  }
}

.items-we-assemble__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.items-we-assemble__column {
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 0.5rem;
}

.items-we-assemble__image {
  width: 100%;
  height: auto;
}

.items-we-assemble__link:hover .items-we-assemble__title {
  text-decoration: underline;
}

@media screen and (min-width: 64em) {
  .items-we-assemble__column {
      max-width: 50%;
      flex: 0 0 50%;
  }
}

.green-heading-divider {
  width: 150px;
  height: 7px;
  border-radius: 15px;
  background-color: #6EB340;
  border: none;
  margin: 12px auto 0 auto !important;
}

.badge--comparison-table {
  background: #e34f4f!important;
  color: #fff!important;
  top: 5px !important;
  left: 5px !important;
}

.badge--custom {
  /* align-items: center;
  gap: var(--spacing-1-5);
  padding: 3px var(--spacing-2);
  background: linear-gradient(190deg, #d36027 0%, #c27810 50%, #a35f00 100%);
  color: rgb(var(--badge-color));
  border-radius: var(--rounded-button);
  width: max-content;
  font-weight: 700;
  display: flex;
   box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.2), 
              inset 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.pdp-features-list::after {
  content: ""; /* Required for pseudo-elements like ::after */
  position: absolute; /* after:absolute */
  width: 100%; /* after:w-full */
  bottom: 0; /* after:bottom-0 */
  left: 0; /* after:left-0 */
  height: 2.5rem; /* after:h-6 (6 in Tailwind is 1.5rem) */
  background: linear-gradient(to top, white 0%, transparent 100%); /* after:bg-gradient-to-t after:from-white after:to-white */
}

.footer__block--menu {
  max-width: 290px !important;
}

.view_in_place.qr_popup {
  background: #000000d9 !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999 !important;
  position: fixed !important;
  height: 100%;
  bottom: 0px;
  margin: auto;
  display: flex;
  align-items: center;
}

.popup_inner {
  background: #fff;
  width: 440px;
  margin: auto;
  padding: 40px;
}

.popup_inner h4 {
  text-transform: uppercase;
  font-size: 22px;
  position: relative;
  margin-bottom: 60px;
}

.popup_inner h4:before {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  width: 70px;
  background: #2b7321;
  height: 6px;
  margin: auto;
  bottom: -20px;
  border-radius: 50px;
}

.popup_inner a.btn.button.qrclose-button {
  width: 210px;
}


.qr_popup_enabled div#PageContainer {
  transform: none !important;
}

.button--xl--pdp-atc {

}

.button--xl--pdp-atc {
  font-size: var(--text-base);
  padding-block-start: var(--spacing-4);
  padding-block-end: var(--spacing-4);
  padding-inline-start: var(--spacing-8);
  padding-inline-end: var(--spacing-8);
}

@media screen and (min-width: 700px) {
  .button--xl--pdp-atc {
    padding-block-start: 1.075rem;
    padding-block-end: 1.075rem;
    padding-inline-start: var(--spacing-6);
    padding-inline-end: var(--spacing-6);
  }
}


.header__link-list a {
  text-transform: uppercase;
  font-size: var(--text-base);
}

@media screen and (min-width: 1300px) and (max-width: 1600px) {
  .header__link-list a {
    font-size: var(--text-sm);
  }
}

.product-info__variant-atc {
  margin-block-start: var(--product-info-block-spacing);
  margin-block-end: var(--product-info-block-spacing);
}

#dropdown-button {
  border-radius: 10px;
}

.rounded-md {
  border-radius: 10px;
}

/* .shipping-popover {
  top:5% !important;
  left:5% !important;
}

.shipping-popover-wrapper .prose {
padding: 50px;
}


.shipping-popover-wrapper .popover::part(overlay) {
  display:block;
} */
@media screen and (min-width: 1000px) {
  .shipping-popover {
    top:100% !important;
    left:5% !important;
  }
}

.shipping-popover-wrapper {
  position:relative;
}

.shipping-popover header {
 display: none;
}

.timesact-selling-plan-description {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 15px;
  color: #CE5E28 !important;
}

.product-info__accordion--shipping-arrival {
  border-block-start-width: 0;
  border-block-end-width: 0;
  background: #f0f0f0;
  padding: 0 20px;
  border-radius: 15px;
  --accordion-spacing: var(--spacing-4) !important;
}

.product-info__accordion--shipping-arrival .prose {
  padding-bottom:20px;
}

.product-info__accordion--shipping-arrival .text-left {
  margin-top:10px;
}

.tabs-content-questions {
  text-align: left !important;
}

.badge--on-sale--custom {
  color: rgb(var(--on-sale-text));
  font-size:15px;
  font-weight: 500;
}

.persistent-note {
  color: rgb(var(--on-sale-text));
  font-size:30px;
  font-weight: 500;
  margin-bottom: -15px !important;
  margin-top: -10px;
}

.product-info__price .product-info__badge-list {
  align-self: baseline !important;
}

@media screen and (max-width: 699px) {
  .tabs-inner-bv-reviews {
    display:block !important;
  }
}

.tabs-nav__button-bv-reviews[aria-selected=true] {
  color: rgb(var(--text-color));
  border-bottom: 2px solid rgb(var(--text-color));
};

  .tabs-nav__button-bv-reviews {
    padding-block-start: var(--spacing-6) !important;
    padding-block-end: var(--spacing-6) !important ;
    transition: color .2s ease-in-out !important;
}


.announcement-bar__wrapper {
  max-width: 500px !important;
}

.byd-masthead-free-shipping-wrapper {
  justify-self: flex-end;
}

.header__wrapper {
  padding: var(--header-padding-block) max(var(--container-gutter) / 2, 50% - var(--container-max-width) / 2);
}
@media screen and (min-width: 700px) {
  .footer__block--menu {
    flex-shrink: 1 !important;
  }
}
 #shopify-pc__banner {
  padding: 5px 20px;
} 