/** Shopify CDN: Minification failed

Line 191:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
/* Parent container: history-timeline section */
.history-timeline.section {
  width: 100%;
  max-width: 100vw;        /* prevent overflow */
  box-sizing: border-box;
  overflow-x: visible;     /* allow children to fully display */
  padding: 0;              /* optional: remove excessive padding */
  margin: 0 auto;
}

/* Main container */
.history-content2.history-content2--customized {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: visible;
  padding: 20px 40px;      /* desktop padding */
  margin: 0 auto;
}

/* Outer wrapper for image + text */
.history-content2--customized-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;         /* allow children to wrap instead of overflowing */
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: visible;
}

/* Image container */
.history-content2--customized-content {
  flex: 1 1 0;             /* shrink/grow properly */
  min-width: 0;            /* critical for flex shrinking */
  max-width: 50%;           /* desktop max width */
  box-sizing: border-box;
}

/* Text container */
.content-section {
  flex: 1 1 0;             /* shrink/grow properly */
  min-width: 0;            /* critical */
  max-width: 50%;           /* desktop max width */
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Images */
.history-content2--customized img {
  width: 100%;             /* scale with container */
  max-width: 100%;         /* never exceed container */
  height: auto;
  display: block;
  object-fit: contain;
}

/* Optional heading styling */
.history-content2--customized h2 {
  margin-bottom: 15px;
}

/* Mobile adjustments */
@media (max-width: 767px) {


  .history-content2--customized-outer {
    flex-direction: column; /* stack vertically */
    gap: 15px;
  }

  .history-content2--customized-content,
  .content-section {
    width: 100%;
    max-width: 100%;
  }
}
body {
  overflow-x: hidden;
}
.accordion-manual .file-lists__itemContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: block; /* Safari fix for overflow animation */
}

.accordion-manual .file-lists__itemContent.active {
  max-height: 1000px; /* large enough for content */
}

/* CSS from snippet stylesheet tags */
.discount-icon {
  width: 10vw;         /* scales with viewport width */
  max-width: 100px;    /* prevents it from being too large on big screens */
  height: auto;        /* maintains aspect ratio */
  display: block;      /* remove inline gaps if needed */
  margin: 0 auto 10px; /* centers and adds space below */
}

.bf-modal-content h2 {
    color:#000;
}
.bf-modal-content p {
    color:#000;
}
.bf-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

#bf-guarantee-btn {
  text-align: center;
  display: inline-block;
}

  /* Button */
.bf-guarantee-btn {
  background: #000;
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.4px;
  width: 80%;
  text-align: center;
  
}

.bf-icon {
  font-size: 16px;
}

/* Modal background */
.bf-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

#bf-guarantee-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999; /* above header */
  align-items: center;
}

.bf-modal-content {
  position: absolute;
  left: 50%;
  top: 100px;               /* distance from top (adjust to header height) */
  transform: translateX(-50%); /* only horizontal centering */
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 420px;
  border-radius: 10px;
}

}

.bf-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.bf-modal-content hr {
  width: 100%;         /* full width of the modal */
  border: none;        /* remove default border */
  border-top: 1px solid #ccc; /* add visible line */
  margin: 20px 0;      /* optional spacing */
}

.bf-closer{
    background-color: blue;
    padding:3%;
    border-radius: 2%;
    text-align: center;
    color: #fff;
}


/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
#bf-guarantee-modal {
  pointer-events: auto;
}

/* Make sure modal is above Shopify header */
#bf-guarantee-modal {
  z-index: 999999 !important;
}

/* Dim the header visually */
body.bf-modal-open #shopify-section-header,
body.bf-modal-open .header,
body.bf-modal-open .site-header {
  opacity: 0.5 !important;
  pointer-events: none !important;
}


.bf-modal-content {
  position: relative; /* Needed so the X positions inside this box */
}

/* Close button positioned in top-right corner */
.bf-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.bf-closer {
  background-color: #0a2a7a !important;  /* darker blue */
  padding: 12px 20px;
  border-radius: 6px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  max-width: 260px;
  margin-top: 10px;
}
.bf-modal-content h2 {
  font-size: 28px !important;  /* larger heading */
  color: #000;
  text-align: center;
}
.discount-icon {
  width: 7vw;          /* smaller relative to screen */
  max-width: 60px;     /* keeps it small on desktop */
  height: auto;
  margin: 0 auto 12px; /* centered */
}
.bf-close {
  font-size: 40px !important;  /* larger X */
  top: 12px !important;
  right: 12px !important;
  background: none;
  border: none;
  cursor: pointer;
}