@charset "UTF-8";
/**
 * Product Sales Page Styles
 * 
 * Styles for the product sales page template with two-column layout.
 */
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
#primary.site-main {
  overflow: visible;
}

.fot-product-sales__breadcrumbs-wrapper {
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  background: #fff;
  padding: 1rem 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  width: 100%;
}
body:not(.is-sticky-header) .fot-product-sales__breadcrumbs-wrapper {
  top: 0;
}
@media (max-width: 768px) {
  .fot-product-sales__breadcrumbs-wrapper {
    top: 48px;
  }
  body:not(.is-sticky-header) .fot-product-sales__breadcrumbs-wrapper {
    top: 0;
  }
}
body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__breadcrumbs-wrapper {
  top: 130px;
}
@media (max-width: 768px) {
  body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__breadcrumbs-wrapper {
    top: 108px;
  }
}
@media (max-width: 767.98px) {
  .fot-product-sales__breadcrumbs-wrapper {
    position: absolute;
  }
}

.fot-product-sales__breadcrumbs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.fot-product-sales-page {
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
  position: relative;
}
@media (max-width: 1024px) {
  .fot-product-sales-page {
    grid-template-columns: 1fr;
  }
}

.fot-product-sales__main {
  min-width: 0;
  position: relative;
}

.fot-product-sales__header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fot-product-sales__header-logo {
  flex-shrink: 0;
}
.fot-product-sales__header-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.fot-product-sales__header-content {
  flex: 1;
  max-width: 46.875rem;
}

.fot-product-sales__header-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.4375rem 0;
  color: #01013D;
}

.fot-product-sales__header-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #232325;
  margin: 0 0 0.75rem 0;
  max-width: 42.5rem;
}

.fot-product-sales__header-updated {
  font-size: 0.9375rem;
  color: #002C87;
  margin: 0;
  font-style: italic;
  font-weight: 600;
}

.fot-product-sales__header-updated-date {
  color: #232325;
  font-weight: 400;
}

.fot-product-sales__tabs {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  z-index: 100;
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  padding: 0;
  background: #002C87;
  overflow-x: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  position: relative;
}
body:not(.is-sticky-header) .fot-product-sales__tabs {
  top: 0;
}
@media (max-width: 768px) {
  .fot-product-sales__tabs {
    top: 0;
    flex-direction: column;
    overflow-x: visible;
    background: transparent;
  }
  body:not(.is-sticky-header) .fot-product-sales__tabs {
    top: 0;
  }
  .fot-product-sales__tabs.is-sticky {
    position: fixed;
    top: 3rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}
body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__tabs {
  top: 130px;
}
@media (max-width: 768px) {
  body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__tabs {
    top: 108px;
  }
  body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__tabs.is-sticky {
    top: 6.75rem;
  }
}

.fot-product-sales__tabs-heading {
  display: none;
}
@media (max-width: 767.98px) {
  .fot-product-sales__tabs-heading {
    display: block;
    margin: 0;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 1rem 2.5rem 1rem 1rem;
    background-color: #FFFFFF;
    color: #002C87 !important;
    border: 1px solid #002C87;
    box-shadow: 0 0 2px 2px rgba(0, 44, 135, 0.2);
    border-radius: 0.9375rem;
    font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
    color: #6E6E6F;
    line-height: 1;
    font-size: 1.3125rem !important;
  }
  .fot-product-sales__tabs-heading::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #002C87;
    transition: transform 0.3s ease;
  }
}
@media (max-width: 767.98px) {
  .fot-product-sales__tabs.is-open .fot-product-sales__tabs-heading {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .fot-product-sales__tabs.is-open .fot-product-sales__tabs-heading::after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (max-width: 767.98px) {
  .fot-product-sales__tabs.is-sticky .fot-product-sales__tabs-heading {
    border: none;
    border-radius: 0;
    background-color: #002C87;
    box-shadow: inset 0 4px 6px -4px rgba(133, 133, 133, 0.15), inset 0 -4px 6px -4px rgba(133, 133, 133, 0.15);
    color: #FFFFFF !important;
    font-weight: normal;
  }
  .fot-product-sales__tabs.is-sticky .fot-product-sales__tabs-heading::after {
    border-top-color: #FFFFFF;
  }
}

.fot-product-sales__tabs-buttons {
  display: flex;
  gap: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .fot-product-sales__tabs-buttons {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #ECEDEE;
    border-top: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 25rem;
    overflow-y: auto;
    margin: 0;
    flex-direction: column;
  }
  .fot-product-sales__tabs.is-open .fot-product-sales__tabs-buttons {
    display: flex;
  }
  .fot-product-sales__tabs.is-sticky.is-open .fot-product-sales__tabs-buttons {
    position: fixed;
    top: 3.3125rem;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: none;
    height: calc(100vh - 7rem);
    border-radius: 0;
  }
}

.fot-product-sales__tabs .fot-tab {
  background: transparent;
  border: none;
  padding: 1.375rem 1.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  transition: all 0.2s;
  white-space: nowrap;
  border-left: 1px solid #2953a8;
  position: relative;
}
.fot-product-sales__tabs .fot-tab:hover {
  background: rgba(0, 44, 135, 0.05);
}
.fot-product-sales__tabs .fot-tab.active {
  background: linear-gradient(135deg, rgba(0, 190, 255, 0.3) 0%, rgba(0, 158, 255, 0.3) 100%);
  color: #FFFFFF;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .fot-product-sales__tabs .fot-tab {
    display: block;
    width: 100%;
    line-height: 1.5;
    padding: 0.75rem 1rem;
    color: #002C87;
    border: none;
    border-bottom: 1px solid #ECEDEE;
    text-align: center;
    font-size: 1.125rem;
    background: transparent;
  }
  .fot-product-sales__tabs .fot-tab:first-child {
    border-top: 1px solid #ECEDEE;
  }
  .fot-product-sales__tabs .fot-tab:last-child {
    border-bottom: none;
  }
  .fot-product-sales__tabs .fot-tab:hover, .fot-product-sales__tabs .fot-tab:focus {
    background-color: rgba(0, 44, 135, 0.08);
  }
  .fot-product-sales__tabs .fot-tab:active {
    background-color: rgba(0, 44, 135, 0.1);
  }
  .fot-product-sales__tabs .fot-tab.active {
    background: rgba(0, 44, 135, 0.1);
    color: #01013D;
    text-decoration: none;
    font-weight: 600;
  }
}

.fot-product-sales__hero {
  margin-bottom: 3rem;
}

.fot-product-sales__hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #002C87;
}

.fot-product-sales__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
}

.fot-product-sales__section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}

.fot-product-sales__section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #002C87;
}

.fot-product-sales__section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.fot-product-sales__section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.fot-product-sales-who-is-it-for {
  margin-bottom: 2rem;
  background: #F6F6F6;
  border: 1px solid #ECEDEE;
  border-radius: 0.9375rem;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.fot-product-sales-who-is-it-for::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8.25rem;
  background: #002C87;
}
@media (max-width: 767.98px) {
  .fot-product-sales-who-is-it-for::before {
    bottom: auto;
    height: 200px;
    right: 0;
    width: 100%;
  }
}

.fot-product-sales-who-is-it-for__content {
  display: flex;
  gap: 2rem;
  align-items: anchor-center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .fot-product-sales-who-is-it-for__content {
    flex-direction: column;
  }
}

.fot-product-sales-who-is-it-for__image {
  flex: 0 0 auto;
  width: 12.5rem;
  aspect-ratio: 1/1;
}
@media (max-width: 767.98px) {
  .fot-product-sales-who-is-it-for__image {
    margin-right: auto;
  }
}

.fot-product-sales-who-is-it-for__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}

.fot-product-sales-who-is-it-for__text {
  flex: 1;
}

.fot-product-sales-who-is-it-for__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.625rem 0;
  color: #000000;
}

.fot-product-sales-who-is-it-for__text p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.fot-product-sales-who-is-it-for__text p:last-child {
  margin-bottom: 0;
}

.fot-product-sales-what-you-will-learn,
.fot-product-sales-whats-included {
  margin-bottom: 2rem;
  background: #FFFFFF;
  overflow: hidden;
}

.fot-product-sales-what-you-will-learn__header,
.fot-product-sales-whats-included__header {
  background: #01013D;
  padding: 1rem 2rem;
  text-align: center;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
}
.fot-product-sales-what-you-will-learn__header h2,
.fot-product-sales-whats-included__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
  text-align: left;
}

.fot-product-sales-what-you-will-learn__content,
.fot-product-sales-whats-included__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border: 1px solid #ECEDEE;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
}
@media (max-width: 767.98px) {
  .fot-product-sales-what-you-will-learn__content,
  .fot-product-sales-whats-included__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.fot-product-sales-what-you-will-learn__column,
.fot-product-sales-whats-included__column {
  margin: 0;
  padding: 1.25rem;
}
@media (max-width: 767.98px) {
  .fot-product-sales-what-you-will-learn__column:first-child,
  .fot-product-sales-whats-included__column:first-child {
    padding-top: 1.25rem;
  }
}
.fot-product-sales-what-you-will-learn__column:last-child,
.fot-product-sales-whats-included__column:last-child {
  border-left: 1px solid #ECEDEE;
}
@media (max-width: 767.98px) {
  .fot-product-sales-what-you-will-learn__column:last-child,
  .fot-product-sales-whats-included__column:last-child {
    padding-bottom: 1.25rem;
  }
}
.fot-product-sales-what-you-will-learn__column ul,
.fot-product-sales-whats-included__column ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: disc;
}
.fot-product-sales-what-you-will-learn__column li,
.fot-product-sales-whats-included__column li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #000000;
}
.fot-product-sales-what-you-will-learn__column li:last-child,
.fot-product-sales-whats-included__column li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .fot-product-sales-what-you-will-learn__column,
  .fot-product-sales-whats-included__column {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.fot-product-sales-whats-included__column ul {
  list-style: none;
  padding-left: 0;
}
.fot-product-sales-whats-included__column li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fot-product-sales-whats-included__column .fot-icon {
  flex-shrink: 0;
}
.fot-product-sales-whats-included__column .fot-product-sales-whats-included__item-text {
  flex: 1;
  min-width: 0;
  line-height: 1.3125rem;
}

.fot-product-sales-why-choose-us__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.fot-product-sales-why-choose-us__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #232325;
  margin: 0 0 2rem 0;
}

.fot-product-sales-why-choose-us__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .fot-product-sales-why-choose-us__stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.fot-product-sales-why-choose-us__stat {
  display: flex;
  flex-direction: column;
  align-items: anchor-center;
}

.fot-product-sales-why-choose-us__stat-number-wrapper {
  position: relative;
  display: inline-block;
}

.fot-product-sales-why-choose-us__stat-number {
  font-size: 3.625rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  display: block;
}

.fot-product-sales-why-choose-us__stat--blue .fot-product-sales-why-choose-us__stat-number {
  color: #00BEFF;
}
.fot-product-sales-why-choose-us__stat--blue .fot-product-sales-why-choose-us__stat-divider {
  border-color: #E4F2F9;
}

.fot-product-sales-why-choose-us__stat--green .fot-product-sales-why-choose-us__stat-number {
  color: #009900;
}
.fot-product-sales-why-choose-us__stat--green .fot-product-sales-why-choose-us__stat-divider {
  border-color: #EBFAEB;
}

.fot-product-sales-why-choose-us__stat--red .fot-product-sales-why-choose-us__stat-number {
  color: #FF0000;
}
.fot-product-sales-why-choose-us__stat--red .fot-product-sales-why-choose-us__stat-divider {
  border-color: #FEEEEE;
}

.fot-product-sales-why-choose-us__stat-divider {
  width: 100%;
  height: 1px;
  border-top: 4px dashed;
  margin: 0.75rem 0 0.875rem 0;
  opacity: 0.5;
  align-self: stretch;
}

.fot-product-sales-why-choose-us__stat-label {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #232325;
  text-align: center;
  width: 100%;
  margin: 0;
}

.fot-course-module {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
}
.fot-course-module__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.fot-course-module__header:hover {
  background: #f9f9f9;
}
.fot-course-module__number {
  font-weight: 600;
  color: #002C87;
  min-width: 2rem;
}
.fot-course-module__title {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.fot-course-module__meta {
  font-size: 0.875rem;
  color: #666;
  margin-left: auto;
}
.fot-course-module__toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #002C87;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fot-course-module__content {
  padding: 0 1.5rem 1.5rem 4.5rem;
}

.fot-course-module__lessons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fot-course-module__lessons li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  font-size: 0.9375rem;
}

.fot-course-module__lessons li:last-child {
  border-bottom: none;
}

.fot-faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
}
.fot-faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #002C87;
  transition: background 0.2s;
}
.fot-faq-item__question:hover {
  background: #f9f9f9;
}
.fot-faq-item__question.active {
  background: #f0f4ff;
}
.fot-faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #002C87;
  margin-left: 1rem;
  flex-shrink: 0;
}

.fot-faq-item__answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #666;
  line-height: 1.7;
}

.fot-faq-item__answer p {
  margin-bottom: 1rem;
}

.fot-faq-item__answer p:last-child {
  margin-bottom: 0;
}

.fot-faq-item__answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.fot-faq-item__answer li {
  margin-bottom: 0.5rem;
}

.fot-tab-content {
  display: block;
  scroll-margin-top: 100px;
}
.fot-tab-content:not(:last-child) {
  margin-bottom: 3rem;
}

.fot-product-sales__sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  align-self: start;
  height: fit-content;
  overflow-y: auto;
  z-index: 10;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  box-shadow: 0 0.25rem 1.5rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
body:not(.is-sticky-header) .fot-product-sales__sidebar {
  top: 0;
  max-height: 100vh;
}
@media (max-width: 768px) {
  .fot-product-sales__sidebar {
    top: 48px;
    max-height: calc(100vh - 48px);
  }
  body:not(.is-sticky-header) .fot-product-sales__sidebar {
    top: 0;
    max-height: 100vh;
  }
}
body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__sidebar {
  top: 130px;
  max-height: calc(100vh - 130px);
}
@media (max-width: 768px) {
  body.is-sticky-header .fot-announcement-banner:not([style*="display: none"]) .fot-product-sales__sidebar {
    top: 108px;
    max-height: calc(100vh - 108px);
  }
}
@media (max-width: 767.98px) {
  .fot-product-sales__sidebar {
    max-height: none;
    top: 0;
    margin-bottom: 40px;
  }
}

.fot-product-sidebar {
  border: 1px solid #ECEDEE;
  border-radius: 15px;
  padding: 1.5rem;
}

.fot-product-sidebar__badge {
  position: absolute;
  top: 0;
  right: 1.4375rem;
  background: #F9C806;
  color: #000;
  padding: 0.3125rem 1rem;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  z-index: 1;
}

.fot-product-sidebar__image {
  position: relative;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  overflow: hidden;
  margin: -1.5rem -1.5rem -1.125rem -1.5rem;
}

.fot-product-sidebar__image img {
  width: 100%;
  height: auto;
  display: block;
}

.fot-product-sidebar__title {
  font-size: 1.5rem;
  margin-bottom: 0.375rem;
  color: #01013D;
  line-height: 1.625rem;
}

.fot-product-sidebar__pricing {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.fot-product-sidebar__price-current {
  font-size: 1.4375rem;
  font-weight: 700;
  color: #BC0000;
}

.fot-product-sidebar__price-current-currency {
  margin-right: 0.25rem;
}

.fot-product-sidebar__price-currency {
  font-size: 1rem;
}

.fot-product-sidebar__price-regular {
  font-size: 1.125rem;
  color: #6E6E6F;
  text-decoration: line-through;
}

.fot-product-sidebar__price-regular-currency {
  margin-right: 0.25rem;
}

.fot-product-sidebar__progress-card {
  margin-bottom: 1.5rem;
  margin-top: 0.625rem;
}

.fot-product-sidebar__progress-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.fot-product-sidebar__progress-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #01013D;
}

.fot-product-sidebar__progress-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01013D;
  flex-shrink: 0;
}

.fot-product-sidebar__progress-label {
  font-weight: 500;
  color: #232325;
  margin-bottom: 0.25rem;
  margin-right: 0.375rem;
}

.fot-product-sidebar__progress-value {
  font-weight: 600;
  color: #01013D;
  font-size: 18px;
}

.fot-product-sidebar__progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.fot-product-sidebar__progress-bar {
  flex: 1;
  height: 0.6875rem;
  background: #D9D9D9;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.fot-product-sidebar__progress-fill {
  height: 100%;
  background: #002C87;
  border-radius: 0.25rem;
  transition: width 0.3s ease;
}

.fot-product-sidebar__progress-percentage {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #01013D;
  font-weight: 600;
  flex-shrink: 0;
}

.fot-product-sidebar__progress-circle {
  width: 1.25rem;
  height: 1.25rem;
  color: #01013D;
  flex-shrink: 0;
}

.fot-product-sidebar__progress-percentage-text {
  font-size: 0.875rem;
}

.fot-product-sidebar__progress-button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #002C87;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.fot-product-sidebar__progress-button:hover {
  background: #001f5c;
  color: #fff;
}
.fot-product-sidebar__progress-button span {
  margin-top: 0.1875rem;
}

.fot-product-sidebar__cta {
  margin-bottom: 1.5rem;
}

/* stylelint-disable-next-line selector-class-pattern */
.fot-product-sidebar__cta .add_to_cart_inline {
  margin: 0;
}

.fot-product-sidebar__cta .fot-product-button {
  width: 100%;
}

.fot-product-sidebar__cta .fot-product-button > a {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 17px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: #ff6b35;
  color: #fff;
}
.fot-product-sidebar__cta .fot-product-button > a:hover {
  background: #e55a2b;
  color: #fff;
}
.fot-product-sidebar__cta .fot-product-button > a.added {
  display: none;
}

/* stylelint-disable-next-line selector-class-pattern */
.fot-product-sidebar__cta .add_to_cart_button.added {
  display: none;
}

.fot-product-sidebar__button {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 17px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.fot-product-sidebar__button--primary {
  background: #ff6b35;
  color: #fff;
}
.fot-product-sidebar__button--primary:hover {
  background: #e55a2b;
}

.fot-product-sidebar__button--secondary {
  background: #002C87;
  color: #fff;
}
.fot-product-sidebar__button--secondary:hover {
  background: #001f5c;
}

.fot-product-sidebar__view-cart,
.fot-product-sidebar__cta .added_to_cart {
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  color: #002C87;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.fot-product-sidebar__view-cart:hover,
.fot-product-sidebar__cta .added_to_cart:hover {
  color: #01013D;
  text-decoration: none;
}

.fot-product-sidebar__attributes {
  margin-bottom: 1.5rem;
  border-top: 1px dashed #ECEDEE;
  margin: 0 -23px 0px;
  padding: 16px 20px 0;
}

.fot-product-sidebar__attribute {
  display: flex;
  align-items: normal;
  gap: 0.875rem;
}

.fot-product-sidebar__attribute:last-child {
  margin-bottom: 0;
}

.fot-product-sidebar__attribute:nth-child(2) {
  margin-top: -5px;
}

.fot-product-sidebar__attribute:first-child .fot-icon {
  margin-left: -3px;
}

.fot-product-sidebar__attribute:first-child .fot-product-sidebar__attribute-text {
  color: #002C87;
  font-weight: 600;
}

.fot-product-sidebar__attribute-icon {
  font-size: 1.25rem;
}

.fot-product-sidebar__attribute-text {
  font-size: 0.9375rem;
}

.fot-product-sidebar__bundle {
  margin-top: 0.9375rem;
  padding: 1rem;
  background: #E4F2F9;
  border-radius: 15px;
  border: 2px solid #00BEFF;
}

.fot-product-sidebar__bundle-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #232325;
}

.fot-product-sidebar__bundle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.25rem;
}

.fot-product-sidebar__bundle-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.1875rem;
}

.fot-product-sidebar__bundle-check {
  color: #4caf50;
  font-weight: 700;
}

.fot-product-sidebar__bundle-text {
  color: #232325;
  font-weight: 600;
  font-size: 0.9375rem;
}

.fot-product-sidebar__bundle-pricing {
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.fot-product-sales-course-content {
  margin-bottom: 2rem;
  background: #E4F2F9;
  overflow: hidden;
}

.fot-product-sales-course-content__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding: 3.125rem 1.25rem;
}
@media (max-width: 767.98px) {
  .fot-product-sales-course-content__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.fot-product-sales-course-content__header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.fot-product-sales-course-content__heading {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #01013D;
}

.fot-product-sales-course-content__accordion {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 0.9375rem;
}

.fot-product-sales-course-content__item {
  border-bottom: 2px solid #E4F2F9;
}

.fot-product-sales-course-content__header {
  padding: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 0.9375rem;
}

.fot-product-sales-course-content__title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fot-product-sales-course-content__count {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6E6E6F;
  font-weight: 400;
  margin-left: auto;
}

.fot-product-sales-course-content__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.fot-product-sales-course-content__icon .fot-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.fot-product-sales-course-content__content {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
}

.fot-product-sales-course-content__content-inner {
  padding: 0 1.75rem 1.375rem;
}
.fot-product-sales-course-content__content-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fot-product-sales-course-content__content-inner li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #CBCBCB;
}
.fot-product-sales-course-content__content-inner li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.fot-product-sales-course-content__content-inner a {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #01013D;
  text-decoration: none;
  transition: color 0.2s ease;
}
.fot-product-sales-course-content__content-inner a:hover {
  color: #002C87;
  text-decoration: underline;
}

.fot-product-sales-course-content__preview {
  padding: 2.5rem;
  background-color: #FFFFFF;
  border-radius: 0.9375rem;
  text-align: center;
  color: #6E6E6F;
}

.fot-product-sales-course-content__item.is-open .fot-product-sales-course-content__icon .fot-icon--add-blue {
  display: none;
}
.fot-product-sales-course-content__item.is-open .fot-product-sales-course-content__icon .fot-icon--subtract-blue {
  display: block;
}
.fot-product-sales-course-content__item.is-open .fot-product-sales-course-content__content {
  opacity: 1;
  visibility: visible;
}

.fot-product-sales-course-content__item:not(.is-open) .fot-product-sales-course-content__icon .fot-icon--subtract-blue {
  display: none;
}

.fot-product-sidebar__training-class {
  margin-bottom: 1.25rem;
}

.fot-product-sidebar__training-class-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #232325;
  margin-bottom: 0.75rem;
}

.fot-product-sidebar__training-class-selector {
  position: relative;
  margin-bottom: 1rem;
}

.fot-product-sidebar__training-class-selected {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  border: 3px solid #009EFF;
  border-radius: 0.75rem;
  cursor: pointer;
}

.fot-product-sidebar__training-class-selected-left {
  flex: 1;
}

.fot-product-sidebar__training-class-date-range {
  font-size: 1.125rem;
  font-weight: 700;
  color: #01013D;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.fot-product-sidebar__training-class-count {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
}

.fot-product-sidebar__training-class-selected-right {
  text-align: right;
  flex-shrink: 0;
}

.fot-product-sidebar__training-class-time {
  font-size: 1rem;
  font-weight: 700;
  color: #232325;
  margin-bottom: 0.25rem;
}

.fot-product-sidebar__training-class-timezone {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.fot-product-sidebar__training-class-dropdown-icon {
  font-size: 0.625rem;
  color: #6E6E6F;
  transition: transform 0.2s;
}

.fot-product-sidebar__training-class-days {
  font-size: 0.875rem;
  color: #232325;
  font-weight: 400;
}

.fot-product-sidebar__training-class-dropdown {
  display: none;
  position: absolute;
  top: 7rem;
  right: 0;
  margin-top: 0.5rem;
  width: 16.25rem;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-radius: 0.6875rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 18.75rem;
}

.fot-product-sidebar__training-class-option {
  padding: 0.4375rem 0.9375rem;
  cursor: pointer;
}
.fot-product-sidebar__training-class-option:first-child {
  border-top-left-radius: 0.6875rem;
  border-top-right-radius: 0.6875rem;
}
.fot-product-sidebar__training-class-option:last-child {
  border-bottom-left-radius: 0.6875rem;
  border-bottom-right-radius: 0.6875rem;
  border-bottom: none;
}
.fot-product-sidebar__training-class-option:hover {
  background: #E4F2F9;
}
.fot-product-sidebar__training-class-option.is-selected {
  background: #E4F2F9;
}
.fot-product-sidebar__training-class-option.is-selected .fot-product-sidebar__training-class-option-date {
  color: #002C87;
}

.fot-product-sidebar__training-class-option-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #232325;
}

.fot-product-sidebar__training-class-option-date-text {
  flex: 1;
}

.fot-product-sidebar__training-class-option-time-text {
  text-align: right;
  font-weight: 500;
}

.fot-product-sidebar__training-class-option-stock {
  font-size: 0.75rem;
  color: #BC0000;
  font-weight: 500;
  margin-left: 0.5rem;
}

.fot-product-sidebar__pricing--training-class {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*# sourceMappingURL=page-product-sales.css.map */
