/* ============================
   Flow FAQ – Clean BFCM Match
   ============================ */

.docs-title {
font-size: 48px;
line-height: 54px;
margin-bottom: 20px;
}
  
.docs-heading1 {
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 20px;
}

.docs-heading2 {
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}

.flowFaqWrapper {
  padding: 0 !important;
  background: transparent !important;
}


/* FAQ Card */
.flowFaqWrapper .faq-item {
  background: #ffffff !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
  margin-bottom: 20px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
  border: none !important;
  padding: 0 !important;
}

.flowFaqWrapper .faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

/* Question Header */
.flowFaqWrapper .faq-header {
  padding: 22px 28px !important;
  background: #f8f9fb !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  transition: background 0.25s ease !important;
}

/* Question Text */
.flowFaqWrapper .faq-header h3 {
  margin: 0 !important;
  font-family: var(--font-body-family) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1e3a5f !important;
  flex: 1 !important;
  line-height: 1.5 !important;
}

/* Active Header */
.flowFaqWrapper .faq-item.active .faq-header {
  background: rgba(0,122,255,0.08) !important;
}

.flowFaqWrapper .faq-item.active .faq-header h3 {
  color: #007aff !important;
}

/* Remove Purple Icon Completely */
.flowFaqWrapper .faq-icon {
  all: unset !important;
  margin-left: auto !important;
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
}

/* Chevron Arrow */
.flowFaqWrapper .faq-icon::before {
  content: "▾";
  font-size: 16px;
  color: #1e3a5f;
  transition: transform 0.3s ease;
}

.flowFaqWrapper .faq-item.active .faq-icon::before {
  transform: rotate(180deg);
}

/* Hide + / − text */
.flowFaqWrapper .faq-icon {
  font-size: 0 !important;
}

/* Answer Section */
.flowFaqWrapper .faq-content {
  padding: 22px 28px 28px !important;
  font-family: var(--font-body-family) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #334155 !important;
  display: none !important;
}

.flowFaqWrapper .faq-item.active .faq-content {
  display: block !important;
}

.docs-gs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.docs-gs-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
}

.docs-gs-card img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 300px;
  flex-shrink: 0;
}

.docs-gs-card-content {
  padding: 20px;
  align-content: center;
}

.docs-gs-card-content h4 {
  margin-top: 0;
}

.docs-gs-card-content ul {
  padding-left: 18px;
}

.gs-video img {
  margin-right: 20px;
}

/* Tablet */
@media (max-width: 768px) {
  .docs-gs-card {
    flex-direction: column;
  }

  .docs-gs-card img {
    width: 100%;
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .docs-gs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .docs-gs-card img {
    height: 300px;
  }

  .docs-gs-card-content {
    padding: 16px;
  }

}


.startplus-details summary {
  list-style: none;
  cursor: pointer;
flex-direction: column;
border-radius: 12px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin-top: 60px;
}

.startplus-summary {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  margin-bottom: 12px;
}

.startplus-summary img {
  width: 100%;
  display: block;
  margin: 0 auto 6px;
}

.startplus-summary span {
  font-size: 0.85rem;
}

.startplus-details details {
margin-bottom: 40px;
}

/* CSS Styles for Manuals Page in BetterDocs */
 .manuals-wrapper {
        text-align: center;
        margin: 28px 0 10px;
    }

    .manuals-title {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.2px;
        margin: 0 0 14px;
    }

    .manuals-grid {
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .manual-card {
        text-align: center;
        text-decoration: none !important;
        color: #000 !important;
		height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: white;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
        min-width: 80px;
        width: 140px;
    }

    .manual-card:hover {
        /* Blue outline combining with the drop shadow */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), 0 0 0 2px #2271b1;
    }

    .manual-flag {
        width: 80px !important;
        height: 80px !important;
        object-fit: cover;
        display: block;
        margin: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 50px;
    }

    .manual-name {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 600;
        display: block;
        line-height: 1.2;
    }

/* Removes unwanted overlapping betterdocs header */
.betterdocs-entry-header {
	display: none !important;
}

/* Stops betterdocs sidebar overlapping footer */
.betterdocs-sidebar {
	z-index: 0 !important;
    padding-bottom: 58px;
}

/* Betterdocs styling*/
.betterdocs-folder-icon {
	background-color: #fff !important;
	border: 1px solid #eaecf0;
	padding: 8px;
}

.category-box .betterdocs-single-category-inner .betterdocs-category-header-inner .betterdocs-folder-icon {
	height: 64px !important;
	width: 64px !important;
}

.betterdocs-sidebar.betterdocs-sidebar-layout-7 .betterdocs-sidebar-content .betterdocs-category-grid-wrapper .betterdocs-category-grid-inner-wrapper .betterdocs-single-category-wrapper .betterdocs-single-category-inner .betterdocs-category-header .betterdocs-category-header-inner .betterdocs-folder-icon {
	height: 20px !important;
	width: 20px !important;
	padding: 2px;
}

.betterdocs-search-layout-1 {
	margin-top: 0px !important;
}

.betterdocs-faq-wrapper {
	margin: 80px 40px 0 !important;
}

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

.betterdocs-faq-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

	.betterdocs-faq-wrapper .betterdocs-faq-inner-wrapper {
		max-width: none !important;
	}
	
	.betterdocs-faq-section-title {
		margin-bottom: 40px !important;
	}
	
	.betterdocs-title-excerpt-lists {
		display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
	.betterdocs-title-excerpt-lists .betterdocs-title-excerpt-list {
		border: 1px solid #eaecf0;
	}
	}

/* styling headings on betterdocs */
	.faq-heading {
		font-size: 23px;
		line-height: 27px;
		margin-bottom: 10px;
}

/* styling videos page on betterdocs*/
.docs-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.docs-video-grid > div {
  border-radius: 8px;
  overflow: hidden;
}
.docs-video-grid > p:empty {
  display: none;
}

.docs-video-grid > p {
  margin-bottom: 0px;
}

.docs-video-grid .wp-video,
.docs-video-grid .mejs-container {
  width: 100% !important;
  max-width: 100% !important;
}
.docs-video-grid video {
  width: 100% !important;
  height: auto !important;
  display: block;
}
.docs-video-grid .mejs-inner,
.docs-video-grid .mejs-mediaelement {
  width: 100% !important;
  height: auto !important;
}
.docs-video-grid .mejs-overlay {
scale: 50%
}
.docs-video-grid .mejs-controls {
opacity: 0;
}
.docs-video-grid .mejs-container:hover .mejs-controls {
  opacity: 1 !important;
}

@media (max-width: 600px) {
  .docs-video-grid {
    grid-template-columns: 1fr;
  }
}