@charset "UTF-8";
/**
 * 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));
 */
.fot-archive-filterable {
  padding: 0 0 5rem;
}
.fot-archive-filterable .fot-technology-page-banner {
  padding-top: 0;
  border-bottom: 1px solid #D9D9D9;
}
.fot-archive-filterable .fot-technology-page-banner__main {
  margin-bottom: 0;
}
.fot-archive-filterable .fot-technology-page-banner__aside {
  margin-top: -35px;
}
.fot-archive-filterable .fot-technology-page-banner__breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.fot-archive-filterable .fot-technology-page-banner__logo {
  display: flex;
  align-items: center;
  height: 4rem;
}
.fot-archive-filterable .fot-technology-page-banner__logo-img {
  max-width: 9.375rem;
}
.fot-archive-filterable .fot-training-card {
  padding: 1.5rem;
}
.fot-archive-filterable .fot-training-card__title {
  font-size: 1.25rem;
}
.fot-archive-filterable .fot-training-card__image {
  height: 8.6875rem;
}
.fot-archive-filterable .fot-training-card__logo-overlay {
  width: 4.375rem;
  height: 2.8125rem;
  padding: 0.3125rem 0.75rem;
}

.fot-archive-filterable__container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.fot-archive-filterable__layout {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
  gap: 1.875rem;
  margin: 2.5rem 0 0;
}

.fot-archive-filterable__sidebar {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.375rem 0 0;
  height: fit-content;
  position: sticky;
  top: 1.25rem;
}

.fot-archive-filterable__sidebar-heading {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0;
  color: #002C87;
  margin: 0 0 1.5rem;
}
.fot-page--training .fot-archive-filterable__sidebar-heading, .fot-page--search .fot-archive-filterable__sidebar-heading, .fot-card-search--training .fot-archive-filterable__sidebar-heading, .fot-card-search--default .fot-archive-filterable__sidebar-heading, .fot-block--training .fot-archive-filterable__sidebar-heading, .fot-color-theme--blue .fot-archive-filterable__sidebar-heading {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__sidebar-heading, .fot-card-search--certifications .fot-archive-filterable__sidebar-heading, .fot-block--certifications .fot-archive-filterable__sidebar-heading, .fot-color-theme--green .fot-archive-filterable__sidebar-heading {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__sidebar-heading, .fot-card-search--events .fot-archive-filterable__sidebar-heading, .fot-block--events .fot-archive-filterable__sidebar-heading, .fot-color-theme--pink .fot-archive-filterable__sidebar-heading {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__sidebar-heading, .fot-card-search--news .fot-archive-filterable__sidebar-heading, .fot-block--news .fot-archive-filterable__sidebar-heading, .fot-color-theme--purple .fot-archive-filterable__sidebar-heading {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__sidebar-heading, .fot-card-search--community .fot-archive-filterable__sidebar-heading, .fot-block--community .fot-archive-filterable__sidebar-heading, .fot-color-theme--orange .fot-archive-filterable__sidebar-heading {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__sidebar-heading, .fot-card-search--jobs .fot-archive-filterable__sidebar-heading, .fot-block--jobs .fot-archive-filterable__sidebar-heading, .fot-color-theme--red .fot-archive-filterable__sidebar-heading {
  color: #530F10;
}

.fot-archive-filterable__filter-form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1.5rem;
}

.fot-archive-filterable__filter-section {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 0 1.5rem;
  border-bottom: 1px dashed #ECEDEE;
}
.fot-archive-filterable__filter-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fot-archive-filterable__filter-section--taxonomy .fot-archive-filterable__search-wrapper {
  margin: 0 0 0.9375rem;
}

.fot-archive-filterable__filter-title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0;
  color: #002C87;
  margin: 0 0 0.9375rem;
  color: #232325;
}
.fot-page--training .fot-archive-filterable__filter-title, .fot-page--search .fot-archive-filterable__filter-title, .fot-card-search--training .fot-archive-filterable__filter-title, .fot-card-search--default .fot-archive-filterable__filter-title, .fot-block--training .fot-archive-filterable__filter-title, .fot-color-theme--blue .fot-archive-filterable__filter-title {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__filter-title, .fot-card-search--certifications .fot-archive-filterable__filter-title, .fot-block--certifications .fot-archive-filterable__filter-title, .fot-color-theme--green .fot-archive-filterable__filter-title {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__filter-title, .fot-card-search--events .fot-archive-filterable__filter-title, .fot-block--events .fot-archive-filterable__filter-title, .fot-color-theme--pink .fot-archive-filterable__filter-title {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__filter-title, .fot-card-search--news .fot-archive-filterable__filter-title, .fot-block--news .fot-archive-filterable__filter-title, .fot-color-theme--purple .fot-archive-filterable__filter-title {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__filter-title, .fot-card-search--community .fot-archive-filterable__filter-title, .fot-block--community .fot-archive-filterable__filter-title, .fot-color-theme--orange .fot-archive-filterable__filter-title {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__filter-title, .fot-card-search--jobs .fot-archive-filterable__filter-title, .fot-block--jobs .fot-archive-filterable__filter-title, .fot-color-theme--red .fot-archive-filterable__filter-title {
  color: #BC0000;
}

.fot-archive-filterable__search-wrapper {
  position: relative;
}
.fot-archive-filterable__search-wrapper .fot-icon--search {
  display: flex;
}

.fot-archive-filterable__search-input,
.fot-archive-filterable__filter-search {
  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;
  padding: 0.75rem 3.0625rem 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid #D6D6D6;
  background-color: #FFFFFF;
  color: #232325;
  width: 100%;
}
.fot-archive-filterable__search-input:focus,
.fot-archive-filterable__filter-search:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}
.fot-archive-filterable__search-input::placeholder,
.fot-archive-filterable__filter-search::placeholder {
  color: #232325;
  opacity: 0.7;
}

.fot-archive-filterable__search-button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6E6E6F;
  cursor: pointer;
  padding: 0.25rem;
}
.fot-page--training .fot-archive-filterable__search-button:hover, .fot-page--search .fot-archive-filterable__search-button:hover, .fot-card-search--training .fot-archive-filterable__search-button:hover, .fot-card-search--default .fot-archive-filterable__search-button:hover, .fot-block--training .fot-archive-filterable__search-button:hover, .fot-color-theme--blue .fot-archive-filterable__search-button:hover {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__search-button:hover, .fot-card-search--certifications .fot-archive-filterable__search-button:hover, .fot-block--certifications .fot-archive-filterable__search-button:hover, .fot-color-theme--green .fot-archive-filterable__search-button:hover {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__search-button:hover, .fot-card-search--events .fot-archive-filterable__search-button:hover, .fot-block--events .fot-archive-filterable__search-button:hover, .fot-color-theme--pink .fot-archive-filterable__search-button:hover {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__search-button:hover, .fot-card-search--news .fot-archive-filterable__search-button:hover, .fot-block--news .fot-archive-filterable__search-button:hover, .fot-color-theme--purple .fot-archive-filterable__search-button:hover {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__search-button:hover, .fot-card-search--community .fot-archive-filterable__search-button:hover, .fot-block--community .fot-archive-filterable__search-button:hover, .fot-color-theme--orange .fot-archive-filterable__search-button:hover {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__search-button:hover, .fot-card-search--jobs .fot-archive-filterable__search-button:hover, .fot-block--jobs .fot-archive-filterable__search-button:hover, .fot-color-theme--red .fot-archive-filterable__search-button:hover {
  color: #BC0000;
}

.fot-archive-filterable__checkbox-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.625rem;
  overflow-y: auto;
  max-height: 21.875rem;
}

.fot-archive-filterable__checkbox-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  padding: 0.25rem 0;
}
.fot-page--training .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-page--search .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--training .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--default .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--training .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--blue .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--certifications .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--certifications .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--green .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--events .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--events .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--pink .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--news .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--news .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--purple .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--community .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--community .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--orange .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-card-search--jobs .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-block--jobs .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label, .fot-color-theme--red .fot-archive-filterable__checkbox-item:hover .fot-archive-filterable__checkbox-label {
  color: #BC0000;
}
.fot-archive-filterable__checkbox-item.fot-hidden, .fot-archive-filterable__checkbox-item.fot-search-hidden {
  display: none !important;
}

.fot-archive-filterable__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.0625rem;
  height: 1.0625rem;
  border: 1px solid #6E6E6F;
  border-radius: 0.3125rem;
  background-color: #FFFFFF;
  cursor: pointer;
  position: relative;
  margin: 0;
  margin-top: 0.0625rem;
  flex-shrink: 0;
}
.fot-archive-filterable__checkbox:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}
.fot-archive-filterable__checkbox:checked {
  border-color: transparent;
}
.fot-page--training .fot-archive-filterable__checkbox:checked, .fot-page--search .fot-archive-filterable__checkbox:checked, .fot-card-search--training .fot-archive-filterable__checkbox:checked, .fot-card-search--default .fot-archive-filterable__checkbox:checked, .fot-block--training .fot-archive-filterable__checkbox:checked, .fot-color-theme--blue .fot-archive-filterable__checkbox:checked {
  background-color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__checkbox:checked, .fot-card-search--certifications .fot-archive-filterable__checkbox:checked, .fot-block--certifications .fot-archive-filterable__checkbox:checked, .fot-color-theme--green .fot-archive-filterable__checkbox:checked {
  background-color: #006100;
}
.fot-page--events .fot-archive-filterable__checkbox:checked, .fot-card-search--events .fot-archive-filterable__checkbox:checked, .fot-block--events .fot-archive-filterable__checkbox:checked, .fot-color-theme--pink .fot-archive-filterable__checkbox:checked {
  background-color: #E72982;
}
.fot-page--news .fot-archive-filterable__checkbox:checked, .fot-card-search--news .fot-archive-filterable__checkbox:checked, .fot-block--news .fot-archive-filterable__checkbox:checked, .fot-color-theme--purple .fot-archive-filterable__checkbox:checked {
  background-color: #5700C5;
}
.fot-page--community .fot-archive-filterable__checkbox:checked, .fot-card-search--community .fot-archive-filterable__checkbox:checked, .fot-block--community .fot-archive-filterable__checkbox:checked, .fot-color-theme--orange .fot-archive-filterable__checkbox:checked {
  background-color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__checkbox:checked, .fot-card-search--jobs .fot-archive-filterable__checkbox:checked, .fot-block--jobs .fot-archive-filterable__checkbox:checked, .fot-color-theme--red .fot-archive-filterable__checkbox:checked {
  background-color: #BC0000;
}
.fot-archive-filterable__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url("../../icons/icon-check-white.svg");
}

.fot-archive-filterable__checkbox-label {
  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: #232325;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  font-weight: 600;
}
.fot-page--training fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-page--search fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--training fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--default fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--training fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--blue fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #01013D;
}
.fot-page--certifications fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--certifications fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--certifications fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--green fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #002100;
}
.fot-page--events fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--events fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--events fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--pink fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #430033;
}
.fot-page--news fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--news fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--news fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--purple fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #1E053F;
}
.fot-page--community fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--community fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--community fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--orange fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #490200;
}
.fot-page--jobs fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-card-search--jobs fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-block--jobs fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label, .fot-color-theme--red fot-archive-filterable__checkbox-list .fot-archive-filterable__checkbox:checked + .fot-archive-filterable__checkbox-label {
  color: #530F10;
}

.fot-archive-filterable__show-more {
  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;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
  margin: 0.625rem 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5625rem;
}
.fot-page--training .fot-archive-filterable__show-more, .fot-page--search .fot-archive-filterable__show-more, .fot-card-search--training .fot-archive-filterable__show-more, .fot-card-search--default .fot-archive-filterable__show-more, .fot-block--training .fot-archive-filterable__show-more, .fot-color-theme--blue .fot-archive-filterable__show-more {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__show-more, .fot-card-search--certifications .fot-archive-filterable__show-more, .fot-block--certifications .fot-archive-filterable__show-more, .fot-color-theme--green .fot-archive-filterable__show-more {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__show-more, .fot-card-search--events .fot-archive-filterable__show-more, .fot-block--events .fot-archive-filterable__show-more, .fot-color-theme--pink .fot-archive-filterable__show-more {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__show-more, .fot-card-search--news .fot-archive-filterable__show-more, .fot-block--news .fot-archive-filterable__show-more, .fot-color-theme--purple .fot-archive-filterable__show-more {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__show-more, .fot-card-search--community .fot-archive-filterable__show-more, .fot-block--community .fot-archive-filterable__show-more, .fot-color-theme--orange .fot-archive-filterable__show-more {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__show-more, .fot-card-search--jobs .fot-archive-filterable__show-more, .fot-block--jobs .fot-archive-filterable__show-more, .fot-color-theme--red .fot-archive-filterable__show-more {
  color: #530F10;
}
.fot-archive-filterable__show-more::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.28125rem solid transparent;
  border-right: 0.28125rem solid transparent;
  border-top: 0.275rem solid currentColor;
  transition: transform 0.3s ease;
}
.fot-archive-filterable__show-more.fot-expanded {
  color: #6E6E6F;
}
.fot-archive-filterable__show-more.fot-expanded::after {
  margin-top: 0.25rem;
  transform: translateY(-50%) rotate(180deg);
}

.fot-archive-filterable__no-results {
  padding: 0.75rem 0;
  text-align: center;
  color: #6E6E6F;
  font-style: italic;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  font-size: 0.8125rem;
}

.fot-archive-filterable__filter-label {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
}

.fot-archive-filterable__filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #232325;
  font-size: 0.875rem;
  min-width: 12.5rem;
}
.fot-archive-filterable__filter-select:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}

.fot-archive-filterable__filter-input {
  padding: 0.5rem 0.75rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #232325;
  font-size: 0.875rem;
  min-width: 12.5rem;
}
.fot-archive-filterable__filter-input:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}
.fot-archive-filterable__filter-input::placeholder {
  color: #6E6E6F;
  opacity: 0.7;
}

.fot-archive-filterable__filter-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.fot-archive-filterable__filter-button {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.fot-archive-filterable__clear-filters {
  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;
  text-decoration: none;
  margin: 0;
}
.fot-page--training .fot-archive-filterable__clear-filters, .fot-page--search .fot-archive-filterable__clear-filters, .fot-card-search--training .fot-archive-filterable__clear-filters, .fot-card-search--default .fot-archive-filterable__clear-filters, .fot-block--training .fot-archive-filterable__clear-filters, .fot-color-theme--blue .fot-archive-filterable__clear-filters {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__clear-filters, .fot-card-search--certifications .fot-archive-filterable__clear-filters, .fot-block--certifications .fot-archive-filterable__clear-filters, .fot-color-theme--green .fot-archive-filterable__clear-filters {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__clear-filters, .fot-card-search--events .fot-archive-filterable__clear-filters, .fot-block--events .fot-archive-filterable__clear-filters, .fot-color-theme--pink .fot-archive-filterable__clear-filters {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__clear-filters, .fot-card-search--news .fot-archive-filterable__clear-filters, .fot-block--news .fot-archive-filterable__clear-filters, .fot-color-theme--purple .fot-archive-filterable__clear-filters {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__clear-filters, .fot-card-search--community .fot-archive-filterable__clear-filters, .fot-block--community .fot-archive-filterable__clear-filters, .fot-color-theme--orange .fot-archive-filterable__clear-filters {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__clear-filters, .fot-card-search--jobs .fot-archive-filterable__clear-filters, .fot-block--jobs .fot-archive-filterable__clear-filters, .fot-color-theme--red .fot-archive-filterable__clear-filters {
  color: #530F10;
}
.fot-archive-filterable__clear-filters:hover {
  text-decoration: underline;
}

.fot-archive-filterable__results-count {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: 0;
  color: #002C87;
  color: #232325;
}

.fot-archive-filterable__filter-section--autosuggest .fot-archive-filterable__search-wrapper {
  margin: 0;
}

.fot-archive-filterable__autosuggest-wrapper {
  position: relative;
  margin: 0;
}

.fot-archive-filterable__autosuggest-input {
  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;
  padding: 0.75rem 3.0625rem 0.75rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid #D6D6D6;
  background-color: #FFFFFF;
  color: #232325;
  width: 100%;
}
.fot-archive-filterable__autosuggest-input:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}
.fot-archive-filterable__autosuggest-input::placeholder {
  color: #232325;
  opacity: 0.7;
}

.fot-archive-filterable__suggestions {
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(181, 181, 181, 0.1);
  z-index: 1000;
  max-height: 15.625rem;
  overflow-y: auto;
  margin-top: 0.25rem;
}

.fot-archive-filterable__suggestions-list {
  padding: 0.5rem 0;
}

.fot-archive-filterable__suggestion-item {
  padding: 0.625rem 1rem;
  cursor: pointer;
  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: #232325;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: normal;
  align-items: center;
  gap: 0.3125rem;
}
.fot-archive-filterable__suggestion-item:hover {
  background-color: rgba(0, 44, 135, 0.05);
}
.fot-page--training .fot-archive-filterable__suggestion-item:hover, .fot-page--search .fot-archive-filterable__suggestion-item:hover, .fot-card-search--training .fot-archive-filterable__suggestion-item:hover, .fot-card-search--default .fot-archive-filterable__suggestion-item:hover, .fot-block--training .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--blue .fot-archive-filterable__suggestion-item:hover {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__suggestion-item:hover, .fot-card-search--certifications .fot-archive-filterable__suggestion-item:hover, .fot-block--certifications .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--green .fot-archive-filterable__suggestion-item:hover {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__suggestion-item:hover, .fot-card-search--events .fot-archive-filterable__suggestion-item:hover, .fot-block--events .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--pink .fot-archive-filterable__suggestion-item:hover {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__suggestion-item:hover, .fot-card-search--news .fot-archive-filterable__suggestion-item:hover, .fot-block--news .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--purple .fot-archive-filterable__suggestion-item:hover {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__suggestion-item:hover, .fot-card-search--community .fot-archive-filterable__suggestion-item:hover, .fot-block--community .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--orange .fot-archive-filterable__suggestion-item:hover {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__suggestion-item:hover, .fot-card-search--jobs .fot-archive-filterable__suggestion-item:hover, .fot-block--jobs .fot-archive-filterable__suggestion-item:hover, .fot-color-theme--red .fot-archive-filterable__suggestion-item:hover {
  color: #BC0000;
}
.fot-archive-filterable__suggestion-item.fot-selected {
  background-color: rgba(0, 44, 135, 0.1);
  font-weight: 600;
}
.fot-page--training .fot-archive-filterable__suggestion-item.fot-selected, .fot-page--search .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--training .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--default .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--training .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--blue .fot-archive-filterable__suggestion-item.fot-selected {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--certifications .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--certifications .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--green .fot-archive-filterable__suggestion-item.fot-selected {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--events .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--events .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--pink .fot-archive-filterable__suggestion-item.fot-selected {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--news .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--news .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--purple .fot-archive-filterable__suggestion-item.fot-selected {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--community .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--community .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--orange .fot-archive-filterable__suggestion-item.fot-selected {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__suggestion-item.fot-selected, .fot-card-search--jobs .fot-archive-filterable__suggestion-item.fot-selected, .fot-block--jobs .fot-archive-filterable__suggestion-item.fot-selected, .fot-color-theme--red .fot-archive-filterable__suggestion-item.fot-selected {
  color: #530F10;
}

.fot-archive-filterable__suggestion-count {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6E6E6F;
  opacity: 0.8;
  font-size: 1rem;
}

.fot-archive-filterable__tag-cloud {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
}
.fot-archive-filterable__tag-cloud:not(:empty) {
  margin: 0.625rem 0 0;
}

.fot-archive-filterable__tag {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.3125rem 0.375rem 0.75rem;
  background-color: #feeeee;
  border-radius: 1.25rem;
  border: none;
  transition: all 0.3s ease;
}

.fot-archive-filterable__tag-text {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #232325;
  white-space: nowrap;
}

.fot-archive-filterable__tag-remove {
  background: none;
  border: none;
  cursor: pointer;
  line-height: 0;
}

.fot-archive-filterable__autosuggest-no-results {
  padding: 0.625rem 1rem;
  text-align: center;
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6E6E6F;
  font-style: italic;
}

.fot-archive-filterable__main {
  min-width: 0;
}

.fot-archive-filterable__results-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 1.125rem;
}

.fot-archive-filterable__sort-controls {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.fot-archive-filterable__sort-select {
  padding: 0.375rem 0.75rem;
  border: 1px solid #CBCBCB;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #232325;
  font-size: 0.875rem;
}
.fot-archive-filterable__sort-select:focus {
  outline: none;
  border-color: #002C87;
  box-shadow: 0 0 0 2px rgba(0, 44, 135, 0.2);
}

.fot-archive-filterable__custom-dropdown {
  position: relative;
  display: inline-block;
}

.fot-archive-filterable__dropdown-trigger {
  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: #232325;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  background: #FFFFFF;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.fot-archive-filterable__dropdown-trigger:hover {
  border-color: #6E6E6F;
}

.fot-archive-filterable__dropdown-label {
  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: #232325;
}
.fot-archive-filterable__dropdown-label strong {
  font-weight: 600;
}
.fot-page--training .fot-archive-filterable__dropdown-label strong, .fot-page--search .fot-archive-filterable__dropdown-label strong, .fot-card-search--training .fot-archive-filterable__dropdown-label strong, .fot-card-search--default .fot-archive-filterable__dropdown-label strong, .fot-block--training .fot-archive-filterable__dropdown-label strong, .fot-color-theme--blue .fot-archive-filterable__dropdown-label strong {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__dropdown-label strong, .fot-card-search--certifications .fot-archive-filterable__dropdown-label strong, .fot-block--certifications .fot-archive-filterable__dropdown-label strong, .fot-color-theme--green .fot-archive-filterable__dropdown-label strong {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__dropdown-label strong, .fot-card-search--events .fot-archive-filterable__dropdown-label strong, .fot-block--events .fot-archive-filterable__dropdown-label strong, .fot-color-theme--pink .fot-archive-filterable__dropdown-label strong {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__dropdown-label strong, .fot-card-search--news .fot-archive-filterable__dropdown-label strong, .fot-block--news .fot-archive-filterable__dropdown-label strong, .fot-color-theme--purple .fot-archive-filterable__dropdown-label strong {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__dropdown-label strong, .fot-card-search--community .fot-archive-filterable__dropdown-label strong, .fot-block--community .fot-archive-filterable__dropdown-label strong, .fot-color-theme--orange .fot-archive-filterable__dropdown-label strong {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__dropdown-label strong, .fot-card-search--jobs .fot-archive-filterable__dropdown-label strong, .fot-block--jobs .fot-archive-filterable__dropdown-label strong, .fot-color-theme--red .fot-archive-filterable__dropdown-label strong {
  color: #530F10;
}

.fot-archive-filterable__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0.25rem;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  min-width: 10.9375rem;
  padding: 0.625rem 0;
}
.fot-archive-filterable__dropdown-menu.fot-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fot-archive-filterable__dropdown-menu::before {
  content: "";
  display: block;
  background: #FFFFFF;
  border: 1px solid #ECEDEE;
  border-bottom: none;
  border-right: none;
  width: 1.0625rem;
  height: 1.0625rem;
  position: absolute;
  top: -0.5625rem;
  right: 1rem;
  transform: rotate(45deg);
  z-index: 1;
}

.fot-archive-filterable__dropdown-option {
  padding: 0.375rem 1.5rem;
  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: #232325;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: relative;
  text-align: right;
}
.fot-archive-filterable__dropdown-option:last-child {
  border-bottom: none;
}
.fot-page--training .fot-archive-filterable__dropdown-option:hover, .fot-page--search .fot-archive-filterable__dropdown-option:hover, .fot-card-search--training .fot-archive-filterable__dropdown-option:hover, .fot-card-search--default .fot-archive-filterable__dropdown-option:hover, .fot-block--training .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--blue .fot-archive-filterable__dropdown-option:hover, .fot-page--training .fot-archive-filterable__dropdown-option.fot-selected, .fot-page--search .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--training .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--default .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--training .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--blue .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #E4F2F9;
}
.fot-page--certifications .fot-archive-filterable__dropdown-option:hover, .fot-card-search--certifications .fot-archive-filterable__dropdown-option:hover, .fot-block--certifications .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--green .fot-archive-filterable__dropdown-option:hover, .fot-page--certifications .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--certifications .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--certifications .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--green .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #EBFAEB;
}
.fot-page--events .fot-archive-filterable__dropdown-option:hover, .fot-card-search--events .fot-archive-filterable__dropdown-option:hover, .fot-block--events .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--pink .fot-archive-filterable__dropdown-option:hover, .fot-page--events .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--events .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--events .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--pink .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #FEF2FF;
}
.fot-page--news .fot-archive-filterable__dropdown-option:hover, .fot-card-search--news .fot-archive-filterable__dropdown-option:hover, .fot-block--news .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--purple .fot-archive-filterable__dropdown-option:hover, .fot-page--news .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--news .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--news .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--purple .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #F6F0FF;
}
.fot-page--community .fot-archive-filterable__dropdown-option:hover, .fot-card-search--community .fot-archive-filterable__dropdown-option:hover, .fot-block--community .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--orange .fot-archive-filterable__dropdown-option:hover, .fot-page--community .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--community .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--community .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--orange .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #FFEAD8;
}
.fot-page--jobs .fot-archive-filterable__dropdown-option:hover, .fot-card-search--jobs .fot-archive-filterable__dropdown-option:hover, .fot-block--jobs .fot-archive-filterable__dropdown-option:hover, .fot-color-theme--red .fot-archive-filterable__dropdown-option:hover, .fot-page--jobs .fot-archive-filterable__dropdown-option.fot-selected, .fot-card-search--jobs .fot-archive-filterable__dropdown-option.fot-selected, .fot-block--jobs .fot-archive-filterable__dropdown-option.fot-selected, .fot-color-theme--red .fot-archive-filterable__dropdown-option.fot-selected {
  background-color: #FEEEEE;
}

.fot-archive-filterable__sort-arrows {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.fot-archive-filterable__sort-arrow {
  background: none;
  border: 1px solid #D6D6D6;
  border-radius: 0.625rem;
  padding: 0.71875rem 0.4375rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.3s ease;
}
.fot-page--training .fot-archive-filterable__sort-arrow, .fot-page--search .fot-archive-filterable__sort-arrow, .fot-card-search--training .fot-archive-filterable__sort-arrow, .fot-card-search--default .fot-archive-filterable__sort-arrow, .fot-block--training .fot-archive-filterable__sort-arrow, .fot-color-theme--blue .fot-archive-filterable__sort-arrow {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__sort-arrow, .fot-card-search--certifications .fot-archive-filterable__sort-arrow, .fot-block--certifications .fot-archive-filterable__sort-arrow, .fot-color-theme--green .fot-archive-filterable__sort-arrow {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__sort-arrow, .fot-card-search--events .fot-archive-filterable__sort-arrow, .fot-block--events .fot-archive-filterable__sort-arrow, .fot-color-theme--pink .fot-archive-filterable__sort-arrow {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__sort-arrow, .fot-card-search--news .fot-archive-filterable__sort-arrow, .fot-block--news .fot-archive-filterable__sort-arrow, .fot-color-theme--purple .fot-archive-filterable__sort-arrow {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__sort-arrow, .fot-card-search--community .fot-archive-filterable__sort-arrow, .fot-block--community .fot-archive-filterable__sort-arrow, .fot-color-theme--orange .fot-archive-filterable__sort-arrow {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__sort-arrow, .fot-card-search--jobs .fot-archive-filterable__sort-arrow, .fot-block--jobs .fot-archive-filterable__sort-arrow, .fot-color-theme--red .fot-archive-filterable__sort-arrow {
  color: #BC0000;
}
.fot-page--training .fot-archive-filterable__sort-arrow:hover, .fot-page--search .fot-archive-filterable__sort-arrow:hover, .fot-card-search--training .fot-archive-filterable__sort-arrow:hover, .fot-card-search--default .fot-archive-filterable__sort-arrow:hover, .fot-block--training .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--blue .fot-archive-filterable__sort-arrow:hover {
  border-color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__sort-arrow:hover, .fot-card-search--certifications .fot-archive-filterable__sort-arrow:hover, .fot-block--certifications .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--green .fot-archive-filterable__sort-arrow:hover {
  border-color: #006100;
}
.fot-page--events .fot-archive-filterable__sort-arrow:hover, .fot-card-search--events .fot-archive-filterable__sort-arrow:hover, .fot-block--events .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--pink .fot-archive-filterable__sort-arrow:hover {
  border-color: #E72982;
}
.fot-page--news .fot-archive-filterable__sort-arrow:hover, .fot-card-search--news .fot-archive-filterable__sort-arrow:hover, .fot-block--news .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--purple .fot-archive-filterable__sort-arrow:hover {
  border-color: #5700C5;
}
.fot-page--community .fot-archive-filterable__sort-arrow:hover, .fot-card-search--community .fot-archive-filterable__sort-arrow:hover, .fot-block--community .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--orange .fot-archive-filterable__sort-arrow:hover {
  border-color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__sort-arrow:hover, .fot-card-search--jobs .fot-archive-filterable__sort-arrow:hover, .fot-block--jobs .fot-archive-filterable__sort-arrow:hover, .fot-color-theme--red .fot-archive-filterable__sort-arrow:hover {
  border-color: #BC0000;
}

.fot-archive-filterable__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
  row-gap: 1.5rem;
  margin: 0 0 2.5rem;
}

.fot-archive-filterable__item-image {
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
}
.fot-archive-filterable__item-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.fot-archive-filterable__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.fot-archive-filterable__item-image:hover img {
  transform: scale(1.05);
}

.fot-archive-filterable__item-content {
  padding: 1.25rem;
}

.fot-archive-filterable__item-terms {
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}

.fot-archive-filterable__item-term {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  padding: 0.25rem 0.5rem;
  background-color: #00BEFF;
  border-radius: 0.75rem;
  font-size: 0.75rem;
}
.fot-page--training .fot-archive-filterable__item-term, .fot-page--search .fot-archive-filterable__item-term, .fot-card-search--training .fot-archive-filterable__item-term, .fot-card-search--default .fot-archive-filterable__item-term, .fot-block--training .fot-archive-filterable__item-term, .fot-color-theme--blue .fot-archive-filterable__item-term {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__item-term, .fot-card-search--certifications .fot-archive-filterable__item-term, .fot-block--certifications .fot-archive-filterable__item-term, .fot-color-theme--green .fot-archive-filterable__item-term {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__item-term, .fot-card-search--events .fot-archive-filterable__item-term, .fot-block--events .fot-archive-filterable__item-term, .fot-color-theme--pink .fot-archive-filterable__item-term {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__item-term, .fot-card-search--news .fot-archive-filterable__item-term, .fot-block--news .fot-archive-filterable__item-term, .fot-color-theme--purple .fot-archive-filterable__item-term {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__item-term, .fot-card-search--community .fot-archive-filterable__item-term, .fot-block--community .fot-archive-filterable__item-term, .fot-color-theme--orange .fot-archive-filterable__item-term {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__item-term, .fot-card-search--jobs .fot-archive-filterable__item-term, .fot-block--jobs .fot-archive-filterable__item-term, .fot-color-theme--red .fot-archive-filterable__item-term {
  color: #530F10;
}

.fot-archive-filterable__item-title {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #232325;
  margin: 0 0 0.75rem;
}
.fot-archive-filterable__item-title a {
  color: inherit;
  text-decoration: none;
}
.fot-page--training .fot-archive-filterable__item-title a:hover, .fot-page--search .fot-archive-filterable__item-title a:hover, .fot-card-search--training .fot-archive-filterable__item-title a:hover, .fot-card-search--default .fot-archive-filterable__item-title a:hover, .fot-block--training .fot-archive-filterable__item-title a:hover, .fot-color-theme--blue .fot-archive-filterable__item-title a:hover {
  color: #002C87;
}
.fot-page--certifications .fot-archive-filterable__item-title a:hover, .fot-card-search--certifications .fot-archive-filterable__item-title a:hover, .fot-block--certifications .fot-archive-filterable__item-title a:hover, .fot-color-theme--green .fot-archive-filterable__item-title a:hover {
  color: #006100;
}
.fot-page--events .fot-archive-filterable__item-title a:hover, .fot-card-search--events .fot-archive-filterable__item-title a:hover, .fot-block--events .fot-archive-filterable__item-title a:hover, .fot-color-theme--pink .fot-archive-filterable__item-title a:hover {
  color: #E72982;
}
.fot-page--news .fot-archive-filterable__item-title a:hover, .fot-card-search--news .fot-archive-filterable__item-title a:hover, .fot-block--news .fot-archive-filterable__item-title a:hover, .fot-color-theme--purple .fot-archive-filterable__item-title a:hover {
  color: #5700C5;
}
.fot-page--community .fot-archive-filterable__item-title a:hover, .fot-card-search--community .fot-archive-filterable__item-title a:hover, .fot-block--community .fot-archive-filterable__item-title a:hover, .fot-color-theme--orange .fot-archive-filterable__item-title a:hover {
  color: #E52B17;
}
.fot-page--jobs .fot-archive-filterable__item-title a:hover, .fot-card-search--jobs .fot-archive-filterable__item-title a:hover, .fot-block--jobs .fot-archive-filterable__item-title a:hover, .fot-color-theme--red .fot-archive-filterable__item-title a:hover {
  color: #BC0000;
}

.fot-archive-filterable__item-excerpt {
  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: #232325;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.fot-archive-filterable__item-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ECEDEE;
  padding: 0.75rem 0 0;
}

.fot-archive-filterable__item-date {
  font-family: "Bromny", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  color: #6E6E6F;
  color: #6E6E6F;
}

.fot-archive-filterable__item-price {
  font-weight: 600;
}
.fot-page--training .fot-archive-filterable__item-price, .fot-page--search .fot-archive-filterable__item-price, .fot-card-search--training .fot-archive-filterable__item-price, .fot-card-search--default .fot-archive-filterable__item-price, .fot-block--training .fot-archive-filterable__item-price, .fot-color-theme--blue .fot-archive-filterable__item-price {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__item-price, .fot-card-search--certifications .fot-archive-filterable__item-price, .fot-block--certifications .fot-archive-filterable__item-price, .fot-color-theme--green .fot-archive-filterable__item-price {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__item-price, .fot-card-search--events .fot-archive-filterable__item-price, .fot-block--events .fot-archive-filterable__item-price, .fot-color-theme--pink .fot-archive-filterable__item-price {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__item-price, .fot-card-search--news .fot-archive-filterable__item-price, .fot-block--news .fot-archive-filterable__item-price, .fot-color-theme--purple .fot-archive-filterable__item-price {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__item-price, .fot-card-search--community .fot-archive-filterable__item-price, .fot-block--community .fot-archive-filterable__item-price, .fot-color-theme--orange .fot-archive-filterable__item-price {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__item-price, .fot-card-search--jobs .fot-archive-filterable__item-price, .fot-block--jobs .fot-archive-filterable__item-price, .fot-color-theme--red .fot-archive-filterable__item-price {
  color: #530F10;
}
.fot-archive-filterable__item-price .fot-price del {
  color: #6E6E6F;
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.fot-archive-filterable__item-price .fot-price ins {
  text-decoration: none;
  font-weight: 700;
}
.fot-page--training .fot-archive-filterable__item-price .fot-price ins, .fot-page--search .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--training .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--default .fot-archive-filterable__item-price .fot-price ins, .fot-block--training .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--blue .fot-archive-filterable__item-price .fot-price ins {
  color: #01013D;
}
.fot-page--certifications .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--certifications .fot-archive-filterable__item-price .fot-price ins, .fot-block--certifications .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--green .fot-archive-filterable__item-price .fot-price ins {
  color: #002100;
}
.fot-page--events .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--events .fot-archive-filterable__item-price .fot-price ins, .fot-block--events .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--pink .fot-archive-filterable__item-price .fot-price ins {
  color: #430033;
}
.fot-page--news .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--news .fot-archive-filterable__item-price .fot-price ins, .fot-block--news .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--purple .fot-archive-filterable__item-price .fot-price ins {
  color: #1E053F;
}
.fot-page--community .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--community .fot-archive-filterable__item-price .fot-price ins, .fot-block--community .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--orange .fot-archive-filterable__item-price .fot-price ins {
  color: #490200;
}
.fot-page--jobs .fot-archive-filterable__item-price .fot-price ins, .fot-card-search--jobs .fot-archive-filterable__item-price .fot-price ins, .fot-block--jobs .fot-archive-filterable__item-price .fot-price ins, .fot-color-theme--red .fot-archive-filterable__item-price .fot-price ins {
  color: #530F10;
}

.fot-archive-filterable__item--product .fot-archive-filterable__item-meta {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  align-items: flex-start;
}

.fot-event-card--archive {
  width: 18.6875rem;
  min-height: 36rem;
}
.fot-event-card--archive .fot-event-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: 4.2em;
}
.fot-event-card--archive .fot-event-card__image {
  width: 18.6875rem !important;
  height: 10.5rem !important;
}
.fot-event-card--archive .fot-event-card__image .fot-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fot-event-card--archive .fot-event-card__price-free {
  font-size: 1rem !important;
  font-weight: 600 !important;
}
.fot-page--training .fot-event-card--archive .fot-event-card__price-free, .fot-page--search .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--training .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--default .fot-event-card--archive .fot-event-card__price-free, .fot-block--training .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--blue .fot-event-card--archive .fot-event-card__price-free {
  color: #01013D;
}
.fot-page--certifications .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--certifications .fot-event-card--archive .fot-event-card__price-free, .fot-block--certifications .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--green .fot-event-card--archive .fot-event-card__price-free {
  color: #002100;
}
.fot-page--events .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--events .fot-event-card--archive .fot-event-card__price-free, .fot-block--events .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--pink .fot-event-card--archive .fot-event-card__price-free {
  color: #430033;
}
.fot-page--news .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--news .fot-event-card--archive .fot-event-card__price-free, .fot-block--news .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--purple .fot-event-card--archive .fot-event-card__price-free {
  color: #1E053F;
}
.fot-page--community .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--community .fot-event-card--archive .fot-event-card__price-free, .fot-block--community .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--orange .fot-event-card--archive .fot-event-card__price-free {
  color: #490200;
}
.fot-page--jobs .fot-event-card--archive .fot-event-card__price-free, .fot-card-search--jobs .fot-event-card--archive .fot-event-card__price-free, .fot-block--jobs .fot-event-card--archive .fot-event-card__price-free, .fot-color-theme--red .fot-event-card--archive .fot-event-card__price-free {
  color: #530F10;
}
.fot-event-card--archive .fot-event-card__price-external {
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
}
.fot-page--training .fot-event-card--archive .fot-event-card__price-external, .fot-page--search .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--training .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--default .fot-event-card--archive .fot-event-card__price-external, .fot-block--training .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--blue .fot-event-card--archive .fot-event-card__price-external {
  color: #002C87;
}
.fot-page--certifications .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--certifications .fot-event-card--archive .fot-event-card__price-external, .fot-block--certifications .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--green .fot-event-card--archive .fot-event-card__price-external {
  color: #006100;
}
.fot-page--events .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--events .fot-event-card--archive .fot-event-card__price-external, .fot-block--events .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--pink .fot-event-card--archive .fot-event-card__price-external {
  color: #E72982;
}
.fot-page--news .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--news .fot-event-card--archive .fot-event-card__price-external, .fot-block--news .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--purple .fot-event-card--archive .fot-event-card__price-external {
  color: #5700C5;
}
.fot-page--community .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--community .fot-event-card--archive .fot-event-card__price-external, .fot-block--community .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--orange .fot-event-card--archive .fot-event-card__price-external {
  color: #E52B17;
}
.fot-page--jobs .fot-event-card--archive .fot-event-card__price-external, .fot-card-search--jobs .fot-event-card--archive .fot-event-card__price-external, .fot-block--jobs .fot-event-card--archive .fot-event-card__price-external, .fot-color-theme--red .fot-event-card--archive .fot-event-card__price-external {
  color: #BC0000;
}
.fot-event-card--archive .fot-event-card__datetime {
  padding: 1rem 1rem 1.5rem 1rem;
}
.fot-event-card--archive .fot-event-card__content {
  padding: 1rem 1rem 1.5rem 1rem;
}

.fot-archive-filterable__grid--no-results {
  display: block;
}

.fot-icon--loading::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 3.75rem 3.75rem;
  width: 3.75rem;
  height: 3.75rem;
  display: inline-block;
  background-image: url("../../icons/icon-fot-logo.svg");
}

/*# sourceMappingURL=archive-filterable.css.map */
