@charset "UTF-8";
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
:root,
[data-bs-theme=light] {
  --bs-blue: #005587;
  --bs-indigo: #333399;
  --bs-purple: #333399;
  --bs-pink: #D52158;
  --bs-red: #D52158;
  --bs-orange: #FF9015;
  --bs-yellow: #CDDE00;
  --bs-green: #00956E;
  --bs-teal: #76BC21;
  --bs-cyan: #1fc0de;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #005587;
  --bs-secondary: #666;
  --bs-success: #00956E;
  --bs-info: #1fc0de;
  --bs-warning: #FF9015;
  --bs-danger: #D52158;
  --bs-light: #ddd;
  --bs-dark: #131313;
  --bs-shade: #eef7ff;
  --bs-cyan: #c3e7f5;
  --bs-cyan-dk: #39c0c0;
  --bs-lime: #67bd4b;
  --bs-primary-rgb: 0, 85, 135;
  --bs-secondary-rgb: 102, 102, 102;
  --bs-success-rgb: 0, 149, 110;
  --bs-info-rgb: 31, 192, 222;
  --bs-warning-rgb: 255, 144, 21;
  --bs-danger-rgb: 213, 33, 88;
  --bs-light-rgb: 221, 221, 221;
  --bs-dark-rgb: 19, 19, 19;
  --bs-shade-rgb: 238, 247, 255;
  --bs-cyan-rgb: 195, 231, 245;
  --bs-cyan-dk-rgb: 57, 192, 192;
  --bs-lime-rgb: 103, 189, 75;
  --bs-primary-text-emphasis: #002236;
  --bs-secondary-text-emphasis: rgb(40.8, 40.8, 40.8);
  --bs-success-text-emphasis: rgb(0, 59.6, 44);
  --bs-info-text-emphasis: rgb(12.4, 76.8, 88.8);
  --bs-warning-text-emphasis: rgb(102, 57.6, 8.4);
  --bs-danger-text-emphasis: rgb(85.2, 13.2, 35.2);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #ccdde7;
  --bs-secondary-bg-subtle: rgb(224.4, 224.4, 224.4);
  --bs-success-bg-subtle: rgb(204, 233.8, 226);
  --bs-info-bg-subtle: rgb(210.2, 242.4, 248.4);
  --bs-warning-bg-subtle: rgb(255, 232.8, 208.2);
  --bs-danger-bg-subtle: rgb(246.6, 210.6, 221.6);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #99bbcf;
  --bs-secondary-border-subtle: rgb(193.8, 193.8, 193.8);
  --bs-success-border-subtle: rgb(153, 212.6, 197);
  --bs-info-border-subtle: rgb(165.4, 229.8, 241.8);
  --bs-warning-border-subtle: rgb(255, 210.6, 161.4);
  --bs-danger-border-subtle: rgb(238.2, 166.2, 188.2);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #444;
  --bs-body-color-rgb: 68, 68, 68;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(68, 68, 68, 0.75);
  --bs-secondary-color-rgb: 68, 68, 68;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(68, 68, 68, 0.5);
  --bs-tertiary-color-rgb: 68, 68, 68;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #005587;
  --bs-link-color-rgb: 0, 85, 135;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #00446c;
  --bs-link-hover-color-rgb: 0, 68, 108;
  --bs-code-color: #D52158;
  --bs-highlight-color: #444;
  --bs-highlight-bg: rgb(245, 248.4, 204);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(0, 85, 135, 0.25);
  --bs-form-valid-color: #00956E;
  --bs-form-valid-border-color: #00956E;
  --bs-form-invalid-color: #D52158;
  --bs-form-invalid-border-color: #D52158;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6699b7;
  --bs-secondary-text-emphasis: rgb(163.2, 163.2, 163.2);
  --bs-success-text-emphasis: rgb(102, 191.4, 168);
  --bs-info-text-emphasis: rgb(120.6, 217.2, 235.2);
  --bs-warning-text-emphasis: rgb(255, 188.4, 114.6);
  --bs-danger-text-emphasis: rgb(229.8, 121.8, 154.8);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #00111b;
  --bs-secondary-bg-subtle: rgb(20.4, 20.4, 20.4);
  --bs-success-bg-subtle: rgb(0, 29.8, 22);
  --bs-info-bg-subtle: rgb(6.2, 38.4, 44.4);
  --bs-warning-bg-subtle: rgb(51, 28.8, 4.2);
  --bs-danger-bg-subtle: rgb(42.6, 6.6, 17.6);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #003351;
  --bs-secondary-border-subtle: rgb(61.2, 61.2, 61.2);
  --bs-success-border-subtle: rgb(0, 89.4, 66);
  --bs-info-border-subtle: rgb(18.6, 115.2, 133.2);
  --bs-warning-border-subtle: rgb(153, 86.4, 12.6);
  --bs-danger-border-subtle: rgb(127.8, 19.8, 52.8);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6699b7;
  --bs-link-hover-color: rgb(132.6, 173.4, 197.4);
  --bs-link-color-rgb: 102, 153, 183;
  --bs-link-hover-color-rgb: 133, 173, 197;
  --bs-code-color: rgb(229.8, 121.8, 154.8);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(82, 88.8, 0);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(102, 191.4, 168);
  --bs-form-valid-border-color: rgb(102, 191.4, 168);
  --bs-form-invalid-color: rgb(229.8, 121.8, 154.8);
  --bs-form-invalid-border-color: rgb(229.8, 121.8, 154.8);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
:root,
[data-bs-theme=light] {
  --bs-blue: #005587;
  --bs-indigo: #333399;
  --bs-purple: #333399;
  --bs-pink: #D52158;
  --bs-red: #D52158;
  --bs-orange: #FF9015;
  --bs-yellow: #CDDE00;
  --bs-green: #00956E;
  --bs-teal: #76BC21;
  --bs-cyan: #1fc0de;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #005587;
  --bs-secondary: #666;
  --bs-success: #00956E;
  --bs-info: #1fc0de;
  --bs-warning: #FF9015;
  --bs-danger: #D52158;
  --bs-light: #ddd;
  --bs-dark: #131313;
  --bs-shade: #eef7ff;
  --bs-cyan: #c3e7f5;
  --bs-cyan-dk: #39c0c0;
  --bs-lime: #67bd4b;
  --bs-primary-rgb: 0, 85, 135;
  --bs-secondary-rgb: 102, 102, 102;
  --bs-success-rgb: 0, 149, 110;
  --bs-info-rgb: 31, 192, 222;
  --bs-warning-rgb: 255, 144, 21;
  --bs-danger-rgb: 213, 33, 88;
  --bs-light-rgb: 221, 221, 221;
  --bs-dark-rgb: 19, 19, 19;
  --bs-shade-rgb: 238, 247, 255;
  --bs-cyan-rgb: 195, 231, 245;
  --bs-cyan-dk-rgb: 57, 192, 192;
  --bs-lime-rgb: 103, 189, 75;
  --bs-primary-text-emphasis: #002236;
  --bs-secondary-text-emphasis: rgb(40.8, 40.8, 40.8);
  --bs-success-text-emphasis: rgb(0, 59.6, 44);
  --bs-info-text-emphasis: rgb(12.4, 76.8, 88.8);
  --bs-warning-text-emphasis: rgb(102, 57.6, 8.4);
  --bs-danger-text-emphasis: rgb(85.2, 13.2, 35.2);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #ccdde7;
  --bs-secondary-bg-subtle: rgb(224.4, 224.4, 224.4);
  --bs-success-bg-subtle: rgb(204, 233.8, 226);
  --bs-info-bg-subtle: rgb(210.2, 242.4, 248.4);
  --bs-warning-bg-subtle: rgb(255, 232.8, 208.2);
  --bs-danger-bg-subtle: rgb(246.6, 210.6, 221.6);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #99bbcf;
  --bs-secondary-border-subtle: rgb(193.8, 193.8, 193.8);
  --bs-success-border-subtle: rgb(153, 212.6, 197);
  --bs-info-border-subtle: rgb(165.4, 229.8, 241.8);
  --bs-warning-border-subtle: rgb(255, 210.6, 161.4);
  --bs-danger-border-subtle: rgb(238.2, 166.2, 188.2);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #444;
  --bs-body-color-rgb: 68, 68, 68;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(68, 68, 68, 0.75);
  --bs-secondary-color-rgb: 68, 68, 68;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(68, 68, 68, 0.5);
  --bs-tertiary-color-rgb: 68, 68, 68;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #005587;
  --bs-link-color-rgb: 0, 85, 135;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #00446c;
  --bs-link-hover-color-rgb: 0, 68, 108;
  --bs-code-color: #D52158;
  --bs-highlight-color: #444;
  --bs-highlight-bg: rgb(245, 248.4, 204);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(0, 85, 135, 0.25);
  --bs-form-valid-color: #00956E;
  --bs-form-valid-border-color: #00956E;
  --bs-form-invalid-color: #D52158;
  --bs-form-invalid-border-color: #D52158;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6699b7;
  --bs-secondary-text-emphasis: rgb(163.2, 163.2, 163.2);
  --bs-success-text-emphasis: rgb(102, 191.4, 168);
  --bs-info-text-emphasis: rgb(120.6, 217.2, 235.2);
  --bs-warning-text-emphasis: rgb(255, 188.4, 114.6);
  --bs-danger-text-emphasis: rgb(229.8, 121.8, 154.8);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #00111b;
  --bs-secondary-bg-subtle: rgb(20.4, 20.4, 20.4);
  --bs-success-bg-subtle: rgb(0, 29.8, 22);
  --bs-info-bg-subtle: rgb(6.2, 38.4, 44.4);
  --bs-warning-bg-subtle: rgb(51, 28.8, 4.2);
  --bs-danger-bg-subtle: rgb(42.6, 6.6, 17.6);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #003351;
  --bs-secondary-border-subtle: rgb(61.2, 61.2, 61.2);
  --bs-success-border-subtle: rgb(0, 89.4, 66);
  --bs-info-border-subtle: rgb(18.6, 115.2, 133.2);
  --bs-warning-border-subtle: rgb(153, 86.4, 12.6);
  --bs-danger-border-subtle: rgb(127.8, 19.8, 52.8);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6699b7;
  --bs-link-hover-color: rgb(132.6, 173.4, 197.4);
  --bs-link-color-rgb: 102, 153, 183;
  --bs-link-hover-color-rgb: 133, 173, 197;
  --bs-code-color: rgb(229.8, 121.8, 154.8);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(82, 88.8, 0);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(102, 191.4, 168);
  --bs-form-valid-border-color: rgb(102, 191.4, 168);
  --bs-form-invalid-color: rgb(229.8, 121.8, 154.8);
  --bs-form-invalid-border-color: rgb(229.8, 121.8, 154.8);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
:root,
[data-bs-theme=light] {
  --bs-blue: #005587;
  --bs-indigo: #333399;
  --bs-purple: #333399;
  --bs-pink: #D52158;
  --bs-red: #D52158;
  --bs-orange: #FF9015;
  --bs-yellow: #CDDE00;
  --bs-green: #00956E;
  --bs-teal: #76BC21;
  --bs-cyan: #1fc0de;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #005587;
  --bs-secondary: #666;
  --bs-success: #00956E;
  --bs-info: #1fc0de;
  --bs-warning: #FF9015;
  --bs-danger: #D52158;
  --bs-light: #ddd;
  --bs-dark: #131313;
  --bs-shade: #eef7ff;
  --bs-cyan: #c3e7f5;
  --bs-cyan-dk: #39c0c0;
  --bs-lime: #67bd4b;
  --bs-primary-rgb: 0, 85, 135;
  --bs-secondary-rgb: 102, 102, 102;
  --bs-success-rgb: 0, 149, 110;
  --bs-info-rgb: 31, 192, 222;
  --bs-warning-rgb: 255, 144, 21;
  --bs-danger-rgb: 213, 33, 88;
  --bs-light-rgb: 221, 221, 221;
  --bs-dark-rgb: 19, 19, 19;
  --bs-shade-rgb: 238, 247, 255;
  --bs-cyan-rgb: 195, 231, 245;
  --bs-cyan-dk-rgb: 57, 192, 192;
  --bs-lime-rgb: 103, 189, 75;
  --bs-primary-text-emphasis: #002236;
  --bs-secondary-text-emphasis: rgb(40.8, 40.8, 40.8);
  --bs-success-text-emphasis: rgb(0, 59.6, 44);
  --bs-info-text-emphasis: rgb(12.4, 76.8, 88.8);
  --bs-warning-text-emphasis: rgb(102, 57.6, 8.4);
  --bs-danger-text-emphasis: rgb(85.2, 13.2, 35.2);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #ccdde7;
  --bs-secondary-bg-subtle: rgb(224.4, 224.4, 224.4);
  --bs-success-bg-subtle: rgb(204, 233.8, 226);
  --bs-info-bg-subtle: rgb(210.2, 242.4, 248.4);
  --bs-warning-bg-subtle: rgb(255, 232.8, 208.2);
  --bs-danger-bg-subtle: rgb(246.6, 210.6, 221.6);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #99bbcf;
  --bs-secondary-border-subtle: rgb(193.8, 193.8, 193.8);
  --bs-success-border-subtle: rgb(153, 212.6, 197);
  --bs-info-border-subtle: rgb(165.4, 229.8, 241.8);
  --bs-warning-border-subtle: rgb(255, 210.6, 161.4);
  --bs-danger-border-subtle: rgb(238.2, 166.2, 188.2);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #444;
  --bs-body-color-rgb: 68, 68, 68;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(68, 68, 68, 0.75);
  --bs-secondary-color-rgb: 68, 68, 68;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(68, 68, 68, 0.5);
  --bs-tertiary-color-rgb: 68, 68, 68;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #005587;
  --bs-link-color-rgb: 0, 85, 135;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #00446c;
  --bs-link-hover-color-rgb: 0, 68, 108;
  --bs-code-color: #D52158;
  --bs-highlight-color: #444;
  --bs-highlight-bg: rgb(245, 248.4, 204);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(0, 85, 135, 0.25);
  --bs-form-valid-color: #00956E;
  --bs-form-valid-border-color: #00956E;
  --bs-form-invalid-color: #D52158;
  --bs-form-invalid-border-color: #D52158;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6699b7;
  --bs-secondary-text-emphasis: rgb(163.2, 163.2, 163.2);
  --bs-success-text-emphasis: rgb(102, 191.4, 168);
  --bs-info-text-emphasis: rgb(120.6, 217.2, 235.2);
  --bs-warning-text-emphasis: rgb(255, 188.4, 114.6);
  --bs-danger-text-emphasis: rgb(229.8, 121.8, 154.8);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #00111b;
  --bs-secondary-bg-subtle: rgb(20.4, 20.4, 20.4);
  --bs-success-bg-subtle: rgb(0, 29.8, 22);
  --bs-info-bg-subtle: rgb(6.2, 38.4, 44.4);
  --bs-warning-bg-subtle: rgb(51, 28.8, 4.2);
  --bs-danger-bg-subtle: rgb(42.6, 6.6, 17.6);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #003351;
  --bs-secondary-border-subtle: rgb(61.2, 61.2, 61.2);
  --bs-success-border-subtle: rgb(0, 89.4, 66);
  --bs-info-border-subtle: rgb(18.6, 115.2, 133.2);
  --bs-warning-border-subtle: rgb(153, 86.4, 12.6);
  --bs-danger-border-subtle: rgb(127.8, 19.8, 52.8);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6699b7;
  --bs-link-hover-color: rgb(132.6, 173.4, 197.4);
  --bs-link-color-rgb: 102, 153, 183;
  --bs-link-hover-color-rgb: 133, 173, 197;
  --bs-code-color: rgb(229.8, 121.8, 154.8);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(82, 88.8, 0);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(102, 191.4, 168);
  --bs-form-valid-border-color: rgb(102, 191.4, 168);
  --bs-form-invalid-color: rgb(229.8, 121.8, 154.8);
  --bs-form-invalid-border-color: rgb(229.8, 121.8, 154.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1, .h1 {
  font-size: calc(1.385rem + 1.62vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.6rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.305rem + 0.66vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.8rem;
  }
}

h4, .h4 {
  font-size: calc(1.27rem + 0.24vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.45rem;
  }
}

h5, .h5 {
  font-size: 1.2rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.525rem + 3.3vw);
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.475rem + 2.7vw);
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 35.49rem;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 47.99rem;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 60rem;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 64rem;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 76.5rem;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #ccdde7;
  --bs-table-border-color: rgb(163.2, 176.8, 184.8);
  --bs-table-striped-bg: rgb(193.8, 209.95, 219.45);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(183.6, 198.9, 207.9);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(188.7, 204.425, 213.675);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: rgb(224.4, 224.4, 224.4);
  --bs-table-border-color: rgb(179.52, 179.52, 179.52);
  --bs-table-striped-bg: rgb(213.18, 213.18, 213.18);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(201.96, 201.96, 201.96);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(207.57, 207.57, 207.57);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: rgb(204, 233.8, 226);
  --bs-table-border-color: rgb(163.2, 187.04, 180.8);
  --bs-table-striped-bg: rgb(193.8, 222.11, 214.7);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(183.6, 210.42, 203.4);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(188.7, 216.265, 209.05);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: rgb(210.2, 242.4, 248.4);
  --bs-table-border-color: rgb(168.16, 193.92, 198.72);
  --bs-table-striped-bg: rgb(199.69, 230.28, 235.98);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(189.18, 218.16, 223.56);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(194.435, 224.22, 229.77);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: rgb(255, 232.8, 208.2);
  --bs-table-border-color: rgb(204, 186.24, 166.56);
  --bs-table-striped-bg: rgb(242.25, 221.16, 197.79);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(229.5, 209.52, 187.38);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(235.875, 215.34, 192.585);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: rgb(246.6, 210.6, 221.6);
  --bs-table-border-color: rgb(197.28, 168.48, 177.28);
  --bs-table-striped-bg: rgb(234.27, 200.07, 210.52);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(221.94, 189.54, 199.44);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(228.105, 194.805, 204.98);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #ddd;
  --bs-table-border-color: rgb(176.8, 176.8, 176.8);
  --bs-table-striped-bg: rgb(209.95, 209.95, 209.95);
  --bs-table-striped-color: #000;
  --bs-table-active-bg: rgb(198.9, 198.9, 198.9);
  --bs-table-active-color: #000;
  --bs-table-hover-bg: rgb(204.425, 204.425, 204.425);
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #131313;
  --bs-table-border-color: rgb(66.2, 66.2, 66.2);
  --bs-table-striped-bg: rgb(30.8, 30.8, 30.8);
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: rgb(42.6, 42.6, 42.6);
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: rgb(36.7, 36.7, 36.7);
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + var(--bs-border-width));
  padding-bottom: calc(0.375rem + var(--bs-border-width));
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + var(--bs-border-width));
  padding-bottom: calc(0.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + var(--bs-border-width));
  padding-bottom: calc(0.25rem + var(--bs-border-width));
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-secondary-color);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: rgb(127.5, 170, 195);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}
.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}
.form-control::-webkit-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}
.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
     -moz-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: var(--bs-secondary-bg);
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}
.form-control-plaintext:focus {
  outline: 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
     -moz-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
     -moz-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}
.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
}
.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: rgb(127.5, 170, 195);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

[data-bs-theme=dark] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right;
}
.form-check-reverse .form-check-input {
  float: right;
  margin-right: -1.5em;
  margin-left: 0;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
     color-adjust: exact;
          print-color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: rgb(127.5, 170, 195);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.form-check-input:checked {
  background-color: #005587;
  border-color: #005587;
}
.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #005587;
  border-color: #005587;
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  width: 2em;
  margin-left: -2.5em;
  background-image: var(--bs-form-switch-bg);
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28127.5, 170, 195%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}
.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.65;
}

[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
          appearance: none;
  background-color: #005587;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: rgb(178.5, 204, 219);
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
       appearance: none;
  background-color: #005587;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: rgb(178.5, 204, 219);
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}
.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  color: rgba(var(--bs-body-color-rgb), 0.65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder, .form-floating > .form-control-plaintext::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder, .form-floating > .form-control-plaintext::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-control-plaintext:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > textarea:not(:-moz-placeholder) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:focus ~ label::after,
.form-floating > textarea:not(:placeholder-shown) ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}
.form-floating > textarea:disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}
.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}
.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select,
.input-group > .form-floating {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus,
.input-group > .form-floating:focus-within {
  z-index: 5;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: var(--bs-border-radius-sm);
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-valid-color);
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300956E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300956E' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
.was-validated .input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid,
.was-validated .input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: var(--bs-form-invalid-color);
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23D52158'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23D52158' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23D52158'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23D52158' stroke='none'/%3e%3c/svg%3e");
  padding-right: 4.125rem;
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.75rem));
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
.was-validated .input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid,
.was-validated .input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}
.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}
.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}
.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #005587;
  --bs-btn-border-color: #005587;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0, 72.25, 114.75);
  --bs-btn-hover-border-color: #00446c;
  --bs-btn-focus-shadow-rgb: 38, 111, 153;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #00446c;
  --bs-btn-active-border-color: rgb(0, 63.75, 101.25);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #005587;
  --bs-btn-disabled-border-color: #005587;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #666;
  --bs-btn-border-color: #666;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(86.7, 86.7, 86.7);
  --bs-btn-hover-border-color: rgb(81.6, 81.6, 81.6);
  --bs-btn-focus-shadow-rgb: 125, 125, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(81.6, 81.6, 81.6);
  --bs-btn-active-border-color: rgb(76.5, 76.5, 76.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #666;
  --bs-btn-disabled-border-color: #666;
}

.btn-success {
  --bs-btn-color: #000;
  --bs-btn-bg: #00956E;
  --bs-btn-border-color: #00956E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(38.25, 164.9, 131.75);
  --bs-btn-hover-border-color: rgb(25.5, 159.6, 124.5);
  --bs-btn-focus-shadow-rgb: 0, 127, 94;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(51, 170.2, 139);
  --bs-btn-active-border-color: rgb(25.5, 159.6, 124.5);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #00956E;
  --bs-btn-disabled-border-color: #00956E;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #1fc0de;
  --bs-btn-border-color: #1fc0de;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(64.6, 201.45, 226.95);
  --bs-btn-hover-border-color: rgb(53.4, 198.3, 225.3);
  --bs-btn-focus-shadow-rgb: 26, 163, 189;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(75.8, 204.6, 228.6);
  --bs-btn-active-border-color: rgb(53.4, 198.3, 225.3);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #1fc0de;
  --bs-btn-disabled-border-color: #1fc0de;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #FF9015;
  --bs-btn-border-color: #FF9015;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(255, 160.65, 56.1);
  --bs-btn-hover-border-color: rgb(255, 155.1, 44.4);
  --bs-btn-focus-shadow-rgb: 217, 122, 18;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(255, 166.2, 67.8);
  --bs-btn-active-border-color: rgb(255, 155.1, 44.4);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #FF9015;
  --bs-btn-disabled-border-color: #FF9015;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #D52158;
  --bs-btn-border-color: #D52158;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(181.05, 28.05, 74.8);
  --bs-btn-hover-border-color: rgb(170.4, 26.4, 70.4);
  --bs-btn-focus-shadow-rgb: 219, 66, 113;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(170.4, 26.4, 70.4);
  --bs-btn-active-border-color: rgb(159.75, 24.75, 66);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #D52158;
  --bs-btn-disabled-border-color: #D52158;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #ddd;
  --bs-btn-border-color: #ddd;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(187.85, 187.85, 187.85);
  --bs-btn-hover-border-color: rgb(176.8, 176.8, 176.8);
  --bs-btn-focus-shadow-rgb: 188, 188, 188;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(176.8, 176.8, 176.8);
  --bs-btn-active-border-color: rgb(165.75, 165.75, 165.75);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ddd;
  --bs-btn-disabled-border-color: #ddd;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #131313;
  --bs-btn-border-color: #131313;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(54.4, 54.4, 54.4);
  --bs-btn-hover-border-color: rgb(42.6, 42.6, 42.6);
  --bs-btn-focus-shadow-rgb: 54, 54, 54;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(66.2, 66.2, 66.2);
  --bs-btn-active-border-color: rgb(42.6, 42.6, 42.6);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #131313;
  --bs-btn-disabled-border-color: #131313;
}

.btn-shade {
  --bs-btn-color: #000;
  --bs-btn-bg: #eef7ff;
  --bs-btn-border-color: #eef7ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(240.55, 248.2, 255);
  --bs-btn-hover-border-color: rgb(239.7, 247.8, 255);
  --bs-btn-focus-shadow-rgb: 202, 210, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(241.4, 248.6, 255);
  --bs-btn-active-border-color: rgb(239.7, 247.8, 255);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #eef7ff;
  --bs-btn-disabled-border-color: #eef7ff;
}

.btn-cyan {
  --bs-btn-color: #000;
  --bs-btn-bg: #c3e7f5;
  --bs-btn-border-color: #c3e7f5;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(204, 234.6, 246.5);
  --bs-btn-hover-border-color: rgb(201, 233.4, 246);
  --bs-btn-focus-shadow-rgb: 166, 196, 208;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(207, 235.8, 247);
  --bs-btn-active-border-color: rgb(201, 233.4, 246);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #c3e7f5;
  --bs-btn-disabled-border-color: #c3e7f5;
}

.btn-cyan-dk {
  --bs-btn-color: #000;
  --bs-btn-bg: #39c0c0;
  --bs-btn-border-color: #39c0c0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(86.7, 201.45, 201.45);
  --bs-btn-hover-border-color: rgb(76.8, 198.3, 198.3);
  --bs-btn-focus-shadow-rgb: 48, 163, 163;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(96.6, 204.6, 204.6);
  --bs-btn-active-border-color: rgb(76.8, 198.3, 198.3);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #39c0c0;
  --bs-btn-disabled-border-color: #39c0c0;
}

.btn-lime {
  --bs-btn-color: #000;
  --bs-btn-bg: #67bd4b;
  --bs-btn-border-color: #67bd4b;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: rgb(125.8, 198.9, 102);
  --bs-btn-hover-border-color: rgb(118.2, 195.6, 93);
  --bs-btn-focus-shadow-rgb: 88, 161, 64;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: rgb(133.4, 202.2, 111);
  --bs-btn-active-border-color: rgb(118.2, 195.6, 93);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #67bd4b;
  --bs-btn-disabled-border-color: #67bd4b;
}

.btn-outline-primary {
  --bs-btn-color: #005587;
  --bs-btn-border-color: #005587;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #005587;
  --bs-btn-hover-border-color: #005587;
  --bs-btn-focus-shadow-rgb: 0, 85, 135;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #005587;
  --bs-btn-active-border-color: #005587;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #005587;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #005587;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #666;
  --bs-btn-border-color: #666;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #666;
  --bs-btn-hover-border-color: #666;
  --bs-btn-focus-shadow-rgb: 102, 102, 102;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #666;
  --bs-btn-active-border-color: #666;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #666;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #666;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #00956E;
  --bs-btn-border-color: #00956E;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #00956E;
  --bs-btn-hover-border-color: #00956E;
  --bs-btn-focus-shadow-rgb: 0, 149, 110;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #00956E;
  --bs-btn-active-border-color: #00956E;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #00956E;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #00956E;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #1fc0de;
  --bs-btn-border-color: #1fc0de;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #1fc0de;
  --bs-btn-hover-border-color: #1fc0de;
  --bs-btn-focus-shadow-rgb: 31, 192, 222;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #1fc0de;
  --bs-btn-active-border-color: #1fc0de;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1fc0de;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1fc0de;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #FF9015;
  --bs-btn-border-color: #FF9015;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #FF9015;
  --bs-btn-hover-border-color: #FF9015;
  --bs-btn-focus-shadow-rgb: 255, 144, 21;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #FF9015;
  --bs-btn-active-border-color: #FF9015;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FF9015;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FF9015;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #D52158;
  --bs-btn-border-color: #D52158;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #D52158;
  --bs-btn-hover-border-color: #D52158;
  --bs-btn-focus-shadow-rgb: 213, 33, 88;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #D52158;
  --bs-btn-active-border-color: #D52158;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #D52158;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #D52158;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #ddd;
  --bs-btn-border-color: #ddd;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ddd;
  --bs-btn-hover-border-color: #ddd;
  --bs-btn-focus-shadow-rgb: 221, 221, 221;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ddd;
  --bs-btn-active-border-color: #ddd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ddd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ddd;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #131313;
  --bs-btn-border-color: #131313;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #131313;
  --bs-btn-hover-border-color: #131313;
  --bs-btn-focus-shadow-rgb: 19, 19, 19;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #131313;
  --bs-btn-active-border-color: #131313;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #131313;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #131313;
  --bs-gradient: none;
}

.btn-outline-shade {
  --bs-btn-color: #eef7ff;
  --bs-btn-border-color: #eef7ff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #eef7ff;
  --bs-btn-hover-border-color: #eef7ff;
  --bs-btn-focus-shadow-rgb: 238, 247, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #eef7ff;
  --bs-btn-active-border-color: #eef7ff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #eef7ff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #eef7ff;
  --bs-gradient: none;
}

.btn-outline-cyan {
  --bs-btn-color: #c3e7f5;
  --bs-btn-border-color: #c3e7f5;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #c3e7f5;
  --bs-btn-hover-border-color: #c3e7f5;
  --bs-btn-focus-shadow-rgb: 195, 231, 245;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c3e7f5;
  --bs-btn-active-border-color: #c3e7f5;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #c3e7f5;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #c3e7f5;
  --bs-gradient: none;
}

.btn-outline-cyan-dk {
  --bs-btn-color: #39c0c0;
  --bs-btn-border-color: #39c0c0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #39c0c0;
  --bs-btn-hover-border-color: #39c0c0;
  --bs-btn-focus-shadow-rgb: 57, 192, 192;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #39c0c0;
  --bs-btn-active-border-color: #39c0c0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #39c0c0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #39c0c0;
  --bs-gradient: none;
}

.btn-outline-lime {
  --bs-btn-color: #67bd4b;
  --bs-btn-border-color: #67bd4b;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #67bd4b;
  --bs-btn-hover-border-color: #67bd4b;
  --bs-btn-focus-shadow-rgb: 103, 189, 75;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #67bd4b;
  --bs-btn-active-border-color: #67bd4b;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #67bd4b;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #67bd4b;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 38, 111, 153;
  text-decoration: underline;
}
.btn-link:focus-visible {
  color: var(--bs-btn-color);
}
.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #005587;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #005587;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}
.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn.dropdown-toggle-split:first-child,
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:nth-child(n+3),
.btn-group-vertical > :not(.btn-check) + .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #005587;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2868, 68, 68, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    -webkit-transform: none !important;
            transform: none !important;
    transition: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  -webkit-transform: none !important;
          transform: none !important;
  transition: none;
}
.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-dark,
.navbar[data-bs-theme=dark] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme=dark] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: 3px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 1rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(1rem - 3px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color);
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}
.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-top,
  .card-group > .card:not(:last-child) > .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) > .card-img-bottom,
  .card-group > .card:not(:last-child) > .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-top,
  .card-group > .card:not(:first-child) > .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) > .card-img-bottom,
  .card-group > .card:not(:first-child) > .card-footer {
    border-bottom-left-radius: 0;
  }
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23444' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23002236' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  -webkit-transform: var(--bs-accordion-btn-icon-transform);
          transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236699b7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236699b7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #005587;
  --bs-pagination-active-border-color: #005587;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}
.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}
.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
  color: var(--bs-alert-link-color);
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

.alert-shade {
  --bs-alert-color: var(--bs-shade-text-emphasis);
  --bs-alert-bg: var(--bs-shade-bg-subtle);
  --bs-alert-border-color: var(--bs-shade-border-subtle);
  --bs-alert-link-color: var(--bs-shade-text-emphasis);
}

.alert-cyan {
  --bs-alert-color: var(--bs-cyan-text-emphasis);
  --bs-alert-bg: var(--bs-cyan-bg-subtle);
  --bs-alert-border-color: var(--bs-cyan-border-subtle);
  --bs-alert-link-color: var(--bs-cyan-text-emphasis);
}

.alert-cyan-dk {
  --bs-alert-color: var(--bs-cyan-dk-text-emphasis);
  --bs-alert-bg: var(--bs-cyan-dk-bg-subtle);
  --bs-alert-border-color: var(--bs-cyan-dk-border-subtle);
  --bs-alert-link-color: var(--bs-cyan-dk-text-emphasis);
}

.alert-lime {
  --bs-alert-color: var(--bs-lime-text-emphasis);
  --bs-alert-bg: var(--bs-lime-bg-subtle);
  --bs-alert-border-color: var(--bs-lime-border-subtle);
  --bs-alert-link-color: var(--bs-lime-text-emphasis);
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}
.progress,
.progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: 0.75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #005587;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #005587;
  --bs-list-group-active-border-color: #005587;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > .list-group-item::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}
.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}
.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  text-decoration: none;
  background-color: var(--bs-list-group-action-hover-bg);
}
.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.list-group-item-shade {
  --bs-list-group-color: var(--bs-shade-text-emphasis);
  --bs-list-group-bg: var(--bs-shade-bg-subtle);
  --bs-list-group-border-color: var(--bs-shade-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-shade-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-shade-border-subtle);
  --bs-list-group-active-color: var(--bs-shade-bg-subtle);
  --bs-list-group-active-bg: var(--bs-shade-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-shade-text-emphasis);
}

.list-group-item-cyan {
  --bs-list-group-color: var(--bs-cyan-text-emphasis);
  --bs-list-group-bg: var(--bs-cyan-bg-subtle);
  --bs-list-group-border-color: var(--bs-cyan-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-cyan-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-cyan-border-subtle);
  --bs-list-group-active-color: var(--bs-cyan-bg-subtle);
  --bs-list-group-active-bg: var(--bs-cyan-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-cyan-text-emphasis);
}

.list-group-item-cyan-dk {
  --bs-list-group-color: var(--bs-cyan-dk-text-emphasis);
  --bs-list-group-bg: var(--bs-cyan-dk-bg-subtle);
  --bs-list-group-border-color: var(--bs-cyan-dk-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-cyan-dk-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-cyan-dk-border-subtle);
  --bs-list-group-active-color: var(--bs-cyan-dk-bg-subtle);
  --bs-list-group-active-bg: var(--bs-cyan-dk-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-cyan-dk-text-emphasis);
}

.list-group-item-lime {
  --bs-list-group-color: var(--bs-lime-text-emphasis);
  --bs-list-group-bg: var(--bs-lime-bg-subtle);
  --bs-list-group-border-color: var(--bs-lime-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-lime-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-lime-border-subtle);
  --bs-list-group-active-color: var(--bs-lime-bg-subtle);
  --bs-list-group-active-bg: var(--bs-lime-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-lime-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(0, 85, 135, 0.25);
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  -webkit-filter: var(--bs-btn-close-filter);
          filter: var(--bs-btn-close-filter);
  border: 0;
  border-radius: 0.375rem;
  opacity: var(--bs-btn-close-opacity);
}
.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}
.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root,
[data-bs-theme=light] {
  --bs-btn-close-filter: ;
}

[data-bs-theme=dark] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
}
.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.5rem;
  --bs-tooltip-padding-y: 0.25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}
.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-top-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  border-right-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
}

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
}
.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  *zoom: 1;
}
.carousel-inner:after, .carousel-inner:before {
  content: " ";
  display: table;
}
.carousel-inner:after {
  clear: both;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  -webkit-filter: var(--bs-carousel-control-icon-filter);
          filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  -webkit-animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
          animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    -webkit-transform: none;
            transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition);
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  -webkit-transform: none;
          transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-shade {
  --bs-focus-ring-color: rgba(var(--bs-shade-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-cyan {
  --bs-focus-ring-color: rgba(var(--bs-cyan-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-cyan-dk {
  --bs-focus-ring-color: rgba(var(--bs-cyan-dk-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-lime {
  --bs-focus-ring-color: rgba(var(--bs-lime-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-shade {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-shade-rgb), var(--bs-border-opacity)) !important;
}

.border-cyan {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-cyan-rgb), var(--bs-border-opacity)) !important;
}

.border-cyan-dk {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-cyan-dk-rgb), var(--bs-border-opacity)) !important;
}

.border-lime {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-lime-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.column-gap-1 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

.column-gap-2 {
  -webkit-column-gap: 0.5rem !important;
     -moz-column-gap: 0.5rem !important;
          column-gap: 0.5rem !important;
}

.column-gap-3 {
  -webkit-column-gap: 1rem !important;
     -moz-column-gap: 1rem !important;
          column-gap: 1rem !important;
}

.column-gap-4 {
  -webkit-column-gap: 1.5rem !important;
     -moz-column-gap: 1.5rem !important;
          column-gap: 1.5rem !important;
}

.column-gap-5 {
  -webkit-column-gap: 3rem !important;
     -moz-column-gap: 3rem !important;
          column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.385rem + 1.62vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.305rem + 0.66vw) !important;
}

.fs-4 {
  font-size: calc(1.27rem + 0.24vw) !important;
}

.fs-5 {
  font-size: 1.2rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-shade {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-shade-rgb), var(--bs-text-opacity)) !important;
}

.text-cyan {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-cyan-rgb), var(--bs-text-opacity)) !important;
}

.text-cyan-dk {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-cyan-dk-rgb), var(--bs-text-opacity)) !important;
}

.text-lime {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-lime-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: #000 !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: #fff !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-blue {
  --bs-text-opacity: 1;
  color: #005587 !important;
}

.text-indigo {
  --bs-text-opacity: 1;
  color: #333399 !important;
}

.text-purple {
  --bs-text-opacity: 1;
  color: #333399 !important;
}

.text-pink {
  --bs-text-opacity: 1;
  color: #D52158 !important;
}

.text-red {
  --bs-text-opacity: 1;
  color: #D52158 !important;
}

.text-orange {
  --bs-text-opacity: 1;
  color: #FF9015 !important;
}

.text-yellow {
  --bs-text-opacity: 1;
  color: #CDDE00 !important;
}

.text-green {
  --bs-text-opacity: 1;
  color: #00956E !important;
}

.text-teal {
  --bs-text-opacity: 1;
  color: #76BC21 !important;
}

.text-cyan {
  --bs-text-opacity: 1;
  color: #1fc0de !important;
}

.text-gray {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-gray-dark {
  --bs-text-opacity: 1;
  color: #343a40 !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-shade {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-shade-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-shade-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-cyan {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-cyan-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-cyan-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-cyan-dk {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-cyan-dk-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-cyan-dk-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-lime {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-lime-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-lime-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-shade {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-shade-rgb), var(--bs-bg-opacity)) !important;
}

.bg-cyan {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-cyan-rgb), var(--bs-bg-opacity)) !important;
}

.bg-cyan-dk {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-cyan-dk-rgb), var(--bs-bg-opacity)) !important;
}

.bg-lime {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-lime-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: #000 !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: #fff !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-blue {
  --bs-bg-opacity: 1;
  background-color: #005587 !important;
}

.bg-indigo {
  --bs-bg-opacity: 1;
  background-color: #333399 !important;
}

.bg-purple {
  --bs-bg-opacity: 1;
  background-color: #333399 !important;
}

.bg-pink {
  --bs-bg-opacity: 1;
  background-color: #D52158 !important;
}

.bg-red {
  --bs-bg-opacity: 1;
  background-color: #D52158 !important;
}

.bg-orange {
  --bs-bg-opacity: 1;
  background-color: #FF9015 !important;
}

.bg-yellow {
  --bs-bg-opacity: 1;
  background-color: #CDDE00 !important;
}

.bg-green {
  --bs-bg-opacity: 1;
  background-color: #00956E !important;
}

.bg-teal {
  --bs-bg-opacity: 1;
  background-color: #76BC21 !important;
}

.bg-cyan {
  --bs-bg-opacity: 1;
  background-color: #1fc0de !important;
}

.bg-gray {
  --bs-bg-opacity: 1;
  background-color: #6c757d !important;
}

.bg-gray-dark {
  --bs-bg-opacity: 1;
  background-color: #343a40 !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.6rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.8rem !important;
  }
  .fs-4 {
    font-size: 1.45rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #000 !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-shade {
  color: #000 !important;
  background-color: RGBA(var(--bs-shade-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-cyan {
  color: #000 !important;
  background-color: RGBA(var(--bs-cyan-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-cyan-dk {
  color: #000 !important;
  background-color: RGBA(var(--bs-cyan-dk-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-lime {
  color: #000 !important;
  background-color: RGBA(var(--bs-lime-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(0, 68, 108, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(0, 68, 108, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(0, 68, 108, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(82, 82, 82, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(82, 82, 82, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(82, 82, 82, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(51, 170, 139, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(51, 170, 139, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(51, 170, 139, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(76, 205, 229, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(76, 205, 229, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(76, 205, 229, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 166, 68, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 166, 68, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(255, 166, 68, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(170, 26, 70, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(170, 26, 70, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(170, 26, 70, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(228, 228, 228, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(228, 228, 228, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(228, 228, 228, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(15, 15, 15, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(15, 15, 15, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(15, 15, 15, var(--bs-link-underline-opacity, 1)) !important;
}

.link-shade {
  color: RGBA(var(--bs-shade-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-shade-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-shade-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-shade:hover, .link-shade:focus {
  color: RGBA(241, 249, 255, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(241, 249, 255, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(241, 249, 255, var(--bs-link-underline-opacity, 1)) !important;
}

.link-cyan {
  color: RGBA(var(--bs-cyan-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-cyan-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-cyan-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-cyan:hover, .link-cyan:focus {
  color: RGBA(207, 236, 247, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(207, 236, 247, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(207, 236, 247, var(--bs-link-underline-opacity, 1)) !important;
}

.link-cyan-dk {
  color: RGBA(var(--bs-cyan-dk-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-cyan-dk-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-cyan-dk-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-cyan-dk:hover, .link-cyan-dk:focus {
  color: RGBA(97, 205, 205, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(97, 205, 205, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(97, 205, 205, var(--bs-link-underline-opacity, 1)) !important;
}

.link-lime {
  color: RGBA(var(--bs-lime-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-lime-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-lime-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-lime:hover, .link-lime:focus {
  color: RGBA(133, 202, 111, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(133, 202, 111, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(133, 202, 111, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
          text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
#drupal-off-canvas-wrapper summary.bg-light {
  background-color: var(--off-canvas-details-summary-background-color) !important;
}

.user-logged-in .navbar.sticky-top {
  position: relative;
  z-index: 300;
}

.user-logged-in .navbar.quick-links {
  margin-top: 0;
}

/* Hide text format help text */
.user-logged-in .filter-wrapper {
  display: none;
}

.layout-builder-form .alert {
  margin-top: 1rem;
}
.layout-builder-form .form-type-checkbox {
  margin: 1rem 0;
}
.layout-builder-form .card .form-type-checkbox {
  margin: 0;
}

.media-library-add-form__preview img {
  height: auto;
}

.ui-dialog--narrow {
  max-width: 85vw;
}

.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close {
  background-color: #fff;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.edview-360 .edview-logo {
  display: block;
}
.edview-360 .edview-logo img {
  width: 250px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview-360 .edview-logo img {
    display: block;
    margin: 0 auto;
  }
}
.edview-360 .edview-360-header {
  color: #005587;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview-360 .edview-360-header {
    margin-top: 1.5rem;
  }
}
.edview-360 .edview-card-row {
  margin-top: 30px;
  margin-bottom: 0px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview-360 .edview-card-row .col {
    margin-top: 70px;
  }
}
.edview-360 .edview-card-row .col > div {
  height: 100%;
}
@media all and (min-width: 62rem) {
  .edview-360 .edview-card-row {
    margin-bottom: 60px;
  }
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview-360 .edview-card-row {
    margin-top: 0;
  }
  .edview-360 .edview-card-row .col:first-of-type {
    margin-top: 35px;
  }
}
.edview-360 .edview-card-row .tl-edview-container {
  margin: -65px 0 1rem;
}
.edview-360 .edview-card-row .tl-edview-container .tl-items {
  display: flex;
  align-items: center;
  justify-content: center;
}
.edview-360 .edview-card-row .tl-edview-container .tl-items .tl-item {
  display: block;
  margin: 0 3px;
}
.edview-360 .edview-card-row .tl-edview-container .tl-photo img {
  background-color: #0099CC;
  margin: 0 auto;
  padding: 5px;
  width: 90px;
}
.edview-360 .edview-card-container {
  color: #fff;
  text-align: center;
}
.edview-360 .edview-card-container .card-body {
  padding: 0 1.5rem;
}
.edview-360 .edview-card-container .card-body:first-child {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.edview-360 .edview-card-container .card-body:last-child {
  margin-top: -3rem;
}
.edview-360 .edview-card-container .edview-360-type {
  font-size: 1.5em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25em;
}
.edview-360 .edview-card-container .edview-360-title {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 0.25em;
}
.edview-360 .edview-card-container .edview-360-presenter {
  font-size: 0.925em;
}
.edview-360 .edview-card-container .btn-overflow {
  margin: 0 auto -25px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview-360 .edview-card-container {
    padding-bottom: 4rem;
  }
}
.edview-360 .edview-360-view-all {
  margin-top: 2.5rem;
  text-align: center;
}
.edview-360 .edview-360-view-all a {
  color: #67bd4b;
  text-decoration: none;
}
.edview-360 .edview-360-view-all a:hover, .edview-360 .edview-360-view-all a:focus {
  text-decoration: underline;
}
.edview-360 .contextual-region {
  height: 100%;
}

.edview360-header {
  background-color: #67bd4b;
  background: linear-gradient(125deg, #67bd4b 0%, #0c508f 45%, #005587 95%);
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #fff;
}
.edview360-header .d-flex {
  height: 320px;
}
.edview360-header img {
  max-width: 320px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .edview360-header {
    height: auto;
    padding: 4rem 1rem;
  }
}
.edview360-header a, .edview360-header p, .edview360-header .uppercase {
  color: #fff;
}

.webinar-series {
  margin-bottom: 20px;
}
.webinar-series li {
  margin-bottom: 15px;
}
.webinar-series .fa-li em {
  margin-right: 10px;
  font-size: 20px;
}
@media all and (min-width: 62rem) {
  .webinar-series {
    margin-bottom: 40px;
  }
}

.vsl-blog-archive,
.vsl-podcast-archive,
.vsl-webinar-archive {
  list-style: none;
  padding: 0;
}
.vsl-blog-archive em, .vsl-blog-archive i,
.vsl-podcast-archive em,
.vsl-podcast-archive i,
.vsl-webinar-archive em,
.vsl-webinar-archive i {
  color: #76BC21;
}
.vsl-blog-archive .vsl-blog-archive-listing,
.vsl-blog-archive .vsl-podcast-archive-listing,
.vsl-blog-archive .vsl-webinar-archive-listing,
.vsl-podcast-archive .vsl-blog-archive-listing,
.vsl-podcast-archive .vsl-podcast-archive-listing,
.vsl-podcast-archive .vsl-webinar-archive-listing,
.vsl-webinar-archive .vsl-blog-archive-listing,
.vsl-webinar-archive .vsl-podcast-archive-listing,
.vsl-webinar-archive .vsl-webinar-archive-listing {
  padding-left: 1rem;
}
.vsl-blog-archive .vsl-blog-archive-listing li,
.vsl-blog-archive .vsl-podcast-archive-listing li,
.vsl-blog-archive .vsl-webinar-archive-listing li,
.vsl-podcast-archive .vsl-blog-archive-listing li,
.vsl-podcast-archive .vsl-podcast-archive-listing li,
.vsl-podcast-archive .vsl-webinar-archive-listing li,
.vsl-webinar-archive .vsl-blog-archive-listing li,
.vsl-webinar-archive .vsl-podcast-archive-listing li,
.vsl-webinar-archive .vsl-webinar-archive-listing li {
  font-size: 0.925rem;
  margin-bottom: 1rem;
}

.view-edview360-featured .rich-compact-list-item {
  margin-bottom: 0.75rem;
}
.view-edview360-featured .rich-compact-list-item i {
  color: rgb(108.56, 172.96, 30.36);
}
.view-edview360-featured .rich-compact-list-item .rich-compact-title {
  font-size: 0.925rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.view-edview360-featured .rich-compact-list-item .rich-compact-title a {
  color: #005587;
  text-decoration: none;
}
.view-edview360-featured .rich-compact-list-item .rich-compact-title a:hover, .view-edview360-featured .rich-compact-list-item .rich-compact-title a:focus {
  text-decoration: underline;
}
.view-edview360-featured .rich-compact-list-item .rich-compact-author {
  font-size: 0.75rem;
  color: #666;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.blog-list {
  overflow: hidden;
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media all and (min-width: 35.5rem) {
  .blog-list {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-list .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  transition: all 0.15s;
  border-radius: 30px;
}
.blog-list .blog-item,
.blog-list a.post {
  display: grid;
  grid-auto-rows: 1fr;
  position: relative;
  color: #fff;
  padding: 30px;
  box-shadow: none;
  transition: all 0.15s;
  border-radius: 30px;
}
.blog-list .blog-item:hover, .blog-list .blog-item:focus,
.blog-list a.post:hover,
.blog-list a.post:focus {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s;
}
.blog-list .blog-item:hover .overlay, .blog-list .blog-item:focus .overlay,
.blog-list a.post:hover .overlay,
.blog-list a.post:focus .overlay {
  opacity: 0.95;
}
.blog-list .blog-item:hover .post-container .blog-link, .blog-list .blog-item:focus .post-container .blog-link,
.blog-list a.post:hover .post-container .blog-link,
.blog-list a.post:focus .post-container .blog-link {
  margin-right: 20px;
}
.blog-list .blog-item:hover .post-container .blog-link .bi, .blog-list .blog-item:focus .post-container .blog-link .bi,
.blog-list a.post:hover .post-container .blog-link .bi,
.blog-list a.post:focus .post-container .blog-link .bi {
  padding-left: 3px;
}
.blog-list .blog-item .tl-compact-blog-container + .tl-compact-blog-container,
.blog-list a.post .tl-compact-blog-container + .tl-compact-blog-container {
  margin-bottom: 20px;
}
.blog-list .blog-item .blog-date,
.blog-list a.post .blog-date {
  margin-bottom: 15px;
}
.blog-list .blog-item .post-container,
.blog-list a.post .post-container {
  display: grid;
  position: relative;
}
.blog-list .blog-item .post-container .blog-link,
.blog-list a.post .post-container .blog-link {
  color: #fff;
  margin-top: 15px;
  align-self: flex-end;
  margin-right: 15px;
  text-align: right;
  font-weight: 800;
  font-size: 0.925rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s;
}
.blog-list .blog-item .post-container .blog-link:hover, .blog-list .blog-item .post-container .blog-link:focus,
.blog-list a.post .post-container .blog-link:hover,
.blog-list a.post .post-container .blog-link:focus {
  text-decoration: underline;
}
.blog-list .blog-item .post-container .blog-link .bi,
.blog-list a.post .post-container .blog-link .bi {
  transition: all 0.15s;
}
.blog-list .blog-item .post-container .content,
.blog-list a.post .post-container .content {
  font-weight: 500;
}
.blog-list .blog-item .post-container .content p,
.blog-list a.post .post-container .content p {
  font-weight: 500;
}
.blog-list .blog-item .post-container .content .tl-items-header,
.blog-list a.post .post-container .content .tl-items-header {
  flex-basis: 100%;
}
.blog-list .blog-item .post-container .content .tl-items-header .tl-item-header .tl-item-header-photo,
.blog-list a.post .post-container .content .tl-items-header .tl-item-header .tl-item-header-photo {
  width: 65px;
}
.blog-list .blog-item .post-container .content .tl-items-header .tl-item-header .tl-item-header-title,
.blog-list a.post .post-container .content .tl-items-header .tl-item-header .tl-item-header-title {
  width: calc(100% - 80px);
}
.blog-list .blog-item .post-container .content .tl-items-header .tl-item-header .tl-photo img,
.blog-list a.post .post-container .content .tl-items-header .tl-item-header .tl-photo img {
  width: 50px;
}
.blog-list .blog-item .post-container .content .tl-item-header-photo,
.blog-list a.post .post-container .content .tl-item-header-photo {
  width: 80px;
}
.blog-list .blog-item .post-container .content .tl-item-header-photo .tl-photo img,
.blog-list a.post .post-container .content .tl-item-header-photo .tl-photo img {
  width: 70px;
}
.blog-list .blog-item .post-container .content .blog-title,
.blog-list .blog-item .post-container .content a.blog-title,
.blog-list a.post .post-container .content .blog-title,
.blog-list a.post .post-container .content a.blog-title {
  display: block;
  color: #fff;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.blog-list .blog-item .post-container .content .blog-title:focus,
.blog-list .blog-item .post-container .content a.blog-title:focus,
.blog-list a.post .post-container .content .blog-title:focus,
.blog-list a.post .post-container .content a.blog-title:focus {
  text-decoration: underline;
}
.blog-list .blog-item .post-container .content .blog-date,
.blog-list a.post .post-container .content .blog-date {
  font-size: 0.75rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 1rem;
}
.blog-list .blog-item .post-container .content .blog-description,
.blog-list a.post .post-container .content .blog-description {
  margin-top: 15px;
}
.blog-list .blog-item .post-container .content .blog-description p,
.blog-list a.post .post-container .content .blog-description p {
  margin-bottom: 15px;
}
.blog-list .blog-item .post-container .tags,
.blog-list a.post .post-container .tags {
  width: 100%;
  font-size: 0.75rem;
}
.blog-list .blog-item .post-container .tags .icon,
.blog-list a.post .post-container .tags .icon {
  float: left;
  display: inline-block;
  padding: 0 8px 0 0;
}
.blog-list .blog-item .post-container .tags ul,
.blog-list a.post .post-container .tags ul {
  float: left;
  width: calc(100% - 25px);
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.blog-list .blog-item .post-container .tags ul li,
.blog-list a.post .post-container .tags ul li {
  display: inline-block;
  margin-bottom: 0;
}
.blog-list .blog-item .post-container .tags ul li a,
.blog-list .blog-item .post-container .tags ul li span,
.blog-list a.post .post-container .tags ul li a,
.blog-list a.post .post-container .tags ul li span {
  font-size: 0.75rem;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.blog-list .blog-item .post-container .tags ul li:not(:last-child) a:after,
.blog-list .blog-item .post-container .tags ul li:not(:last-child) span:after,
.blog-list a.post .post-container .tags ul li:not(:last-child) a:after,
.blog-list a.post .post-container .tags ul li:not(:last-child) span:after {
  content: ",";
}
.blog-list .blog-title {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 800;
}
.blog-list .blog-date {
  font-size: 0.875rem;
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}
.blog-list .blog-image {
  width: 100%;
  background-color: #0076bb;
  height: 200px;
}
.blog-list .tl-caption {
  display: none;
}
.blog-list .blog-taxonomy .blog-tag {
  float: left;
  width: calc(100% - 25px);
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.blog-list .blog-taxonomy .blog-tag li {
  display: inline-block;
  margin-bottom: 0;
}
.blog-list .blog-taxonomy .blog-tag li a,
.blog-list .blog-taxonomy .blog-tag li span {
  font-size: 0.75rem;
  display: inline-block;
  text-decoration: none;
  color: #666;
}
.blog-list .blog-taxonomy .blog-tag li li:not(:last-child) a:after,
.blog-list .blog-taxonomy .blog-tag li li:not(:last-child) span:after {
  content: ",";
}

.blog-list .overlay {
  background-color: #0099CC;
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #00aee3 75%);
  color: #fff;
}
.blog-list .blog-item,
.blog-list a.post {
  background-color: #0076bb;
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #67bd4b 75%);
  color: #fff;
}

.blog-interior .btn.btn-primary {
  border-radius: 8px;
  --bs-btn-padding-y: 0.6rem;
}

.blog-list.vsl-blog-list .overlay {
  background-color: #333399;
  background-color: #D52158;
  background: linear-gradient(75deg, #D52158 0%, #333399 75%);
  color: #fff;
  opacity: 0.15;
}
.blog-list.vsl-blog-list .blog-item,
.blog-list.vsl-blog-list a.post {
  background-color: #0c508f;
  background-color: #333399;
  background: linear-gradient(75deg, #333399 0%, #0c508f 75%);
  color: #fff;
}

.vsl-blog-header {
  background-color: #333399;
  background: linear-gradient(75deg, #333399 0%, #D52158 75%);
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #fff;
}
.vsl-blog-header .d-flex {
  height: 320px;
}
.vsl-blog-header img {
  max-width: 320px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .vsl-blog-header {
    height: auto;
    padding: 4rem 1rem;
  }
}
.vsl-blog-header a, .vsl-blog-header p, .vsl-blog-header .uppercase {
  color: #fff;
}

.basic-header {
  background-color: #00aee3;
  background: linear-gradient(125deg, #0c508f 0%, #67bd4b 45%, #76BC21 95%);
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  color: #fff;
}
.basic-header .d-flex {
  height: 320px;
}
.basic-header img {
  max-width: 320px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .basic-header {
    height: auto;
    padding: 4rem 1rem;
  }
}
.basic-header a, .basic-header p, .basic-header .uppercase {
  color: #fff;
}

.blog-post h1, .blog-post .h1, .blog-post h2, .blog-post .h2, .blog-post h3, .blog-post .h3, .blog-post h4, .blog-post .h4, .blog-post h5, .blog-post .h5, .blog-post h6, .blog-post .h6 {
  font-weight: 800;
  margin-bottom: 1rem;
}
.blog-post h1, .blog-post .h1 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.blog-post ul {
  list-style: disc;
}
.blog-post ul li, .blog-post ol li {
  margin-bottom: 0.5rem;
}
.blog-post .tl-photo img {
  padding: 0;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.event-list .event-item {
  background-color: #eef7ff;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.news-list .news-item {
  background-color: #eef7ff;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.podcast-container .nav-tabs .nav-link {
  font-weight: 600;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.resource-list .resource-item {
  background-color: #eef7ff;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/*------------------------------------*\
    #Full List View
\*------------------------------------*/
.tl-list-container .tl-title,
.tl-list-container .tl-website {
  text-align: center;
  font-size: 0.75rem;
}
.tl-list-container .tl-title {
  font-weight: bold;
}
/*------------------------------------*\
    #Compact/Simple List View
\*------------------------------------*/
.tl-compact-container .tl-photo img,
.tl-simple-container .tl-photo img {
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #67bd4b 75%);
  color: #fff;
  margin: 0 auto;
  padding: 8px;
}
.tl-compact-container .tl-name,
.tl-compact-container .tl-title,
.tl-simple-container .tl-name,
.tl-simple-container .tl-title {
  text-align: center;
}
.tl-compact-container .tl-name,
.tl-simple-container .tl-name {
  font-weight: bold;
  font-size: 0.75rem;
}
.tl-compact-container .tl-title,
.tl-simple-container .tl-title {
  font-size: 0.688rem;
}
.tl-compact-container .btn-text,
.tl-simple-container .btn-text {
  font-size: 0.75rem;
}

.tl-compact-blog-container .tl-items .tl-item {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 1rem;
}
@media all and (min-width: 47.99rem) {
  .tl-compact-blog-container .tl-items .tl-item {
    width: 96%;
  }
}
.tl-compact-blog-container .tl-items .tl-item:first-child, .tl-compact-blog-container .tl-items .tl-item:only-child {
  border-top: 0 none;
  margin-top: 0;
  padding-top: 0;
}

/*------------------------------------*\
    #Modal/Featured List View
\*------------------------------------*/
.tl-featured-list {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media all and (min-width: 35.5rem) {
  .tl-featured-list {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 60rem) {
  .tl-featured-list {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

.tl-featured-container .tl-header .tl-heading {
  padding: 2rem 1rem;
  text-align: center;
}
.tl-featured-container .tl-header .tl-heading h1, .tl-featured-container .tl-header .tl-heading .h1 {
  font-size: 2rem;
}
@media all and (min-width: 37.5rem) {
  .tl-featured-container .tl-items {
    display: flex;
    flex-flow: row wrap;
  }
  .tl-featured-container .tl-items .tl-modal-container {
    flex: 1 1 0px;
    flex-basis: 50%;
  }
  .tl-featured-container .tl-featured-container-padding {
    padding: 0 0.75rem;
  }
}
@media (min-width: 56.25rem) and (max-width: 64rem) {
  .tl-featured-container .tl-items .tl-modal-container {
    flex-basis: 33%;
  }
}
@media all and (min-width: 64rem) {
  .tl-featured-container .tl-items .tl-modal-container {
    flex-basis: 20%;
  }
}
.tl-featured-container .tl-modal-container .tl-photo img {
  background: #fff;
  padding: 8px;
}

.tl-modal-container .tl-photo img {
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #67bd4b 75%);
  color: #fff;
  margin: 0 auto;
  padding: 8px;
}
.tl-modal-container .tl-name,
.tl-modal-container .tl-title {
  text-align: center;
}
.tl-modal-container .tl-name {
  font-weight: bold;
}
.tl-modal-container .tl-title {
  font-size: 0.75rem;
}
.tl-modal-container .tl-bio-modal-btn {
  text-align: center;
}
.tl-modal-container .btn-text {
  font-size: 0.875rem;
}

.tl-bio-modal {
  font-size: 0.875rem;
  line-height: 1.3rem;
  max-width: 500px;
}
.tl-bio-modal p {
  font-size: 0.875rem;
  line-height: 1.3rem;
  margin-bottom: 10px;
}
.tl-bio-modal .bio-modal-content {
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
}
.tl-bio-modal .bio-modal-content .tl-photo > div {
  text-align: center;
}
.tl-bio-modal .bio-modal-content .tl-photo img {
  display: inline-block;
  width: 100px;
  padding: 5px;
}
.tl-bio-modal .bio-modal-content .tl-name {
  font-weight: bold;
  text-align: center;
}
.tl-bio-modal .bio-modal-content .tl-bio {
  max-height: 200px;
  padding-right: 20px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #0099CC #eee;
}
.tl-bio-modal .bio-modal-content .tl-bio::-webkit-scrollbar {
  width: 11px;
}
.tl-bio-modal .bio-modal-content .tl-bio::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 11px;
}
.tl-bio-modal .bio-modal-content .tl-bio::-webkit-scrollbar-thumb {
  background-color: #0099CC;
  border-radius: 6px;
  border: 3px solid #eee;
}
.tl-bio-modal .bio-modal-btn {
  display: block;
  font-weight: bold;
  font-size: 0.75rem;
  text-align: center;
  width: 100%;
  color: #fff;
  background-color: #0099CC;
  border-color: #0099CC;
  padding: 1rem 1.5rem;
  border-radius: 0 0 1rem 1rem;
}
.tl-bio-modal .bio-modal-btn:hover, .tl-bio-modal .bio-modal-btn:focus {
  box-shadow: inset 0 -4.25em 0 0 rgb(0, 140.76, 187.68);
}

/*------------------------------------*\
    #Detail View
\*------------------------------------*/
.tl-container .tl-header {
  background-color: #67bd4b;
  background: linear-gradient(125deg, #67bd4b 0%, #0c508f 45%, #005587 95%);
  color: #fff;
  padding: 60px 0;
}
.tl-container .tl-header .tl-photo img {
  margin: 0 auto;
}
@media all and (min-width: 47.99rem) {
  .tl-container .tl-header .tl-center {
    display: table-cell;
    height: 160px;
    vertical-align: middle;
  }
}
.tl-container .tl-name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.tl-container .tl-title {
  font-size: 0.875rem;
  font-weight: normal;
}
@media (min-width: 37.5rem) and (max-width: 47.99rem) {
  .tl-container .tl-title {
    margin: 0 auto;
    width: 70%;
  }
}
.tl-container .tl-social-item {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.tl-container .tl-social-item:only-child, .tl-container .tl-social-item:last-child {
  margin-bottom: 30px;
}
.tl-container .tl-social-item .fa-stack {
  color: #67bd4b;
}
.tl-container .tl-products,
.tl-container .tl-featured {
  font-size: 0.875rem;
}
.tl-container .tl-products h3, .tl-container .tl-products .h3,
.tl-container .tl-products h3.h6,
.tl-container .tl-featured h3,
.tl-container .tl-featured .h3,
.tl-container .tl-featured h3.h6 {
  font-size: 0.875rem;
}
.tl-container .tl-products ul.tl-list,
.tl-container .tl-featured ul.tl-list {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.tl-container .tl-products ul.tl-list li .fa-li,
.tl-container .tl-featured ul.tl-list li .fa-li {
  color: #67bd4b;
}

/*------------------------------------*\
    #Blog View
\*------------------------------------*/
.blog-post .tl-compact-blog-container .tl-items .tl-item,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item {
  border-top: 1px solid #ddd;
  margin-top: 2rem;
  padding-top: 3.5rem;
}
@media all and (min-width: 47.99rem) {
  .blog-post .tl-compact-blog-container .tl-items .tl-item,
  .vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item,
  .rich-compact-list .tl-compact-blog-container .tl-items .tl-item {
    width: 98%;
  }
}
.blog-post .tl-compact-blog-container .tl-items .tl-item:first-child, .blog-post .tl-compact-blog-container .tl-items .tl-item:only-child,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item:first-child,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item:only-child,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item:first-child,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item:only-child {
  border-top: 0 none;
  margin-top: 0;
  padding-top: 0;
}
.blog-post .tl-compact-blog-container .tl-items .tl-item .btn-text,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item .btn-text,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item .btn-text {
  font-size: 0.938rem;
}
.blog-post .tl-compact-blog-container .tl-items .tl-item .tl-name,
.blog-post .tl-compact-blog-container .tl-items .tl-item .tl-title,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item .tl-name,
.vsl-blog-posts .tl-compact-blog-container .tl-items .tl-item .tl-title,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item .tl-name,
.rich-compact-list .tl-compact-blog-container .tl-items .tl-item .tl-title {
  text-align: left;
}
.blog-post .tl-blog-container .tl-items-header,
.vsl-blog-posts .tl-blog-container .tl-items-header,
.rich-compact-list .tl-blog-container .tl-items-header {
  flex-flow: row wrap;
}
.blog-post .tl-blog-container .tl-items-header .tl-item-header,
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header,
.rich-compact-list .tl-blog-container .tl-items-header .tl-item-header {
  margin-bottom: 10px;
}
.blog-post .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.rich-compact-list .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-photo {
  width: 80px;
}
.blog-post .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.rich-compact-list .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-title {
  width: calc(100% - 60px + 20px);
}
.blog-post .tl-blog-container .tl-items-header .tl-item-header .tl-name,
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-name,
.rich-compact-list .tl-blog-container .tl-items-header .tl-item-header .tl-name {
  margin-bottom: 0.25rem;
}
.blog-post .tl-blog-container .tl-items-header .tl-item-header .tl-photo img,
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-photo img,
.rich-compact-list .tl-blog-container .tl-items-header .tl-item-header .tl-photo img {
  width: 60px;
  padding: 0px;
}
@media all and (min-width: 47.99rem) {
  .blog-post .tl-blog-container .tl-items-header,
  .vsl-blog-posts .tl-blog-container .tl-items-header,
  .rich-compact-list .tl-blog-container .tl-items-header {
    flex-basis: 60%;
  }
  .blog-post .tl-blog-container .tl-items-header .tl-item-header,
  .vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header,
  .rich-compact-list .tl-blog-container .tl-items-header .tl-item-header {
    margin-bottom: 0px;
    width: 97%;
  }
  .blog-post .tl-blog-container .tl-items-header .tl-item-header:only-child,
  .vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header:only-child,
  .rich-compact-list .tl-blog-container .tl-items-header .tl-item-header:only-child {
    width: 97%;
  }
  .blog-post .tl-blog-container .tl-blog-details,
  .vsl-blog-posts .tl-blog-container .tl-blog-details,
  .rich-compact-list .tl-blog-container .tl-blog-details {
    flex-basis: 40%;
  }
}
.blog-post .tl-seo-blog-container .tl-items-header,
.blog-post .tl-compact-blog-container .tl-items-header,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header,
.rich-compact-list .tl-seo-blog-container .tl-items-header,
.rich-compact-list .tl-compact-blog-container .tl-items-header {
  flex-flow: row wrap;
}
.blog-post .tl-seo-blog-container .tl-items-header .tl-item-header,
.blog-post .tl-compact-blog-container .tl-items-header .tl-item-header,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header,
.rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header,
.rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header {
  margin-bottom: 10px;
}
.blog-post .tl-seo-blog-container .tl-items-header .tl-item-header span.tl-support,
.blog-post .tl-compact-blog-container .tl-items-header .tl-item-header span.tl-support,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header span.tl-support,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header span.tl-support,
.rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header span.tl-support,
.rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header span.tl-support {
  white-space: nowrap;
}
.blog-post .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.blog-post .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-photo,
.rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-photo {
  width: 45px;
}
.blog-post .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.blog-post .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header .tl-item-header-title,
.rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header .tl-item-header-title {
  width: calc(100% - 60px - 10px);
}
.blog-post .tl-seo-blog-container .tl-items-header .tl-item-header .tl-photo img,
.blog-post .tl-compact-blog-container .tl-items-header .tl-item-header .tl-photo img,
.vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header .tl-photo img,
.vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header .tl-photo img,
.rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header .tl-photo img,
.rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header .tl-photo img {
  width: 35px;
  padding: 0px;
}
@media all and (min-width: 47.99rem) {
  .blog-post .tl-seo-blog-container .tl-items-header,
  .blog-post .tl-compact-blog-container .tl-items-header,
  .vsl-blog-posts .tl-seo-blog-container .tl-items-header,
  .vsl-blog-posts .tl-compact-blog-container .tl-items-header,
  .rich-compact-list .tl-seo-blog-container .tl-items-header,
  .rich-compact-list .tl-compact-blog-container .tl-items-header {
    flex-flow: row wrap;
  }
  .blog-post .tl-seo-blog-container .tl-items-header .tl-item-header,
  .blog-post .tl-compact-blog-container .tl-items-header .tl-item-header,
  .vsl-blog-posts .tl-seo-blog-container .tl-items-header .tl-item-header,
  .vsl-blog-posts .tl-compact-blog-container .tl-items-header .tl-item-header,
  .rich-compact-list .tl-seo-blog-container .tl-items-header .tl-item-header,
  .rich-compact-list .tl-compact-blog-container .tl-items-header .tl-item-header {
    margin-bottom: 0px;
  }
  .blog-post .tl-seo-blog-container .tl-items-header,
  .blog-post .tl-compact-blog-container .tl-items-header,
  .vsl-blog-posts .tl-seo-blog-container .tl-items-header,
  .vsl-blog-posts .tl-compact-blog-container .tl-items-header,
  .rich-compact-list .tl-seo-blog-container .tl-items-header,
  .rich-compact-list .tl-compact-blog-container .tl-items-header {
    flex-basis: 70%;
  }
  .blog-post .tl-seo-blog-container .tl-blog-details,
  .blog-post .tl-compact-blog-container .tl-blog-details,
  .vsl-blog-posts .tl-seo-blog-container .tl-blog-details,
  .vsl-blog-posts .tl-compact-blog-container .tl-blog-details,
  .rich-compact-list .tl-seo-blog-container .tl-blog-details,
  .rich-compact-list .tl-compact-blog-container .tl-blog-details {
    flex-basis: 30%;
  }
}
.blog-post .tl-blog-container,
.blog-post .tl-seo-blog-container,
.blog-post .tl-compact-blog-container,
.vsl-blog-posts .tl-blog-container,
.vsl-blog-posts .tl-seo-blog-container,
.vsl-blog-posts .tl-compact-blog-container,
.rich-compact-list .tl-blog-container,
.rich-compact-list .tl-seo-blog-container,
.rich-compact-list .tl-compact-blog-container {
  display: flex;
  flex-flow: row wrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  align-items: center;
  width: 100%;
}
.blog-post .tl-compact-blog-container,
.vsl-blog-posts .tl-compact-blog-container,
.rich-compact-list .tl-compact-blog-container {
  border-bottom: 0 none;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.blog-post .tl-items-header,
.vsl-blog-posts .tl-items-header,
.rich-compact-list .tl-items-header {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.blog-post .tl-items-header .tl-item-header,
.vsl-blog-posts .tl-items-header .tl-item-header,
.rich-compact-list .tl-items-header .tl-item-header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
}
@media all and (min-width: 47.99rem) {
  .blog-post .tl-items-header .tl-item-header:only-child,
  .vsl-blog-posts .tl-items-header .tl-item-header:only-child,
  .rich-compact-list .tl-items-header .tl-item-header:only-child {
    margin-bottom: 0;
  }
}
.blog-post .tl-items-header .tl-item-header .tl-photo,
.vsl-blog-posts .tl-items-header .tl-item-header .tl-photo,
.rich-compact-list .tl-items-header .tl-item-header .tl-photo {
  text-align: left;
}
.blog-post .tl-items-header .tl-item-header .tl-name,
.vsl-blog-posts .tl-items-header .tl-item-header .tl-name,
.rich-compact-list .tl-items-header .tl-item-header .tl-name {
  font-size: 0.75rem;
}
.blog-post .tl-items-header .tl-item-header .tl-name a,
.vsl-blog-posts .tl-items-header .tl-item-header .tl-name a,
.rich-compact-list .tl-items-header .tl-item-header .tl-name a {
  font-weight: bold;
}
.blog-post .tl-items-header .tl-item-header .tl-title,
.vsl-blog-posts .tl-items-header .tl-item-header .tl-title,
.rich-compact-list .tl-items-header .tl-item-header .tl-title {
  font-size: 0.75rem;
  font-weight: normal;
}
.blog-post .tl-blog-details,
.vsl-blog-posts .tl-blog-details,
.rich-compact-list .tl-blog-details {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.blog-post .tl-date,
.vsl-blog-posts .tl-date,
.rich-compact-list .tl-date {
  font-size: 0.75rem;
  width: 100%;
  margin-bottom: 5px;
}
.blog-post .tl-date i, .blog-post .tl-date em,
.vsl-blog-posts .tl-date i,
.vsl-blog-posts .tl-date em,
.rich-compact-list .tl-date i,
.rich-compact-list .tl-date em {
  color: #005587;
}
.blog-post .tl-date span,
.vsl-blog-posts .tl-date span,
.rich-compact-list .tl-date span {
  color: #666;
}
.blog-post .tl-tags,
.vsl-blog-posts .tl-tags,
.rich-compact-list .tl-tags {
  width: 100%;
  font-size: 0.75rem;
}
.blog-post .tl-tags .icon,
.vsl-blog-posts .tl-tags .icon,
.rich-compact-list .tl-tags .icon {
  color: #005587;
  float: left;
  display: inline-block;
  padding: 0 8px 0 0;
}
.blog-post .tl-tags ul,
.vsl-blog-posts .tl-tags ul,
.rich-compact-list .tl-tags ul {
  float: left;
  width: calc(100% - 25px);
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.blog-post .tl-tags ul span,
.vsl-blog-posts .tl-tags ul span,
.rich-compact-list .tl-tags ul span {
  color: #808080;
}
.blog-post .tl-tags ul li,
.vsl-blog-posts .tl-tags ul li,
.rich-compact-list .tl-tags ul li {
  display: inline-block;
  margin-bottom: 0;
}
.blog-post .tl-tags ul li:not(:last-child) a:after, .blog-post .tl-tags ul li:not(:last-child) span:after, .blog-post .tl-tags ul li:not(:last-child) a:after, .blog-post .tl-tags ul li:not(:last-child) span:after,
.vsl-blog-posts .tl-tags ul li:not(:last-child) a:after,
.vsl-blog-posts .tl-tags ul li:not(:last-child) span:after,
.vsl-blog-posts .tl-tags ul li:not(:last-child) a:after,
.vsl-blog-posts .tl-tags ul li:not(:last-child) span:after,
.rich-compact-list .tl-tags ul li:not(:last-child) a:after,
.rich-compact-list .tl-tags ul li:not(:last-child) span:after,
.rich-compact-list .tl-tags ul li:not(:last-child) a:after,
.rich-compact-list .tl-tags ul li:not(:last-child) span:after {
  content: ",";
}

.vsl-blog-posts .tl-blog-container {
  border-bottom: 0 none;
  margin-bottom: 15px;
  padding-bottom: 0;
}
.vsl-blog-posts .tl-blog-container .tl-items-header {
  flex-basis: 100%;
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-name {
  font-weight: bold;
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header {
  padding-top: 15px;
}
@media all and (min-width: 47.99rem) {
  .vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header {
    width: 98%;
  }
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header:first-child, .vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header:only-child {
  border-top: 0 none;
  margin-top: 0;
  padding-top: 0;
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-photo {
  width: 95px;
  align-self: flex-start;
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-item-header-title {
  width: calc(100% - 55px);
}
.vsl-blog-posts .tl-blog-container .tl-items-header .tl-item-header .tl-photo img {
  width: 70px;
}

/*------------------------------------*\
    #Global
\*------------------------------------*/
.tl-header {
  background-color: #67bd4b;
  background: linear-gradient(75deg, #67bd4b 0%, #0c508f 75%);
  color: #fff;
  color: #fff;
}
.tl-header h1, .tl-header .h1, .tl-header h2, .tl-header .h2, .tl-header h3, .tl-header .h3, .tl-header h4, .tl-header .h4, .tl-header h5, .tl-header .h5, .tl-header p, .tl-header a {
  color: #fff;
}
.tl-header .btn-text,
.tl-header .btn-text:focus,
.tl-header .btn-text:hover,
.tl-header a.btn-text:focus,
.tl-header a.btn-text:hover,
.tl-header p a.btn-text:focus,
.tl-header p a.btn-text:hover {
  color: #fff;
}

.tl-photo {
  text-align: center;
}
.tl-photo a {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.tl-photo img {
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #67bd4b 75%);
  color: #fff;
  padding: 8px;
  width: 160px;
  border-radius: 50%;
  height: auto;
}

.tl-double .tl-photo img {
  width: 110px;
}

/*------------------------------------*\
    #Embed Conditionals
\*------------------------------------*/
.tl-hide-title .tl-title {
  display: none;
}

.tl-hide-bio .tl-bio-modal-btn {
  display: none;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("https://www.voyagersopris.com/info/dev/favicon/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 24px;
  line-height: 40px;
  color: #fff;
  opacity: 0.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 40px;
  width: 40px;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\f060";
}
[dir=rtl] .slick-prev:before {
  content: "\f061";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\f061";
}
[dir=rtl] .slick-next:before {
  content: "\f060";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 12px;
  width: 12px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 12px;
  height: 12px;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #fff;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  border-radius: 50%;
}
.slick-dots li.slick-active button:before {
  background: #fff;
  color: #fff;
  opacity: 0.9;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.vsl-multi-carousel-center {
  overflow: hidden;
}
.vsl-multi-carousel-center .slick-track {
  padding-bottom: 1.5rem;
  display: flex;
  height: 100%;
  align-items: center;
}
.vsl-multi-carousel-center .slick-track .bg-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vsl-multi-carousel-center .slick-track .bg-icon a, .vsl-multi-carousel-center .slick-track .bg-icon img {
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%;
}
.vsl-multi-carousel-center .slick-track .vsl-badge-icon {
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  width: 215px;
  height: 215px;
}
.vsl-multi-carousel-center .slick-track .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.vsl-multi-carousel-center .slick-track .card-body .card-link {
  margin-top: auto;
  align-self: end;
  text-decoration: none;
  text-align: right;
  width: 100%;
}
.vsl-multi-carousel-center .slick-track .card-body .card-link:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.vsl-multi-carousel-center .slick-track .card-body .card-link:hover, .vsl-multi-carousel-center .slick-track .card-body .card-link:focus {
  text-decoration: underline;
  margin-right: 10px;
}
.vsl-multi-carousel-center .slick-track .card-body .card-link .bi {
  transition: all 0.15s;
}
.vsl-multi-carousel-center .slick-arrow {
  background-color: #67bd4b;
  color: transparent;
  font-size: 24px;
  width: 40px;
  height: 40px;
  margin: 0px;
  z-index: 1;
  opacity: 0.7;
  transition: all 0.25s;
  -webkit-transform-origin: 50% 200%;
          transform-origin: 50% 200%;
}
.vsl-multi-carousel-center .slick-arrow:hover, .vsl-multi-carousel-center .slick-arrow:focus, .vsl-multi-carousel-center .slick-arrow:focus-visible {
  opacity: 1;
  width: 50px;
}
.vsl-multi-carousel-center .slick-arrow:before {
  font-family: "Font Awesome 6 Pro";
}
.vsl-multi-carousel-center .slick-prev {
  left: 0px;
  border-radius: 0 50% 50% 0;
}
.vsl-multi-carousel-center .slick-prev:hover, .vsl-multi-carousel-center .slick-prev:focus, .vsl-multi-carousel-center .slick-prev:focus-visible {
  padding-left: 8px;
  padding-right: 2px;
}
[dir=rtl] .vsl-multi-carousel-center .slick-prev {
  left: auto;
  right: 0px;
}
.vsl-multi-carousel-center .slick-prev:before {
  content: "\f100";
}
[dir=rtl] .vsl-multi-carousel-center .slick-prev:before {
  content: "\f101";
}
.vsl-multi-carousel-center .slick-next {
  right: 0px;
  border-radius: 50% 0 0 50%;
}
.vsl-multi-carousel-center .slick-next:hover, .vsl-multi-carousel-center .slick-next:focus, .vsl-multi-carousel-center .slick-next:focus-visible {
  padding-right: 8px;
  padding-left: 2px;
}
[dir=rtl] .vsl-multi-carousel-center .slick-next {
  left: 0px;
  right: auto;
}
.vsl-multi-carousel-center .slick-next:before {
  content: "\f101";
}
[dir=rtl] .vsl-multi-carousel-center .slick-next:before {
  content: "\f100";
}

.carousel-gutter {
  padding: 1rem;
}
.carousel-gutter:focus-visible {
  outline: 1px solid rgba(195, 231, 245, 0.85);
  background: rgba(238, 247, 255, 0.15);
  text-decoration: none;
  box-shadow: none;
}

.vsl-multi-carousel-center .slick-track .bg-icon {
  max-width: 250px;
}

.vsl-multi-carousel-center .slick-track .card-body {
  min-height: 250px;
  max-height: 250px;
}

@media (min-width: 0) and (max-width: 1200px) {
  .vsl-multi-carousel-center .slick-track .card-body .card-title {
    font-size: 1rem !important;
  }
}
@media (min-width: 600px) and (max-width: 1200px) {
  .vsl-multi-carousel-center .slick-track .card-body .card-text-title,
  .vsl-multi-carousel-center .slick-track .card-body .card-link {
    font-size: 0.938rem !important;
  }
  .vsl-multi-carousel-center .slick-track .card-body {
    padding: 1.25rem;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .vsl-multi-carousel-center .slick-track .card-body .card-text-title,
  .vsl-multi-carousel-center .slick-track .card-body .card-link {
    font-size: 0.875rem !important;
  }
  .vsl-multi-carousel-center .slick-track .card-body {
    padding: 1rem;
  }
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.home-header {
  position: relative;
  text-align: left;
}
.home-header img {
  position: absolute;
  bottom: -3rem;
  max-width: 600px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .home-header {
    text-align: center;
  }
  .home-header img {
    position: relative;
    max-width: 100%;
  }
}

.pad-header {
  position: relative;
  text-align: left;
}
.pad-header img {
  position: absolute;
  bottom: -6rem;
  max-width: 600px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .pad-header {
    text-align: center;
  }
  .pad-header img {
    position: relative;
    max-width: 100%;
    bottom: -3rem;
  }
}

.vsl-gradient-blue-lt-dk-trip.main-header {
  background-image: url("https://vsl.widen.net/content/llfvyyi20s/jpeg/main-header-bg.jpeg") !important;
  background-size: cover;
  overflow: hidden;
}

.main-header h1, .main-header .h1 {
  margin-bottom: 0;
}
.main-header h1.h2, .main-header .h2.h1 {
  margin-bottom: 0.5rem;
}

.section-breaker {
  position: relative;
}
.section-breaker .section-breaker-position {
  position: absolute;
  width: 100%;
}
.section-breaker-badges .section-breaker-position {
  top: -57px;
}
.section-breaker-badges .section-breaker-position .col-2 {
  width: 150px;
}
.section-breaker-badges .vsl-badge-icon:focus-visible {
  outline: 1px auto #c3e7f5;
  text-decoration: none;
  box-shadow: none;
}
@media (min-width: 0) and (max-width: 62rem) {
  .section-breaker-badges .section-breaker-position {
    top: -45px;
  }
  .section-breaker-badges .section-breaker-position .col-2 {
    width: 120px;
  }
  .section-breaker-badges .section-breaker-position .vsl-badge-icon {
    width: 90px;
    height: 90px;
  }
  .section-breaker-badges .section-breaker-position .vsl-badge-icon svg {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 0) and (max-width: 39.9375rem) {
  .section-breaker-badges .section-breaker-position {
    top: -30px;
  }
  .section-breaker-badges .section-breaker-position .col-2 {
    width: 85px;
  }
  .section-breaker-badges .section-breaker-position .vsl-badge-icon {
    width: 60px;
    height: 60px;
  }
  .section-breaker-badges .section-breaker-position .vsl-badge-icon svg {
    width: 60px;
    height: 60px;
  }
}

.content--split {
  width: 100%;
  *zoom: 1;
  background-color: #eee;
}
.content--split:after, .content--split:before {
  content: " ";
  display: table;
}
.content--split:after {
  clear: both;
}
.content--split--blue, .content--split--dk-blue, .content--split--reading, .content--split--literacy, .content--split--emerald, .content--split--writing, .content--split--purple, .content--split--math, .content--split--red, .content--split--assessment, .content--split--lt-blue, .content--split--cs, .content--split--orange, .content--split--dark-gray {
  color: #fff;
}
.content--split--blue h1, .content--split--blue .h1, .content--split--blue h2, .content--split--blue .h2, .content--split--blue h3, .content--split--blue .h3, .content--split--blue h4, .content--split--blue .h4, .content--split--blue h5, .content--split--blue .h5, .content--split--blue h6, .content--split--blue .h6, .content--split--dk-blue h1, .content--split--dk-blue .h1, .content--split--dk-blue h2, .content--split--dk-blue .h2, .content--split--dk-blue h3, .content--split--dk-blue .h3, .content--split--dk-blue h4, .content--split--dk-blue .h4, .content--split--dk-blue h5, .content--split--dk-blue .h5, .content--split--dk-blue h6, .content--split--dk-blue .h6, .content--split--reading h1, .content--split--reading .h1, .content--split--reading h2, .content--split--reading .h2, .content--split--reading h3, .content--split--reading .h3, .content--split--reading h4, .content--split--reading .h4, .content--split--reading h5, .content--split--reading .h5, .content--split--reading h6, .content--split--reading .h6, .content--split--literacy h1, .content--split--literacy .h1, .content--split--literacy h2, .content--split--literacy .h2, .content--split--literacy h3, .content--split--literacy .h3, .content--split--literacy h4, .content--split--literacy .h4, .content--split--literacy h5, .content--split--literacy .h5, .content--split--literacy h6, .content--split--literacy .h6, .content--split--emerald h1, .content--split--emerald .h1, .content--split--emerald h2, .content--split--emerald .h2, .content--split--emerald h3, .content--split--emerald .h3, .content--split--emerald h4, .content--split--emerald .h4, .content--split--emerald h5, .content--split--emerald .h5, .content--split--emerald h6, .content--split--emerald .h6, .content--split--writing h1, .content--split--writing .h1, .content--split--writing h2, .content--split--writing .h2, .content--split--writing h3, .content--split--writing .h3, .content--split--writing h4, .content--split--writing .h4, .content--split--writing h5, .content--split--writing .h5, .content--split--writing h6, .content--split--writing .h6, .content--split--purple h1, .content--split--purple .h1, .content--split--purple h2, .content--split--purple .h2, .content--split--purple h3, .content--split--purple .h3, .content--split--purple h4, .content--split--purple .h4, .content--split--purple h5, .content--split--purple .h5, .content--split--purple h6, .content--split--purple .h6, .content--split--math h1, .content--split--math .h1, .content--split--math h2, .content--split--math .h2, .content--split--math h3, .content--split--math .h3, .content--split--math h4, .content--split--math .h4, .content--split--math h5, .content--split--math .h5, .content--split--math h6, .content--split--math .h6, .content--split--red h1, .content--split--red .h1, .content--split--red h2, .content--split--red .h2, .content--split--red h3, .content--split--red .h3, .content--split--red h4, .content--split--red .h4, .content--split--red h5, .content--split--red .h5, .content--split--red h6, .content--split--red .h6, .content--split--assessment h1, .content--split--assessment .h1, .content--split--assessment h2, .content--split--assessment .h2, .content--split--assessment h3, .content--split--assessment .h3, .content--split--assessment h4, .content--split--assessment .h4, .content--split--assessment h5, .content--split--assessment .h5, .content--split--assessment h6, .content--split--assessment .h6, .content--split--lt-blue h1, .content--split--lt-blue .h1, .content--split--lt-blue h2, .content--split--lt-blue .h2, .content--split--lt-blue h3, .content--split--lt-blue .h3, .content--split--lt-blue h4, .content--split--lt-blue .h4, .content--split--lt-blue h5, .content--split--lt-blue .h5, .content--split--lt-blue h6, .content--split--lt-blue .h6, .content--split--cs h1, .content--split--cs .h1, .content--split--cs h2, .content--split--cs .h2, .content--split--cs h3, .content--split--cs .h3, .content--split--cs h4, .content--split--cs .h4, .content--split--cs h5, .content--split--cs .h5, .content--split--cs h6, .content--split--cs .h6, .content--split--orange h1, .content--split--orange .h1, .content--split--orange h2, .content--split--orange .h2, .content--split--orange h3, .content--split--orange .h3, .content--split--orange h4, .content--split--orange .h4, .content--split--orange h5, .content--split--orange .h5, .content--split--orange h6, .content--split--orange .h6, .content--split--dark-gray h1, .content--split--dark-gray .h1, .content--split--dark-gray h2, .content--split--dark-gray .h2, .content--split--dark-gray h3, .content--split--dark-gray .h3, .content--split--dark-gray h4, .content--split--dark-gray .h4, .content--split--dark-gray h5, .content--split--dark-gray .h5, .content--split--dark-gray h6, .content--split--dark-gray .h6 {
  color: #fff;
}
.content--split--blue a, .content--split--dk-blue a, .content--split--reading a, .content--split--literacy a, .content--split--emerald a, .content--split--writing a, .content--split--purple a, .content--split--math a, .content--split--red a, .content--split--assessment a, .content--split--lt-blue a, .content--split--cs a, .content--split--orange a, .content--split--dark-gray a {
  color: #fff;
  text-decoration: underline;
}
.content--split--blue a.btn-callout-solid:hover, .content--split--blue a.btn-callout-solid:focus, .content--split--dk-blue a.btn-callout-solid:hover, .content--split--dk-blue a.btn-callout-solid:focus, .content--split--reading a.btn-callout-solid:hover, .content--split--reading a.btn-callout-solid:focus, .content--split--literacy a.btn-callout-solid:hover, .content--split--literacy a.btn-callout-solid:focus, .content--split--emerald a.btn-callout-solid:hover, .content--split--emerald a.btn-callout-solid:focus, .content--split--writing a.btn-callout-solid:hover, .content--split--writing a.btn-callout-solid:focus, .content--split--purple a.btn-callout-solid:hover, .content--split--purple a.btn-callout-solid:focus, .content--split--math a.btn-callout-solid:hover, .content--split--math a.btn-callout-solid:focus, .content--split--red a.btn-callout-solid:hover, .content--split--red a.btn-callout-solid:focus, .content--split--assessment a.btn-callout-solid:hover, .content--split--assessment a.btn-callout-solid:focus, .content--split--lt-blue a.btn-callout-solid:hover, .content--split--lt-blue a.btn-callout-solid:focus, .content--split--cs a.btn-callout-solid:hover, .content--split--cs a.btn-callout-solid:focus, .content--split--orange a.btn-callout-solid:hover, .content--split--orange a.btn-callout-solid:focus, .content--split--dark-gray a.btn-callout-solid:hover, .content--split--dark-gray a.btn-callout-solid:focus {
  color: #fff;
  text-decoration: underline !important;
}
@media (min-width: 0) and (max-width: 76.5rem) {
  .content--split h2, .content--split .h2 {
    font-size: 1.5rem;
  }
}
.content--split--dark-gray {
  background-color: #444;
}
.content--split--blue {
  background-color: #005587;
}
.content--split--dk-blue {
  background-color: rgb(0, 72.25, 114.75);
}
.content--split--white {
  background-color: #fff;
}
.content--split--reading, .content--split--literacy, .content--split--emerald {
  background-color: #00956E;
}
.content--split--writing, .content--split--purple {
  background-color: #333399;
}
.content--split--math, .content--split--red {
  background-color: #D52158;
}
.content--split--assessment, .content--split--lt-blue {
  background-color: #0099CC;
}
.content--split--cs, .content--split--orange {
  background-color: #FF9015;
}
.content--split .content__section {
  width: 100%;
}
@media all and (min-width: 62rem) {
  .content--split .content__section {
    margin: 0;
    padding: 0;
    width: 50%;
    *width: 49.9%;
    min-height: 450px;
    *zoom: 1;
  }
  .content--split .content__section:after, .content--split .content__section:before {
    content: " ";
    display: table;
  }
  .content--split .content__section:after {
    clear: both;
  }
}
.content--split .content__section--img {
  overflow: hidden;
}
.content--split .content__section--img img {
  display: block;
  height: auto;
}
@media all and (min-width: 62rem) {
  .content--split .content__section--img img {
    max-width: none;
  }
}
@media (min-width: 0) and (max-width: 62rem) {
  .content--split .content__section--img img {
    width: 100%;
    margin: 0;
  }
}
@media all and (min-width: 125em) {
  .content--split .content__section--img img {
    width: 100%;
  }
}
.content--split .content__section + .content__section {
  margin: 0;
}
.content--split .content__section--right {
  float: right;
}
@media all and (min-width: 62rem) {
  .content--split .content__section--right .content--split-container {
    float: left;
    left: 0;
  }
  .content--split .content__section--right .content--split-container .content--split-margin {
    margin-left: 2em;
  }
}
.content--split .content__section--right.content__section--img {
  text-align: right;
}
.content--split .content__section--right.content__section--img img {
  display: inline-block;
  text-align: right;
}
.content--split .content__section--left {
  float: left;
}
@media all and (min-width: 62rem) {
  .content--split .content__section--left .content--split-container {
    float: right;
    right: 0;
  }
  .content--split .content__section--left .content--split-container .content--split-margin {
    margin-right: 2em;
  }
}
.content--split .content__section--left.content__section--img {
  text-align: left;
}
.content--split .content__section--left.content__section--img img {
  display: inline-block;
  text-align: left;
}
.content--split-margin {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media all and (min-width: 62rem) {
  .content--split-margin {
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .content--split-margin p:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 0) and (max-width: 76.5rem) {
  .content--split-container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
@media all and (min-width: 62rem) {
  .content--split-container {
    max-width: 32em;
  }
}
@media (min-width: 0) and (max-width: 76.5rem) {
  .content--split img.product-logo {
    display: block;
    margin: 0 auto 20px;
  }
  .content--split h3, .content--split .h3 {
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .content--split .btn-mobile-link {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.product-banner {
  color: #fff;
}
.product-banner h1, .product-banner .h1, .product-banner h2, .product-banner .h2, .product-banner h3, .product-banner .h3, .product-banner h4, .product-banner .h4, .product-banner h5, .product-banner .h5, .product-banner h6, .product-banner .h6 {
  color: #fff;
  margin: 0;
  font-size: 2.6rem;
  font-style: normal;
}
.product-banner .btn + .btn {
  margin-top: 1.25rem;
}
.product-banner .field--name-field-product-light-logo {
  width: 210px;
}
@media (min-width: 0) and (max-width: 47.99rem) {
  .product-banner .field--name-field-product-light-logo {
    margin: 0 auto;
  }
}
.product-banner .field--name-field-product-light-logo img {
  padding-bottom: 1rem;
}

.t--center .field--name-field-product-light-logo {
  margin: 0 auto;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/**
 * Bootstrap 5.3 Overrides
 */
.accordion .accordion-button {
  color: #fff;
  background-color: #005587;
  padding-left: 3.5rem;
  cursor: pointer;
}
.accordion .accordion-button:hover, .accordion .accordion-button:focus {
  background-color: rgb(0, 72.25, 114.75);
}
.accordion .accordion-button::after {
  background-image: none;
  font-family: FontAwesome;
  display: block;
  position: absolute;
  font-weight: 700;
  font-style: normal;
  color: #EEF7FF;
  text-align: center;
  font-size: 1.25rem;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  margin-left: -2.65rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f0fe";
  transition: 0.5s;
}
.accordion .accordion-button[aria-expanded=true]:after {
  content: "\f146";
}

/**
 * Old Accordion - Remove once migrated
 */
.panel-group.panel-group-vsl .panel .panel-heading {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0 none;
  padding: 0;
  text-align: left;
  color: #fff;
}
.panel-group.panel-group-vsl .panel .panel-heading .panel-title,
.panel-group.panel-group-vsl .panel .panel-heading h1.panel-title,
.panel-group.panel-group-vsl .panel .panel-heading h2.panel-title,
.panel-group.panel-group-vsl .panel .panel-heading h3.panel-title,
.panel-group.panel-group-vsl .panel .panel-heading h4.panel-title,
.panel-group.panel-group-vsl .panel .panel-heading h5.panel-title {
  position: relative;
  color: #fff;
  font-weight: 400;
}
@media all and (min-width: 37.5rem) {
  .panel-group.panel-group-vsl .panel .panel-heading .panel-title,
  .panel-group.panel-group-vsl .panel .panel-heading h1.panel-title,
  .panel-group.panel-group-vsl .panel .panel-heading h2.panel-title,
  .panel-group.panel-group-vsl .panel .panel-heading h3.panel-title,
  .panel-group.panel-group-vsl .panel .panel-heading h4.panel-title,
  .panel-group.panel-group-vsl .panel .panel-heading h5.panel-title {
    font-weight: 200;
  }
}
.panel-group.panel-group-vsl .panel .panel-heading a {
  display: block;
  width: 100%;
  background-color: #005587;
  border: 0 none;
  padding: 1rem 0 1rem 2.5em;
  text-align: left;
  color: #fff;
  border-radius: 3px;
  font-size: 1rem;
  line-height: 1.3em;
  margin: 0;
}
.panel-group.panel-group-vsl .panel .panel-heading a:hover, .panel-group.panel-group-vsl .panel .panel-heading a:focus {
  background-color: rgb(0, 72.25, 114.75);
  outline: none;
  text-decoration: none;
}
.panel-group.panel-group-vsl .panel .panel-heading a:focus {
  color: #fff;
}
.panel-group.panel-group-vsl .panel .panel-heading a:before {
  font-family: FontAwesome;
  display: block;
  position: absolute;
  font-weight: 700;
  font-style: normal;
  color: #EEF7FF;
  text-align: center;
  font-size: 1.25rem;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  margin-left: -1.75em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "\f0fe";
  transition: 0.5s;
}
.panel-group.panel-group-vsl .panel .panel-heading a[aria-expanded=true] {
  border-radius: 3px 3px 0 0;
}
.panel-group.panel-group-vsl .panel .panel-heading a[aria-expanded=true]:before {
  content: "\f146";
}
@media all and (min-width: 37.5rem) {
  .panel-group.panel-group-vsl .panel .panel-heading a {
    font-size: 1.25rem;
    padding-left: 2.75em;
  }
  .panel-group.panel-group-vsl .panel .panel-heading a:before {
    margin-left: -2em;
  }
}
.panel-group.panel-group-vsl .panel .panel-heading a::after {
  display: none;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.badge {
  display: inline-block;
  min-width: 10px;
  padding: 0.4em 0.7em;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #444;
  border-radius: 8px;
  letter-spacing: normal;
  font-style: normal;
  font-weight: bold;
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
  text-transform: uppercase;
}
.badge:empty {
  display: none;
}
.badge--success {
  background-color: #00956E;
}
.badge--success-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #eef7ea;
  border-color: rgb(195.7051724138, 227.0965517241, 181.7534482759);
  color: #00956E;
}
.badge--success-note {
  background-color: #eef7ea;
  border-color: rgb(195.7051724138, 227.0965517241, 181.7534482759);
  color: #00956E;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--info {
  background-color: #005587;
}
.badge--info-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #EEF7FF;
  border-color: rgb(164.05, 212.2, 255);
  color: #005587;
}
.badge--info-note {
  background-color: #EEF7FF;
  border-color: rgb(164.05, 212.2, 255);
  color: #005587;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--warning {
  background-color: #FF9015;
}
.badge--warning-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #fef8f6;
  border-color: rgb(246.5, 195.5, 178.5);
  color: #FF9015;
}
.badge--warning-note {
  background-color: #fef8f6;
  border-color: rgb(246.5, 195.5, 178.5);
  color: #FF9015;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--error {
  background-color: #D52158;
}
.badge--error-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #fff4f6;
  border-color: rgb(255, 169.15, 184.7590909091);
  color: #D52158;
}
.badge--error-note {
  background-color: #fff4f6;
  border-color: rgb(255, 169.15, 184.7590909091);
  color: #D52158;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--green {
  background-color: #67bd4b;
}
.badge--green-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  border-color: rgb(216.75, 216.75, 216.75);
  color: #67bd4b;
}
.badge--green-note {
  background-color: #fff;
  border-color: rgb(216.75, 216.75, 216.75);
  color: #67bd4b;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--blue-sky {
  background-color: #0099CC;
}
.badge--blue-sky-alt {
  border-width: 1px;
  border-style: solid;
  background-color: #fff;
  border-color: rgb(216.75, 216.75, 216.75);
  color: #0099CC;
}
.badge--blue-sky-note {
  background-color: #fff;
  border-color: rgb(216.75, 216.75, 216.75);
  color: #0099CC;
  border-left-width: 3px;
  border-left-style: solid;
  background-color: transparent;
  border-radius: 0;
  margin-left: 0.5em;
  text-transform: uppercase;
}
.badge--inverted {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  color: #fff;
}
.badge + .badge {
  margin-left: 0.5em;
}

.btn .badge {
  position: relative;
  top: -1px;
}

a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.vsl-badge-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.vsl-badges {
  *zoom: 1;
}
.vsl-badges:after, .vsl-badges:before {
  content: " ";
  display: table;
}
.vsl-badges:after {
  clear: both;
}
.vsl-badges .vsl-badge {
  display: inline-block;
  background-repeat: no-repeat;
  width: 115px;
  height: 130px;
  text-decoration: none;
}
.vsl-badges .vsl-badge svg {
  width: 115px;
  height: 130px;
}
.vsl-badges .vsl-badge:hover, .vsl-badges .vsl-badge:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 0) and (max-width: 62rem) {
  .vsl-badges {
    margin-top: 60px;
    text-align: center;
  }
}

.vsl-badge:hover, .vsl-badge:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.vsl-badge--reading, .vsl-badge--literacy, .vsl-badge.reading, .vsl-badge.literacy {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzAwOTI2ZiIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUsODEuOGMtMjEuMywwLTM4LjctMTcuMy0zOC43LTM4LjdTMzYuMiw0LjUsNTcuNSw0LjVzMzguNywxNy4zLDM4LjcsMzguN1M3OC44LDgxLjgsNTcuNSw4MS44eiIgZmlsbD0iIzAwOTI2ZiIvPjxwYXRoIGQ9Ik01Ny41IDUuNWMyMC44IDAgMzcuNyAxNi45IDM3LjcgMzcuN1M3OC4zIDgwLjggNTcuNSA4MC44IDE5LjkgNjMuOSAxOS45IDQzLjIgMzYuOCA1LjUgNTcuNSA1LjVtMC0yYy0yMS45IDAtMzkuNyAxNy44LTM5LjcgMzkuN3MxNy44IDM5LjcgMzkuNyAzOS43IDM5LjctMTcuOCAzOS43LTM5LjdTNzkuNCAzLjUgNTcuNSAzLjVoMHoiIGZpbGw9IiNmZmYiLz48L2c+PHBhdGggZD0iTTY1LjcgMjguNWMzLjctLjcgNi42IDAgNi42IDBMNzYgNDkuMXMtNS4yIDAtOS42LjctNy40IDQuNC03LjQgNC40VjMwLjdjLjEgMCAzLTEuNCA2LjctMi4yem0tNi42IDI3LjZ2Mi42czYuNi0zLjcgMTEtNC40IDEyLjUtLjcgMTIuNS0uN0w3NiAyNC4xcy00LjQtLjctOC4xIDAtOC44IDQuMS04LjggNC4xdjEuMXM2LjktMy4xIDkuMS0zLjZjMy0uNyA2LjIuMiA2LjIuMmw0LjYgMjVzLTguMy0uMS0xMiAuNmMtMy43LjgtNy45IDQuNi03LjkgNC42ek01MSAyOC41Yy0zLjctLjctNi42IDAtNi42IDBsLTMuNyAyMC42czUuMiAwIDkuNi43IDcuNCA0LjQgNy40IDQuNFYzMC43Yy0uMSAwLTMtMS40LTYuNy0yLjJ6bS0xLjggMjMuMWMtMy43LS43LTExLjQtLjctMTEuNC0uN2w0LjYtMjUuMXMzLjItLjggNi4yLS4yYzIuMi41IDkuMSAzLjYgOS4xIDMuNnYtMS4xcy01LjItMy40LTguOC00LjEtOC4xIDAtOC4xIDBsLTYuNiAyOS40czguMSAwIDEyLjUuNyAxMSA0LjQgMTEgNC40di0yLjZjLS4xLjItNC45LTMuNi04LjUtNC4zek03MC4xIDU2Yy00LjkgMS4yLTExLjcgNS0xMS43IDVzLTUuOS0zLjgtMTAuNy00LjljLTMuNi0uOS0xNS45LTEuMy0xNS45LTEuM2w2LTI1LjNIMzVsLTYuNCAyOC4zIDE1LjYgMi40YzIuNi40IDE0LjIgMy4zIDE0LjIgMy4zbDE1LjMtMy43YzIuMS0uNSAxMy41LTIuMSAxMy41LTIuMUw4MiAyOS40aC0yLjlsNS43IDI1LjNjMCAuMS0xMC45LjQtMTQuNyAxLjN6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIwLjMgOTcuOWg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjMtNC43aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTE0IDBoMi4xbDQuOSAxMS4zaC0yLjhsLTEtMi40aC00LjRsLS45IDIuNGgtMi44bDQuOS0xMS4zem0xIDMuM2wtMS40IDMuNWgyLjhsLTEuNC0zLjV6bTcuNS0zLjNoMy43YTEwLjkgMTAuOSAwIDAgMSAyLjYuM2MuOC4yIDEuNS41IDIuMSAxczEuMSAxIDEuNCAxLjhjLjQuNy41IDEuNi41IDIuNiAwIC45LS4yIDEuNy0uNSAyLjRzLS44IDEuMy0xLjQgMS44LTEuMy44LTIgMS4xYy0uOC4yLTEuNi40LTIuNC40aC00LjFWOTcuOXptMi41IDloMS4zYy42IDAgMS4xLS4xIDEuNi0uMnMuOS0uMyAxLjMtLjYuNi0uNi45LTEuMWMuMi0uNC4zLTEgLjMtMS42cy0uMS0xLS4zLTEuNC0uNS0uNy0uOC0xYy0uNC0uMy0uOC0uNS0xLjItLjYtLjUtLjEtMS0uMi0xLjUtLjJoLTEuNXY2Ljd6bTkuOS05aDIuNXYxMS4zSDY2Vjk3Ljl6bTUuMSAwaDMuNGw0LjggNy45aDB2LTcuOWgyLjV2MTEuM2gtMy4zbC00LjktOC4xaDB2OC4xaC0yLjVWOTcuOXptMjMuNiAxMC41Yy0uNy40LTEuNS43LTIuMy44LS44LjItMS42LjMtMi40LjMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNS43LTEuNCAxLjMtMS45Yy41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjkgMCAxLjcuMSAyLjUuM3MxLjQuNiAyIDEuMWwtMS44IDEuOWMtLjMtLjQtLjctLjYtMS4yLS44LS40LS4yLTEtLjMtMS42LS4zLS41IDAtMSAuMS0xLjQuM3MtLjguNC0xLjEuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy43LjYgMS4xLjguOS4zIDEuNC4zIDEtLjEgMS40LS4yLjctLjIuOS0uNHYtMS44aC0ydi0yLjNoNC40djUuOHoiIGZpbGw9IiMwMDkyNmYiLz48L3N2Zz4=");
}
.vsl-badge--reading-icon-with-dark-text, .vsl-badge--literacy-icon-with-dark-text, .vsl-badge.reading-icon-with-dark-text, .vsl-badge.literacy-icon-with-dark-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzAwOTI2ZiIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUsODEuOGMtMjEuMywwLTM4LjctMTcuMy0zOC43LTM4LjdTMzYuMiw0LjUsNTcuNSw0LjVzMzguNywxNy4zLDM4LjcsMzguN1M3OC44LDgxLjgsNTcuNSw4MS44eiIgZmlsbD0iIzAwOTI2ZiIvPjxwYXRoIGQ9Ik01Ny41IDUuNWMyMC44IDAgMzcuNyAxNi45IDM3LjcgMzcuN1M3OC4zIDgwLjggNTcuNSA4MC44IDE5LjkgNjMuOSAxOS45IDQzLjIgMzYuOCA1LjUgNTcuNSA1LjVtMC0yYy0yMS45IDAtMzkuNyAxNy44LTM5LjcgMzkuN3MxNy44IDM5LjcgMzkuNyAzOS43IDM5LjctMTcuOCAzOS43LTM5LjdTNzkuNCAzLjUgNTcuNSAzLjVoMHoiIGZpbGw9IiNmZmYiLz48L2c+PHBhdGggZD0iTTY1LjcgMjguNWMzLjctLjcgNi42IDAgNi42IDBMNzYgNDkuMXMtNS4yIDAtOS42LjctNy40IDQuNC03LjQgNC40VjMwLjdjLjEgMCAzLTEuNCA2LjctMi4yem0tNi42IDI3LjZ2Mi42czYuNi0zLjcgMTEtNC40IDEyLjUtLjcgMTIuNS0uN0w3NiAyNC4xcy00LjQtLjctOC4xIDAtOC44IDQuMS04LjggNC4xdjEuMXM2LjktMy4xIDkuMS0zLjZjMy0uNyA2LjIuMiA2LjIuMmw0LjYgMjVzLTguMy0uMS0xMiAuNmMtMy43LjgtNy45IDQuNi03LjkgNC42ek01MSAyOC41Yy0zLjctLjctNi42IDAtNi42IDBsLTMuNyAyMC42czUuMiAwIDkuNi43IDcuNCA0LjQgNy40IDQuNFYzMC43Yy0uMSAwLTMtMS40LTYuNy0yLjJ6bS0xLjggMjMuMWMtMy43LS43LTExLjQtLjctMTEuNC0uN2w0LjYtMjUuMXMzLjItLjggNi4yLS4yYzIuMi41IDkuMSAzLjYgOS4xIDMuNnYtMS4xcy01LjItMy40LTguOC00LjEtOC4xIDAtOC4xIDBsLTYuNiAyOS40czguMSAwIDEyLjUuNyAxMSA0LjQgMTEgNC40di0yLjZjLS4xLjItNC45LTMuNi04LjUtNC4zek03MC4xIDU2Yy00LjkgMS4yLTExLjcgNS0xMS43IDVzLTUuOS0zLjgtMTAuNy00LjljLTMuNi0uOS0xNS45LTEuMy0xNS45LTEuM2w2LTI1LjNIMzVsLTYuNCAyOC4zIDE1LjYgMi40YzIuNi40IDE0LjIgMy4zIDE0LjIgMy4zbDE1LjMtMy43YzIuMS0uNSAxMy41LTIuMSAxMy41LTIuMUw4MiAyOS40aC0yLjlsNS43IDI1LjNjMCAuMS0xMC45LjQtMTQuNyAxLjN6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIwLjMgOTcuOWg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjMtNC43aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTE0IDBoMi4xbDQuOSAxMS4zaC0yLjhsLTEtMi40aC00LjRsLS45IDIuNGgtMi44bDQuOS0xMS4zem0xIDMuM2wtMS40IDMuNWgyLjhsLTEuNC0zLjV6bTcuNS0zLjNoMy43YTEwLjkgMTAuOSAwIDAgMSAyLjYuM2MuOC4yIDEuNS41IDIuMSAxczEuMSAxIDEuNCAxLjhjLjQuNy41IDEuNi41IDIuNiAwIC45LS4yIDEuNy0uNSAyLjRzLS44IDEuMy0xLjQgMS44LTEuMy44LTIgMS4xYy0uOC4yLTEuNi40LTIuNC40aC00LjFWOTcuOXptMi41IDloMS4zYy42IDAgMS4xLS4xIDEuNi0uMnMuOS0uMyAxLjMtLjYuNi0uNi45LTEuMWMuMi0uNC4zLTEgLjMtMS42cy0uMS0xLS4zLTEuNC0uNS0uNy0uOC0xYy0uNC0uMy0uOC0uNS0xLjItLjYtLjUtLjEtMS0uMi0xLjUtLjJoLTEuNXY2Ljd6bTkuOS05aDIuNXYxMS4zSDY2Vjk3Ljl6bTUuMSAwaDMuNGw0LjggNy45aDB2LTcuOWgyLjV2MTEuM2gtMy4zbC00LjktOC4xaDB2OC4xaC0yLjVWOTcuOXptMjMuNiAxMC41Yy0uNy40LTEuNS43LTIuMy44LS44LjItMS42LjMtMi40LjMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNS43LTEuNCAxLjMtMS45Yy41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjkgMCAxLjcuMSAyLjUuM3MxLjQuNiAyIDEuMWwtMS44IDEuOWMtLjMtLjQtLjctLjYtMS4yLS44LS40LS4yLTEtLjMtMS42LS4zLS41IDAtMSAuMS0xLjQuM3MtLjguNC0xLjEuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy43LjYgMS4xLjguOS4zIDEuNC4zIDEtLjEgMS40LS4yLjctLjIuOS0uNHYtMS44aC0ydi0yLjNoNC40djUuOHoiIGZpbGw9IiMwMDkyNmYiLz48L3N2Zz4=");
}
.vsl-badge--reading-white, .vsl-badge--reading-icon-with-light-text, .vsl-badge--literacy-white, .vsl-badge--literacy-icon-with-light-text, .vsl-badge.reading-white, .vsl-badge.reading-icon-with-light-text, .vsl-badge.literacy-white, .vsl-badge.literacy-icon-with-light-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzAwOTI2ZiIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUsODEuOGMtMjEuMywwLTM4LjctMTcuMy0zOC43LTM4LjdTMzYuMiw0LjUsNTcuNSw0LjVzMzguNywxNy4zLDM4LjcsMzguN1M3OC44LDgxLjgsNTcuNSw4MS44eiIgZmlsbD0iIzAwOTI2ZiIvPjxwYXRoIGQ9Ik01Ny41IDUuNWMyMC44IDAgMzcuNyAxNi45IDM3LjcgMzcuN1M3OC4zIDgwLjggNTcuNSA4MC44IDE5LjkgNjMuOSAxOS45IDQzLjIgMzYuOCA1LjUgNTcuNSA1LjVtMC0yYy0yMS45IDAtMzkuNyAxNy44LTM5LjcgMzkuN3MxNy44IDM5LjcgMzkuNyAzOS43IDM5LjctMTcuOCAzOS43LTM5LjdTNzkuNCAzLjUgNTcuNSAzLjVoMHoiIGZpbGw9IiNmZmYiLz48L2c+PHBhdGggZD0iTTY1LjcgMjguNWMzLjctLjcgNi42IDAgNi42IDBMNzYgNDkuMXMtNS4yIDAtOS42LjctNy40IDQuNC03LjQgNC40VjMwLjdjLjEgMCAzLTEuNCA2LjctMi4yem0tNi42IDI3LjZ2Mi42czYuNi0zLjcgMTEtNC40IDEyLjUtLjcgMTIuNS0uN0w3NiAyNC4xcy00LjQtLjctOC4xIDAtOC44IDQuMS04LjggNC4xdjEuMXM2LjktMy4xIDkuMS0zLjZjMy0uNyA2LjIuMiA2LjIuMmw0LjYgMjVzLTguMy0uMS0xMiAuNmMtMy43LjgtNy45IDQuNi03LjkgNC42ek01MSAyOC41Yy0zLjctLjctNi42IDAtNi42IDBsLTMuNyAyMC42czUuMiAwIDkuNi43IDcuNCA0LjQgNy40IDQuNFYzMC43Yy0uMSAwLTMtMS40LTYuNy0yLjJ6bS0xLjggMjMuMWMtMy43LS43LTExLjQtLjctMTEuNC0uN2w0LjYtMjUuMXMzLjItLjggNi4yLS4yYzIuMi41IDkuMSAzLjYgOS4xIDMuNnYtMS4xcy01LjItMy40LTguOC00LjEtOC4xIDAtOC4xIDBsLTYuNiAyOS40czguMSAwIDEyLjUuNyAxMSA0LjQgMTEgNC40di0yLjZjLS4xLjItNC45LTMuNi04LjUtNC4zek03MC4xIDU2Yy00LjkgMS4yLTExLjcgNS0xMS43IDVzLTUuOS0zLjgtMTAuNy00LjljLTMuNi0uOS0xNS45LTEuMy0xNS45LTEuM2w2LTI1LjNIMzVsLTYuNCAyOC4zIDE1LjYgMi40YzIuNi40IDE0LjIgMy4zIDE0LjIgMy4zbDE1LjMtMy43YzIuMS0uNSAxMy41LTIuMSAxMy41LTIuMUw4MiAyOS40aC0yLjlsNS43IDI1LjNjMCAuMS0xMC45LjQtMTQuNyAxLjN6TTIwLjMgOTcuOWg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41aC0uMXptOC4zLTQuN2g3Ljd2Mi4zaC01LjJ2Mi4xaDQuOXYyLjNoLTQuOXYyLjNoNS41djIuM2gtOFY5Ny45em0xNCAwaDIuMWw0LjkgMTEuM2gtMi44bC0xLTIuNGgtNC40bC0uOSAyLjRoLTIuOGw0LjktMTEuM3ptMSAzLjNsLTEuNCAzLjVoMi44bC0xLjQtMy41em03LjUtMy4zaDMuN2MuOSAwIDEuNy4xIDIuNi4zLjguMiAxLjUuNSAyLjEgMXMxLjEgMSAxLjQgMS44Yy40LjcuNSAxLjYuNSAyLjYgMCAuOS0uMiAxLjctLjUgMi40cy0uOCAxLjMtMS40IDEuOC0xLjMuOC0yIDEuMWMtLjguMi0xLjYuNC0yLjQuNGgtNC4xVjk3LjloLjF6bTIuNSA5aDEuM2MuNiAwIDEuMS0uMSAxLjYtLjJzLjktLjMgMS4zLS42LjYtLjYuOS0xLjFjLjItLjQuMy0xIC4zLTEuNnMtLjEtMS0uMy0xLjQtLjUtLjctLjgtMWMtLjQtLjMtLjgtLjUtMS4yLS42LS41LS4xLTEtLjItMS41LS4yaC0xLjVsLS4xIDYuN2gwem05LjktOWgyLjV2MTEuM0g2NlY5Ny45em01LjEgMGgzLjRsNC44IDcuOWgwdi03LjloMi41djExLjNoLTMuM2wtNC45LTguMWgwdjguMWgtMi41Vjk3Ljl6bTIzLjYgMTAuNWMtLjcuNC0xLjUuNy0yLjMuOC0uOC4yLTEuNi4zLTIuNC4zLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjUuNy0xLjQgMS4zLTEuOWMuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy45IDAgMS43LjEgMi41LjNzMS40LjYgMiAxLjFsLTEuOCAxLjljLS4zLS40LS43LS42LTEuMi0uOC0uNC0uMi0xLS4zLTEuNi0uMy0uNSAwLTEgLjEtMS40LjNzLS44LjQtMS4xLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMnMuNy42IDEuMS44LjkuMyAxLjQuMyAxLS4xIDEuNC0uMi43LS4yLjktLjR2LTEuOGgtMnYtMi4zaDQuNGwuMSA1LjhoMHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}
.vsl-badge--reading-icon, .vsl-badge--literacy-icon, .vsl-badge.reading-icon, .vsl-badge.literacy-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9Ijk3LjUiIGZpbGw9IiMwMDkyNmYiLz48ZyBvcGFjaXR5PSIuNjUiPjxwYXRoIGQ9Ik0xMDAgMTg4LjNjLTQ4LjkgMC04OC44LTM5LjctODguOC04OC44UzUxLjEgMTEgMTAwIDExczg4LjggMzkuNyA4OC44IDg4LjgtMzkuOSA4OC41LTg4LjggODguNXoiIGZpbGw9IiMwMDkyNmYiLz48cGF0aCBkPSJNMTAwIDEzLjNjNDcuNyAwIDg2LjUgMzguOCA4Ni41IDg2LjVTMTQ3LjcgMTg2IDEwMCAxODZzLTg2LjMtMzguOC04Ni4zLTg2LjNTNTIuNSAxMy4zIDEwMCAxMy4zbTAtNC42QzQ5LjggOC43IDguOSA0OS41IDguOSA5OS44czQwLjggOTEuMSA5MS4xIDkxLjEgOTEuMS00MC44IDkxLjEtOTEuMVMxNTAuMiA4LjcgMTAwIDguN2gweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNMTE4LjggNjZjOC41LTEuNiAxNS4xIDAgMTUuMSAwbDguNSA0Ny4zcy0xMS45IDAtMjIgMS42LTE3IDEwLjEtMTcgMTAuMVY3MS4xYy4zIDAgNi45LTMuMiAxNS40LTUuMXptLTE1LjEgNjMuNHY2czE1LjEtOC41IDI1LjItMTAuMSAyOC43LTEuNiAyOC43LTEuNkwxNDIuNCA1NnMtMTAuMS0xLjYtMTguNiAwLTIwLjIgOS40LTIwLjIgOS40djIuNXMxNS44LTcuMSAyMC45LTguM2M2LjktMS42IDE0LjIuNSAxNC4yLjVsMTAuNiA1Ny40cy0xOS0uMi0yNy41IDEuNGMtOC41IDEuNy0xOC4xIDEwLjUtMTguMSAxMC41ek04NS4xIDY2Qzc2LjYgNjQuNCA3MCA2NiA3MCA2NmwtOC41IDQ3LjNzMTEuOSAwIDIyIDEuNiAxNyAxMC4xIDE3IDEwLjFWNzEuMWMtLjMgMC02LjktMy4yLTE1LjQtNS4xek04MSAxMTljLTguNS0xLjYtMjYuMi0xLjYtMjYuMi0xLjZsMTAuNi01Ny42czcuMy0xLjggMTQuMi0uNWM1IDEuMSAyMC45IDguMyAyMC45IDguM3YtMi41cy0xMS45LTcuOC0yMC4yLTkuNC0xOC42IDAtMTguNiAwbC0xNS4xIDY3LjRzMTguNiAwIDI4LjcgMS42IDI1LjIgMTAuMSAyNS4yIDEwLjF2LTZjLS4zLjYtMTEuMy04LjItMTkuNS05Ljh6bTQ3LjkgMTAuMWMtMTEuMiAyLjgtMjYuOCAxMS41LTI2LjggMTEuNXMtMTMuNS04LjctMjQuNS0xMS4yYy04LjMtMi4xLTM2LjUtMy0zNi41LTNsMTMuOC01OGgtNi40bC0xNC43IDY0LjkgMzUuOCA1LjVjNiAuOSAzMi42IDcuNiAzMi42IDcuNmwzNS4xLTguNWM0LjgtMS4xIDMxLTQuOCAzMS00LjhsLTExLjktNjQuOWgtNi43bDEzLjEgNThjLS4yLjItMjUuMi45LTMzLjkgMi45eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
}
.vsl-badge--writing, .vsl-badge.writing {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzM2Mzc5NSIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDQuNyAyMGwtOS4zIDI0LjcgMi4xIDUuOSA1LjUtMy4xIDkuMy0yNC43LTcuNi0yLjh6bS00LjUgMjAuN2MtLjEuMy0uNC40LS44LjMtLjMtLjEtLjUtLjQtLjQtLjdsNS43LTE1LjJjLjEtLjMuNC0uNC44LS4zLjMuMS41LjQuNC43bC01LjcgMTUuMnptMTMuOS0yMi44aDBsLTEuMiAzLjQtNy42LTIuOSAxLjMtMy40aC4xYy44LTEuMSAyLjctMS41IDQuNS0uOCAxLjkuOCAzLjEgMi4zIDIuOSAzLjd6bTEzLjIgNTEuMkg0Mi44Yy0xLjUtLjItNC4yLTEuNC00LjItNC43IDAtMS45LjgtMi45IDEuNC0zLjUgMS4yLTEgMi42LTEgMy0uOWgzMy43Yy41IDAgMi4xLS4yIDIuMS0yLjEgMC0uOC0uMy0xLjEtLjQtMS4yLS41LS41LTEuNC0uNS0xLjgtLjVoLS4xSDQwYy0uNyAwLTEuMy0uNi0xLjMtMS4zcy42LTEuMyAxLjMtMS4zaDM2LjVjLjQgMCAyLjMtLjEgMy43IDEuMi42LjUgMS4zIDEuNSAxLjMgMy4yIDAgMy40LTIuOCA0LjctNC43IDQuN2gtMzQgMHMtLjctLjEtMS4xLjNjLS40LjMtLjUgMS0uNSAxLjUgMCAxLjYgMS40IDEuOSAxLjggMmgyNC4yYy43IDAgMS4zLjYgMS4zIDEuMy4xLjctLjUgMS4zLTEuMiAxLjN6bTIuNS0yNS4ySDU5LjVsLTEuNyA0LjloLTdsMTAtMjcuNmg3LjhsMTAgMjcuNmgtNy4xbC0xLjctNC45em0tNS4xLTE1LjNsLTMuNCAxMC4xaDYuOGwtMy40LTEwLjF6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIxLjggOTcuOWgyLjdsMS44IDcuM2gwbDIuNC03LjNIMzFsMi40IDcuNWgwbDEuOS03LjVoMi41bC0zLjMgMTEuM2gtMi4ybC0yLjUtNy44aDBsLTIuNSA3LjhoLTIuMWwtMy40LTExLjN6bTE3LjUgMGg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjEtNC43aDIuNXYxMS4zaC0yLjVWOTcuOXptNy4zIDIuMkg1NHYtMi4yaDl2Mi4yaC0zLjJ2OS4xaC0yLjV2LTkuMXptNy4zLTIuMkg2N3YxMS4zaC0yLjVWOTcuOXptNS4xIDBINzNsNC44IDcuOWgwdi03LjloMi41djExLjNINzdsLTQuOS04LjFoMHY4LjFoLTIuNVY5Ny45em0yMy42IDEwLjVjLS43LjQtMS41LjctMi4zLjgtLjguMi0xLjYuMy0yLjQuMy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41LjctMS40IDEuMy0xLjljLjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuOSAwIDEuNy4xIDIuNS4zczEuNC42IDIgMS4xbC0xLjggMS45Yy0uMy0uNC0uNy0uNi0xLjItLjgtLjQtLjItMS0uMy0xLjYtLjMtLjUgMC0xIC4xLTEuNC4zcy0uOC40LTEuMS44Yy0uMy4zLS41LjctLjcgMS4yLS4yLjQtLjIuOS0uMiAxLjUgMCAuNS4xIDEgLjIgMS41LjIuNC40LjguNyAxLjJzLjcuNiAxLjEuOC45LjMgMS40LjMgMS0uMSAxLjQtLjIuNy0uMi45LS40di0xLjhoLTJ2LTIuM2g0LjR2NS44eiIgZmlsbD0iIzM2Mzc5NSIvPjwvc3ZnPg==");
}
.vsl-badge--writing-icon-with-dark-text, .vsl-badge.writing-icon-with-dark-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzM2Mzc5NSIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDQuNyAyMGwtOS4zIDI0LjcgMi4xIDUuOSA1LjUtMy4xIDkuMy0yNC43LTcuNi0yLjh6bS00LjUgMjAuN2MtLjEuMy0uNC40LS44LjMtLjMtLjEtLjUtLjQtLjQtLjdsNS43LTE1LjJjLjEtLjMuNC0uNC44LS4zLjMuMS41LjQuNC43bC01LjcgMTUuMnptMTMuOS0yMi44aDBsLTEuMiAzLjQtNy42LTIuOSAxLjMtMy40aC4xYy44LTEuMSAyLjctMS41IDQuNS0uOCAxLjkuOCAzLjEgMi4zIDIuOSAzLjd6bTEzLjIgNTEuMkg0Mi44Yy0xLjUtLjItNC4yLTEuNC00LjItNC43IDAtMS45LjgtMi45IDEuNC0zLjUgMS4yLTEgMi42LTEgMy0uOWgzMy43Yy41IDAgMi4xLS4yIDIuMS0yLjEgMC0uOC0uMy0xLjEtLjQtMS4yLS41LS41LTEuNC0uNS0xLjgtLjVoLS4xSDQwYy0uNyAwLTEuMy0uNi0xLjMtMS4zcy42LTEuMyAxLjMtMS4zaDM2LjVjLjQgMCAyLjMtLjEgMy43IDEuMi42LjUgMS4zIDEuNSAxLjMgMy4yIDAgMy40LTIuOCA0LjctNC43IDQuN2gtMzQgMHMtLjctLjEtMS4xLjNjLS40LjMtLjUgMS0uNSAxLjUgMCAxLjYgMS40IDEuOSAxLjggMmgyNC4yYy43IDAgMS4zLjYgMS4zIDEuMy4xLjctLjUgMS4zLTEuMiAxLjN6bTIuNS0yNS4ySDU5LjVsLTEuNyA0LjloLTdsMTAtMjcuNmg3LjhsMTAgMjcuNmgtNy4xbC0xLjctNC45em0tNS4xLTE1LjNsLTMuNCAxMC4xaDYuOGwtMy40LTEwLjF6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIxLjggOTcuOWgyLjdsMS44IDcuM2gwbDIuNC03LjNIMzFsMi40IDcuNWgwbDEuOS03LjVoMi41bC0zLjMgMTEuM2gtMi4ybC0yLjUtNy44aDBsLTIuNSA3LjhoLTIuMWwtMy40LTExLjN6bTE3LjUgMGg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjEtNC43aDIuNXYxMS4zaC0yLjVWOTcuOXptNy4zIDIuMkg1NHYtMi4yaDl2Mi4yaC0zLjJ2OS4xaC0yLjV2LTkuMXptNy4zLTIuMkg2N3YxMS4zaC0yLjVWOTcuOXptNS4xIDBINzNsNC44IDcuOWgwdi03LjloMi41djExLjNINzdsLTQuOS04LjFoMHY4LjFoLTIuNVY5Ny45em0yMy42IDEwLjVjLS43LjQtMS41LjctMi4zLjgtLjguMi0xLjYuMy0yLjQuMy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41LjctMS40IDEuMy0xLjljLjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuOSAwIDEuNy4xIDIuNS4zczEuNC42IDIgMS4xbC0xLjggMS45Yy0uMy0uNC0uNy0uNi0xLjItLjgtLjQtLjItMS0uMy0xLjYtLjMtLjUgMC0xIC4xLTEuNC4zcy0uOC40LTEuMS44Yy0uMy4zLS41LjctLjcgMS4yLS4yLjQtLjIuOS0uMiAxLjUgMCAuNS4xIDEgLjIgMS41LjIuNC40LjguNyAxLjJzLjcuNiAxLjEuOC45LjMgMS40LjMgMS0uMSAxLjQtLjIuNy0uMi45LS40di0xLjhoLTJ2LTIuM2g0LjR2NS44eiIgZmlsbD0iIzM2Mzc5NSIvPjwvc3ZnPg==");
}
.vsl-badge--writing-white, .vsl-badge--writing-icon-with-light-text, .vsl-badge.writing-white, .vsl-badge.writing-icon-with-light-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzM2Mzc5NSIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDQuNyAyMGwtOS4zIDI0LjcgMi4xIDUuOSA1LjUtMy4xIDkuMy0yNC43LTcuNi0yLjh6bS00LjUgMjAuN2MtLjEuMy0uNC40LS44LjMtLjMtLjEtLjUtLjQtLjQtLjdsNS43LTE1LjJjLjEtLjMuNC0uNC44LS4zLjMuMS41LjQuNC43bC01LjcgMTUuMnptMTMuOS0yMi44aDBsLTEuMiAzLjQtNy42LTIuOSAxLjMtMy40aC4xYy44LTEuMSAyLjctMS41IDQuNS0uOCAxLjkuOCAzLjEgMi4zIDIuOSAzLjd6bTEzLjIgNTEuMkg0Mi44Yy0xLjUtLjItNC4yLTEuNC00LjItNC43IDAtMS45LjgtMi45IDEuNC0zLjUgMS4yLTEgMi42LTEgMy0uOWgzMy43Yy41IDAgMi4xLS4yIDIuMS0yLjEgMC0uOC0uMy0xLjEtLjQtMS4yLS41LS41LTEuNC0uNS0xLjgtLjVoLS4xSDQwYy0uNyAwLTEuMy0uNi0xLjMtMS4zcy42LTEuMyAxLjMtMS4zaDM2LjVjLjQgMCAyLjMtLjEgMy43IDEuMi42LjUgMS4zIDEuNSAxLjMgMy4yIDAgMy40LTIuOCA0LjctNC43IDQuN2gtMzQgMHMtLjctLjEtMS4xLjNjLS40LjMtLjUgMS0uNSAxLjUgMCAxLjYgMS40IDEuOSAxLjggMmgyNC4yYy43IDAgMS4zLjYgMS4zIDEuMy4xLjctLjUgMS4zLTEuMiAxLjNoMHptMi41LTI1LjJINTkuNWwtMS43IDQuOWgtN2wxMC0yNy42aDcuOGwxMCAyNy42aC03LjFsLTEuNy00Ljl6bS01LjEtMTUuM2wtMy40IDEwLjFoNi44bC0zLjQtMTAuMXpNMjEuOCA5Ny45aDIuN2wxLjggNy4zaDBsMi40LTcuM0gzMWwyLjQgNy41aDBsMS45LTcuNWgyLjVsLTMuMyAxMS4zaC0yLjJsLTIuNS03LjhoMGwtMi41IDcuOGgtMi4xbC0zLjQtMTEuM3ptMTcuNSAwaDQuNGMuNiAwIDEuMS4xIDEuNi4yczEgLjMgMS40LjYuNy42LjkgMS4xYy4yLjQuMyAxIC4zIDEuNyAwIC44LS4yIDEuNS0uNiAycy0xIC45LTEuOCAxLjFsMi45IDQuOGgtM2wtMi40LTQuNWgtMS4ydjQuNWgtMi41Vjk3Ljl6bTIuNSA0LjdoMS41LjdjLjIgMCAuNS0uMS43LS4xLjItLjEuNC0uMi41LS40cy4yLS40LjItLjctLjEtLjUtLjItLjctLjMtLjMtLjQtLjQtLjQtLjItLjYtLjJoLS43LTEuNnYyLjVoLS4xem04LjEtNC43aDIuNXYxMS4zaC0yLjVWOTcuOXptNy4zIDIuMkg1NHYtMi4yaDl2Mi4yaC0zLjJ2OS4xaC0yLjVsLS4xLTkuMWgwem03LjMtMi4ySDY3djExLjNoLTIuNVY5Ny45em01LjEgMEg3M2w0LjggNy45aDB2LTcuOWgyLjV2MTEuM0g3N2wtNC45LTguMWgwdjguMWgtMi41Vjk3Ljl6bTIzLjYgMTAuNWMtLjcuNC0xLjUuNy0yLjMuOC0uOC4yLTEuNi4zLTIuNC4zLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjUuNy0xLjQgMS4zLTEuOWMuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy45IDAgMS43LjEgMi41LjNzMS40LjYgMiAxLjFsLTEuOCAxLjljLS4zLS40LS43LS42LTEuMi0uOC0uNC0uMi0xLS4zLTEuNi0uMy0uNSAwLTEgLjEtMS40LjNzLS44LjQtMS4xLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMnMuNy42IDEuMS44LjkuMyAxLjQuMyAxLS4xIDEuNC0uMi43LS4yLjktLjR2LTEuOGgtMnYtMi4zaDQuNGwuMSA1LjhoMHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}
.vsl-badge--writing-icon, .vsl-badge.writing-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9Ijk3LjUiIGZpbGw9IiMzNjM3OTUiLz48ZyBvcGFjaXR5PSIuNjUiPjxwYXRoIGQ9Ik0xMDAgMTMuM2M0Ny43IDAgODYuNSAzOC44IDg2LjUgODYuNVMxNDcuNyAxODYgMTAwIDE4NnMtODYuMy0zOC44LTg2LjMtODYuM1M1Mi41IDEzLjMgMTAwIDEzLjNtMC00LjZDNDkuOCA4LjcgOC45IDQ5LjUgOC45IDk5LjhzNDAuOCA5MS4xIDkxLjEgOTEuMSA5MS4xLTQwLjggOTEuMS05MS4xUzE1MC4yIDguNyAxMDAgOC43aDB6IiBmaWxsPSIjZmZmIi8+PC9nPjxwYXRoIGQ9Ik03MC42IDQ2LjVsLTIxLjMgNTYuNyA0LjggMTMuNSAxMi42LTcuMUw4OC4xIDUzbC0xNy41LTYuNXpNNjAuMyA5NGMtLjIuNy0uOS45LTEuOC43LS43LS4yLTEuMS0uOS0uOS0xLjZsMTMuMS0zNC45Yy4yLS43LjktLjkgMS44LS43LjcuMiAxLjEuOS45IDEuNkw2MC4zIDk0em0zMS45LTUyLjNoMGwtMi44IDcuOEw3MiA0Mi45bDMtNy44aC4yYzEuOC0yLjUgNi4yLTMuNCAxMC4zLTEuOCA0LjQgMS44IDcuMiA1LjIgNi43IDguNHptMzAuMyAxMTcuNUg2Ni4zYy0zLjQtLjUtOS42LTMuMi05LjYtMTAuOCAwLTQuNCAxLjgtNi43IDMuMi04IDIuOC0yLjMgNi0yLjMgNi45LTIuMUgxNDRjMS4xIDAgNC44LS41IDQuOC00LjggMC0xLjgtLjctMi41LS45LTIuOC0xLjEtMS4xLTMuMi0xLjEtNC4xLTEuMWgtLjItODMuN2EzLjA4IDMuMDggMCAwIDEtMy0zIDMuMDggMy4wOCAwIDAgMSAzLTNoODMuN2MuOSAwIDUuMy0uMiA4LjUgMi44IDEuNCAxLjEgMyAzLjQgMyA3LjMgMCA3LjgtNi40IDEwLjgtMTAuOCAxMC44aC03OCAwcy0xLjYtLjItMi41LjdjLS45LjctMS4xIDIuMy0xLjEgMy40IDAgMy43IDMuMiA0LjQgNC4xIDQuNmg1NS41YTMuMDggMy4wOCAwIDAgMSAzIDNjLjIgMS42LTEuMiAzLTIuOCAzaDB6bTUuNy01Ny44aC0yMy42bC0zLjkgMTEuMkg4NC42bDIyLjktNjMuM2gxNy45bDIyLjkgNjMuM0gxMzJjLjEgMC0zLjgtMTEuMi0zLjgtMTEuMnptLTExLjctMzUuMWwtNy44IDIzLjJoMTUuNmMwLS4xLTcuOC0yMy4yLTcuOC0yMy4yeiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
}
.vsl-badge--math, .vsl-badge.math {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Q1MjE1OCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNzkuOCAzMGgwbC00LjIgNC4zLTcuOC03LjggNC4zLTQuMy4xLjFjMS44LTEuMiA0LjYtLjggNi42IDEuMnMyLjIgNC42IDEgNi41em0tMjEgNS41bC0zLjQtMy40LTQuOCA0LjgtMS0xIDQuOC00LjgtMi41LTIuNS0yLjYgMi42LTEtMSAyLjYtMi42LTIuNS0yLjUtNC44IDQuOC0xLTEgNC44LTQuOC0xLjktMS45Yy0uNi0uNi0xLjUtLjYtMi4xIDBsLTcuNSA3LjVjLS42LjYtLjYgMS41IDAgMi4xTDQ5LjIgNDVsOS42LTkuNXptOS43IDkuN2wtMS45LTEuOS05LjYgOS42IDEyLjkgMTIuOWMuNi42IDEuNS42IDIuMSAwbDcuNS03LjVjLjYtLjYuNi0xLjUgMC0yLjFMNzcgNTMuN2wtNC44IDQuOC0xLTEgNC44LTQuOC0yLjctMi43LTIuNiAyLjYtMS0xIDIuNi0yLjYtMi43LTIuNy00LjggNC43LTEtMSA0LjctNC44em0tMi0xNy41bDcuOCA3LjgtMjggMjgtOS45IDIuMSAyLjEtOS45IDI4LTI4em0tMS4zIDYuNmMtLjMtLjMtLjktLjMtMS4yIDBMNDUuNCA1Mi44Yy0uMy4zLS4zLjkgMCAxLjJzLjkuMyAxLjIgMGwxOC41LTE4LjVjLjQtLjMuNC0uOS4xLTEuMnoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzQuOCA5Ny45aDMuOGwyLjYgNy40aDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE5LjEgMEg1Nmw0LjkgMTEuM2gtMi44bC0xLTIuNGgtNC40bC0uOSAyLjRINDlsNC45LTExLjN6bTEgMy4zbC0xLjQgMy41aDIuOGwtMS40LTMuNXptOC4yLTEuMWgtMy4ydi0yLjJoOXYyLjJoLTMuMnY5LjFoLTIuNXYtOS4xem03LjMtMi4yaDIuNXY0LjJoNC44di00LjJoMi41djExLjNoLTIuNXYtNC45aC00Ljh2NC45aC0yLjVWOTcuOXoiIGZpbGw9IiNkNTIxNTgiLz48L3N2Zz4=");
}
.vsl-badge--math-icon-with-dark-text, .vsl-badge.math-icon-with-dark-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Q1MjE1OCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNzkuOCAzMGgwbC00LjIgNC4zLTcuOC03LjggNC4zLTQuMy4xLjFjMS44LTEuMiA0LjYtLjggNi42IDEuMnMyLjIgNC42IDEgNi41em0tMjEgNS41bC0zLjQtMy40LTQuOCA0LjgtMS0xIDQuOC00LjgtMi41LTIuNS0yLjYgMi42LTEtMSAyLjYtMi42LTIuNS0yLjUtNC44IDQuOC0xLTEgNC44LTQuOC0xLjktMS45Yy0uNi0uNi0xLjUtLjYtMi4xIDBsLTcuNSA3LjVjLS42LjYtLjYgMS41IDAgMi4xTDQ5LjIgNDVsOS42LTkuNXptOS43IDkuN2wtMS45LTEuOS05LjYgOS42IDEyLjkgMTIuOWMuNi42IDEuNS42IDIuMSAwbDcuNS03LjVjLjYtLjYuNi0xLjUgMC0yLjFMNzcgNTMuN2wtNC44IDQuOC0xLTEgNC44LTQuOC0yLjctMi43LTIuNiAyLjYtMS0xIDIuNi0yLjYtMi43LTIuNy00LjggNC43LTEtMSA0LjctNC44em0tMi0xNy41bDcuOCA3LjgtMjggMjgtOS45IDIuMSAyLjEtOS45IDI4LTI4em0tMS4zIDYuNmMtLjMtLjMtLjktLjMtMS4yIDBMNDUuNCA1Mi44Yy0uMy4zLS4zLjkgMCAxLjJzLjkuMyAxLjIgMGwxOC41LTE4LjVjLjQtLjMuNC0uOS4xLTEuMnoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzQuOCA5Ny45aDMuOGwyLjYgNy40aDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE5LjEgMEg1Nmw0LjkgMTEuM2gtMi44bC0xLTIuNGgtNC40bC0uOSAyLjRINDlsNC45LTExLjN6bTEgMy4zbC0xLjQgMy41aDIuOGwtMS40LTMuNXptOC4yLTEuMWgtMy4ydi0yLjJoOXYyLjJoLTMuMnY5LjFoLTIuNXYtOS4xem03LjMtMi4yaDIuNXY0LjJoNC44di00LjJoMi41djExLjNoLTIuNXYtNC45aC00Ljh2NC45aC0yLjVWOTcuOXoiIGZpbGw9IiNkNTIxNTgiLz48L3N2Zz4=");
}
.vsl-badge--math-white, .vsl-badge--math-icon-with-light-text, .vsl-badge.math-white, .vsl-badge.math-icon-with-light-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Q1MjE1OCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNzkuOCAzMGgwbC00LjIgNC4zLTcuOC03LjggNC4zLTQuMy4xLjFjMS44LTEuMiA0LjYtLjggNi42IDEuMnMyLjIgNC42IDEgNi41em0tMjEgNS41bC0zLjQtMy40LTQuOCA0LjgtMS0xIDQuOC00LjgtMi41LTIuNS0yLjYgMi42LTEtMSAyLjYtMi42LTIuNS0yLjUtNC44IDQuOC0xLTEgNC44LTQuOC0xLjktMS45Yy0uNi0uNi0xLjUtLjYtMi4xIDBsLTcuNSA3LjVjLS42LjYtLjYgMS41IDAgMi4xTDQ5LjIgNDVsOS42LTkuNXptOS43IDkuN2wtMS45LTEuOS05LjYgOS42IDEyLjkgMTIuOWMuNi42IDEuNS42IDIuMSAwbDcuNS03LjVjLjYtLjYuNi0xLjUgMC0yLjFMNzcgNTMuN2wtNC44IDQuOC0xLTEgNC44LTQuOC0yLjctMi43LTIuNiAyLjYtMS0xIDIuNi0yLjYtMi43LTIuNy00LjggNC43LTEtMSA0LjctNC44em0tMi0xNy41bDcuOCA3LjgtMjggMjgtOS45IDIuMSAyLjEtOS45IDI4LTI4em0tMS4zIDYuNmMtLjMtLjMtLjktLjMtMS4yIDBMNDUuNCA1Mi44Yy0uMy4zLS4zLjkgMCAxLjJzLjkuMyAxLjIgMGwxOC41LTE4LjVjLjQtLjMuNC0uOS4xLTEuMnpNMzQuOCA5Ny45aDMuOGwyLjYgNy40aDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE5LjEgMEg1Nmw0LjkgMTEuM2gtMi44bC0xLTIuNGgtNC40bC0uOSAyLjRINDlsNC45LTExLjN6bTEgMy4zbC0xLjQgMy41aDIuOGwtMS40LTMuNXptOC4yLTEuMWgtMy4ydi0yLjJoOXYyLjJoLTMuMnY5LjFoLTIuNXYtOS4xaC0uMXptNy4zLTIuMmgyLjV2NC4yaDQuOHYtNC4yaDIuNXYxMS4zaC0yLjV2LTQuOWgtNC44djQuOWgtMi41Vjk3Ljl6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
}
.vsl-badge--math-icon, .vsl-badge.math-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9Ijk3LjUiIGZpbGw9IiNkNTIxNTgiLz48ZyBvcGFjaXR5PSIuNjUiPjxwYXRoIGQ9Ik0xMDAgMTMuM2M0Ny43IDAgODYuNSAzOC44IDg2LjUgODYuNVMxNDcuNyAxODYgMTAwIDE4NnMtODYuMy0zOC44LTg2LjMtODYuM1M1Mi41IDEzLjMgMTAwIDEzLjNtMC00LjZDNDkuOCA4LjcgOC45IDQ5LjUgOC45IDk5LjhzNDAuOCA5MS4xIDkxLjEgOTEuMSA5MS4xLTQwLjggOTEuMS05MS4xUzE1MC4yIDguNyAxMDAgOC43aDB6IiBmaWxsPSIjZmZmIi8+PC9nPjxwYXRoIGQ9Ik0xNTEuMiA2OS41aDBsLTkuNiA5LjktMTcuOS0xNy45IDkuOS05LjkuMi4yYzQuMS0yLjggMTAuNi0xLjggMTUuMSAyLjggNC42IDQuNiA1IDEwLjUgMi4zIDE0Ljl6TTEwMyA4Mi4xbC03LjgtNy44LTExIDExLTIuMy0yLjMgMTEtMTEtNS43LTUuNy02IDYtMi4zLTIuMyA2LTYtNS43LTUuNy0xMSAxMS0yLjQtMi4zIDExLTExLTQuNC00LjRjLTEuNC0xLjQtMy40LTEuNC00LjggMEw1MC40IDY4LjhjLTEuNCAxLjQtMS40IDMuNCAwIDQuOEw4MSAxMDMuOWwyMi0yMS44em0yMi4yIDIyLjNsLTQuNC00LjQtMjIgMjIgMjkuNiAyOS42YzEuNCAxLjQgMy40IDEuNCA0LjggMGwxNy4yLTE3LjJjMS40LTEuNCAxLjQtMy40IDAtNC44bC01LjctNS43LTExIDExLTIuMy0yLjMgMTEtMTEtNi4yLTYuMi02IDYtMi4yLTIuNCA2LTYtNi4yLTYuMi0xMSAxMC44LTIuMy0yLjMgMTAuNy0xMC45em0tNC42LTQwLjJsMTcuOSAxNy45LTY0LjIgNjQuMi0yMi43IDQuOCA0LjgtMjIuN2MwIDAgNjQuMi02NC4yIDY0LjItNjQuMnptLTIuOSAxNS4yYy0uNy0uNy0yLjEtLjctMi44IDBsLTQyLjcgNDIuNGMtLjcuNy0uNyAyLjEgMCAyLjhzMi4xLjcgMi44IDBsNDIuNC00Mi40YzEtLjggMS0yLjIuMy0yLjh6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
}
.vsl-badge--assessment, .vsl-badge.assessment {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjMuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMTUgMTMwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMTUgMTMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzAwQTdFMDt9Cgkuc3Qxe29wYWNpdHk6MC42NTt9Cgkuc3Qye2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjU3LjUiIGN5PSI0My4zIiByPSI0Mi41Ii8+CjxnIGNsYXNzPSJzdDEiPgoJPHBhdGggY2xhc3M9InN0MiIgZD0iTTU3LjUsNS41YzIwLjgsMCwzNy43LDE2LjksMzcuNywzNy43Uzc4LjMsODAuOCw1Ny41LDgwLjhTMTkuOSw2My45LDE5LjksNDMuMlMzNi44LDUuNSw1Ny41LDUuNSBNNTcuNSwzLjUKCQljLTIxLjksMC0zOS43LDE3LjgtMzkuNywzOS43czE3LjgsMzkuNywzOS43LDM5LjdzMzkuNy0xNy44LDM5LjctMzkuN1M3OS40LDMuNSw1Ny41LDMuNUw1Ny41LDMuNXoiLz4KPC9nPgo8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNDguNywzMC40aC05LjhsOS44LTExLjNDNDguNywxOS4xLDQ4LjcsMzAuNCw0OC43LDMwLjR6IE02OS40LDU3LjFjLTAuNCwwLjItMC45LDAuNC0xLjMsMC41CgljLTEuMywwLjQtMi41LDAuNi0zLjgsMC42Yy0yLjcsMC01LjMtMC44LTcuNS0yLjRINDVjLTAuNywwLTEuMi0wLjYtMS4yLTEuNFM0NC40LDUzLDQ1LDUzaDljLTAuOS0xLjEtMS41LTIuNC0xLjktMy44CgljLTAuMi0wLjYtMC4zLTEuMi0wLjQtMS44SDQ1Yy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDYuNGMwLjEtMS44LDAuNi0zLjUsMS40LTUuMmMwLjEtMC4yLDAuMi0wLjMsMC4zLTAuNUg0NQoJYy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDEwLjNjMS40LTEuNCwzLjEtMi40LDUtM2MxLjMtMC40LDIuNS0wLjYsMy44LTAuNmMyLjcsMCw1LjMsMC44LDcuNSwyLjQKCWMwLjUsMC40LDEsMC43LDEuNCwxLjJWMjJjMC0xLjYtMS4xLTIuOC0yLjQtMi44SDUxLjJ2MTIuN2MwLDAuOC0wLjYsMS40LTEuMiwxLjRIMzl2MjguMmMwLDEuNSwxLjEsMi45LDIuNSwyLjloMjkuNAoJYzEuNCwwLDIuNC0xLjMsMi40LTIuOXYtMC4zQzczLjMsNjEuMiw2OS40LDU3LjEsNjkuNCw1Ny4xeiBNODIuNyw2MC42bC05LjItMTBjMCwwLDAtMC4xLTAuMS0wLjFjMS40LTIuNSwxLjgtNS41LDAuOS04LjQKCWwtMC42LTEuNWwtMiwyLjljMSwzLjktMS4zLDgtNS4yLDkuM2MtNC4xLDEuMy04LjQtMS05LjctNS4xczEtOC40LDUuMS05LjdjMi42LTAuOCw1LjMtMC4yLDcuMywxLjRjMC43LTAuOCwxLjQtMS41LDItMi4xCgljLTIuNy0yLjMtNi41LTMuMi0xMC4xLTIuMWMtNS42LDEuOC04LjcsNy43LTcsMTMuM2MxLjgsNS42LDcuNyw4LjcsMTMuMyw3YzAuOS0wLjMsMS43LTAuNywyLjUtMS4ybDksOS44YzAuMywwLjMsMC45LDAuMiwxLjMtMC4zCglsMi4xLTEuOUM4Mi44LDYxLjUsODMsNjAuOSw4Mi43LDYwLjZMODIuNyw2MC42eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOCw5Ny45aDJsNC45LDExLjNoLTIuOGwtMS0yLjRINi44bC0wLjksMi40SDMuMUw4LDk3Ljl6IE04LjksMTAxLjJsLTEuNCwzLjVoMi44TDguOSwxMDEuMnogTTIyLDEwMC43CgljLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41CgljMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjYKCWMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xCglsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNAoJYzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOQoJcy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zCgljMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMMjIsMTAwLjdMMjIsMTAwLjd6IE0zMS41LDEwMC43Yy0wLjItMC4zLTAuNS0wLjQtMC44LTAuNnMtMC43LTAuMi0xLTAuMmMtMC4yLDAtMC40LDAtMC42LDAuMQoJYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41YzAsMC4zLDAuMSwwLjYsMC40LDAuOHMwLjYsMC4zLDEsMC41YzAuNCwwLjEsMC44LDAuMywxLjMsMC40CgljMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjZjMCwwLjYtMC4xLDEuMi0wLjQsMS42Yy0wLjIsMC41LTAuNiwwLjktMSwxLjJzLTAuOSwwLjUtMS40LDAuNwoJYy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xbDEuOC0yYzAuMywwLjMsMC42LDAuNiwxLDAuOHMwLjgsMC4zLDEuMiwwLjNjMC4yLDAsMC40LDAsMC42LTAuMQoJYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNGMwLjEtMC4yLDAuMi0wLjMsMC4yLTAuNWMwLTAuMy0wLjEtMC42LTAuNC0wLjhzLTAuNi0wLjQtMS0wLjVzLTAuOC0wLjMtMS4zLTAuNAoJcy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOXMtMC40LTAuOS0wLjQtMS41czAuMS0xLjEsMC40LTEuNmMwLjItMC41LDAuNi0wLjgsMS0xLjJjMC40LTAuMywwLjktMC41LDEuNC0wLjcKCXMxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zYzAuNiwwLjIsMS4xLDAuNSwxLjYsMC45TDMxLjUsMTAwLjdMMzEuNSwxMDAuN3ogTTM1LjUsOTcuOWg3Ljd2Mi4zSDM4djIuMWg0Ljl2Mi4zSDM4djIuMwoJaDUuNXYyLjNoLThWOTcuOXogTTUxLjQsMTAwLjdjLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjIKCXMtMC4zLDAuMi0wLjQsMC40cy0wLjIsMC4zLTAuMiwwLjVjMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjUKCXMwLjcsMC41LDEsMC45czAuNCwwLjksMC40LDEuNmMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMgoJYy0wLjcsMC0xLjQtMC4xLTItMC4zcy0xLjItMC42LTEuOC0xLjFsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMgoJYzAuMi0wLjEsMC4zLTAuMiwwLjQtMC40YzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjYKCWMtMC40LTAuMi0wLjctMC41LTEtMC45cy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjIKCWMwLjYsMCwxLjMsMC4xLDEuOSwwLjNjMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMNTEuNCwxMDAuN0w1MS40LDEwMC43eiBNNjAuOSwxMDAuN2MtMC4yLTAuMy0wLjUtMC40LTAuOC0wLjZzLTAuNy0wLjItMS0wLjIKCWMtMC4yLDAtMC40LDAtMC42LDAuMWMtMC4yLDAtMC40LDAuMS0wLjUsMC4ycy0wLjMsMC4yLTAuNCwwLjRzLTAuMiwwLjMtMC4yLDAuNWMwLDAuMywwLjEsMC42LDAuNCwwLjhzMC42LDAuMywxLDAuNQoJYzAuNCwwLjEsMC44LDAuMywxLjMsMC40YzAuNCwwLjEsMC45LDAuMywxLjMsMC41czAuNywwLjUsMSwwLjlzMC40LDAuOSwwLjQsMS42YzAsMC42LTAuMSwxLjItMC40LDEuNmMtMC4yLDAuNS0wLjYsMC45LTEsMS4yCglzLTAuOSwwLjUtMS40LDAuN2MtMC41LDAuMS0xLjEsMC4yLTEuNywwLjJjLTAuNywwLTEuNC0wLjEtMi0wLjNzLTEuMi0wLjYtMS44LTEuMWwxLjgtMmMwLjMsMC4zLDAuNiwwLjYsMSwwLjhzMC44LDAuMywxLjIsMC4zCgljMC4yLDAsMC40LDAsMC42LTAuMWMwLjIsMCwwLjQtMC4xLDAuNi0wLjJjMC4yLTAuMSwwLjMtMC4yLDAuNC0wLjRjMC4xLTAuMiwwLjItMC4zLDAuMi0wLjVjMC0wLjMtMC4xLTAuNi0wLjQtMC44cy0wLjYtMC40LTEtMC41CglzLTAuOC0wLjMtMS4zLTAuNHMtMC45LTAuMy0xLjMtMC42Yy0wLjQtMC4yLTAuNy0wLjUtMS0wLjlzLTAuNC0wLjktMC40LTEuNXMwLjEtMS4xLDAuNC0xLjZjMC4yLTAuNSwwLjYtMC44LDEtMS4yCgljMC40LTAuMywwLjktMC41LDEuNC0wLjdzMS4xLTAuMiwxLjYtMC4yYzAuNiwwLDEuMywwLjEsMS45LDAuM2MwLjYsMC4yLDEuMSwwLjUsMS42LDAuOUw2MC45LDEwMC43TDYwLjksMTAwLjd6IE02NC44LDk3LjloMy44CglsMi42LDcuNGwwLDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdsMCwwbC0zLDguN2gtMS45bC0yLjktOC43bDAsMHY4LjdoLTIuNVY5Ny45eiBNODAuMyw5Ny45SDg4djIuM2gtNS4ydjIuMWg0Ljl2Mi4zaC00Ljl2Mi4zCgloNS41djIuM2gtOFY5Ny45eiBNOTAuNyw5Ny45SDk0bDQuOCw3LjlsMCwwdi03LjloMi41djExLjNIOThsLTQuOS04LjFsMCwwdjguMWgtMi41Vjk3LjlIOTAuN3ogTTEwNi4yLDEwMC4xSDEwM3YtMi4yaDl2Mi4yaC0zLjIKCXY5LjFoLTIuNUwxMDYuMiwxMDAuMUwxMDYuMiwxMDAuMXoiLz4KPC9zdmc+Cg==");
}
.vsl-badge--assessment-icon-with-dark-text, .vsl-badge.assessment-icon-with-dark-text {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjMuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMTUgMTMwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMTUgMTMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzAwQTdFMDt9Cgkuc3Qxe29wYWNpdHk6MC42NTt9Cgkuc3Qye2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjU3LjUiIGN5PSI0My4zIiByPSI0Mi41Ii8+CjxnIGNsYXNzPSJzdDEiPgoJPHBhdGggY2xhc3M9InN0MiIgZD0iTTU3LjUsNS41YzIwLjgsMCwzNy43LDE2LjksMzcuNywzNy43Uzc4LjMsODAuOCw1Ny41LDgwLjhTMTkuOSw2My45LDE5LjksNDMuMlMzNi44LDUuNSw1Ny41LDUuNSBNNTcuNSwzLjUKCQljLTIxLjksMC0zOS43LDE3LjgtMzkuNywzOS43czE3LjgsMzkuNywzOS43LDM5LjdzMzkuNy0xNy44LDM5LjctMzkuN1M3OS40LDMuNSw1Ny41LDMuNUw1Ny41LDMuNXoiLz4KPC9nPgo8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNDguNywzMC40aC05LjhsOS44LTExLjNDNDguNywxOS4xLDQ4LjcsMzAuNCw0OC43LDMwLjR6IE02OS40LDU3LjFjLTAuNCwwLjItMC45LDAuNC0xLjMsMC41CgljLTEuMywwLjQtMi41LDAuNi0zLjgsMC42Yy0yLjcsMC01LjMtMC44LTcuNS0yLjRINDVjLTAuNywwLTEuMi0wLjYtMS4yLTEuNFM0NC40LDUzLDQ1LDUzaDljLTAuOS0xLjEtMS41LTIuNC0xLjktMy44CgljLTAuMi0wLjYtMC4zLTEuMi0wLjQtMS44SDQ1Yy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDYuNGMwLjEtMS44LDAuNi0zLjUsMS40LTUuMmMwLjEtMC4yLDAuMi0wLjMsMC4zLTAuNUg0NQoJYy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDEwLjNjMS40LTEuNCwzLjEtMi40LDUtM2MxLjMtMC40LDIuNS0wLjYsMy44LTAuNmMyLjcsMCw1LjMsMC44LDcuNSwyLjQKCWMwLjUsMC40LDEsMC43LDEuNCwxLjJWMjJjMC0xLjYtMS4xLTIuOC0yLjQtMi44SDUxLjJ2MTIuN2MwLDAuOC0wLjYsMS40LTEuMiwxLjRIMzl2MjguMmMwLDEuNSwxLjEsMi45LDIuNSwyLjloMjkuNAoJYzEuNCwwLDIuNC0xLjMsMi40LTIuOXYtMC4zQzczLjMsNjEuMiw2OS40LDU3LjEsNjkuNCw1Ny4xeiBNODIuNyw2MC42bC05LjItMTBjMCwwLDAtMC4xLTAuMS0wLjFjMS40LTIuNSwxLjgtNS41LDAuOS04LjQKCWwtMC42LTEuNWwtMiwyLjljMSwzLjktMS4zLDgtNS4yLDkuM2MtNC4xLDEuMy04LjQtMS05LjctNS4xczEtOC40LDUuMS05LjdjMi42LTAuOCw1LjMtMC4yLDcuMywxLjRjMC43LTAuOCwxLjQtMS41LDItMi4xCgljLTIuNy0yLjMtNi41LTMuMi0xMC4xLTIuMWMtNS42LDEuOC04LjcsNy43LTcsMTMuM2MxLjgsNS42LDcuNyw4LjcsMTMuMyw3YzAuOS0wLjMsMS43LTAuNywyLjUtMS4ybDksOS44YzAuMywwLjMsMC45LDAuMiwxLjMtMC4zCglsMi4xLTEuOUM4Mi44LDYxLjUsODMsNjAuOSw4Mi43LDYwLjZMODIuNyw2MC42eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOCw5Ny45aDJsNC45LDExLjNoLTIuOGwtMS0yLjRINi44bC0wLjksMi40SDMuMUw4LDk3Ljl6IE04LjksMTAxLjJsLTEuNCwzLjVoMi44TDguOSwxMDEuMnogTTIyLDEwMC43CgljLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41CgljMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjYKCWMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xCglsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNAoJYzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOQoJcy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zCgljMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMMjIsMTAwLjdMMjIsMTAwLjd6IE0zMS41LDEwMC43Yy0wLjItMC4zLTAuNS0wLjQtMC44LTAuNnMtMC43LTAuMi0xLTAuMmMtMC4yLDAtMC40LDAtMC42LDAuMQoJYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41YzAsMC4zLDAuMSwwLjYsMC40LDAuOHMwLjYsMC4zLDEsMC41YzAuNCwwLjEsMC44LDAuMywxLjMsMC40CgljMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjZjMCwwLjYtMC4xLDEuMi0wLjQsMS42Yy0wLjIsMC41LTAuNiwwLjktMSwxLjJzLTAuOSwwLjUtMS40LDAuNwoJYy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xbDEuOC0yYzAuMywwLjMsMC42LDAuNiwxLDAuOHMwLjgsMC4zLDEuMiwwLjNjMC4yLDAsMC40LDAsMC42LTAuMQoJYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNGMwLjEtMC4yLDAuMi0wLjMsMC4yLTAuNWMwLTAuMy0wLjEtMC42LTAuNC0wLjhzLTAuNi0wLjQtMS0wLjVzLTAuOC0wLjMtMS4zLTAuNAoJcy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOXMtMC40LTAuOS0wLjQtMS41czAuMS0xLjEsMC40LTEuNmMwLjItMC41LDAuNi0wLjgsMS0xLjJjMC40LTAuMywwLjktMC41LDEuNC0wLjcKCXMxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zYzAuNiwwLjIsMS4xLDAuNSwxLjYsMC45TDMxLjUsMTAwLjdMMzEuNSwxMDAuN3ogTTM1LjUsOTcuOWg3Ljd2Mi4zSDM4djIuMWg0Ljl2Mi4zSDM4djIuMwoJaDUuNXYyLjNoLThWOTcuOXogTTUxLjQsMTAwLjdjLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjIKCXMtMC4zLDAuMi0wLjQsMC40cy0wLjIsMC4zLTAuMiwwLjVjMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjUKCXMwLjcsMC41LDEsMC45czAuNCwwLjksMC40LDEuNmMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMgoJYy0wLjcsMC0xLjQtMC4xLTItMC4zcy0xLjItMC42LTEuOC0xLjFsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMgoJYzAuMi0wLjEsMC4zLTAuMiwwLjQtMC40YzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjYKCWMtMC40LTAuMi0wLjctMC41LTEtMC45cy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjIKCWMwLjYsMCwxLjMsMC4xLDEuOSwwLjNjMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMNTEuNCwxMDAuN0w1MS40LDEwMC43eiBNNjAuOSwxMDAuN2MtMC4yLTAuMy0wLjUtMC40LTAuOC0wLjZzLTAuNy0wLjItMS0wLjIKCWMtMC4yLDAtMC40LDAtMC42LDAuMWMtMC4yLDAtMC40LDAuMS0wLjUsMC4ycy0wLjMsMC4yLTAuNCwwLjRzLTAuMiwwLjMtMC4yLDAuNWMwLDAuMywwLjEsMC42LDAuNCwwLjhzMC42LDAuMywxLDAuNQoJYzAuNCwwLjEsMC44LDAuMywxLjMsMC40YzAuNCwwLjEsMC45LDAuMywxLjMsMC41czAuNywwLjUsMSwwLjlzMC40LDAuOSwwLjQsMS42YzAsMC42LTAuMSwxLjItMC40LDEuNmMtMC4yLDAuNS0wLjYsMC45LTEsMS4yCglzLTAuOSwwLjUtMS40LDAuN2MtMC41LDAuMS0xLjEsMC4yLTEuNywwLjJjLTAuNywwLTEuNC0wLjEtMi0wLjNzLTEuMi0wLjYtMS44LTEuMWwxLjgtMmMwLjMsMC4zLDAuNiwwLjYsMSwwLjhzMC44LDAuMywxLjIsMC4zCgljMC4yLDAsMC40LDAsMC42LTAuMWMwLjIsMCwwLjQtMC4xLDAuNi0wLjJjMC4yLTAuMSwwLjMtMC4yLDAuNC0wLjRjMC4xLTAuMiwwLjItMC4zLDAuMi0wLjVjMC0wLjMtMC4xLTAuNi0wLjQtMC44cy0wLjYtMC40LTEtMC41CglzLTAuOC0wLjMtMS4zLTAuNHMtMC45LTAuMy0xLjMtMC42Yy0wLjQtMC4yLTAuNy0wLjUtMS0wLjlzLTAuNC0wLjktMC40LTEuNXMwLjEtMS4xLDAuNC0xLjZjMC4yLTAuNSwwLjYtMC44LDEtMS4yCgljMC40LTAuMywwLjktMC41LDEuNC0wLjdzMS4xLTAuMiwxLjYtMC4yYzAuNiwwLDEuMywwLjEsMS45LDAuM2MwLjYsMC4yLDEuMSwwLjUsMS42LDAuOUw2MC45LDEwMC43TDYwLjksMTAwLjd6IE02NC44LDk3LjloMy44CglsMi42LDcuNGwwLDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdsMCwwbC0zLDguN2gtMS45bC0yLjktOC43bDAsMHY4LjdoLTIuNVY5Ny45eiBNODAuMyw5Ny45SDg4djIuM2gtNS4ydjIuMWg0Ljl2Mi4zaC00Ljl2Mi4zCgloNS41djIuM2gtOFY5Ny45eiBNOTAuNyw5Ny45SDk0bDQuOCw3LjlsMCwwdi03LjloMi41djExLjNIOThsLTQuOS04LjFsMCwwdjguMWgtMi41Vjk3LjlIOTAuN3ogTTEwNi4yLDEwMC4xSDEwM3YtMi4yaDl2Mi4yaC0zLjIKCXY5LjFoLTIuNUwxMDYuMiwxMDAuMUwxMDYuMiwxMDAuMXoiLz4KPC9zdmc+Cg==");
}
.vsl-badge--assessment-white, .vsl-badge--assessment-icon-with-light-text, .vsl-badge.assessment-white, .vsl-badge.assessment-icon-with-light-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzAwYTdlMCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDguNyAzMC40aC05LjhsOS44LTExLjN2MTEuM3ptMjAuNyAyNi43Yy0uNC4yLS45LjQtMS4zLjUtMS4zLjQtMi41LjYtMy44LjYtMi43IDAtNS4zLS44LTcuNS0yLjRINDVjLS43IDAtMS4yLS42LTEuMi0xLjRTNDQuNCA1MyA0NSA1M2g5Yy0uOS0xLjEtMS41LTIuNC0xLjktMy44LS4yLS42LS4zLTEuMi0uNC0xLjhINDVjLS43IDAtMS4yLS42LTEuMi0xLjRzLjYtMS40IDEuMi0xLjRoNi40Yy4xLTEuOC42LTMuNSAxLjQtNS4yLjEtLjIuMi0uMy4zLS41SDQ1Yy0uNyAwLTEuMi0uNi0xLjItMS40cy42LTEuNCAxLjItMS40aDEwLjNjMS40LTEuNCAzLjEtMi40IDUtMyAxLjMtLjQgMi41LS42IDMuOC0uNiAyLjcgMCA1LjMuOCA3LjUgMi40LjUuNCAxIC43IDEuNCAxLjJWMjJjMC0xLjYtMS4xLTIuOC0yLjQtMi44SDUxLjJ2MTIuN2MwIC44LS42IDEuNC0xLjIgMS40SDM5djI4LjJjMCAxLjUgMS4xIDIuOSAyLjUgMi45aDI5LjRjMS40IDAgMi40LTEuMyAyLjQtMi45di0uM2wtMy45LTQuMXptMTMuMyAzLjVsLTkuMi0xMHMwLS4xLS4xLS4xYzEuNC0yLjUgMS44LTUuNS45LTguNGwtLjYtMS41LTIgMi45YzEgMy45LTEuMyA4LTUuMiA5LjMtNC4xIDEuMy04LjQtMS05LjctNS4xczEtOC40IDUuMS05LjdjMi42LS44IDUuMy0uMiA3LjMgMS40LjctLjggMS40LTEuNSAyLTIuMS0yLjctMi4zLTYuNS0zLjItMTAuMS0yLjEtNS42IDEuOC04LjcgNy43LTcgMTMuMyAxLjggNS42IDcuNyA4LjcgMTMuMyA3IC45LS4zIDEuNy0uNyAyLjUtMS4ybDkgOS44Yy4zLjMuOS4yIDEuMy0uM2wyLjEtMS45Yy41LS40LjctMSAuNC0xLjNoMHpNOCA5Ny45aDJsNC45IDExLjNoLTIuOGwtMS0yLjRINi44bC0uOSAyLjRIMy4xTDggOTcuOXptLjkgMy4zbC0xLjQgMy41aDIuOGwtMS40LTMuNXptMTMuMS0uNWMtLjItLjMtLjUtLjQtLjgtLjZzLS43LS4yLTEtLjJjLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4ycy0uMy4yLS40LjQtLjIuMy0uMi41YzAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45aDB6bTkuNSAwYy0uMi0uMy0uNS0uNC0uOC0uNnMtLjctLjItMS0uMmMtLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJzLS4zLjItLjQuNC0uMi4zLS4yLjVjMCAuMy4xLjYuNC44cy42LjMgMSAuNWMuNC4xLjguMyAxLjMuNC40LjEuOS4zIDEuMy41cy43LjUgMSAuOS40LjkuNCAxLjZjMCAuNi0uMSAxLjItLjQgMS42LS4yLjUtLjYuOS0xIDEuMnMtLjkuNS0xLjQuN2MtLjUuMS0xLjEuMi0xLjcuMi0uNyAwLTEuNC0uMS0yLS4zcy0xLjItLjYtMS44LTEuMWwxLjgtMmMuMy4zLjYuNiAxIC44cy44LjMgMS4yLjNjLjIgMCAuNCAwIC42LS4xLjIgMCAuNC0uMS42LS4yYS43OC43OCAwIDAgMCAuNC0uNGMuMS0uMi4yLS4zLjItLjUgMC0uMy0uMS0uNi0uNC0uOHMtLjYtLjQtMS0uNS0uOC0uMy0xLjMtLjQtLjktLjMtMS4zLS42Yy0uNC0uMi0uNy0uNS0xLS45cy0uNC0uOS0uNC0xLjUuMS0xLjEuNC0xLjZjLjItLjUuNi0uOCAxLTEuMi40LS4zLjktLjUgMS40LS43czEuMS0uMiAxLjYtLjJhNi4yOCA2LjI4IDAgMCAxIDEuOS4zYy42LjIgMS4xLjUgMS42LjlsLTEuOSAxLjloMHptNC0yLjhoNy43djIuM0gzOHYyLjFoNC45djIuM0gzOHYyLjNoNS41djIuM2gtOFY5Ny45em0xNS45IDIuOGMtLjItLjMtLjUtLjQtLjgtLjZzLS43LS4yLTEtLjJjLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4ycy0uMy4yLS40LjQtLjIuMy0uMi41YzAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45aDB6bTkuNSAwYy0uMi0uMy0uNS0uNC0uOC0uNnMtLjctLjItMS0uMmMtLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJzLS4zLjItLjQuNC0uMi4zLS4yLjVjMCAuMy4xLjYuNC44cy42LjMgMSAuNWMuNC4xLjguMyAxLjMuNC40LjEuOS4zIDEuMy41cy43LjUgMSAuOS40LjkuNCAxLjZjMCAuNi0uMSAxLjItLjQgMS42LS4yLjUtLjYuOS0xIDEuMnMtLjkuNS0xLjQuN2MtLjUuMS0xLjEuMi0xLjcuMi0uNyAwLTEuNC0uMS0yLS4zcy0xLjItLjYtMS44LTEuMWwxLjgtMmMuMy4zLjYuNiAxIC44cy44LjMgMS4yLjNjLjIgMCAuNCAwIC42LS4xLjIgMCAuNC0uMS42LS4yYS43OC43OCAwIDAgMCAuNC0uNGMuMS0uMi4yLS4zLjItLjUgMC0uMy0uMS0uNi0uNC0uOHMtLjYtLjQtMS0uNS0uOC0uMy0xLjMtLjQtLjktLjMtMS4zLS42Yy0uNC0uMi0uNy0uNS0xLS45cy0uNC0uOS0uNC0xLjUuMS0xLjEuNC0xLjZjLjItLjUuNi0uOCAxLTEuMi40LS4zLjktLjUgMS40LS43czEuMS0uMiAxLjYtLjJhNi4yOCA2LjI4IDAgMCAxIDEuOS4zYy42LjIgMS4xLjUgMS42LjlsLTEuOSAxLjloMHptMy45LTIuOGgzLjhsMi42IDcuNGgwbDIuNi03LjRoMy44djExLjNoLTIuNXYtOC43aDBsLTMgOC43aC0xLjlsLTIuOS04LjdoMHY4LjdoLTIuNVY5Ny45em0xNS41IDBIODh2Mi4zaC01LjJ2Mi4xaDQuOXYyLjNoLTQuOXYyLjNoNS41djIuM2gtOFY5Ny45em0xMC40IDBIOTRsNC44IDcuOWgwdi03LjloMi41djExLjNIOThsLTQuOS04LjFoMHY4LjFoLTIuNVY5Ny45aC4xem0xNS41IDIuMkgxMDN2LTIuMmg5djIuMmgtMy4ydjkuMWgtMi41bC0uMS05LjFoMHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}
.vsl-badge--assessment-icon, .vsl-badge.assessment-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9Ijk3LjUiIGZpbGw9IiMwMGE3ZTAiLz48ZyBvcGFjaXR5PSIuNjUiPjxwYXRoIGQ9Ik0xMDAgMTMuM2M0Ny43IDAgODYuNSAzOC44IDg2LjUgODYuNVMxNDcuNyAxODYgMTAwIDE4NnMtODYuMy0zOC44LTg2LjMtODYuM1M1Mi41IDEzLjMgMTAwIDEzLjNtMC00LjZDNDkuOCA4LjcgOC45IDQ5LjUgOC45IDk5LjhzNDAuOCA5MS4xIDkxLjEgOTEuMSA5MS4xLTQwLjggOTEuMS05MS4xUzE1MC4yIDguNyAxMDAgOC43aDB6IiBmaWxsPSIjZmZmIi8+PC9nPjxwYXRoIGQ9Ik03OS44IDcwLjRINTcuM2wyMi41LTI1LjljMCAwIDAgMjUuOSAwIDI1Ljl6bTQ3LjUgNjEuM2MtLjkuNS0yLjEuOS0zIDEuMS0zIC45LTUuNyAxLjQtOC43IDEuNC02LjIgMC0xMi4yLTEuOC0xNy4yLTUuNUg3MS4zYy0xLjYgMC0yLjgtMS40LTIuOC0zLjJzMS40LTMuMiAyLjgtMy4ySDkyYy0yLjEtMi41LTMuNC01LjUtNC40LTguNy0uNS0xLjQtLjctMi44LS45LTQuMUg3MS4zYy0xLjYgMC0yLjgtMS40LTIuOC0zLjJzMS40LTMuMiAyLjgtMy4ySDg2Yy4yLTQuMSAxLjQtOCAzLjItMTEuOS4yLS41LjUtLjcuNy0xLjFINzEuM2MtMS42IDAtMi44LTEuNC0yLjgtMy4yczEuNC0zLjIgMi44LTMuMkg5NWMzLjItMy4yIDcuMS01LjUgMTEuNS02LjkgMy0uOSA1LjctMS40IDguNy0xLjQgNi4yIDAgMTIuMiAxLjggMTcuMiA1LjUgMS4xLjkgMi4zIDEuNiAzLjIgMi44VjUxLjFjMC0zLjctMi41LTYuNC01LjUtNi40SDg1LjV2MjkuMWMwIDEuOC0xLjQgMy4yLTIuOCAzLjJINTcuNnY2NC43YzAgMy40IDIuNSA2LjcgNS43IDYuN2g2Ny40YzMuMiAwIDUuNS0zIDUuNS02Ljd2LS43YzAgLjEtOC45LTkuMy04LjktOS4zem0zMC41IDhsLTIxLjEtMjIuOXMwLS4yLS4yLS4yYzMuMi01LjcgNC4xLTEyLjYgMi4xLTE5LjNsLTEuNC0zLjQtNC42IDYuN2MyLjMgOC45LTMgMTguNC0xMS45IDIxLjMtOS40IDMtMTkuMy0yLjMtMjIuMy0xMS43czIuMy0xOS4zIDExLjctMjIuM2M2LTEuOCAxMi4yLS41IDE2LjcgMy4yIDEuNi0xLjggMy4yLTMuNCA0LjYtNC44LTYuMi01LjMtMTQuOS03LjMtMjMuMi00LjgtMTIuOCA0LjEtMjAgMTcuNy0xNi4xIDMwLjUgNC4xIDEyLjggMTcuNyAyMCAzMC41IDE2LjEgMi4xLS43IDMuOS0xLjYgNS43LTIuOGwyMC42IDIyLjVjLjcuNyAyLjEuNSAzLS43bDQuOC00LjRjMS4zLS45IDEuOC0yLjMgMS4xLTNoMHoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}
.vsl-badge--cs, .vsl-badge--customer-success, .vsl-badge.cs .vsl-badge.customer-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Y3OGUyOCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDguNCA0Ny42bDIgLjUgMTIuMyAzLjNjMS4zLjQgMi4xIDEuNyAxLjggM3MtMS43IDIuMS0zIDEuOGwtOS4zLTIuNWMtLjMtLjEtLjcuMS0uOC41aDBjLS4xLjMuMS43LjQuOGgwbDkuMyAyLjRjMSAuMyAyIC4xIDIuOS0uNHMxLjUtMS4zIDEuOC0yLjNjLjQtMS40LS4xLTIuNy0xLTMuNmwtLjItLjJjLS4yLS4yLS4yLS41IDAtLjdsOS4xLTYuOGMxLjItLjkgMi40LTEuMSAzLjUgMCAxIDEgLjkgMi42LS4xIDMuNUw2MyA2MS4xYy0xIDEtMi4zIDEuNC0zLjcgMS4ybC0xLjItLjItMTIuNS0xLjdjLS41LS4xLS45LjEtMS4yLjRsLTIuOSAyLjljLS42LjYtMS41LjYtMi4xIDBsLTUuMS01LjFjLS42LS42LS42LTEuNSAwLTIuMWw3LjEtNy4xYzEuOS0xLjcgNC41LTIuNSA3LTEuOHpNNzMuNiAxOHY5LjljMCAuMy0uMi40LS40LjNsLTIuNi0xLjVjLTMgMy41LTYuNSA2LjMtMTAuNiA4LjYtNC40IDIuNC05LjEgMy45LTEzLjkgNC42IDUtMS41IDkuMi0zLjcgMTIuOC02LjQgMy4xLTIuNCA1LjktNS4zIDguMi04LjhsLTIuNS0xLjRjLS4yLS4xLS4yLS40IDAtLjVsOC42LTVjLjItLjIuNC0uMS40LjJ6TTU2LjQgNDF2N2wtNC42LTEuMlY0MWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0xMS41LTUuN3YxMC41TDYzLjcgNDljLS4xLjEtLjMuMi0uNC40di0xNGEuNDcuNDcgMCAwIDEgLjUtLjVoMy42Yy4yLS4xLjUuMS41LjR6bS01LjggMy4xdjExLjFsLTQuNi0xLjJ2LTkuOWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0tMTEuNCA0Ljd2My40bC0xLjgtLjVjLS43LS4yLTEuNS0uMy0yLjMtLjNoLS41VjQzYS40Ny40NyAwIDAgMSAuNS0uNWgzLjZjLjIuMS41LjMuNS42em0yMi45LTExLjV2MTBjLS4zLjItLjYuMy0uOS42TDY5IDQ0LjlWMzEuNmEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMC4zIDEwMC44Yy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYy0uNSAwLS45LjEtMS4zLjNzLS43LjQtMSAuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4yLjMuMy42LjYgMSAuOHMuOC4zIDEuMy4zIDEtLjEgMS40LS4zLjctLjUgMS0uOWwyLjEgMS42Yy0uNS43LTEuMSAxLjItMS44IDEuNXMtMS41LjUtMi4zLjVjLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjVjLjMtLjcuNy0xLjQgMS4zLTEuOS41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjMgMCAuNyAwIDEgLjFsMSAuM2E0LjY3IDQuNjcgMCAwIDEgMSAuNWMuMy4yLjYuNS44LjhsLTIuMSAxLjJ6bTEzLjIgNC4xYzAgLjctLjEgMS4zLS4zIDEuOXMtLjUgMS4xLS45IDEuNS0uOS43LTEuNSAxLTEuMy40LTIuMS40LTEuNS0uMS0yLjEtLjRjLS42LS4yLTEuMS0uNi0xLjUtMXMtLjctLjktLjktMS41LS4zLTEuMi0uMy0xLjl2LTdoMi41djYuOWMwIC40LjEuNy4yIDFzLjMuNi41LjguNC40LjcuNS42LjIuOS4yLjYtLjEuOS0uMi41LS4zLjctLjUuNC0uNS41LS44LjItLjYuMi0xdi02LjloMi41djd6bTguMS00LjJjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45em01LjktLjZoLTMuMnYtMi4yaDl2Mi4ySDUwdjkuMWgtMi41di05LjF6bTYuNiAzLjVjMC0uOS4yLTEuNy41LTIuNS4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40IDEuNy4xIDIuNC40IDEuNC43IDEuOSAxLjIgMSAxLjEgMS4zIDEuOS41IDEuNi41IDIuNS0uMiAxLjctLjUgMi41Yy0uMy43LS43IDEuNC0xLjMgMS45LS41LjUtMS4yLjktMS45IDEuMnMtMS42LjQtMi40LjQtMS43LS4xLTIuNC0uNC0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uNC0uOC0uNS0xLjYtLjUtMi41em0yLjYgMGMwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMmE0LjQ0IDQuNDQgMCAwIDAgMS4xLjhjLjQuMi45LjMgMS40LjNzMS0uMSAxLjQtLjMuOC0uNCAxLjEtLjhjLjMtLjMuNS0uNy43LTEuMi4yLS40LjItLjkuMi0xLjUgMC0uNS0uMS0xLS4yLTEuNS0uMi0uNC0uNC0uOC0uNy0xLjJhNC40NCA0LjQ0IDAgMCAwLTEuMS0uOGMtLjQtLjItLjktLjMtMS40LS4zcy0xIC4xLTEuNC4zLS44LjQtMS4xLjhjLS4zLjMtLjUuNy0uNyAxLjItLjEuNS0uMi45LS4yIDEuNXptMTEuNS01LjdINzJsMi42IDcuNGgwbDIuNi03LjRIODF2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE1LjMgMGg3Ljd2Mi4zSDg2djIuMWg0Ljl2Mi4zSDg2djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTEwLjIgMEg5OGMuNiAwIDEuMS4xIDEuNi4yczEgLjMgMS40LjYuNy42LjkgMS4xYy4yLjQuMyAxIC4zIDEuNyAwIC44LS4yIDEuNS0uNiAycy0xIC45LTEuOCAxLjFsMi45IDQuOGgtM2wtMi40LTQuNWgtMS4ydjQuNWgtMi41Vjk3Ljl6bTIuNSA0LjdoMS41LjdjLjIgMCAuNS0uMS43LS4xcy40LS4yLjUtLjQuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em0tNjguMyAxNy4zYy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptMTMuMyA0LjJjMCAuNy0uMSAxLjMtLjMgMS45cy0uNSAxLjEtLjkgMS41LS45LjctMS41IDEtMS4zLjQtMi4xLjQtMS41LS4xLTIuMS0uNGMtLjYtLjItMS4xLS42LTEuNS0xcy0uNy0uOS0uOS0xLjUtLjMtMS4yLS4zLTEuOXYtN2gyLjV2Ni45YzAgLjQuMS43LjIgMXMuMy42LjUuOC40LjQuNy41LjYuMi45LjIuNi0uMS45LS4yLjUtLjMuNy0uNS40LS41LjUtLjguMi0uNi4yLTF2LTYuOWgyLjV2N3pNNTEgMTIwYy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYTMuMDggMy4wOCAwIDAgMC0xLjMuM2MtLjQuMi0uNy40LTEgLjgtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy42LjYgMSAuOC44LjMgMS4zLjMgMS0uMSAxLjQtLjMuNy0uNSAxLS45bDIuMSAxLjZjLS41LjctMS4xIDEuMi0xLjggMS41cy0xLjUuNS0yLjMuNWMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNWMuMy0uNy43LTEuNCAxLjMtMS45LjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuMyAwIC43IDAgMSAuMWwxIC4zYTQuNjcgNC42NyAwIDAgMSAxIC41Yy4zLjIuNi41LjguOEw1MSAxMjB6bTExLjEgMGMtLjItLjMtLjUtLjUtLjktLjdzLS44LS4yLTEuMi0uMmMtLjUgMC0uOS4xLTEuMy4zcy0uNy40LTEgLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMi4zLjMuNi42IDEgLjhzLjguMyAxLjMuMyAxLS4xIDEuNC0uMy43LS41IDEtLjlsMi4xIDEuNmMtLjUuNy0xLjEgMS4yLTEuOCAxLjVzLTEuNS41LTIuMy41Yy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41Yy4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy4zIDAgLjcgMCAxIC4xbDEgLjNhNC42NyA0LjY3IDAgMCAxIDEgLjVjLjMuMi42LjUuOC44bC0yLjEgMS4yem0zLjktMi45aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM0g3NHYyLjNoLTh2LTExLjN6bTE1LjcgMi44Yy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptOS4zIDBjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45eiIgZmlsbD0iI2Y3OGUyOCIvPjwvc3ZnPg==");
}
.vsl-badge--cs-icon-with-dark-text, .vsl-badge--customer-success-icon-with-dark-text, .vsl-badge.cs .vsl-badge.customer-success-icon-with-dark-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Y3OGUyOCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDguNCA0Ny42bDIgLjUgMTIuMyAzLjNjMS4zLjQgMi4xIDEuNyAxLjggM3MtMS43IDIuMS0zIDEuOGwtOS4zLTIuNWMtLjMtLjEtLjcuMS0uOC41aDBjLS4xLjMuMS43LjQuOGgwbDkuMyAyLjRjMSAuMyAyIC4xIDIuOS0uNHMxLjUtMS4zIDEuOC0yLjNjLjQtMS40LS4xLTIuNy0xLTMuNmwtLjItLjJjLS4yLS4yLS4yLS41IDAtLjdsOS4xLTYuOGMxLjItLjkgMi40LTEuMSAzLjUgMCAxIDEgLjkgMi42LS4xIDMuNUw2MyA2MS4xYy0xIDEtMi4zIDEuNC0zLjcgMS4ybC0xLjItLjItMTIuNS0xLjdjLS41LS4xLS45LjEtMS4yLjRsLTIuOSAyLjljLS42LjYtMS41LjYtMi4xIDBsLTUuMS01LjFjLS42LS42LS42LTEuNSAwLTIuMWw3LjEtNy4xYzEuOS0xLjcgNC41LTIuNSA3LTEuOHpNNzMuNiAxOHY5LjljMCAuMy0uMi40LS40LjNsLTIuNi0xLjVjLTMgMy41LTYuNSA2LjMtMTAuNiA4LjYtNC40IDIuNC05LjEgMy45LTEzLjkgNC42IDUtMS41IDkuMi0zLjcgMTIuOC02LjQgMy4xLTIuNCA1LjktNS4zIDguMi04LjhsLTIuNS0xLjRjLS4yLS4xLS4yLS40IDAtLjVsOC42LTVjLjItLjIuNC0uMS40LjJ6TTU2LjQgNDF2N2wtNC42LTEuMlY0MWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0xMS41LTUuN3YxMC41TDYzLjcgNDljLS4xLjEtLjMuMi0uNC40di0xNGEuNDcuNDcgMCAwIDEgLjUtLjVoMy42Yy4yLS4xLjUuMS41LjR6bS01LjggMy4xdjExLjFsLTQuNi0xLjJ2LTkuOWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0tMTEuNCA0Ljd2My40bC0xLjgtLjVjLS43LS4yLTEuNS0uMy0yLjMtLjNoLS41VjQzYS40Ny40NyAwIDAgMSAuNS0uNWgzLjZjLjIuMS41LjMuNS42em0yMi45LTExLjV2MTBjLS4zLjItLjYuMy0uOS42TDY5IDQ0LjlWMzEuNmEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMC4zIDEwMC44Yy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYy0uNSAwLS45LjEtMS4zLjNzLS43LjQtMSAuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4yLjMuMy42LjYgMSAuOHMuOC4zIDEuMy4zIDEtLjEgMS40LS4zLjctLjUgMS0uOWwyLjEgMS42Yy0uNS43LTEuMSAxLjItMS44IDEuNXMtMS41LjUtMi4zLjVjLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjVjLjMtLjcuNy0xLjQgMS4zLTEuOS41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjMgMCAuNyAwIDEgLjFsMSAuM2E0LjY3IDQuNjcgMCAwIDEgMSAuNWMuMy4yLjYuNS44LjhsLTIuMSAxLjJ6bTEzLjIgNC4xYzAgLjctLjEgMS4zLS4zIDEuOXMtLjUgMS4xLS45IDEuNS0uOS43LTEuNSAxLTEuMy40LTIuMS40LTEuNS0uMS0yLjEtLjRjLS42LS4yLTEuMS0uNi0xLjUtMXMtLjctLjktLjktMS41LS4zLTEuMi0uMy0xLjl2LTdoMi41djYuOWMwIC40LjEuNy4yIDFzLjMuNi41LjguNC40LjcuNS42LjIuOS4yLjYtLjEuOS0uMi41LS4zLjctLjUuNC0uNS41LS44LjItLjYuMi0xdi02LjloMi41djd6bTguMS00LjJjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45em01LjktLjZoLTMuMnYtMi4yaDl2Mi4ySDUwdjkuMWgtMi41di05LjF6bTYuNiAzLjVjMC0uOS4yLTEuNy41LTIuNS4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40IDEuNy4xIDIuNC40IDEuNC43IDEuOSAxLjIgMSAxLjEgMS4zIDEuOS41IDEuNi41IDIuNS0uMiAxLjctLjUgMi41Yy0uMy43LS43IDEuNC0xLjMgMS45LS41LjUtMS4yLjktMS45IDEuMnMtMS42LjQtMi40LjQtMS43LS4xLTIuNC0uNC0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uNC0uOC0uNS0xLjYtLjUtMi41em0yLjYgMGMwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMmE0LjQ0IDQuNDQgMCAwIDAgMS4xLjhjLjQuMi45LjMgMS40LjNzMS0uMSAxLjQtLjMuOC0uNCAxLjEtLjhjLjMtLjMuNS0uNy43LTEuMi4yLS40LjItLjkuMi0xLjUgMC0uNS0uMS0xLS4yLTEuNS0uMi0uNC0uNC0uOC0uNy0xLjJhNC40NCA0LjQ0IDAgMCAwLTEuMS0uOGMtLjQtLjItLjktLjMtMS40LS4zcy0xIC4xLTEuNC4zLS44LjQtMS4xLjhjLS4zLjMtLjUuNy0uNyAxLjItLjEuNS0uMi45LS4yIDEuNXptMTEuNS01LjdINzJsMi42IDcuNGgwbDIuNi03LjRIODF2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE1LjMgMGg3Ljd2Mi4zSDg2djIuMWg0Ljl2Mi4zSDg2djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTEwLjIgMEg5OGMuNiAwIDEuMS4xIDEuNi4yczEgLjMgMS40LjYuNy42LjkgMS4xYy4yLjQuMyAxIC4zIDEuNyAwIC44LS4yIDEuNS0uNiAycy0xIC45LTEuOCAxLjFsMi45IDQuOGgtM2wtMi40LTQuNWgtMS4ydjQuNWgtMi41Vjk3Ljl6bTIuNSA0LjdoMS41LjdjLjIgMCAuNS0uMS43LS4xcy40LS4yLjUtLjQuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em0tNjguMyAxNy4zYy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptMTMuMyA0LjJjMCAuNy0uMSAxLjMtLjMgMS45cy0uNSAxLjEtLjkgMS41LS45LjctMS41IDEtMS4zLjQtMi4xLjQtMS41LS4xLTIuMS0uNGMtLjYtLjItMS4xLS42LTEuNS0xcy0uNy0uOS0uOS0xLjUtLjMtMS4yLS4zLTEuOXYtN2gyLjV2Ni45YzAgLjQuMS43LjIgMXMuMy42LjUuOC40LjQuNy41LjYuMi45LjIuNi0uMS45LS4yLjUtLjMuNy0uNS40LS41LjUtLjguMi0uNi4yLTF2LTYuOWgyLjV2N3pNNTEgMTIwYy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYTMuMDggMy4wOCAwIDAgMC0xLjMuM2MtLjQuMi0uNy40LTEgLjgtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy42LjYgMSAuOC44LjMgMS4zLjMgMS0uMSAxLjQtLjMuNy0uNSAxLS45bDIuMSAxLjZjLS41LjctMS4xIDEuMi0xLjggMS41cy0xLjUuNS0yLjMuNWMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNWMuMy0uNy43LTEuNCAxLjMtMS45LjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuMyAwIC43IDAgMSAuMWwxIC4zYTQuNjcgNC42NyAwIDAgMSAxIC41Yy4zLjIuNi41LjguOEw1MSAxMjB6bTExLjEgMGMtLjItLjMtLjUtLjUtLjktLjdzLS44LS4yLTEuMi0uMmMtLjUgMC0uOS4xLTEuMy4zcy0uNy40LTEgLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMi4zLjMuNi42IDEgLjhzLjguMyAxLjMuMyAxLS4xIDEuNC0uMy43LS41IDEtLjlsMi4xIDEuNmMtLjUuNy0xLjEgMS4yLTEuOCAxLjVzLTEuNS41LTIuMy41Yy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41Yy4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy4zIDAgLjcgMCAxIC4xbDEgLjNhNC42NyA0LjY3IDAgMCAxIDEgLjVjLjMuMi42LjUuOC44bC0yLjEgMS4yem0zLjktMi45aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM0g3NHYyLjNoLTh2LTExLjN6bTE1LjcgMi44Yy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptOS4zIDBjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45eiIgZmlsbD0iI2Y3OGUyOCIvPjwvc3ZnPg==");
}
.vsl-badge--cs-white, .vsl-badge--cs-icon-with-light-text, .vsl-badge--customer-success-white, .vsl-badge--customer-success-icon-with-light-text, .vsl-badge.cs .vsl-badge.customer-success-white, .vsl-badge.cs .vsl-badge.customer-success-icon-with-light-text {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Y3OGUyOCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDguNCA0Ny42bDIgLjUgMTIuMyAzLjNjMS4zLjQgMi4xIDEuNyAxLjggM3MtMS43IDIuMS0zIDEuOGwtOS4zLTIuNWMtLjMtLjEtLjcuMS0uOC41aDBjLS4xLjMuMS43LjQuOGgwbDkuMyAyLjRjMSAuMyAyIC4xIDIuOS0uNHMxLjUtMS4zIDEuOC0yLjNjLjQtMS40LS4xLTIuNy0xLTMuNmwtLjItLjJjLS4yLS4yLS4yLS41IDAtLjdsOS4xLTYuOGMxLjItLjkgMi40LTEuMSAzLjUgMCAxIDEgLjkgMi42LS4xIDMuNUw2MyA2MS4xYy0xIDEtMi4zIDEuNC0zLjcgMS4ybC0xLjItLjItMTIuNS0xLjdjLS41LS4xLS45LjEtMS4yLjRsLTIuOSAyLjljLS42LjYtMS41LjYtMi4xIDBsLTUuMS01LjFjLS42LS42LS42LTEuNSAwLTIuMWw3LjEtNy4xYzEuOS0xLjcgNC41LTIuNSA3LTEuOHpNNzMuNiAxOHY5LjljMCAuMy0uMi40LS40LjNsLTIuNi0xLjVjLTMgMy41LTYuNSA2LjMtMTAuNiA4LjYtNC40IDIuNC05LjEgMy45LTEzLjkgNC42IDUtMS41IDkuMi0zLjcgMTIuOC02LjQgMy4xLTIuNCA1LjktNS4zIDguMi04LjhsLTIuNS0xLjRjLS4yLS4xLS4yLS40IDAtLjVsOC42LTVjLjItLjIuNC0uMS40LjJ6TTU2LjQgNDF2N2wtNC42LTEuMlY0MWMwLS4zLjItLjUuNC0uNWguMSAzLjZhLjQ3LjQ3IDAgMCAxIC41LjV6bTExLjUtNS43djEwLjVMNjMuNyA0OWMtLjEuMS0uMy4yLS40LjR2LTE0YzAtLjMuMi0uNS40LS41aC4xIDMuNmMuMi0uMS41LjEuNS40em0tNS44IDMuMXYxMS4xbC00LjYtMS4ydi05LjljMC0uMy4yLS41LjQtLjVoLjEgMy42YS40Ny40NyAwIDAgMSAuNS41em0tMTEuNCA0Ljd2My40bC0xLjgtLjVjLS43LS4yLTEuNS0uMy0yLjMtLjNoLS41VjQzYzAtLjMuMi0uNS40LS41aC4xIDMuNmMuMi4xLjUuMy41LjZ6bTIyLjktMTEuNXYxMGMtLjMuMi0uNi4zLS45LjZMNjkgNDQuOVYzMS42YzAtLjMuMi0uNS40LS41aC4xIDMuNmEuNDcuNDcgMCAwIDEgLjUuNXptLTUzLjMgNjkuMmMtLjItLjMtLjUtLjUtLjktLjdzLS44LS4yLTEuMi0uMmMtLjUgMC0uOS4xLTEuMy4zcy0uNy40LTEgLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMi4zLjMuNi42IDEgLjhzLjguMyAxLjMuMyAxLS4xIDEuNC0uMy43LS41IDEtLjlsMi4xIDEuNmMtLjUuNy0xLjEgMS4yLTEuOCAxLjVzLTEuNS41LTIuMy41Yy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41Yy4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy4zIDAgLjcgMCAxIC4xbDEgLjNjLjQuMS43LjMgMSAuNXMuNi41LjguOGwtMi4xIDEuMnptMTMuMiA0LjFjMCAuNy0uMSAxLjMtLjMgMS45cy0uNSAxLjEtLjkgMS41LS45LjctMS41IDEtMS4zLjQtMi4xLjQtMS41LS4xLTIuMS0uNGMtLjYtLjItMS4xLS42LTEuNS0xcy0uNy0uOS0uOS0xLjUtLjMtMS4yLS4zLTEuOXYtN2gyLjV2Ni45YzAgLjQuMS43LjIgMXMuMy42LjUuOC40LjQuNy41LjYuMi45LjIuNi0uMS45LS4yLjUtLjMuNy0uNS40LS41LjUtLjguMi0uNi4yLTF2LTYuOWgyLjV2N3ptOC4xLTQuMmMtLjItLjMtLjUtLjQtLjgtLjYtLjMtLjEtLjctLjItMS0uMi0uMiAwLS40IDAtLjYuMS0uMiAwLS40LjEtLjUuMmEuNzguNzggMCAwIDAtLjQuNGMtLjEuMS0uMi4zLS4yLjUgMCAuMy4xLjYuNC44cy42LjMgMSAuNWMuNC4xLjguMyAxLjMuNC40LjEuOS4zIDEuMy41cy43LjUgMSAuOS40LjkuNCAxLjZjMCAuNi0uMSAxLjItLjQgMS42LS4yLjUtLjYuOS0xIDEuMnMtLjkuNS0xLjQuN2MtLjUuMS0xLjEuMi0xLjcuMi0uNyAwLTEuNC0uMS0yLS4zcy0xLjItLjYtMS44LTEuMWwxLjgtMmMuMy4zLjYuNiAxIC44cy44LjMgMS4yLjNjLjIgMCAuNCAwIC42LS4xLjIgMCAuNC0uMS42LS4yYS43OC43OCAwIDAgMCAuNC0uNGMuMS0uMi4yLS4zLjItLjUgMC0uMy0uMS0uNi0uNC0uOHMtLjYtLjQtMS0uNS0uOC0uMy0xLjMtLjQtLjktLjMtMS4zLS42Yy0uNC0uMi0uNy0uNS0xLS45cy0uNC0uOS0uNC0xLjUuMS0xLjEuNC0xLjZjLjItLjUuNi0uOCAxLTEuMi40LS4zLjktLjUgMS40LS43czEuMS0uMiAxLjYtLjJhNi4yOCA2LjI4IDAgMCAxIDEuOS4zYy42LjIgMS4xLjUgMS42LjlsLTEuOSAxLjloMHptNS45LS42aC0zLjJ2LTIuMmg5djIuMkg1MHY5LjFoLTIuNXYtOS4xem02LjYgMy41YzAtLjkuMi0xLjcuNS0yLjUuMy0uNy43LTEuNCAxLjMtMS45LjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNCAxLjcuMSAyLjQuNCAxLjQuNyAxLjkgMS4yIDEgMS4xIDEuMyAxLjkuNSAxLjYuNSAyLjUtLjIgMS43LS41IDIuNWMtLjMuNy0uNyAxLjQtMS4zIDEuOS0uNS41LTEuMi45LTEuOSAxLjJzLTEuNi40LTIuNC40LTEuNy0uMS0yLjQtLjQtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjQtLjgtLjUtMS42LS41LTIuNXptMi42IDBjMCAuNS4xIDEgLjIgMS41LjIuNC40LjguNyAxLjJhNC40NCA0LjQ0IDAgMCAwIDEuMS44Yy40LjIuOS4zIDEuNC4zczEtLjEgMS40LS4zLjgtLjQgMS4xLS44Yy4zLS4zLjUtLjcuNy0xLjIuMi0uNC4yLS45LjItMS41IDAtLjUtLjEtMS0uMi0xLjUtLjItLjQtLjQtLjgtLjctMS4yYTQuNDQgNC40NCAwIDAgMC0xLjEtLjhjLS40LS4yLS45LS4zLTEuNC0uM3MtMSAuMS0xLjQuMy0uOC40LTEuMS44Yy0uMy4zLS41LjctLjcgMS4yLS4xLjUtLjIuOS0uMiAxLjV6bTExLjUtNS43SDcybDIuNiA3LjRoMGwyLjYtNy40SDgxdjExLjNoLTIuNXYtOC43aDBsLTMgOC43aC0xLjlsLTIuOS04LjdoMHY4LjdoLTIuNVY5Ny45em0xNS4zIDBoNy43djIuM0g4NnYyLjFoNC45djIuM0g4NnYyLjNoNS41djIuM2gtOFY5Ny45em0xMC4yIDBIOThjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNWwuMS0xMS41aDB6bTIuNSA0LjdoMS41LjdjLjIgMCAuNS0uMS43LS4xcy40LS4yLjUtLjQuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZsLS4xIDIuNWgwem0tNjguMyAxNy4zYy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOWgwem0xMy4zIDQuMmMwIC43LS4xIDEuMy0uMyAxLjlzLS41IDEuMS0uOSAxLjUtLjkuNy0xLjUgMS0xLjMuNC0yLjEuNC0xLjUtLjEtMi4xLS40Yy0uNi0uMi0xLjEtLjYtMS41LTFzLS43LS45LS45LTEuNS0uMy0xLjItLjMtMS45di03aDIuNXY2LjljMCAuNC4xLjcuMiAxcy4zLjYuNS44LjQuNC43LjUuNi4yLjkuMi42LS4xLjktLjIuNS0uMy43LS41LjQtLjUuNS0uOC4yLS42LjItMXYtNi45aDIuNXY3aDB6TTUxIDEyMGMtLjItLjMtLjUtLjUtLjktLjdzLS44LS4yLTEuMi0uMmMtLjUgMC0uOS4xLTEuMy4zcy0uNy40LTEgLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMnMuNi42IDEgLjguOC4zIDEuMy4zIDEtLjEgMS40LS4zLjctLjUgMS0uOWwyLjEgMS42Yy0uNS43LTEuMSAxLjItMS44IDEuNXMtMS41LjUtMi4zLjVjLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjVjLjMtLjcuNy0xLjQgMS4zLTEuOS41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjMgMCAuNyAwIDEgLjFsMSAuM2MuNC4xLjcuMyAxIC41cy42LjUuOC44TDUxIDEyMHptMTEuMSAwYy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYy0uNSAwLS45LjEtMS4zLjNzLS43LjQtMSAuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4yLjMuMy42LjYgMSAuOHMuOC4zIDEuMy4zIDEtLjEgMS40LS4zLjctLjUgMS0uOWwyLjEgMS42Yy0uNS43LTEuMSAxLjItMS44IDEuNXMtMS41LjUtMi4zLjVjLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjVjLjMtLjcuNy0xLjQgMS4zLTEuOS41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjMgMCAuNyAwIDEgLjFsMSAuM2MuNC4xLjcuMyAxIC41cy42LjUuOC44bC0yLjEgMS4yaDB6bTMuOS0yLjloNy43djIuM2gtNS4ydjIuMWg0Ljl2Mi4zaC00Ljl2Mi4zSDc0djIuM2gtOHYtMTEuM3ptMTUuNyAyLjhjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45aDB6bTkuMyAwYy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOWgweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
}
.vsl-badge--cs-icon, .vsl-badge--customer-success-icon, .vsl-badge.cs .vsl-badge.customer-success-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAgMjAwIj48Y2lyY2xlIGN4PSIxMDAiIGN5PSIxMDAiIHI9Ijk3LjUiIGZpbGw9IiNmNzhlMjgiLz48ZyBvcGFjaXR5PSIuNjUiPjxwYXRoIGQ9Ik0xMDAgMTMuM2M0Ny43IDAgODYuNSAzOC44IDg2LjUgODYuNVMxNDcuNyAxODYgMTAwIDE4NnMtODYuMy0zOC44LTg2LjMtODYuM1M1Mi41IDEzLjMgMTAwIDEzLjNtMC00LjZDNDkuOCA4LjcgOC45IDQ5LjUgOC45IDk5LjhzNDAuOCA5MS4xIDkxLjEgOTEuMSA5MS4xLTQwLjggOTEuMS05MS4xUzE1MC4yIDguNyAxMDAgOC43aDB6IiBmaWxsPSIjZmZmIi8+PC9nPjxwYXRoIGQ9Ik03OS4xIDEwOS45bDQuNiAxLjEgMjguMiA3LjZjMyAuOSA0LjggMy45IDQuMSA2LjlzLTMuOSA0LjgtNi45IDQuMWwtMjEuMy01LjdBMS40NiAxLjQ2IDAgMCAwIDg2IDEyNWgwYy0uMi43LjIgMS42LjkgMS44aDBsMjEuMyA1LjVjMi4zLjcgNC42LjIgNi43LS45czMuNC0zIDQuMS01LjNjLjktMy4yLS4yLTYuMi0yLjMtOC4zbC0uNS0uNWMtLjUtLjUtLjUtMS4xIDAtMS42bDIwLjktMTUuNmMyLjgtMi4xIDUuNS0yLjUgOCAwIDIuMyAyLjMgMi4xIDYtLjIgOGwtMzIuMyAzMi42Yy0yLjMgMi4zLTUuMyAzLjItOC41IDIuOGwtMi44LS41LTI4LjctMy45Yy0xLjEtLjItMi4xLjItMi44LjlsLTYuNyA2LjdjLTEuNCAxLjQtMy40IDEuNC00LjggMEw0Ni42IDEzNWMtMS40LTEuNC0xLjQtMy40IDAtNC44TDYzLjEgMTE0YzQuMy0zLjkgMTAuMy01LjcgMTYtNC4xek0xMzYuOSA0MnYyMi43YzAgLjctLjUuOS0uOS43bC02LTMuNGMtNi45IDgtMTQuOSAxNC41LTI0LjMgMTkuNy0xMC4xIDUuNS0yMC45IDguOS0zMS45IDEwLjYgMTEuNS0zLjQgMjEuMS04LjUgMjkuNC0xNC43IDcuMS01LjUgMTMuNS0xMi4yIDE4LjgtMjAuMmwtNS43LTMuMmEuNTkuNTkgMCAwIDEgMC0xLjFMMTM2IDQxLjVjLjUtLjUuOS0uMi45LjV6TTk3LjUgOTQuN3YxNi4xTDg2LjkgMTA4Vjk0LjdjMC0uNi40LTEuMSAxLTEuMWguMSA4LjNjLjYgMCAxLjEuNCAxLjEgMSAuMSAwIC4xLjEuMS4xem0yNi40LTEzLjF2MjQuMWwtOS42IDcuM2MtLjIuMi0uNy41LS45Ljl2LTMyYzAtLjYuNC0xLjEgMS0xLjFoLjEgOC4zYy40LS4zIDEuMS4yIDEuMS44em0tMTMuMyA3LjJ2MjUuNWwtMTAuNi0yLjhWODguOGMwLS42LjQtMS4xIDEtMS4xaC4xIDguM2MuNiAwIDEuMS40IDEuMSAxIC4xIDAgLjEgMCAuMS4xek04NC40IDk5LjV2Ny44bC00LjEtMS4xYy0xLjYtLjUtMy40LS43LTUuMy0uN2gtMS4xdi02LjJjMC0uNi40LTEuMSAxLTEuMWguMSA4LjNjLjQuMiAxLjEuNyAxLjEgMS4zem01Mi41LTI2LjN2MjIuOWMtLjcuNS0xLjQuNy0yLjEgMS40bC04LjUgNi4yVjczLjJjMC0uNi40LTEuMSAxLTEuMWguMSA4LjNjLjYgMCAxLjEuNCAxLjEgMSAuMSAwIC4xIDAgLjEuMXoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=");
}

.vsl-badge-icon {
  display: inline-block;
  background-repeat: no-repeat;
  width: 115px;
  height: 115px;
  text-decoration: none;
}
.vsl-badge-icon svg {
  width: 115px;
  height: 115px;
}
.vsl-badge-icona:hover, .vsl-badge-icona:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.dropdown-menu .vsl-badge-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
}

.dropdown-menu .vsl-badge-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
}

.desktop-nav .dropdown-menu .product-category-icon,
.product-category-icon {
  font-size: 1rem;
}
.desktop-nav .dropdown-menu .product-category-icon span,
.product-category-icon span {
  display: inline-block;
}
.desktop-nav .dropdown-menu .product-category-icon a,
.product-category-icon a {
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.desktop-nav .dropdown-menu .product-category-icon a:hover, .desktop-nav .dropdown-menu .product-category-icon a:focus,
.product-category-icon a:hover,
.product-category-icon a:focus {
  padding-left: 0;
}
.desktop-nav .dropdown-menu .product-category-icon a:hover span + span, .desktop-nav .dropdown-menu .product-category-icon a:focus span + span,
.product-category-icon a:hover span + span,
.product-category-icon a:focus span + span {
  transition: 0.5s;
  padding-left: 3px;
}

.product-category-icon + .product-list {
  margin-left: 55px;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.reading-theme .blockquote,
.reading-theme blockquote,
.literacy-theme .blockquote,
.literacy-theme blockquote {
  box-shadow: 10px 10px #00956E;
}
.reading-theme .blockquote--line,
.reading-theme blockquote--line,
.literacy-theme .blockquote--line,
.literacy-theme blockquote--line {
  border-left: 3px solid #00956E;
  box-shadow: none;
}

.writing-theme .blockquote,
.writing-theme blockquote {
  box-shadow: 10px 10px #333399;
}
.writing-theme .blockquote--line,
.writing-theme blockquote--line {
  border-left: 3px solid #333399;
  box-shadow: none;
}

.math-theme .blockquote,
.math-theme blockquote {
  box-shadow: 10px 10px #D52158;
}
.math-theme .blockquote--line,
.math-theme blockquote--line {
  border-left: 3px solid #D52158;
  box-shadow: none;
}

.assessment-theme .blockquote,
.assessment-theme blockquote {
  box-shadow: 10px 10px #0099CC;
}
.assessment-theme .blockquote--line,
.assessment-theme blockquote--line {
  border-left: 3px solid #0099CC;
  box-shadow: none;
}

.cs-theme .blockquote,
.cs-theme blockquote {
  box-shadow: 10px 10px #FF9015;
}
.cs-theme .blockquote--line,
.cs-theme blockquote--line {
  border-left: 3px solid #FF9015;
  box-shadow: none;
}

blockquote,
.blockquote {
  font-size: 16px;
  font-style: italic;
  color: #444;
  padding: 1rem;
  background-color: #eef7ff;
  border-left: 0;
}
blockquote small, blockquote .small,
.blockquote small,
.blockquote .small {
  font-size: 0.75rem;
}
blockquote--line,
.blockquote--line {
  border-left: 3px solid #0099CC;
  box-shadow: none;
}
blockquote--green,
.blockquote--green {
  box-shadow: 10px 10px #76BC21;
}
blockquote--emerald,
.blockquote--emerald {
  box-shadow: 10px 10px #00956E;
}
blockquote--blue,
.blockquote--blue {
  box-shadow: 10px 10px #005587;
}
blockquote--red,
.blockquote--red {
  box-shadow: 10px 10px #D52158;
}
blockquote--purple,
.blockquote--purple {
  box-shadow: 10px 10px #333399;
}
blockquote--lt-blue,
.blockquote--lt-blue {
  box-shadow: 10px 10px #0099CC;
}
blockquote--orange,
.blockquote--orange {
  box-shadow: 10px 10px #FF9015;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
a {
  color: #0099CC;
  transition: 0.5s;
}
a:hover, a:focus {
  color: #005587;
}

.btn {
  position: relative;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 1px auto #0099CC;
  outline-offset: 1px;
  border-radius: 0;
}

.btn:hover,
.btn:focus,
.btn.focus {
  border-color: #0099CC;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-primary,
.btn-blue {
  color: #fff;
  background-color: #005587;
  border-color: #005587;
}
.btn-primary:hover, .btn-primary:focus,
.btn-blue:hover,
.btn-blue:focus {
  background-color: rgb(0, 72.25, 114.75);
}

.btn-primary:hover,
.btn-primary.hover,
.btn-blue:hover,
.btn-blue.hover {
  text-decoration: underline;
}

.btn-primary:active,
.btn-primary.active,
.btn-blue:active,
.btn-blue.active,
.open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 72.25, 114.75);
  border-color: rgb(0, 72.25, 114.75);
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #fff;
  background-color: rgb(0, 72.25, 114.75);
  border-color: rgb(0, 72.25, 114.75);
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: #005587;
  border-color: #005587;
}

.btn-default {
  color: #fff;
  border-color: transparent;
}

.btn-default:hover,
.btn-default:active,
.btn-default:visited {
  background-color: #fff;
  border-color: transparent;
}

.btn-learn-more {
  border: 3px solid #444;
  color: #444;
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.btn-orange,
.btn-orange:visited {
  background-color: #FF9015;
}
.btn-orange:active, .btn-orange.active,
.btn-orange:visited:active,
.btn-orange:visited.active {
  background-color: rgb(253.92, 133.4707692308, 0) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-orange:hover, .btn-orange:focus,
.btn-orange:visited:hover,
.btn-orange:visited:focus {
  background-color: rgb(253.92, 133.4707692308, 0);
}

.btn-red,
.btn-red:visited {
  background-color: #D52158;
}
.btn-red:active, .btn-red.active,
.btn-red:visited:active,
.btn-red:visited.active {
  background-color: rgb(195.96, 30.36, 80.96) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-red:hover, .btn-red:focus,
.btn-red:visited:hover,
.btn-red:visited:focus {
  background-color: rgb(195.96, 30.36, 80.96);
}

.btn-purple,
.btn-purple:visited {
  background-color: #333399;
}
.btn-purple:active, .btn-purple.active,
.btn-purple:visited:active,
.btn-purple:visited.active {
  background-color: rgb(46.92, 46.92, 140.76) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-purple:hover, .btn-purple:focus,
.btn-purple:visited:hover,
.btn-purple:visited:focus {
  background-color: rgb(46.92, 46.92, 140.76);
}

.btn-green,
.btn-green:visited {
  background-color: #67bd4b;
}
.btn-green:active, .btn-green.active,
.btn-green:visited:active,
.btn-green:visited.active {
  background-color: rgb(92.807804878, 177.7170731707, 65.1629268293) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-green:hover, .btn-green:focus,
.btn-green:visited:hover,
.btn-green:visited:focus {
  background-color: rgb(92.807804878, 177.7170731707, 65.1629268293);
}

.btn-emerald,
.btn-emerald:visited {
  background-color: #00956E;
}
.btn-emerald:active, .btn-emerald.active,
.btn-emerald:visited:active,
.btn-emerald:visited.active {
  background-color: rgb(0, 137.08, 101.2) !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-emerald:hover, .btn-emerald:focus,
.btn-emerald:visited:hover,
.btn-emerald:visited:focus {
  background-color: rgb(0, 137.08, 101.2);
}

.btn-lt-blue,
.btn-info,
.btn-lt-blue:visited,
.btn-info:visited {
  background-color: #0099CC;
}
.btn-lt-blue:active, .btn-lt-blue.active,
.btn-info:active,
.btn-info.active,
.btn-lt-blue:visited:active,
.btn-lt-blue:visited.active,
.btn-info:visited:active,
.btn-info:visited.active {
  background-color: #005587 !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-lt-blue:hover, .btn-lt-blue:focus,
.btn-info:hover,
.btn-info:focus,
.btn-lt-blue:visited:hover,
.btn-lt-blue:visited:focus,
.btn-info:visited:hover,
.btn-info:visited:focus {
  background-color: #005587;
}

.btn-primary,
.btn-blue,
.btn-orange,
.btn-red,
.btn-purple,
.btn-green,
.btn-emerald,
.btn-lt-blue,
.btn-info {
  color: #fff;
  border-color: transparent;
}
.btn-primary.active,
.btn-blue.active,
.btn-orange.active,
.btn-red.active,
.btn-purple.active,
.btn-green.active,
.btn-emerald.active,
.btn-lt-blue.active,
.btn-info.active {
  border-color: transparent;
}
.btn-primary:hover, .btn-primary:focus,
.btn-blue:hover,
.btn-blue:focus,
.btn-orange:hover,
.btn-orange:focus,
.btn-red:hover,
.btn-red:focus,
.btn-purple:hover,
.btn-purple:focus,
.btn-green:hover,
.btn-green:focus,
.btn-emerald:hover,
.btn-emerald:focus,
.btn-lt-blue:hover,
.btn-lt-blue:focus,
.btn-info:hover,
.btn-info:focus {
  color: #fff;
  text-decoration: underline;
  border-color: transparent;
}
.btn-primary:hover.disabled, .btn-primary:hover.active,
.btn-blue:hover.disabled,
.btn-blue:hover.active,
.btn-orange:hover.disabled,
.btn-orange:hover.active,
.btn-red:hover.disabled,
.btn-red:hover.active,
.btn-purple:hover.disabled,
.btn-purple:hover.active,
.btn-green:hover.disabled,
.btn-green:hover.active,
.btn-emerald:hover.disabled,
.btn-emerald:hover.active,
.btn-lt-blue:hover.disabled,
.btn-lt-blue:hover.active,
.btn-info:hover.disabled,
.btn-info:hover.active {
  box-shadow: none;
}

li a.btn-primary,
li a.btn-blue,
li a.btn-orange,
li a.btn-red,
li a.btn-purple,
li a.btn-green,
li a.btn-emerald,
li a.btn-lt-blue,
li a.btn-info {
  color: #fff;
}
li a.btn-primary:link, li a.btn-primary:active, li a.btn-primary:visited,
li a.btn-blue:link,
li a.btn-blue:active,
li a.btn-blue:visited,
li a.btn-orange:link,
li a.btn-orange:active,
li a.btn-orange:visited,
li a.btn-red:link,
li a.btn-red:active,
li a.btn-red:visited,
li a.btn-purple:link,
li a.btn-purple:active,
li a.btn-purple:visited,
li a.btn-green:link,
li a.btn-green:active,
li a.btn-green:visited,
li a.btn-emerald:link,
li a.btn-emerald:active,
li a.btn-emerald:visited,
li a.btn-lt-blue:link,
li a.btn-lt-blue:active,
li a.btn-lt-blue:visited,
li a.btn-info:link,
li a.btn-info:active,
li a.btn-info:visited {
  color: #fff;
}

p a.btn.btn-white,
a.btn-white,
.btn-white {
  background-color: #fff;
  color: #005587;
  border-color: transparent;
}
p a.btn.btn-white:active, p a.btn.btn-white.active,
a.btn-white:active,
a.btn-white.active,
.btn-white:active,
.btn-white.active {
  background-color: #eee;
}
p a.btn.btn-white:hover, p a.btn.btn-white:focus,
a.btn-white:hover,
a.btn-white:focus,
.btn-white:hover,
.btn-white:focus {
  color: #005587;
  text-decoration: underline;
  background-color: #eee;
}

p a.btn.btn-outline,
a.btn-outline,
.btn-outline,
.btn.try-it,
.btn.contact-sales {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
p a.btn.btn-outline:active, p a.btn.btn-outline.active,
a.btn-outline:active,
a.btn-outline.active,
.btn-outline:active,
.btn-outline.active,
.btn.try-it:active,
.btn.try-it.active,
.btn.contact-sales:active,
.btn.contact-sales.active {
  border-color: #eee;
}
p a.btn.btn-outline:hover, p a.btn.btn-outline:focus,
a.btn-outline:hover,
a.btn-outline:focus,
.btn-outline:hover,
.btn-outline:focus,
.btn.try-it:hover,
.btn.try-it:focus,
.btn.contact-sales:hover,
.btn.contact-sales:focus {
  color: #005587;
  background-color: #eee;
}

.btn-product-intro,
.btn-product-intro:active,
.btn-product-intro:visited {
  border: 2px solid #005587;
}

.btn-side-by-side,
.btn-side-by-side:active,
.btn-side-by-side:visited {
  border: 2px solid #005587;
  color: #005587;
}

a.btn.btn-side-by-side,
a.btn.btn-side-by-side:active,
a.btn.btn-side-by-side:visited {
  color: #005587;
}

.btn-text,
a.btn-text,
p a.btn-text {
  color: #005587;
  font-weight: bold;
  font-size: 1rem;
  line-height: inherit;
  padding: 0;
  white-space: unset;
  border: 0;
  outline: 0;
  background: none;
  text-align: left;
}
@media (min-width: 0) and (max-width: 48rem) {
  .btn-text,
  a.btn-text,
  p a.btn-text {
    font-size: 0.875rem;
  }
}
.btn-text:active, .btn-text.active, .btn-text.active:focus,
a.btn-text:active,
a.btn-text.active,
a.btn-text.active:focus,
p a.btn-text:active,
p a.btn-text.active,
p a.btn-text.active:focus {
  box-shadow: none;
  outline: 0;
}
.btn-text:hover, .btn-text:focus,
a.btn-text:hover,
a.btn-text:focus,
p a.btn-text:hover,
p a.btn-text:focus {
  color: #005587;
  outline: 0;
  text-decoration: underline;
}
.btn-text.t--center, .btn-text.text-center,
a.btn-text.t--center,
a.btn-text.text-center,
p a.btn-text.t--center,
p a.btn-text.text-center {
  text-align: center;
}

.btn-slanted {
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  padding: 15px 30px;
  transition: all 0.25s;
  border-radius: 0;
}
.btn-slanted span {
  display: block;
  -webkit-transform: skewX(25deg);
          transform: skewX(25deg);
}
@media (min-width: 0) and (max-width: 48rem) {
  .btn-slanted {
    padding: 10px 20px;
  }
}
.btn-slanted:hover span, .btn-slanted:focus span {
  text-decoration: underline;
}

.btn-padded {
  padding: 15px 30px;
}

.btn-caps {
  text-transform: uppercase;
  font-weight: bold;
}
@media (min-width: 0) and (max-width: 48rem) {
  .btn-caps {
    font-size: 0.875rem;
  }
}

.btn-compact {
  padding: 10px 20px;
}

.btn-small,
.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 8px 4px;
  font-size: 0.75rem;
}

.btn.try-it,
.btn.contact-sales {
  padding: 5px 8px;
  font-size: 0.75rem;
  box-shadow: none;
}
.btn.try-it span,
.btn.contact-sales span {
  margin-left: 0;
}

.btn-full {
  display: block;
  width: 100%;
}

.btn-overflow {
  display: block;
  align-self: end;
  text-align: center;
  width: 85%;
  margin: 0 auto -40px;
  font-weight: bold;
  padding: 0.75rem;
}

.btn-wide {
  padding-left: 60px;
  padding-right: 60px;
}

.btn-centered {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 0) and (max-width: 76.5rem) {
  .btn-stack-mobile {
    white-space: normal;
    line-height: 1.5;
  }
  .btn-mobile-full {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.vsl-slide:hover,
.vsl-slide:focus {
  transition: 0.25s;
  box-shadow: inset 20em 0 0 0 #005587;
}

.vsl-fill:hover,
.vsl-fill:focus {
  box-shadow: inset 0 0 0 2em #005587;
}

.vsl-up:hover,
.vsl-up:focus {
  box-shadow: inset 0 -3.5em 0 0 #005587;
}

.vsl-bubble {
  overflow: hidden;
  box-shadow: none;
}
.vsl-bubble:hover {
  color: #fff;
}
.vsl-bubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s, border 0.3s;
}
.vsl-bubble:hover::before {
  opacity: 0;
}
.vsl-bubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 200px;
  background-color: #EEF7FF;
  border-color: transparent;
  border-radius: 50%;
  -webkit-transform: translate(-10px, -70px) scale(0.1);
          transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}
.vsl-bubble:hover::after {
  opacity: 1;
  -webkit-transform-origin: 100px 100px;
          transform-origin: 100px 100px;
  -webkit-transform: scale(1) translate(-10px, -70px);
          transform: scale(1) translate(-10px, -70px);
}

.btn-container-small .btn,
.btn-container-small .btn.btn-wide {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  font-size: 0.75rem;
}

.btn-pill {
  border-radius: 15px;
}
.btn-pill:hover, .btn-pill:focus {
  border-radius: 15px;
}
.btn-pill.btn-small {
  padding: 3px 8px 2px;
  font-size: 0.625rem;
}

.cambium-button {
  border-radius: 10px 0;
  border-width: 1px;
  padding: 10px 15px;
  font-size: 0.75rem;
  border-color: #0099CC;
  background-color: #0099CC;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.reading-theme .callout,
.literacy-theme .callout {
  background: #00956E;
}
.reading-theme .callout a.btn,
.reading-theme .callout p a.btn.btn-white,
.reading-theme .callout a.btn-white,
.reading-theme .callout .btn-white,
.literacy-theme .callout a.btn,
.literacy-theme .callout p a.btn.btn-white,
.literacy-theme .callout a.btn-white,
.literacy-theme .callout .btn-white {
  color: #00956E;
}
.reading-theme .callout a.btn:hover, .reading-theme .callout a.btn:focus,
.reading-theme .callout p a.btn.btn-white:hover,
.reading-theme .callout p a.btn.btn-white:focus,
.reading-theme .callout a.btn-white:hover,
.reading-theme .callout a.btn-white:focus,
.reading-theme .callout .btn-white:hover,
.reading-theme .callout .btn-white:focus,
.literacy-theme .callout a.btn:hover,
.literacy-theme .callout a.btn:focus,
.literacy-theme .callout p a.btn.btn-white:hover,
.literacy-theme .callout p a.btn.btn-white:focus,
.literacy-theme .callout a.btn-white:hover,
.literacy-theme .callout a.btn-white:focus,
.literacy-theme .callout .btn-white:hover,
.literacy-theme .callout .btn-white:focus {
  color: rgb(0, 137.08, 101.2);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 149, 110, 0.15);
}
.reading-theme .callout a.btn:active, .reading-theme .callout a.btn.active,
.reading-theme .callout p a.btn.btn-white:active,
.reading-theme .callout p a.btn.btn-white.active,
.reading-theme .callout a.btn-white:active,
.reading-theme .callout a.btn-white.active,
.reading-theme .callout .btn-white:active,
.reading-theme .callout .btn-white.active,
.literacy-theme .callout a.btn:active,
.literacy-theme .callout a.btn.active,
.literacy-theme .callout p a.btn.btn-white:active,
.literacy-theme .callout p a.btn.btn-white.active,
.literacy-theme .callout a.btn-white:active,
.literacy-theme .callout a.btn-white.active,
.literacy-theme .callout .btn-white:active,
.literacy-theme .callout .btn-white.active {
  background-color: rgb(0, 137.08, 101.2);
}

.writing-theme .callout {
  background: #333399;
}
.writing-theme .callout a.btn,
.writing-theme .callout p a.btn.btn-white,
.writing-theme .callout a.btn-white,
.writing-theme .callout .btn-white {
  color: #333399;
}
.writing-theme .callout a.btn:hover, .writing-theme .callout a.btn:focus,
.writing-theme .callout p a.btn.btn-white:hover,
.writing-theme .callout p a.btn.btn-white:focus,
.writing-theme .callout a.btn-white:hover,
.writing-theme .callout a.btn-white:focus,
.writing-theme .callout .btn-white:hover,
.writing-theme .callout .btn-white:focus {
  color: rgb(46.92, 46.92, 140.76);
  box-shadow: inset 0 -3.25em 0 0 rgba(51, 51, 153, 0.15);
}
.writing-theme .callout a.btn:active, .writing-theme .callout a.btn.active,
.writing-theme .callout p a.btn.btn-white:active,
.writing-theme .callout p a.btn.btn-white.active,
.writing-theme .callout a.btn-white:active,
.writing-theme .callout a.btn-white.active,
.writing-theme .callout .btn-white:active,
.writing-theme .callout .btn-white.active {
  background-color: rgb(46.92, 46.92, 140.76);
}

.math-theme .callout {
  background: #D52158;
}
.math-theme .callout a.btn,
.math-theme .callout p a.btn.btn-white,
.math-theme .callout a.btn-white,
.math-theme .callout .btn-white {
  color: #D52158;
}
.math-theme .callout a.btn:hover, .math-theme .callout a.btn:focus,
.math-theme .callout p a.btn.btn-white:hover,
.math-theme .callout p a.btn.btn-white:focus,
.math-theme .callout a.btn-white:hover,
.math-theme .callout a.btn-white:focus,
.math-theme .callout .btn-white:hover,
.math-theme .callout .btn-white:focus {
  color: rgb(195.96, 30.36, 80.96);
  box-shadow: inset 0 -3.25em 0 0 rgba(213, 33, 88, 0.15);
}
.math-theme .callout a.btn:active, .math-theme .callout a.btn.active,
.math-theme .callout p a.btn.btn-white:active,
.math-theme .callout p a.btn.btn-white.active,
.math-theme .callout a.btn-white:active,
.math-theme .callout a.btn-white.active,
.math-theme .callout .btn-white:active,
.math-theme .callout .btn-white.active {
  background-color: rgb(195.96, 30.36, 80.96);
}

.assessment-theme .callout {
  background: #0099CC;
}
.assessment-theme .callout a.btn,
.assessment-theme .callout p a.btn.btn-white,
.assessment-theme .callout a.btn-white,
.assessment-theme .callout .btn-white {
  color: #0099CC;
}
.assessment-theme .callout a.btn:hover, .assessment-theme .callout a.btn:focus,
.assessment-theme .callout p a.btn.btn-white:hover,
.assessment-theme .callout p a.btn.btn-white:focus,
.assessment-theme .callout a.btn-white:hover,
.assessment-theme .callout a.btn-white:focus,
.assessment-theme .callout .btn-white:hover,
.assessment-theme .callout .btn-white:focus {
  color: rgb(0, 140.76, 187.68);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 153, 204, 0.15);
}
.assessment-theme .callout a.btn:active, .assessment-theme .callout a.btn.active,
.assessment-theme .callout p a.btn.btn-white:active,
.assessment-theme .callout p a.btn.btn-white.active,
.assessment-theme .callout a.btn-white:active,
.assessment-theme .callout a.btn-white.active,
.assessment-theme .callout .btn-white:active,
.assessment-theme .callout .btn-white.active {
  background-color: rgb(0, 140.76, 187.68);
}

.cs-theme .callout {
  background: #FF9015;
}
.cs-theme .callout a.btn,
.cs-theme .callout p a.btn.btn-white,
.cs-theme .callout a.btn-white,
.cs-theme .callout .btn-white {
  color: #FF9015;
}
.cs-theme .callout a.btn:hover, .cs-theme .callout a.btn:focus,
.cs-theme .callout p a.btn.btn-white:hover,
.cs-theme .callout p a.btn.btn-white:focus,
.cs-theme .callout a.btn-white:hover,
.cs-theme .callout a.btn-white:focus,
.cs-theme .callout .btn-white:hover,
.cs-theme .callout .btn-white:focus {
  color: rgb(253.92, 133.4707692308, 0);
  box-shadow: inset 0 -3.25em 0 0 rgba(255, 144, 21, 0.15);
}
.cs-theme .callout a.btn:active, .cs-theme .callout a.btn.active,
.cs-theme .callout p a.btn.btn-white:active,
.cs-theme .callout p a.btn.btn-white.active,
.cs-theme .callout a.btn-white:active,
.cs-theme .callout a.btn-white.active,
.cs-theme .callout .btn-white:active,
.cs-theme .callout .btn-white.active {
  background-color: rgb(253.92, 133.4707692308, 0);
}

.default-theme .callout {
  background-color: #005587;
}

.callout {
  position: relative;
  width: 100%;
  background-color: #005587;
}
.callout.row {
  margin-left: 0;
  margin-right: 0;
}
.callout .mt-25 {
  margin-top: 0;
}
.callout .col-sm-9 {
  padding: 2rem 1rem;
}
.callout .col-sm-3 {
  padding: 0 1rem 2rem;
}
@media all and (min-width: 48rem) {
  .callout .col-sm-9, .callout .col-sm-3 {
    padding: 2rem 1rem;
  }
}
.callout h1, .callout h2, .callout h3, .callout h4, .callout h5, .callout h6,
.callout .h1, .callout .h2, .callout .h3, .callout .h4, .callout .h5, .callout .h6 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.callout h1 + p, .callout h2 + p, .callout h3 + p, .callout h4 + p, .callout h5 + p, .callout h6 + p,
.callout .h1 + p, .callout .h2 + p, .callout .h3 + p, .callout .h4 + p, .callout .h5 + p, .callout .h6 + p {
  margin-top: 1rem;
}
.callout p {
  color: #fff;
  margin-bottom: 0;
}
.callout a.btn,
.callout p a.btn.btn-white,
.callout a.btn-white,
.callout .btn-white {
  background-color: #fff;
  color: #005587;
  border-color: transparent;
  box-shadow: none;
}
.callout a.btn:hover, .callout a.btn:focus,
.callout p a.btn.btn-white:hover,
.callout p a.btn.btn-white:focus,
.callout a.btn-white:hover,
.callout a.btn-white:focus,
.callout .btn-white:hover,
.callout .btn-white:focus {
  color: rgb(0, 72.25, 114.75);
  text-decoration: underline;
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 85, 135, 0.15);
}
.callout a.btn:active, .callout a.btn.active,
.callout p a.btn.btn-white:active,
.callout p a.btn.btn-white.active,
.callout a.btn-white:active,
.callout a.btn-white.active,
.callout .btn-white:active,
.callout .btn-white.active {
  background-color: rgb(0, 72.25, 114.75);
}
.callout a.btn + .btn,
.callout p a.btn.btn-white + .btn,
.callout a.btn-white + .btn,
.callout .btn-white + .btn {
  margin-top: 1rem;
}
.callout--green {
  background: #67bd4b;
}
.callout--green .callout {
  background: #67bd4b;
}
.callout--green a.btn {
  color: #67bd4b;
}
.callout--green a.btn:hover, .callout--green a.btn:focus {
  color: rgb(92.807804878, 177.7170731707, 65.1629268293);
  box-shadow: inset 0 -3.25em 0 0 rgba(103, 189, 75, 0.15);
}
.callout--emerald, .callout--reading, .callout--literacy {
  background: #00956E;
}
.callout--emerald .callout, .callout--reading .callout, .callout--literacy .callout {
  background: #00956E;
}
.callout--emerald a.btn, .callout--reading a.btn, .callout--literacy a.btn {
  color: #00956E;
}
.callout--emerald a.btn:hover, .callout--emerald a.btn:focus, .callout--reading a.btn:hover, .callout--reading a.btn:focus, .callout--literacy a.btn:hover, .callout--literacy a.btn:focus {
  color: rgb(0, 137.08, 101.2);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 149, 110, 0.15);
}
.callout--red, .callout--math {
  background: #D52158;
}
.callout--red .callout, .callout--math .callout {
  background: #D52158;
}
.callout--red a.btn, .callout--math a.btn {
  color: #D52158;
}
.callout--red a.btn:hover, .callout--red a.btn:focus, .callout--math a.btn:hover, .callout--math a.btn:focus {
  color: rgb(195.96, 30.36, 80.96);
  box-shadow: inset 0 -3.25em 0 0 rgba(213, 33, 88, 0.15);
}
.callout--purple, .callout--writing {
  background: #333399;
}
.callout--purple .callout, .callout--writing .callout {
  background: #333399;
}
.callout--purple a.btn, .callout--writing a.btn {
  color: #333399;
}
.callout--purple a.btn:hover, .callout--purple a.btn:focus, .callout--writing a.btn:hover, .callout--writing a.btn:focus {
  color: rgb(46.92, 46.92, 140.76);
  box-shadow: inset 0 -3.25em 0 0 rgba(51, 51, 153, 0.15);
}
.callout--lt-blue, .callout--assessment {
  background: #0099CC;
}
.callout--lt-blue .callout, .callout--assessment .callout {
  background: #0099CC;
}
.callout--lt-blue a.btn, .callout--assessment a.btn {
  color: #0099CC;
}
.callout--lt-blue a.btn:hover, .callout--lt-blue a.btn:focus, .callout--assessment a.btn:hover, .callout--assessment a.btn:focus {
  color: rgb(0, 140.76, 187.68);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 153, 204, 0.15);
}
.callout--orange, .callout--cs {
  background: #FF9015;
}
.callout--orange .callout, .callout--cs .callout {
  background: #FF9015;
}
.callout--orange a.btn, .callout--cs a.btn {
  color: #FF9015;
}
.callout--orange a.btn:hover, .callout--orange a.btn:focus, .callout--cs a.btn:hover, .callout--cs a.btn:focus {
  color: rgb(253.92, 133.4707692308, 0);
  box-shadow: inset 0 -3.25em 0 0 rgba(255, 144, 21, 0.15);
}
.callout--blue {
  background: #005587;
  background-color: #005587;
}
.callout--blue .callout {
  background: #005587;
  background-color: #005587;
}
.callout--blue a.btn {
  color: #005587;
}
.callout--blue a.btn:hover, .callout--blue a.btn:focus {
  color: rgb(0, 72.25, 114.75);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 85, 135, 0.15);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/**
 * Bootstrap 5.3 Overrides
 */
@media (min-width: 0) and (max-width: 62rem) {
  .card-section.mb-40 {
    margin-bottom: 100px !important;
  }
}

.card {
  border-width: 0;
  border-radius: 1rem;
}
.card .card-img {
  border-radius: 0;
  position: relative;
  min-height: 300px;
  min-width: 100%;
}
.card .card-img img {
  position: absolute;
  top: -84px;
  bottom: 0;
}
@media (min-width: 0) and (max-width: 1400px) {
  .card .card-img {
    min-height: 250px;
  }
  .card .card-img img {
    top: -67px;
  }
}
@media (min-width: 0) and (max-width: 1200px) {
  .card .card-img {
    min-height: 220px;
  }
  .card .card-img img {
    top: -76px;
  }
}
@media (min-width: 0) and (max-width: 62rem) {
  .card .card-img {
    min-height: 200px;
    text-align: center;
  }
  .card .card-img img {
    max-width: 300px;
    margin: 0 auto;
    top: -100px;
    left: 0;
    right: 0;
  }
}
@media (min-width: 0) and (max-width: 1200px) {
  .card .card-header.fs-4 {
    font-size: 1rem !important;
  }
}
.card .card-img-top {
  border-top-left-radius: calc(1rem - 3px);
  border-top-right-radius: calc(1rem - 3px);
}
.card .card-img-bottom {
  border-bottom-left-radius: calc(1rem - 3px);
  border-bottom-right-radius: calc(1rem - 3px);
}
.card .card-img:first-child,
.card .card-header:first-child {
  border-top-left-radius: calc(1rem - 3px);
  border-top-right-radius: calc(1rem - 3px);
}
.card .card-img:last-child,
.card .card-footer:last-child {
  border-bottom-left-radius: calc(1rem - 3px);
  border-bottom-right-radius: calc(1rem - 3px);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.color-block a.btn {
  color: #005587;
}
.color-block .color-bg-darkblue,
.color-block .color-bg {
  background-color: #005587;
  padding: 40px;
}
.color-block .color-bg-darkblue p,
.color-block .color-bg p {
  max-width: 600px;
}
.color-block .color-bg-darkblue h2, .color-block .color-bg-darkblue .h2,
.color-block .color-bg h2,
.color-block .color-bg .h2 {
  margin-bottom: 20px;
}
.color-block .color-bg-darkblue h2, .color-block .color-bg-darkblue .h2,
.color-block .color-bg-darkblue p,
.color-block .color-bg h2,
.color-block .color-bg .h2,
.color-block .color-bg p {
  color: #fff;
}
.color-block .color-bg-darkblue .btn-color-block,
.color-block .color-bg .btn-color-block {
  background-color: #fff;
  border: transparent;
  color: #005587;
}

.reading-theme .color-block .color-bg-darkblue,
.reading-theme .color-block .color-bg,
.literacy-theme .color-block .color-bg-darkblue,
.literacy-theme .color-block .color-bg {
  background-color: #00956E;
}
.reading-theme .color-block .color-bg-darkblue a.btn,
.reading-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.reading-theme .color-block .color-bg-darkblue a.btn-white,
.reading-theme .color-block .color-bg-darkblue .btn-white,
.reading-theme .color-block .color-bg a.btn,
.reading-theme .color-block .color-bg p a.btn.btn-white,
.reading-theme .color-block .color-bg a.btn-white,
.reading-theme .color-block .color-bg .btn-white,
.literacy-theme .color-block .color-bg-darkblue a.btn,
.literacy-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.literacy-theme .color-block .color-bg-darkblue a.btn-white,
.literacy-theme .color-block .color-bg-darkblue .btn-white,
.literacy-theme .color-block .color-bg a.btn,
.literacy-theme .color-block .color-bg p a.btn.btn-white,
.literacy-theme .color-block .color-bg a.btn-white,
.literacy-theme .color-block .color-bg .btn-white {
  color: #00956E;
}
.reading-theme .color-block .color-bg-darkblue a.btn:hover, .reading-theme .color-block .color-bg-darkblue a.btn:focus,
.reading-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.reading-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.reading-theme .color-block .color-bg-darkblue a.btn-white:hover,
.reading-theme .color-block .color-bg-darkblue a.btn-white:focus,
.reading-theme .color-block .color-bg-darkblue .btn-white:hover,
.reading-theme .color-block .color-bg-darkblue .btn-white:focus,
.reading-theme .color-block .color-bg a.btn:hover,
.reading-theme .color-block .color-bg a.btn:focus,
.reading-theme .color-block .color-bg p a.btn.btn-white:hover,
.reading-theme .color-block .color-bg p a.btn.btn-white:focus,
.reading-theme .color-block .color-bg a.btn-white:hover,
.reading-theme .color-block .color-bg a.btn-white:focus,
.reading-theme .color-block .color-bg .btn-white:hover,
.reading-theme .color-block .color-bg .btn-white:focus,
.literacy-theme .color-block .color-bg-darkblue a.btn:hover,
.literacy-theme .color-block .color-bg-darkblue a.btn:focus,
.literacy-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.literacy-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.literacy-theme .color-block .color-bg-darkblue a.btn-white:hover,
.literacy-theme .color-block .color-bg-darkblue a.btn-white:focus,
.literacy-theme .color-block .color-bg-darkblue .btn-white:hover,
.literacy-theme .color-block .color-bg-darkblue .btn-white:focus,
.literacy-theme .color-block .color-bg a.btn:hover,
.literacy-theme .color-block .color-bg a.btn:focus,
.literacy-theme .color-block .color-bg p a.btn.btn-white:hover,
.literacy-theme .color-block .color-bg p a.btn.btn-white:focus,
.literacy-theme .color-block .color-bg a.btn-white:hover,
.literacy-theme .color-block .color-bg a.btn-white:focus,
.literacy-theme .color-block .color-bg .btn-white:hover,
.literacy-theme .color-block .color-bg .btn-white:focus {
  color: rgb(0, 137.08, 101.2);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 149, 110, 0.15);
}
.reading-theme .color-block .color-bg-darkblue a.btn:active, .reading-theme .color-block .color-bg-darkblue a.btn.active,
.reading-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.reading-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.reading-theme .color-block .color-bg-darkblue a.btn-white:active,
.reading-theme .color-block .color-bg-darkblue a.btn-white.active,
.reading-theme .color-block .color-bg-darkblue .btn-white:active,
.reading-theme .color-block .color-bg-darkblue .btn-white.active,
.reading-theme .color-block .color-bg a.btn:active,
.reading-theme .color-block .color-bg a.btn.active,
.reading-theme .color-block .color-bg p a.btn.btn-white:active,
.reading-theme .color-block .color-bg p a.btn.btn-white.active,
.reading-theme .color-block .color-bg a.btn-white:active,
.reading-theme .color-block .color-bg a.btn-white.active,
.reading-theme .color-block .color-bg .btn-white:active,
.reading-theme .color-block .color-bg .btn-white.active,
.literacy-theme .color-block .color-bg-darkblue a.btn:active,
.literacy-theme .color-block .color-bg-darkblue a.btn.active,
.literacy-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.literacy-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.literacy-theme .color-block .color-bg-darkblue a.btn-white:active,
.literacy-theme .color-block .color-bg-darkblue a.btn-white.active,
.literacy-theme .color-block .color-bg-darkblue .btn-white:active,
.literacy-theme .color-block .color-bg-darkblue .btn-white.active,
.literacy-theme .color-block .color-bg a.btn:active,
.literacy-theme .color-block .color-bg a.btn.active,
.literacy-theme .color-block .color-bg p a.btn.btn-white:active,
.literacy-theme .color-block .color-bg p a.btn.btn-white.active,
.literacy-theme .color-block .color-bg a.btn-white:active,
.literacy-theme .color-block .color-bg a.btn-white.active,
.literacy-theme .color-block .color-bg .btn-white:active,
.literacy-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(0, 137.08, 101.2);
}

.writing-theme .color-block .color-bg-darkblue,
.writing-theme .color-block .color-bg {
  background-color: #333399;
}
.writing-theme .color-block .color-bg-darkblue a.btn,
.writing-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.writing-theme .color-block .color-bg-darkblue a.btn-white,
.writing-theme .color-block .color-bg-darkblue .btn-white,
.writing-theme .color-block .color-bg a.btn,
.writing-theme .color-block .color-bg p a.btn.btn-white,
.writing-theme .color-block .color-bg a.btn-white,
.writing-theme .color-block .color-bg .btn-white {
  color: #333399;
}
.writing-theme .color-block .color-bg-darkblue a.btn:hover, .writing-theme .color-block .color-bg-darkblue a.btn:focus,
.writing-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.writing-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.writing-theme .color-block .color-bg-darkblue a.btn-white:hover,
.writing-theme .color-block .color-bg-darkblue a.btn-white:focus,
.writing-theme .color-block .color-bg-darkblue .btn-white:hover,
.writing-theme .color-block .color-bg-darkblue .btn-white:focus,
.writing-theme .color-block .color-bg a.btn:hover,
.writing-theme .color-block .color-bg a.btn:focus,
.writing-theme .color-block .color-bg p a.btn.btn-white:hover,
.writing-theme .color-block .color-bg p a.btn.btn-white:focus,
.writing-theme .color-block .color-bg a.btn-white:hover,
.writing-theme .color-block .color-bg a.btn-white:focus,
.writing-theme .color-block .color-bg .btn-white:hover,
.writing-theme .color-block .color-bg .btn-white:focus {
  color: rgb(46.92, 46.92, 140.76);
  box-shadow: inset 0 -3.25em 0 0 rgba(51, 51, 153, 0.15);
}
.writing-theme .color-block .color-bg-darkblue a.btn:active, .writing-theme .color-block .color-bg-darkblue a.btn.active,
.writing-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.writing-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.writing-theme .color-block .color-bg-darkblue a.btn-white:active,
.writing-theme .color-block .color-bg-darkblue a.btn-white.active,
.writing-theme .color-block .color-bg-darkblue .btn-white:active,
.writing-theme .color-block .color-bg-darkblue .btn-white.active,
.writing-theme .color-block .color-bg a.btn:active,
.writing-theme .color-block .color-bg a.btn.active,
.writing-theme .color-block .color-bg p a.btn.btn-white:active,
.writing-theme .color-block .color-bg p a.btn.btn-white.active,
.writing-theme .color-block .color-bg a.btn-white:active,
.writing-theme .color-block .color-bg a.btn-white.active,
.writing-theme .color-block .color-bg .btn-white:active,
.writing-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(46.92, 46.92, 140.76);
}

.math-theme .color-block .color-bg-darkblue,
.math-theme .color-block .color-bg {
  background-color: #D52158;
}
.math-theme .color-block .color-bg-darkblue a.btn,
.math-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.math-theme .color-block .color-bg-darkblue a.btn-white,
.math-theme .color-block .color-bg-darkblue .btn-white,
.math-theme .color-block .color-bg a.btn,
.math-theme .color-block .color-bg p a.btn.btn-white,
.math-theme .color-block .color-bg a.btn-white,
.math-theme .color-block .color-bg .btn-white {
  color: #D52158;
}
.math-theme .color-block .color-bg-darkblue a.btn:hover, .math-theme .color-block .color-bg-darkblue a.btn:focus,
.math-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.math-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.math-theme .color-block .color-bg-darkblue a.btn-white:hover,
.math-theme .color-block .color-bg-darkblue a.btn-white:focus,
.math-theme .color-block .color-bg-darkblue .btn-white:hover,
.math-theme .color-block .color-bg-darkblue .btn-white:focus,
.math-theme .color-block .color-bg a.btn:hover,
.math-theme .color-block .color-bg a.btn:focus,
.math-theme .color-block .color-bg p a.btn.btn-white:hover,
.math-theme .color-block .color-bg p a.btn.btn-white:focus,
.math-theme .color-block .color-bg a.btn-white:hover,
.math-theme .color-block .color-bg a.btn-white:focus,
.math-theme .color-block .color-bg .btn-white:hover,
.math-theme .color-block .color-bg .btn-white:focus {
  color: rgb(195.96, 30.36, 80.96);
  box-shadow: inset 0 -3.25em 0 0 rgba(213, 33, 88, 0.15);
}
.math-theme .color-block .color-bg-darkblue a.btn:active, .math-theme .color-block .color-bg-darkblue a.btn.active,
.math-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.math-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.math-theme .color-block .color-bg-darkblue a.btn-white:active,
.math-theme .color-block .color-bg-darkblue a.btn-white.active,
.math-theme .color-block .color-bg-darkblue .btn-white:active,
.math-theme .color-block .color-bg-darkblue .btn-white.active,
.math-theme .color-block .color-bg a.btn:active,
.math-theme .color-block .color-bg a.btn.active,
.math-theme .color-block .color-bg p a.btn.btn-white:active,
.math-theme .color-block .color-bg p a.btn.btn-white.active,
.math-theme .color-block .color-bg a.btn-white:active,
.math-theme .color-block .color-bg a.btn-white.active,
.math-theme .color-block .color-bg .btn-white:active,
.math-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(195.96, 30.36, 80.96);
}

.assessment-theme .color-block .color-bg-darkblue,
.assessment-theme .color-block .color-bg {
  background-color: #0099CC;
}
.assessment-theme .color-block .color-bg-darkblue a.btn,
.assessment-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.assessment-theme .color-block .color-bg-darkblue a.btn-white,
.assessment-theme .color-block .color-bg-darkblue .btn-white,
.assessment-theme .color-block .color-bg a.btn,
.assessment-theme .color-block .color-bg p a.btn.btn-white,
.assessment-theme .color-block .color-bg a.btn-white,
.assessment-theme .color-block .color-bg .btn-white {
  color: #0099CC;
}
.assessment-theme .color-block .color-bg-darkblue a.btn:hover, .assessment-theme .color-block .color-bg-darkblue a.btn:focus,
.assessment-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.assessment-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.assessment-theme .color-block .color-bg-darkblue a.btn-white:hover,
.assessment-theme .color-block .color-bg-darkblue a.btn-white:focus,
.assessment-theme .color-block .color-bg-darkblue .btn-white:hover,
.assessment-theme .color-block .color-bg-darkblue .btn-white:focus,
.assessment-theme .color-block .color-bg a.btn:hover,
.assessment-theme .color-block .color-bg a.btn:focus,
.assessment-theme .color-block .color-bg p a.btn.btn-white:hover,
.assessment-theme .color-block .color-bg p a.btn.btn-white:focus,
.assessment-theme .color-block .color-bg a.btn-white:hover,
.assessment-theme .color-block .color-bg a.btn-white:focus,
.assessment-theme .color-block .color-bg .btn-white:hover,
.assessment-theme .color-block .color-bg .btn-white:focus {
  color: rgb(0, 140.76, 187.68);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 153, 204, 0.15);
}
.assessment-theme .color-block .color-bg-darkblue a.btn:active, .assessment-theme .color-block .color-bg-darkblue a.btn.active,
.assessment-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.assessment-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.assessment-theme .color-block .color-bg-darkblue a.btn-white:active,
.assessment-theme .color-block .color-bg-darkblue a.btn-white.active,
.assessment-theme .color-block .color-bg-darkblue .btn-white:active,
.assessment-theme .color-block .color-bg-darkblue .btn-white.active,
.assessment-theme .color-block .color-bg a.btn:active,
.assessment-theme .color-block .color-bg a.btn.active,
.assessment-theme .color-block .color-bg p a.btn.btn-white:active,
.assessment-theme .color-block .color-bg p a.btn.btn-white.active,
.assessment-theme .color-block .color-bg a.btn-white:active,
.assessment-theme .color-block .color-bg a.btn-white.active,
.assessment-theme .color-block .color-bg .btn-white:active,
.assessment-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(0, 140.76, 187.68);
}

.cs-theme .color-block .color-bg-darkblue,
.cs-theme .color-block .color-bg {
  background-color: #FF9015;
}
.cs-theme .color-block .color-bg-darkblue a.btn,
.cs-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.cs-theme .color-block .color-bg-darkblue a.btn-white,
.cs-theme .color-block .color-bg-darkblue .btn-white,
.cs-theme .color-block .color-bg a.btn,
.cs-theme .color-block .color-bg p a.btn.btn-white,
.cs-theme .color-block .color-bg a.btn-white,
.cs-theme .color-block .color-bg .btn-white {
  color: #FF9015;
}
.cs-theme .color-block .color-bg-darkblue a.btn:hover, .cs-theme .color-block .color-bg-darkblue a.btn:focus,
.cs-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.cs-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.cs-theme .color-block .color-bg-darkblue a.btn-white:hover,
.cs-theme .color-block .color-bg-darkblue a.btn-white:focus,
.cs-theme .color-block .color-bg-darkblue .btn-white:hover,
.cs-theme .color-block .color-bg-darkblue .btn-white:focus,
.cs-theme .color-block .color-bg a.btn:hover,
.cs-theme .color-block .color-bg a.btn:focus,
.cs-theme .color-block .color-bg p a.btn.btn-white:hover,
.cs-theme .color-block .color-bg p a.btn.btn-white:focus,
.cs-theme .color-block .color-bg a.btn-white:hover,
.cs-theme .color-block .color-bg a.btn-white:focus,
.cs-theme .color-block .color-bg .btn-white:hover,
.cs-theme .color-block .color-bg .btn-white:focus {
  color: rgb(253.92, 133.4707692308, 0);
  box-shadow: inset 0 -3.25em 0 0 rgba(255, 144, 21, 0.15);
}
.cs-theme .color-block .color-bg-darkblue a.btn:active, .cs-theme .color-block .color-bg-darkblue a.btn.active,
.cs-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.cs-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.cs-theme .color-block .color-bg-darkblue a.btn-white:active,
.cs-theme .color-block .color-bg-darkblue a.btn-white.active,
.cs-theme .color-block .color-bg-darkblue .btn-white:active,
.cs-theme .color-block .color-bg-darkblue .btn-white.active,
.cs-theme .color-block .color-bg a.btn:active,
.cs-theme .color-block .color-bg a.btn.active,
.cs-theme .color-block .color-bg p a.btn.btn-white:active,
.cs-theme .color-block .color-bg p a.btn.btn-white.active,
.cs-theme .color-block .color-bg a.btn-white:active,
.cs-theme .color-block .color-bg a.btn-white.active,
.cs-theme .color-block .color-bg .btn-white:active,
.cs-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(253.92, 133.4707692308, 0);
}

.neutral-theme .color-block .color-bg-darkblue,
.neutral-theme .color-block .color-bg {
  background-color: #666;
}
.neutral-theme .color-block .color-bg-darkblue a.btn,
.neutral-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.neutral-theme .color-block .color-bg-darkblue a.btn-white,
.neutral-theme .color-block .color-bg-darkblue .btn-white,
.neutral-theme .color-block .color-bg a.btn,
.neutral-theme .color-block .color-bg p a.btn.btn-white,
.neutral-theme .color-block .color-bg a.btn-white,
.neutral-theme .color-block .color-bg .btn-white {
  color: #666;
}
.neutral-theme .color-block .color-bg-darkblue a.btn:hover, .neutral-theme .color-block .color-bg-darkblue a.btn:focus,
.neutral-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.neutral-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.neutral-theme .color-block .color-bg-darkblue a.btn-white:hover,
.neutral-theme .color-block .color-bg-darkblue a.btn-white:focus,
.neutral-theme .color-block .color-bg-darkblue .btn-white:hover,
.neutral-theme .color-block .color-bg-darkblue .btn-white:focus,
.neutral-theme .color-block .color-bg a.btn:hover,
.neutral-theme .color-block .color-bg a.btn:focus,
.neutral-theme .color-block .color-bg p a.btn.btn-white:hover,
.neutral-theme .color-block .color-bg p a.btn.btn-white:focus,
.neutral-theme .color-block .color-bg a.btn-white:hover,
.neutral-theme .color-block .color-bg a.btn-white:focus,
.neutral-theme .color-block .color-bg .btn-white:hover,
.neutral-theme .color-block .color-bg .btn-white:focus {
  color: #131313;
  box-shadow: inset 0 -3.25em 0 0 rgba(102, 102, 102, 0.15);
}
.neutral-theme .color-block .color-bg-darkblue a.btn:active, .neutral-theme .color-block .color-bg-darkblue a.btn.active,
.neutral-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.neutral-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.neutral-theme .color-block .color-bg-darkblue a.btn-white:active,
.neutral-theme .color-block .color-bg-darkblue a.btn-white.active,
.neutral-theme .color-block .color-bg-darkblue .btn-white:active,
.neutral-theme .color-block .color-bg-darkblue .btn-white.active,
.neutral-theme .color-block .color-bg a.btn:active,
.neutral-theme .color-block .color-bg a.btn.active,
.neutral-theme .color-block .color-bg p a.btn.btn-white:active,
.neutral-theme .color-block .color-bg p a.btn.btn-white.active,
.neutral-theme .color-block .color-bg a.btn-white:active,
.neutral-theme .color-block .color-bg a.btn-white.active,
.neutral-theme .color-block .color-bg .btn-white:active,
.neutral-theme .color-block .color-bg .btn-white.active {
  background-color: #131313;
}

.default-theme .color-block .color-bg-darkblue,
.default-theme .color-block .color-bg {
  background-color: #005587;
}
.default-theme .color-block .color-bg-darkblue a.btn,
.default-theme .color-block .color-bg-darkblue p a.btn.btn-white,
.default-theme .color-block .color-bg-darkblue a.btn-white,
.default-theme .color-block .color-bg-darkblue .btn-white,
.default-theme .color-block .color-bg a.btn,
.default-theme .color-block .color-bg p a.btn.btn-white,
.default-theme .color-block .color-bg a.btn-white,
.default-theme .color-block .color-bg .btn-white {
  color: #005587;
}
.default-theme .color-block .color-bg-darkblue a.btn:hover, .default-theme .color-block .color-bg-darkblue a.btn:focus,
.default-theme .color-block .color-bg-darkblue p a.btn.btn-white:hover,
.default-theme .color-block .color-bg-darkblue p a.btn.btn-white:focus,
.default-theme .color-block .color-bg-darkblue a.btn-white:hover,
.default-theme .color-block .color-bg-darkblue a.btn-white:focus,
.default-theme .color-block .color-bg-darkblue .btn-white:hover,
.default-theme .color-block .color-bg-darkblue .btn-white:focus,
.default-theme .color-block .color-bg a.btn:hover,
.default-theme .color-block .color-bg a.btn:focus,
.default-theme .color-block .color-bg p a.btn.btn-white:hover,
.default-theme .color-block .color-bg p a.btn.btn-white:focus,
.default-theme .color-block .color-bg a.btn-white:hover,
.default-theme .color-block .color-bg a.btn-white:focus,
.default-theme .color-block .color-bg .btn-white:hover,
.default-theme .color-block .color-bg .btn-white:focus {
  color: rgb(0, 72.25, 114.75);
  box-shadow: inset 0 -3.25em 0 0 rgba(0, 85, 135, 0.15);
}
.default-theme .color-block .color-bg-darkblue a.btn:active, .default-theme .color-block .color-bg-darkblue a.btn.active,
.default-theme .color-block .color-bg-darkblue p a.btn.btn-white:active,
.default-theme .color-block .color-bg-darkblue p a.btn.btn-white.active,
.default-theme .color-block .color-bg-darkblue a.btn-white:active,
.default-theme .color-block .color-bg-darkblue a.btn-white.active,
.default-theme .color-block .color-bg-darkblue .btn-white:active,
.default-theme .color-block .color-bg-darkblue .btn-white.active,
.default-theme .color-block .color-bg a.btn:active,
.default-theme .color-block .color-bg a.btn.active,
.default-theme .color-block .color-bg p a.btn.btn-white:active,
.default-theme .color-block .color-bg p a.btn.btn-white.active,
.default-theme .color-block .color-bg a.btn-white:active,
.default-theme .color-block .color-bg a.btn-white.active,
.default-theme .color-block .color-bg .btn-white:active,
.default-theme .color-block .color-bg .btn-white.active {
  background-color: rgb(0, 72.25, 114.75);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.view-filters .form-item,
.views-exposed-form .form-item {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 0.4rem;
  vertical-align: bottom;
  float: none;
}
.view-filters .form-label,
.views-exposed-form .form-label {
  margin: 0 0 5px;
  font-weight: bolder;
}
.view-filters .form-actions,
.views-exposed-form .form-actions {
  display: inline-block;
  margin-left: 0.4rem;
}
.view-filters .form-actions input,
.views-exposed-form .form-actions input {
  margin-left: 0.4rem;
}
.view-filters .form-actions input:first-child,
.views-exposed-form .form-actions input:first-child {
  margin-left: 0;
}
@media (min-width: 0) and (max-width: 47.99rem) {
  .view-filters .form-item,
  .views-exposed-form .form-item {
    display: block;
    margin-top: 0.75rem;
    margin-left: 0;
  }
  .view-filters .form-actions,
  .views-exposed-form .form-actions {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    margin-left: 0;
  }
  .view-filters .form-actions input,
  .views-exposed-form .form-actions input {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.materials-form {
  background-color: #1fc0de;
  box-shadow: none;
  padding: 1rem 0;
}
.materials-form .form-title {
  font-size: 1.5714rem;
  font-weight: 700;
  color: #444;
  display: block;
  padding: 0;
}
.materials-form .form-title small, .materials-form .form-title .small {
  display: block;
  font-size: 1.0714rem;
  font-style: italic;
  padding: 5px 0;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.vsl-gradient {
  color: #fff;
}
.vsl-gradient h1, .vsl-gradient .h1, .vsl-gradient h2, .vsl-gradient .h2, .vsl-gradient h3, .vsl-gradient .h3, .vsl-gradient h4, .vsl-gradient .h4, .vsl-gradient h5, .vsl-gradient .h5, .vsl-gradient h6, .vsl-gradient .h6 {
  color: #fff;
}
.vsl-gradient-blue-dk-lt {
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #00aee3 75%);
  color: #fff;
}
.vsl-gradient-blue-dk-lt-sm {
  background-color: #0c508f;
  background: linear-gradient(65deg, #0c508f 0%, #00aee3 50%);
  color: #fff;
}
.vsl-gradient-blue-dk-lt-trip {
  background-color: #0c508f;
  background: linear-gradient(125deg, #0c508f 0%, #00aee3 45%, #0099CC 95%);
  color: #fff;
}
.vsl-gradient-blue-lt-dk {
  background-color: #00aee3;
  background: linear-gradient(75deg, #00aee3 0%, #0c508f 75%);
  color: #fff;
}
.vsl-gradient-blue-lt-dk-sm {
  background-color: #00aee3;
  background: linear-gradient(65deg, #00aee3 0%, #0c508f 50%);
  color: #fff;
}
.vsl-gradient-blue-lt-dk-trip {
  background-color: #00aee3;
  background: linear-gradient(125deg, #00aee3 0%, #0c508f 45%, #005587 95%);
  color: #fff;
}
.vsl-gradient-blue-lt-dk-trip-subtle {
  background-color: #00aee3;
  background: linear-gradient(125deg, rgb(0, 160.08, 208.84) 0%, #0c508f 35%, #005587 95%);
  color: #fff;
}
.vsl-gradient-blue-green {
  background-color: #0c508f;
  background: linear-gradient(75deg, #0c508f 0%, #67bd4b 75%);
  color: #fff;
}
.vsl-gradient-blue-green-sm {
  background-color: #0c508f;
  background: linear-gradient(65deg, #0c508f 0%, #67bd4b 50%);
  color: #fff;
}
.vsl-gradient-blue-green-trip {
  background-color: #00aee3;
  background: linear-gradient(125deg, #0c508f 0%, #67bd4b 45%, #76BC21 95%);
  color: #fff;
}
.vsl-gradient-blueberry-blue {
  background-color: #333399;
  background: linear-gradient(75deg, #333399 0%, #0c508f 75%);
  color: #fff;
}
.vsl-gradient-blueberry-pomegranate {
  background-color: #333399;
  background: linear-gradient(75deg, #333399 0%, #D52158 75%);
  color: #fff;
}
.vsl-gradient-pomegranate-blueberry {
  background-color: #D52158;
  background: linear-gradient(75deg, #D52158 0%, #333399 75%);
  color: #fff;
}
.vsl-gradient-green-blue {
  background-color: #67bd4b;
  background: linear-gradient(75deg, #67bd4b 0%, #0c508f 75%);
  color: #fff;
}
.vsl-gradient-green-blue-sm {
  background-color: #67bd4b;
  background: linear-gradient(65deg, #67bd4b 0%, #0c508f 50%);
  color: #fff;
}
.vsl-gradient-green-blue-trip {
  background-color: #67bd4b;
  background: linear-gradient(125deg, #67bd4b 0%, #0c508f 45%, #005587 95%);
  color: #fff;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
img {
  height: auto !important;
  max-width: 100%;
  border: none;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

.img-circle {
  border-radius: 50%;
}

.img-rounded {
  border-radius: 8px;
}

.img-rounded-lg {
  border-radius: 30px;
}

.img-rounded-lg-container img {
  border-radius: 30px;
}

.img-hover,
.img--hover {
  transition: 0.5s;
}
.img-hover:hover, .img-hover:focus,
.img--hover:hover,
.img--hover:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.img-right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 0) and (max-width: 37.5rem) {
  .img-right {
    display: block;
    float: none;
    margin: 0 auto 1rem;
  }
}

.img-left {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 0) and (max-width: 37.5rem) {
  .img-left {
    display: block;
    float: none;
    margin: 0 auto 1rem;
  }
}

.img-center {
  display: block;
  float: none;
  margin: 0 auto 1rem;
}

/*------------------------------------*\
    #Videos
\*------------------------------------*/
.video-rounded {
  border-radius: 8px;
}
.video-rounded * {
  border-radius: 8px;
}

.video-rounded-lg {
  border-radius: 30px;
}
.video-rounded-lg * {
  border-radius: 30px;
}
.video-rounded-lg.btn-video:before {
  border-radius: 30px;
}

.btn-video {
  display: inline-block;
  position: relative;
}
.btn-video:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 255, 255, 0.5), #005587);
  opacity: 0.5;
  transition: all 0.5s;
}
.btn-video:hover:before {
  opacity: 0.3;
}
.btn-video::after {
  content: "\f144";
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 50px;
  font-weight: 900;
  line-height: 50px;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0.7;
  transition: all 0.5s;
  color: #0099CC;
}
.btn-video:hover:after {
  opacity: 1;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.btn-video img {
  height: auto !important;
}

/*------------------------------------*\
    #VideoJS Archive
\*------------------------------------*/
.vjs-theme-vsl .vjs-big-play-button,
.video-js.vjs-theme-vsl .vjs-big-play-button {
  width: 4em;
  height: 79px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(0, 153, 204, 0.75);
  border: none;
  margin: 0 auto;
  line-height: 79px;
  top: 50%;
  left: 50%;
  border-radius: 0px;
  margin-top: -51.5px;
  margin-left: -2em;
}
.vjs-theme-vsl:hover .vjs-big-play-button,
.vjs-theme-vsl:hover .vjs-big-play-button:focus,
.video-js.vjs-theme-vsl:hover .vjs-big-play-button,
.video-js.vjs-theme-vsl:hover .vjs-big-play-button:focus {
  background-color: rgba(0, 153, 204, 0.25);
  transition: all 0.4s;
}
.vjs-theme-vsl .vjs-control-bar,
.video-js.vjs-theme-vsl .vjs-control-bar {
  height: 4em;
  background-color: rgba(255, 255, 255, 0.4);
}
.vjs-theme-vsl .vjs-button:hover,
.video-js.vjs-theme-vsl .vjs-button:hover {
  color: #0099CC;
  background: #fff;
}
.vjs-theme-vsl .vjs-button > .vjs-icon-placeholder::before,
.video-js.vjs-theme-vsl .vjs-button > .vjs-icon-placeholder::before {
  line-height: 2.2;
}
.vjs-theme-vsl .vjs-time-control,
.video-js.vjs-theme-vsl .vjs-time-control {
  line-height: 4em;
}
.vjs-theme-vsl .vjs-volume-bar,
.video-js.vjs-theme-vsl .vjs-volume-bar {
  margin: 1.85em 1em;
}
.vjs-theme-vsl .vjs-volume-bar .vjs-slider-horizontal,
.video-js.vjs-theme-vsl .vjs-volume-bar .vjs-slider-horizontal {
  height: 4em;
  margin: 0;
}
.vjs-theme-vsl .vjs-progress-control .vjs-play-progress,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-play-progress {
  background-color: rgba(0, 153, 204, 0.9);
}
.vjs-theme-vsl .vjs-progress-control .vjs-slider,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-slider {
  background-color: rgba(0, 153, 204, 0.1);
}
.vjs-theme-vsl .vjs-progress-control .vjs-load-progress div,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-load-progress div {
  background: rgba(255, 255, 255, 0.5);
}
.vjs-theme-vsl .vjs-progress-control .vjs-progress-holder,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-progress-holder {
  margin: 0;
  height: 100%;
}
.vjs-theme-vsl .vjs-progress-control .vjs-time-tooltip,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-time-tooltip {
  background-color: rgba(0, 153, 204, 0.5);
  color: #fff;
}
.vjs-theme-vsl .vjs-progress-control .vjs-mouse-display .vjs-time-tooltip,
.video-js.vjs-theme-vsl .vjs-progress-control .vjs-mouse-display .vjs-time-tooltip {
  background-color: rgba(255, 255, 255, 0.7);
  color: #005587;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.lity.lity-opened {
  background-color: rgba(103, 189, 75, 0.75);
  background: linear-gradient(125deg, rgba(103, 189, 75, 0.75) 0%, rgba(12, 80, 143, 0.75) 45%, rgba(0, 85, 135, 0.75) 95%);
  color: #444;
}

.lity-content:after {
  border-radius: 1rem;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.author-list,
.people-list,
.blog-authors,
.check-list,
.star-list,
.arrow-list {
  margin-bottom: 25px;
}
.author-list ul,
.people-list ul,
.blog-authors ul,
.check-list ul,
.star-list ul,
.arrow-list ul {
  position: relative;
  list-style: none;
  padding-left: 1.75rem;
  margin: 0;
  font-size: 1rem;
}
.author-list ul li,
.people-list ul li,
.blog-authors ul li,
.check-list ul li,
.star-list ul li,
.arrow-list ul li {
  position: relative;
  margin-bottom: 0.5rem;
}
.author-list ul li a,
.people-list ul li a,
.blog-authors ul li a,
.check-list ul li a,
.star-list ul li a,
.arrow-list ul li a {
  display: block;
  position: relative;
}
.author-list ul li a:hover .list-badge, .author-list ul li a:focus .list-badge,
.people-list ul li a:hover .list-badge,
.people-list ul li a:focus .list-badge,
.blog-authors ul li a:hover .list-badge,
.blog-authors ul li a:focus .list-badge,
.check-list ul li a:hover .list-badge,
.check-list ul li a:focus .list-badge,
.star-list ul li a:hover .list-badge,
.star-list ul li a:focus .list-badge,
.arrow-list ul li a:hover .list-badge,
.arrow-list ul li a:focus .list-badge {
  text-decoration: none;
}
.author-list ul li::before,
.people-list ul li::before,
.blog-authors ul li::before,
.check-list ul li::before,
.star-list ul li::before,
.arrow-list ul li::before {
  position: absolute;
  left: -1.65em;
  display: block;
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  color: #005587;
  font-size: 1rem;
  font-weight: bold;
}
.author-list ul .list-badge,
.people-list ul .list-badge,
.blog-authors ul .list-badge,
.check-list ul .list-badge,
.star-list ul .list-badge,
.arrow-list ul .list-badge {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 2px 5px;
  margin-left: 3px;
  top: -1px;
  background-color: #005587;
  border: 1px solid transparent;
  font-size: 0.625rem;
  line-height: 1em;
  border-radius: 30px;
}

.arrow-list-circle ul li::before {
  content: "\f0a9";
}
.arrow-list-square ul li::before {
  content: "\f33b";
}

.check-list ul li::before {
  content: "\f00c";
  color: #0099CC;
}
.check-list-circle ul li::before {
  content: "\f058";
}
.check-list-square ul li::before {
  content: "\e27f";
}

.star-list ul li::before {
  content: "\f005";
  color: #0099CC;
}
.star-list-circle ul li::before {
  content: "\e123";
}
.star-list-square ul li::before {
  content: "\e27f";
}

.author-list ul li::before,
.people-list ul li::before,
.blog-authors ul li::before {
  content: "\f007";
  color: #0099CC;
}
.author-list-circle ul li::before,
.people-list-circle ul li::before,
.blog-authors-circle ul li::before {
  content: "\f2bd";
}
.author-list-square ul li::before,
.people-list-square ul li::before,
.blog-authors-square ul li::before {
  content: "\e283";
}

.author-list-inverse,
.people-list-inverse,
.blog-authors-inverse,
.check-list-inverse,
.star-list-inverse,
.arrow-list-inverse {
  color: #fff;
}
.author-list-inverse ul li,
.people-list-inverse ul li,
.blog-authors-inverse ul li,
.check-list-inverse ul li,
.star-list-inverse ul li,
.arrow-list-inverse ul li {
  color: #fff;
}
.author-list-inverse ul li a,
.people-list-inverse ul li a,
.blog-authors-inverse ul li a,
.check-list-inverse ul li a,
.star-list-inverse ul li a,
.arrow-list-inverse ul li a {
  color: #fff;
}
.author-list-inverse ul li::before,
.people-list-inverse ul li::before,
.blog-authors-inverse ul li::before,
.check-list-inverse ul li::before,
.star-list-inverse ul li::before,
.arrow-list-inverse ul li::before {
  color: #fff;
}
.author-list-inverse ul li .list-badge,
.people-list-inverse ul li .list-badge,
.blog-authors-inverse ul li .list-badge,
.check-list-inverse ul li .list-badge,
.star-list-inverse ul li .list-badge,
.arrow-list-inverse ul li .list-badge {
  color: #005587;
  background-color: #fff;
}

.pill-list,
.cloud-list,
.blog-topics,
.blog-years {
  margin-bottom: 25px;
}
.pill-list ul,
.cloud-list ul,
.blog-topics ul,
.blog-years ul {
  list-style: none;
  overflow: hidden;
  padding-left: 0;
  margin: 0;
}
.pill-list ul li,
.cloud-list ul li,
.blog-topics ul li,
.blog-years ul li {
  float: left;
  margin: 5px;
}
.pill-list ul li a,
.cloud-list ul li a,
.blog-topics ul li a,
.blog-years ul li a {
  color: #005587;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #005587;
  font-size: 0.75rem;
  transition: 0.25s;
  border-radius: 30px;
}
.pill-list ul li a:hover, .pill-list ul li a:focus,
.cloud-list ul li a:hover,
.cloud-list ul li a:focus,
.blog-topics ul li a:hover,
.blog-topics ul li a:focus,
.blog-years ul li a:hover,
.blog-years ul li a:focus {
  background-color: #0099CC;
  border-color: #0099CC;
  color: #fff;
  text-decoration: none;
}
.pill-list .list-badge,
.cloud-list .list-badge,
.blog-topics .list-badge,
.blog-years .list-badge {
  display: inline-block;
  position: relative;
  margin-left: 3px;
  font-size: 0.625rem;
  line-height: 1em;
  opacity: 0.75;
}
.pill-list-inverse,
.cloud-list-inverse,
.blog-topics-inverse,
.blog-years-inverse {
  color: #fff;
}
.pill-list-inverse ul li a,
.cloud-list-inverse ul li a,
.blog-topics-inverse ul li a,
.blog-years-inverse ul li a {
  color: #fff;
  border-color: #fff;
}
.pill-list-inverse ul li a:hover, .pill-list-inverse ul li a:focus,
.cloud-list-inverse ul li a:hover,
.cloud-list-inverse ul li a:focus,
.blog-topics-inverse ul li a:hover,
.blog-topics-inverse ul li a:focus,
.blog-years-inverse ul li a:hover,
.blog-years-inverse ul li a:focus {
  background-color: #fff;
  border-color: #fff;
  color: #005587;
}

ul {
  list-style: inherit;
}
ul ul {
  list-style: circle;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

.fa-ul li {
  margin-bottom: 0.5rem;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 0;
  overflow: hidden;
}
.pagination li {
  display: inline-block;
}
.pagination li a {
  position: relative;
  border: 1px solid #0099CC;
  background-color: #0099CC;
  border-radius: 8px !important;
  color: #fff;
  float: left;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 6px 12px;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
  min-width: 35px;
}
.pagination li a:hover, .pagination li a:focus {
  color: #fff;
  background-color: #005587;
  border-color: #005587;
}
.pagination li.active a, .pagination li.active span {
  z-index: 3;
  color: #fff;
  background-color: #005587;
  border-color: #005587;
}
.pagination li.active a:hover, .pagination li.active a:focus {
  background-color: #005587;
  border-color: #005587;
}
.pagination li:first-child > a,
.pagination li:first-child > span, .pagination li:last-child > a,
.pagination li:last-child > span {
  border-radius: 8px;
}
.pagination li:not(:last-child), .pagination li:not(:last-child) {
  margin-right: 5px;
}

.number-list {
  position: relative;
  list-style: none;
  margin: 0 0 25px;
  padding-left: 2.125rem;
  font-size: 1rem;
  counter-reset: step-counter;
}
.number-list li {
  position: relative;
  margin-bottom: 0.5rem;
  counter-increment: step-counter;
}
.number-list li::before {
  position: absolute;
  left: -32px;
  display: block;
  content: counter(step-counter);
  color: #fff;
  font-size: 0.688rem;
  font-weight: bold;
  background-color: #0099CC;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.number-list li a {
  display: block;
  position: relative;
}
.number-list li a:hover .list-badge, .number-list li a:focus .list-badge {
  text-decoration: none;
}
.number-list ol {
  list-style: none;
  margin: 0 0 0.5rem;
  padding-left: 1.75rem;
  counter-reset: step-sub-counter;
}
.number-list ol li {
  counter-increment: step-sub-counter;
}
.number-list ol li::before {
  content: counter(step-sub-counter);
  background-color: #808080;
}
.number-list ol ol li::before {
  border-radius: 0;
}
.number-list ul {
  list-style: none;
  margin: 0 0 0.5rem;
  padding-left: 1.75rem;
  counter-reset: step-sub-counter;
}
.number-list ul li {
  counter-increment: step-sub-counter;
}
.number-list ul li::before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
}
.number-list ul ul li::before {
  border-radius: 0;
}

.related-content ul {
  list-style: none;
  padding: 0;
}
.related-content ul i {
  color: #005587;
}
.related-content ul .rich-compact-list-item {
  font-size: 0.925rem;
  margin-bottom: 0.75rem;
}
.related-content ul .rich-compact-list-item .rich-compact-list-item-content {
  padding-left: 0.5rem;
}
.related-content ul .rich-compact-list-item .rich-compact-title {
  font-weight: 500;
}
.related-content ul .rich-compact-list-item .rich-compact-author {
  font-size: 0.75rem;
}
.related-content ul .rich-compact-list-item .rich-compact-date {
  font-size: 0.75rem;
  color: #666;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.vsl-pillars {
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media all and (min-width: 35.5rem) {
  .vsl-pillars {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 62rem) {
  .vsl-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
  .vsl-pillars .vsl-pillar {
    -webkit-transform: skewX(-10deg);
            transform: skewX(-10deg);
  }
  .vsl-pillars .vsl-pillar-text {
    -webkit-transform: skewX(10deg);
            transform: skewX(10deg);
  }
}
.vsl-pillars .vsl-pillar {
  display: grid;
  grid-auto-rows: 1fr;
  position: relative;
  color: #fff;
  padding: 2rem 3rem;
}
.vsl-pillars .vsl-pillar-text {
  color: #fff;
  text-align: center;
}
.vsl-pillars .vsl-pillar-text .vsl-pillar-title,
.vsl-pillars .vsl-pillar-text h1.vsl-pillar-title h2.vsl-pillar-title h3.vsl-pillar-title h4.vsl-pillar-title h5.vsl-pillar-title h6.vsl-pillar-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.vsl-pillars .vsl-pillar-text .vsl-pillar-description {
  font-size: 0.875rem;
}
.vsl-pillars .vsl-pillar-text .vsl-pillar-description p {
  font-size: 0.875rem;
}
.vsl-pillars .vsl-pillar-text .vsl-pillar-description p:only-child, .vsl-pillars .vsl-pillar-text .vsl-pillar-description p:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 35.5rem) {
  .vsl-pillars-no-slant {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 62rem) {
  .vsl-pillars-no-slant {
    grid-template-columns: repeat(3, 1fr);
  }
  .vsl-pillars-no-slant .vsl-pillar {
    -webkit-transform: none;
            transform: none;
  }
  .vsl-pillars-no-slant .vsl-pillar-text {
    -webkit-transform: none;
            transform: none;
  }
}

.vsl-pillar--blue {
  background-color: #005587;
}
.vsl-pillar--lullaby-blue {
  background-color: #00BFDC;
}
.vsl-pillar--teal {
  background-color: #33CCCC;
}
.vsl-pillar--reading, .vsl-pillar--literacy, .vsl-pillar--emerald {
  background-color: #00956E;
}
.vsl-pillar--blueberry, .vsl-pillar--writing {
  background-color: #333399;
}
.vsl-pillar--math {
  background-color: #D52158;
}
.vsl-pillar--sky-blue, .vsl-pillar--assessment {
  background-color: #0099CC;
}
.vsl-pillar--cs {
  background-color: #FF9015;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
div.vsl-product-bar-container:hover, div.vsl-product-bar-container:focus {
  box-shadow: none;
}
div.vsl-product-bar-container:hover .vsl-product-bar-content--right .vsl-product-bar-content-icon, div.vsl-product-bar-container:focus .vsl-product-bar-content--right .vsl-product-bar-content-icon {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  transition: all 0.5s;
}
div.vsl-product-bar-container:hover .vsl-product-bar-content--left .vsl-product-bar-content-icon, div.vsl-product-bar-container:focus .vsl-product-bar-content--left .vsl-product-bar-content-icon {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  transition: all 0.5s;
}
div.vsl-product-bar-container:hover .vsl-product-bar-content-text, div.vsl-product-bar-container:focus .vsl-product-bar-content-text {
  text-decoration: none;
}
div.vsl-product-bar-container:not(:hover) {
  box-shadow: 0 0 none;
}
div.vsl-product-bar-container:not(:hover) .vsl-product-bar-content--right .vsl-product-bar-content-icon {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  transition: all 0.5s;
}
div.vsl-product-bar-container:not(:hover) .vsl-product-bar-content--left .vsl-product-bar-content-icon {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  transition: all 0.5s;
}

.vsl-product-bar-container {
  display: block;
  background-color: #00aee3;
  background: linear-gradient(75deg, #00aee3 0%, #0c508f 75%);
  color: #fff;
  *zoom: 1;
  overflow: hidden;
}
.vsl-product-bar-container:after, .vsl-product-bar-container:before {
  content: " ";
  display: table;
}
.vsl-product-bar-container:after {
  clear: both;
}
.vsl-product-bar-container:hover, .vsl-product-bar-container:focus {
  transition: 0.25s;
  box-shadow: inset 0 0 0 4em rgba(0, 85, 135, 0.2);
}
.vsl-product-bar-container:hover .vsl-product-bar-content .vsl-product-bar-content-icon, .vsl-product-bar-container:focus .vsl-product-bar-content .vsl-product-bar-content-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: all 0.5s;
}
.vsl-product-bar-container:hover .vsl-product-bar-content-text, .vsl-product-bar-container:focus .vsl-product-bar-content-text {
  text-decoration: underline;
}
.vsl-product-bar-container:focus {
  outline: 1px auto #0099CC;
  outline-offset: 1px;
}
.vsl-product-bar-container:not(:hover) {
  box-shadow: 0 0 none;
}
.vsl-product-bar-container:not(:hover) .vsl-product-bar-content--right .vsl-product-bar-content-icon {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  transition: all 0.5s;
}
.vsl-product-bar-container:not(:hover) .vsl-product-bar-content--left .vsl-product-bar-content-icon {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  transition: all 0.5s;
}
.vsl-product-bar-container--reading, .vsl-product-bar-container--literacy {
  background: #00956E;
}
.vsl-product-bar-container--writing {
  background: #333399;
}
.vsl-product-bar-container--math {
  background: #D52158;
}
.vsl-product-bar-container--assessment {
  background: #0099CC;
}
.vsl-product-bar-container--cs {
  background: #FF9015;
}
.vsl-product-bar-container .vsl-product-bar-content {
  position: relative;
  *zoom: 1;
  color: #fff;
  font-weight: bold;
  padding: 2rem 0;
}
.vsl-product-bar-container .vsl-product-bar-content:after, .vsl-product-bar-container .vsl-product-bar-content:before {
  content: " ";
  display: table;
}
.vsl-product-bar-container .vsl-product-bar-content:after {
  clear: both;
}
@media (min-width: 0) and (max-width: 30rem) {
  .vsl-product-bar-container .vsl-product-bar-content {
    font-size: 0.875rem;
  }
}
.vsl-product-bar-container .vsl-product-bar-content--right {
  float: right;
}
.vsl-product-bar-container .vsl-product-bar-content--right .vsl-product-bar-content-icon {
  right: 0;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.vsl-product-bar-container .vsl-product-bar-content--right .vsl-product-bar-content-text {
  margin-right: 200px;
}
@media (min-width: 30rem) and (max-width: 35.5rem) {
  .vsl-product-bar-container .vsl-product-bar-content--right .vsl-product-bar-content-text {
    margin-right: 150px;
  }
}
@media (min-width: 0) and (max-width: 30rem) {
  .vsl-product-bar-container .vsl-product-bar-content--right .vsl-product-bar-content-text {
    margin-right: 0;
  }
}
.vsl-product-bar-container .vsl-product-bar-content--left {
  float: left;
}
.vsl-product-bar-container .vsl-product-bar-content--left .vsl-product-bar-content-icon {
  left: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.vsl-product-bar-container .vsl-product-bar-content--left .vsl-product-bar-content-text {
  margin-left: 200px;
}
@media (min-width: 30rem) and (max-width: 35.5rem) {
  .vsl-product-bar-container .vsl-product-bar-content--left .vsl-product-bar-content-text {
    margin-left: 150px;
  }
}
@media (min-width: 0) and (max-width: 30rem) {
  .vsl-product-bar-container .vsl-product-bar-content--left .vsl-product-bar-content-text {
    margin-left: 0;
  }
}
@media (min-width: 0) and (max-width: 48rem) {
  .vsl-product-bar-container .vsl-product-bar-content--right, .vsl-product-bar-container .vsl-product-bar-content--left {
    float: none;
  }
}
.vsl-product-bar-container .vsl-product-bar-content-icon {
  position: absolute;
  top: -25px;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
}
@media (min-width: 30rem) and (max-width: 35.5rem) {
  .vsl-product-bar-container .vsl-product-bar-content-icon {
    top: -15px;
    width: 170px;
    height: 170px;
  }
}
@media (min-width: 0) and (max-width: 30rem) {
  .vsl-product-bar-container .vsl-product-bar-content-icon {
    display: none;
  }
}
.vsl-product-bar-container .vsl-product-bar-content-icon--reading, .vsl-product-bar-container .vsl-product-bar-content-icon--literacy {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzAwOTI2ZiIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUsODEuOGMtMjEuMywwLTM4LjctMTcuMy0zOC43LTM4LjdTMzYuMiw0LjUsNTcuNSw0LjVzMzguNywxNy4zLDM4LjcsMzguN1M3OC44LDgxLjgsNTcuNSw4MS44eiIgZmlsbD0iIzAwOTI2ZiIvPjxwYXRoIGQ9Ik01Ny41IDUuNWMyMC44IDAgMzcuNyAxNi45IDM3LjcgMzcuN1M3OC4zIDgwLjggNTcuNSA4MC44IDE5LjkgNjMuOSAxOS45IDQzLjIgMzYuOCA1LjUgNTcuNSA1LjVtMC0yYy0yMS45IDAtMzkuNyAxNy44LTM5LjcgMzkuN3MxNy44IDM5LjcgMzkuNyAzOS43IDM5LjctMTcuOCAzOS43LTM5LjdTNzkuNCAzLjUgNTcuNSAzLjVoMHoiIGZpbGw9IiNmZmYiLz48L2c+PHBhdGggZD0iTTY1LjcgMjguNWMzLjctLjcgNi42IDAgNi42IDBMNzYgNDkuMXMtNS4yIDAtOS42LjctNy40IDQuNC03LjQgNC40VjMwLjdjLjEgMCAzLTEuNCA2LjctMi4yem0tNi42IDI3LjZ2Mi42czYuNi0zLjcgMTEtNC40IDEyLjUtLjcgMTIuNS0uN0w3NiAyNC4xcy00LjQtLjctOC4xIDAtOC44IDQuMS04LjggNC4xdjEuMXM2LjktMy4xIDkuMS0zLjZjMy0uNyA2LjIuMiA2LjIuMmw0LjYgMjVzLTguMy0uMS0xMiAuNmMtMy43LjgtNy45IDQuNi03LjkgNC42ek01MSAyOC41Yy0zLjctLjctNi42IDAtNi42IDBsLTMuNyAyMC42czUuMiAwIDkuNi43IDcuNCA0LjQgNy40IDQuNFYzMC43Yy0uMSAwLTMtMS40LTYuNy0yLjJ6bS0xLjggMjMuMWMtMy43LS43LTExLjQtLjctMTEuNC0uN2w0LjYtMjUuMXMzLjItLjggNi4yLS4yYzIuMi41IDkuMSAzLjYgOS4xIDMuNnYtMS4xcy01LjItMy40LTguOC00LjEtOC4xIDAtOC4xIDBsLTYuNiAyOS40czguMSAwIDEyLjUuNyAxMSA0LjQgMTEgNC40di0yLjZjLS4xLjItNC45LTMuNi04LjUtNC4zek03MC4xIDU2Yy00LjkgMS4yLTExLjcgNS0xMS43IDVzLTUuOS0zLjgtMTAuNy00LjljLTMuNi0uOS0xNS45LTEuMy0xNS45LTEuM2w2LTI1LjNIMzVsLTYuNCAyOC4zIDE1LjYgMi40YzIuNi40IDE0LjIgMy4zIDE0LjIgMy4zbDE1LjMtMy43YzIuMS0uNSAxMy41LTIuMSAxMy41LTIuMUw4MiAyOS40aC0yLjlsNS43IDI1LjNjMCAuMS0xMC45LjQtMTQuNyAxLjN6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIwLjMgOTcuOWg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjMtNC43aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTE0IDBoMi4xbDQuOSAxMS4zaC0yLjhsLTEtMi40aC00LjRsLS45IDIuNGgtMi44bDQuOS0xMS4zem0xIDMuM2wtMS40IDMuNWgyLjhsLTEuNC0zLjV6bTcuNS0zLjNoMy43YTEwLjkgMTAuOSAwIDAgMSAyLjYuM2MuOC4yIDEuNS41IDIuMSAxczEuMSAxIDEuNCAxLjhjLjQuNy41IDEuNi41IDIuNiAwIC45LS4yIDEuNy0uNSAyLjRzLS44IDEuMy0xLjQgMS44LTEuMy44LTIgMS4xYy0uOC4yLTEuNi40LTIuNC40aC00LjFWOTcuOXptMi41IDloMS4zYy42IDAgMS4xLS4xIDEuNi0uMnMuOS0uMyAxLjMtLjYuNi0uNi45LTEuMWMuMi0uNC4zLTEgLjMtMS42cy0uMS0xLS4zLTEuNC0uNS0uNy0uOC0xYy0uNC0uMy0uOC0uNS0xLjItLjYtLjUtLjEtMS0uMi0xLjUtLjJoLTEuNXY2Ljd6bTkuOS05aDIuNXYxMS4zSDY2Vjk3Ljl6bTUuMSAwaDMuNGw0LjggNy45aDB2LTcuOWgyLjV2MTEuM2gtMy4zbC00LjktOC4xaDB2OC4xaC0yLjVWOTcuOXptMjMuNiAxMC41Yy0uNy40LTEuNS43LTIuMy44LS44LjItMS42LjMtMi40LjMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNS43LTEuNCAxLjMtMS45Yy41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjkgMCAxLjcuMSAyLjUuM3MxLjQuNiAyIDEuMWwtMS44IDEuOWMtLjMtLjQtLjctLjYtMS4yLS44LS40LS4yLTEtLjMtMS42LS4zLS41IDAtMSAuMS0xLjQuM3MtLjguNC0xLjEuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy43LjYgMS4xLjguOS4zIDEuNC4zIDEtLjEgMS40LS4yLjctLjIuOS0uNHYtMS44aC0ydi0yLjNoNC40djUuOHoiIGZpbGw9IiMwMDkyNmYiLz48L3N2Zz4=");
}
.vsl-product-bar-container .vsl-product-bar-content-icon--writing {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iIzM2Mzc5NSIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDQuNyAyMGwtOS4zIDI0LjcgMi4xIDUuOSA1LjUtMy4xIDkuMy0yNC43LTcuNi0yLjh6bS00LjUgMjAuN2MtLjEuMy0uNC40LS44LjMtLjMtLjEtLjUtLjQtLjQtLjdsNS43LTE1LjJjLjEtLjMuNC0uNC44LS4zLjMuMS41LjQuNC43bC01LjcgMTUuMnptMTMuOS0yMi44aDBsLTEuMiAzLjQtNy42LTIuOSAxLjMtMy40aC4xYy44LTEuMSAyLjctMS41IDQuNS0uOCAxLjkuOCAzLjEgMi4zIDIuOSAzLjd6bTEzLjIgNTEuMkg0Mi44Yy0xLjUtLjItNC4yLTEuNC00LjItNC43IDAtMS45LjgtMi45IDEuNC0zLjUgMS4yLTEgMi42LTEgMy0uOWgzMy43Yy41IDAgMi4xLS4yIDIuMS0yLjEgMC0uOC0uMy0xLjEtLjQtMS4yLS41LS41LTEuNC0uNS0xLjgtLjVoLS4xSDQwYy0uNyAwLTEuMy0uNi0xLjMtMS4zcy42LTEuMyAxLjMtMS4zaDM2LjVjLjQgMCAyLjMtLjEgMy43IDEuMi42LjUgMS4zIDEuNSAxLjMgMy4yIDAgMy40LTIuOCA0LjctNC43IDQuN2gtMzQgMHMtLjctLjEtMS4xLjNjLS40LjMtLjUgMS0uNSAxLjUgMCAxLjYgMS40IDEuOSAxLjggMmgyNC4yYy43IDAgMS4zLjYgMS4zIDEuMy4xLjctLjUgMS4zLTEuMiAxLjN6bTIuNS0yNS4ySDU5LjVsLTEuNyA0LjloLTdsMTAtMjcuNmg3LjhsMTAgMjcuNmgtNy4xbC0xLjctNC45em0tNS4xLTE1LjNsLTMuNCAxMC4xaDYuOGwtMy40LTEwLjF6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTIxLjggOTcuOWgyLjdsMS44IDcuM2gwbDIuNC03LjNIMzFsMi40IDcuNWgwbDEuOS03LjVoMi41bC0zLjMgMTEuM2gtMi4ybC0yLjUtNy44aDBsLTIuNSA3LjhoLTIuMWwtMy40LTExLjN6bTE3LjUgMGg0LjRjLjYgMCAxLjEuMSAxLjYuMnMxIC4zIDEuNC42LjcuNi45IDEuMWMuMi40LjMgMSAuMyAxLjcgMCAuOC0uMiAxLjUtLjYgMnMtMSAuOS0xLjggMS4xbDIuOSA0LjhoLTNsLTIuNC00LjVoLTEuMnY0LjVoLTIuNVY5Ny45em0yLjUgNC43aDEuNS43Yy4yIDAgLjUtLjEuNy0uMS4yLS4xLjQtLjIuNS0uNHMuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em04LjEtNC43aDIuNXYxMS4zaC0yLjVWOTcuOXptNy4zIDIuMkg1NHYtMi4yaDl2Mi4yaC0zLjJ2OS4xaC0yLjV2LTkuMXptNy4zLTIuMkg2N3YxMS4zaC0yLjVWOTcuOXptNS4xIDBINzNsNC44IDcuOWgwdi03LjloMi41djExLjNINzdsLTQuOS04LjFoMHY4LjFoLTIuNVY5Ny45em0yMy42IDEwLjVjLS43LjQtMS41LjctMi4zLjgtLjguMi0xLjYuMy0yLjQuMy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41LjctMS40IDEuMy0xLjljLjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuOSAwIDEuNy4xIDIuNS4zczEuNC42IDIgMS4xbC0xLjggMS45Yy0uMy0uNC0uNy0uNi0xLjItLjgtLjQtLjItMS0uMy0xLjYtLjMtLjUgMC0xIC4xLTEuNC4zcy0uOC40LTEuMS44Yy0uMy4zLS41LjctLjcgMS4yLS4yLjQtLjIuOS0uMiAxLjUgMCAuNS4xIDEgLjIgMS41LjIuNC40LjguNyAxLjJzLjcuNiAxLjEuOC45LjMgMS40LjMgMS0uMSAxLjQtLjIuNy0uMi45LS40di0xLjhoLTJ2LTIuM2g0LjR2NS44eiIgZmlsbD0iIzM2Mzc5NSIvPjwvc3ZnPg==");
}
.vsl-product-bar-container .vsl-product-bar-content-icon--math {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Q1MjE1OCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNzkuOCAzMGgwbC00LjIgNC4zLTcuOC03LjggNC4zLTQuMy4xLjFjMS44LTEuMiA0LjYtLjggNi42IDEuMnMyLjIgNC42IDEgNi41em0tMjEgNS41bC0zLjQtMy40LTQuOCA0LjgtMS0xIDQuOC00LjgtMi41LTIuNS0yLjYgMi42LTEtMSAyLjYtMi42LTIuNS0yLjUtNC44IDQuOC0xLTEgNC44LTQuOC0xLjktMS45Yy0uNi0uNi0xLjUtLjYtMi4xIDBsLTcuNSA3LjVjLS42LjYtLjYgMS41IDAgMi4xTDQ5LjIgNDVsOS42LTkuNXptOS43IDkuN2wtMS45LTEuOS05LjYgOS42IDEyLjkgMTIuOWMuNi42IDEuNS42IDIuMSAwbDcuNS03LjVjLjYtLjYuNi0xLjUgMC0yLjFMNzcgNTMuN2wtNC44IDQuOC0xLTEgNC44LTQuOC0yLjctMi43LTIuNiAyLjYtMS0xIDIuNi0yLjYtMi43LTIuNy00LjggNC43LTEtMSA0LjctNC44em0tMi0xNy41bDcuOCA3LjgtMjggMjgtOS45IDIuMSAyLjEtOS45IDI4LTI4em0tMS4zIDYuNmMtLjMtLjMtLjktLjMtMS4yIDBMNDUuNCA1Mi44Yy0uMy4zLS4zLjkgMCAxLjJzLjkuMyAxLjIgMGwxOC41LTE4LjVjLjQtLjMuNC0uOS4xLTEuMnoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzQuOCA5Ny45aDMuOGwyLjYgNy40aDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE5LjEgMEg1Nmw0LjkgMTEuM2gtMi44bC0xLTIuNGgtNC40bC0uOSAyLjRINDlsNC45LTExLjN6bTEgMy4zbC0xLjQgMy41aDIuOGwtMS40LTMuNXptOC4yLTEuMWgtMy4ydi0yLjJoOXYyLjJoLTMuMnY5LjFoLTIuNXYtOS4xem03LjMtMi4yaDIuNXY0LjJoNC44di00LjJoMi41djExLjNoLTIuNXYtNC45aC00Ljh2NC45aC0yLjVWOTcuOXoiIGZpbGw9IiNkNTIxNTgiLz48L3N2Zz4=");
}
.vsl-product-bar-container .vsl-product-bar-content-icon--assessment {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI2LjMuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxMTUgMTMwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxMTUgMTMwOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6IzAwQTdFMDt9Cgkuc3Qxe29wYWNpdHk6MC42NTt9Cgkuc3Qye2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjU3LjUiIGN5PSI0My4zIiByPSI0Mi41Ii8+CjxnIGNsYXNzPSJzdDEiPgoJPHBhdGggY2xhc3M9InN0MiIgZD0iTTU3LjUsNS41YzIwLjgsMCwzNy43LDE2LjksMzcuNywzNy43Uzc4LjMsODAuOCw1Ny41LDgwLjhTMTkuOSw2My45LDE5LjksNDMuMlMzNi44LDUuNSw1Ny41LDUuNSBNNTcuNSwzLjUKCQljLTIxLjksMC0zOS43LDE3LjgtMzkuNywzOS43czE3LjgsMzkuNywzOS43LDM5LjdzMzkuNy0xNy44LDM5LjctMzkuN1M3OS40LDMuNSw1Ny41LDMuNUw1Ny41LDMuNXoiLz4KPC9nPgo8cGF0aCBjbGFzcz0ic3QyIiBkPSJNNDguNywzMC40aC05LjhsOS44LTExLjNDNDguNywxOS4xLDQ4LjcsMzAuNCw0OC43LDMwLjR6IE02OS40LDU3LjFjLTAuNCwwLjItMC45LDAuNC0xLjMsMC41CgljLTEuMywwLjQtMi41LDAuNi0zLjgsMC42Yy0yLjcsMC01LjMtMC44LTcuNS0yLjRINDVjLTAuNywwLTEuMi0wLjYtMS4yLTEuNFM0NC40LDUzLDQ1LDUzaDljLTAuOS0xLjEtMS41LTIuNC0xLjktMy44CgljLTAuMi0wLjYtMC4zLTEuMi0wLjQtMS44SDQ1Yy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDYuNGMwLjEtMS44LDAuNi0zLjUsMS40LTUuMmMwLjEtMC4yLDAuMi0wLjMsMC4zLTAuNUg0NQoJYy0wLjcsMC0xLjItMC42LTEuMi0xLjRzMC42LTEuNCwxLjItMS40aDEwLjNjMS40LTEuNCwzLjEtMi40LDUtM2MxLjMtMC40LDIuNS0wLjYsMy44LTAuNmMyLjcsMCw1LjMsMC44LDcuNSwyLjQKCWMwLjUsMC40LDEsMC43LDEuNCwxLjJWMjJjMC0xLjYtMS4xLTIuOC0yLjQtMi44SDUxLjJ2MTIuN2MwLDAuOC0wLjYsMS40LTEuMiwxLjRIMzl2MjguMmMwLDEuNSwxLjEsMi45LDIuNSwyLjloMjkuNAoJYzEuNCwwLDIuNC0xLjMsMi40LTIuOXYtMC4zQzczLjMsNjEuMiw2OS40LDU3LjEsNjkuNCw1Ny4xeiBNODIuNyw2MC42bC05LjItMTBjMCwwLDAtMC4xLTAuMS0wLjFjMS40LTIuNSwxLjgtNS41LDAuOS04LjQKCWwtMC42LTEuNWwtMiwyLjljMSwzLjktMS4zLDgtNS4yLDkuM2MtNC4xLDEuMy04LjQtMS05LjctNS4xczEtOC40LDUuMS05LjdjMi42LTAuOCw1LjMtMC4yLDcuMywxLjRjMC43LTAuOCwxLjQtMS41LDItMi4xCgljLTIuNy0yLjMtNi41LTMuMi0xMC4xLTIuMWMtNS42LDEuOC04LjcsNy43LTcsMTMuM2MxLjgsNS42LDcuNyw4LjcsMTMuMyw3YzAuOS0wLjMsMS43LTAuNywyLjUtMS4ybDksOS44YzAuMywwLjMsMC45LDAuMiwxLjMtMC4zCglsMi4xLTEuOUM4Mi44LDYxLjUsODMsNjAuOSw4Mi43LDYwLjZMODIuNyw2MC42eiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOCw5Ny45aDJsNC45LDExLjNoLTIuOGwtMS0yLjRINi44bC0wLjksMi40SDMuMUw4LDk3Ljl6IE04LjksMTAxLjJsLTEuNCwzLjVoMi44TDguOSwxMDEuMnogTTIyLDEwMC43CgljLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41CgljMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjYKCWMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xCglsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNAoJYzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOQoJcy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zCgljMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMMjIsMTAwLjdMMjIsMTAwLjd6IE0zMS41LDEwMC43Yy0wLjItMC4zLTAuNS0wLjQtMC44LTAuNnMtMC43LTAuMi0xLTAuMmMtMC4yLDAtMC40LDAtMC42LDAuMQoJYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjJzLTAuMywwLjItMC40LDAuNHMtMC4yLDAuMy0wLjIsMC41YzAsMC4zLDAuMSwwLjYsMC40LDAuOHMwLjYsMC4zLDEsMC41YzAuNCwwLjEsMC44LDAuMywxLjMsMC40CgljMC40LDAuMSwwLjksMC4zLDEuMywwLjVzMC43LDAuNSwxLDAuOXMwLjQsMC45LDAuNCwxLjZjMCwwLjYtMC4xLDEuMi0wLjQsMS42Yy0wLjIsMC41LTAuNiwwLjktMSwxLjJzLTAuOSwwLjUtMS40LDAuNwoJYy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMmMtMC43LDAtMS40LTAuMS0yLTAuM3MtMS4yLTAuNi0xLjgtMS4xbDEuOC0yYzAuMywwLjMsMC42LDAuNiwxLDAuOHMwLjgsMC4zLDEuMiwwLjNjMC4yLDAsMC40LDAsMC42LTAuMQoJYzAuMiwwLDAuNC0wLjEsMC42LTAuMmMwLjItMC4xLDAuMy0wLjIsMC40LTAuNGMwLjEtMC4yLDAuMi0wLjMsMC4yLTAuNWMwLTAuMy0wLjEtMC42LTAuNC0wLjhzLTAuNi0wLjQtMS0wLjVzLTAuOC0wLjMtMS4zLTAuNAoJcy0wLjktMC4zLTEuMy0wLjZjLTAuNC0wLjItMC43LTAuNS0xLTAuOXMtMC40LTAuOS0wLjQtMS41czAuMS0xLjEsMC40LTEuNmMwLjItMC41LDAuNi0wLjgsMS0xLjJjMC40LTAuMywwLjktMC41LDEuNC0wLjcKCXMxLjEtMC4yLDEuNi0wLjJjMC42LDAsMS4zLDAuMSwxLjksMC4zYzAuNiwwLjIsMS4xLDAuNSwxLjYsMC45TDMxLjUsMTAwLjdMMzEuNSwxMDAuN3ogTTM1LjUsOTcuOWg3Ljd2Mi4zSDM4djIuMWg0Ljl2Mi4zSDM4djIuMwoJaDUuNXYyLjNoLThWOTcuOXogTTUxLjQsMTAwLjdjLTAuMi0wLjMtMC41LTAuNC0wLjgtMC42cy0wLjctMC4yLTEtMC4yYy0wLjIsMC0wLjQsMC0wLjYsMC4xYy0wLjIsMC0wLjQsMC4xLTAuNSwwLjIKCXMtMC4zLDAuMi0wLjQsMC40cy0wLjIsMC4zLTAuMiwwLjVjMCwwLjMsMC4xLDAuNiwwLjQsMC44czAuNiwwLjMsMSwwLjVjMC40LDAuMSwwLjgsMC4zLDEuMywwLjRjMC40LDAuMSwwLjksMC4zLDEuMywwLjUKCXMwLjcsMC41LDEsMC45czAuNCwwLjksMC40LDEuNmMwLDAuNi0wLjEsMS4yLTAuNCwxLjZjLTAuMiwwLjUtMC42LDAuOS0xLDEuMnMtMC45LDAuNS0xLjQsMC43Yy0wLjUsMC4xLTEuMSwwLjItMS43LDAuMgoJYy0wLjcsMC0xLjQtMC4xLTItMC4zcy0xLjItMC42LTEuOC0xLjFsMS44LTJjMC4zLDAuMywwLjYsMC42LDEsMC44czAuOCwwLjMsMS4yLDAuM2MwLjIsMCwwLjQsMCwwLjYtMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMgoJYzAuMi0wLjEsMC4zLTAuMiwwLjQtMC40YzAuMS0wLjIsMC4yLTAuMywwLjItMC41YzAtMC4zLTAuMS0wLjYtMC40LTAuOHMtMC42LTAuNC0xLTAuNXMtMC44LTAuMy0xLjMtMC40cy0wLjktMC4zLTEuMy0wLjYKCWMtMC40LTAuMi0wLjctMC41LTEtMC45cy0wLjQtMC45LTAuNC0xLjVzMC4xLTEuMSwwLjQtMS42YzAuMi0wLjUsMC42LTAuOCwxLTEuMmMwLjQtMC4zLDAuOS0wLjUsMS40LTAuN3MxLjEtMC4yLDEuNi0wLjIKCWMwLjYsMCwxLjMsMC4xLDEuOSwwLjNjMC42LDAuMiwxLjEsMC41LDEuNiwwLjlMNTEuNCwxMDAuN0w1MS40LDEwMC43eiBNNjAuOSwxMDAuN2MtMC4yLTAuMy0wLjUtMC40LTAuOC0wLjZzLTAuNy0wLjItMS0wLjIKCWMtMC4yLDAtMC40LDAtMC42LDAuMWMtMC4yLDAtMC40LDAuMS0wLjUsMC4ycy0wLjMsMC4yLTAuNCwwLjRzLTAuMiwwLjMtMC4yLDAuNWMwLDAuMywwLjEsMC42LDAuNCwwLjhzMC42LDAuMywxLDAuNQoJYzAuNCwwLjEsMC44LDAuMywxLjMsMC40YzAuNCwwLjEsMC45LDAuMywxLjMsMC41czAuNywwLjUsMSwwLjlzMC40LDAuOSwwLjQsMS42YzAsMC42LTAuMSwxLjItMC40LDEuNmMtMC4yLDAuNS0wLjYsMC45LTEsMS4yCglzLTAuOSwwLjUtMS40LDAuN2MtMC41LDAuMS0xLjEsMC4yLTEuNywwLjJjLTAuNywwLTEuNC0wLjEtMi0wLjNzLTEuMi0wLjYtMS44LTEuMWwxLjgtMmMwLjMsMC4zLDAuNiwwLjYsMSwwLjhzMC44LDAuMywxLjIsMC4zCgljMC4yLDAsMC40LDAsMC42LTAuMWMwLjIsMCwwLjQtMC4xLDAuNi0wLjJjMC4yLTAuMSwwLjMtMC4yLDAuNC0wLjRjMC4xLTAuMiwwLjItMC4zLDAuMi0wLjVjMC0wLjMtMC4xLTAuNi0wLjQtMC44cy0wLjYtMC40LTEtMC41CglzLTAuOC0wLjMtMS4zLTAuNHMtMC45LTAuMy0xLjMtMC42Yy0wLjQtMC4yLTAuNy0wLjUtMS0wLjlzLTAuNC0wLjktMC40LTEuNXMwLjEtMS4xLDAuNC0xLjZjMC4yLTAuNSwwLjYtMC44LDEtMS4yCgljMC40LTAuMywwLjktMC41LDEuNC0wLjdzMS4xLTAuMiwxLjYtMC4yYzAuNiwwLDEuMywwLjEsMS45LDAuM2MwLjYsMC4yLDEuMSwwLjUsMS42LDAuOUw2MC45LDEwMC43TDYwLjksMTAwLjd6IE02NC44LDk3LjloMy44CglsMi42LDcuNGwwLDBsMi42LTcuNGgzLjh2MTEuM2gtMi41di04LjdsMCwwbC0zLDguN2gtMS45bC0yLjktOC43bDAsMHY4LjdoLTIuNVY5Ny45eiBNODAuMyw5Ny45SDg4djIuM2gtNS4ydjIuMWg0Ljl2Mi4zaC00Ljl2Mi4zCgloNS41djIuM2gtOFY5Ny45eiBNOTAuNyw5Ny45SDk0bDQuOCw3LjlsMCwwdi03LjloMi41djExLjNIOThsLTQuOS04LjFsMCwwdjguMWgtMi41Vjk3LjlIOTAuN3ogTTEwNi4yLDEwMC4xSDEwM3YtMi4yaDl2Mi4yaC0zLjIKCXY5LjFoLTIuNUwxMDYuMiwxMDAuMUwxMDYuMiwxMDAuMXoiLz4KPC9zdmc+Cg==");
}
.vsl-product-bar-container .vsl-product-bar-content-icon--cs {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMTUgMTMwIj48Y2lyY2xlIGN4PSI1Ny41IiBjeT0iNDMuMyIgcj0iNDIuNSIgZmlsbD0iI2Y3OGUyOCIvPjxnIG9wYWNpdHk9Ii42NSI+PHBhdGggZD0iTTU3LjUgNS41YzIwLjggMCAzNy43IDE2LjkgMzcuNyAzNy43Uzc4LjMgODAuOCA1Ny41IDgwLjggMTkuOSA2My45IDE5LjkgNDMuMiAzNi44IDUuNSA1Ny41IDUuNW0wLTJjLTIxLjkgMC0zOS43IDE3LjgtMzkuNyAzOS43czE3LjggMzkuNyAzOS43IDM5LjcgMzkuNy0xNy44IDM5LjctMzkuN1M3OS40IDMuNSA1Ny41IDMuNWgweiIgZmlsbD0iI2ZmZiIvPjwvZz48cGF0aCBkPSJNNDguNCA0Ny42bDIgLjUgMTIuMyAzLjNjMS4zLjQgMi4xIDEuNyAxLjggM3MtMS43IDIuMS0zIDEuOGwtOS4zLTIuNWMtLjMtLjEtLjcuMS0uOC41aDBjLS4xLjMuMS43LjQuOGgwbDkuMyAyLjRjMSAuMyAyIC4xIDIuOS0uNHMxLjUtMS4zIDEuOC0yLjNjLjQtMS40LS4xLTIuNy0xLTMuNmwtLjItLjJjLS4yLS4yLS4yLS41IDAtLjdsOS4xLTYuOGMxLjItLjkgMi40LTEuMSAzLjUgMCAxIDEgLjkgMi42LS4xIDMuNUw2MyA2MS4xYy0xIDEtMi4zIDEuNC0zLjcgMS4ybC0xLjItLjItMTIuNS0xLjdjLS41LS4xLS45LjEtMS4yLjRsLTIuOSAyLjljLS42LjYtMS41LjYtMi4xIDBsLTUuMS01LjFjLS42LS42LS42LTEuNSAwLTIuMWw3LjEtNy4xYzEuOS0xLjcgNC41LTIuNSA3LTEuOHpNNzMuNiAxOHY5LjljMCAuMy0uMi40LS40LjNsLTIuNi0xLjVjLTMgMy41LTYuNSA2LjMtMTAuNiA4LjYtNC40IDIuNC05LjEgMy45LTEzLjkgNC42IDUtMS41IDkuMi0zLjcgMTIuOC02LjQgMy4xLTIuNCA1LjktNS4zIDguMi04LjhsLTIuNS0xLjRjLS4yLS4xLS4yLS40IDAtLjVsOC42LTVjLjItLjIuNC0uMS40LjJ6TTU2LjQgNDF2N2wtNC42LTEuMlY0MWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0xMS41LTUuN3YxMC41TDYzLjcgNDljLS4xLjEtLjMuMi0uNC40di0xNGEuNDcuNDcgMCAwIDEgLjUtLjVoMy42Yy4yLS4xLjUuMS41LjR6bS01LjggMy4xdjExLjFsLTQuNi0xLjJ2LTkuOWEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41em0tMTEuNCA0Ljd2My40bC0xLjgtLjVjLS43LS4yLTEuNS0uMy0yLjMtLjNoLS41VjQzYS40Ny40NyAwIDAgMSAuNS0uNWgzLjZjLjIuMS41LjMuNS42em0yMi45LTExLjV2MTBjLS4zLjItLjYuMy0uOS42TDY5IDQ0LjlWMzEuNmEuNDcuNDcgMCAwIDEgLjUtLjVoMy42YS40Ny40NyAwIDAgMSAuNS41eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yMC4zIDEwMC44Yy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYy0uNSAwLS45LjEtMS4zLjNzLS43LjQtMSAuOGMtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4yLjMuMy42LjYgMSAuOHMuOC4zIDEuMy4zIDEtLjEgMS40LS4zLjctLjUgMS0uOWwyLjEgMS42Yy0uNS43LTEuMSAxLjItMS44IDEuNXMtMS41LjUtMi4zLjVjLS45IDAtMS43LS4xLTIuNC0uNHMtMS40LS43LTEuOS0xLjItMS0xLjEtMS4zLTEuOWMtLjMtLjctLjUtMS42LS41LTIuNXMuMi0xLjcuNS0yLjVjLjMtLjcuNy0xLjQgMS4zLTEuOS41LS41IDEuMi0uOSAxLjktMS4yczEuNi0uNCAyLjQtLjRjLjMgMCAuNyAwIDEgLjFsMSAuM2E0LjY3IDQuNjcgMCAwIDEgMSAuNWMuMy4yLjYuNS44LjhsLTIuMSAxLjJ6bTEzLjIgNC4xYzAgLjctLjEgMS4zLS4zIDEuOXMtLjUgMS4xLS45IDEuNS0uOS43LTEuNSAxLTEuMy40LTIuMS40LTEuNS0uMS0yLjEtLjRjLS42LS4yLTEuMS0uNi0xLjUtMXMtLjctLjktLjktMS41LS4zLTEuMi0uMy0xLjl2LTdoMi41djYuOWMwIC40LjEuNy4yIDFzLjMuNi41LjguNC40LjcuNS42LjIuOS4yLjYtLjEuOS0uMi41LS4zLjctLjUuNC0uNS41LS44LjItLjYuMi0xdi02LjloMi41djd6bTguMS00LjJjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45em01LjktLjZoLTMuMnYtMi4yaDl2Mi4ySDUwdjkuMWgtMi41di05LjF6bTYuNiAzLjVjMC0uOS4yLTEuNy41LTIuNS4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40IDEuNy4xIDIuNC40IDEuNC43IDEuOSAxLjIgMSAxLjEgMS4zIDEuOS41IDEuNi41IDIuNS0uMiAxLjctLjUgMi41Yy0uMy43LS43IDEuNC0xLjMgMS45LS41LjUtMS4yLjktMS45IDEuMnMtMS42LjQtMi40LjQtMS43LS4xLTIuNC0uNC0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uNC0uOC0uNS0xLjYtLjUtMi41em0yLjYgMGMwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMmE0LjQ0IDQuNDQgMCAwIDAgMS4xLjhjLjQuMi45LjMgMS40LjNzMS0uMSAxLjQtLjMuOC0uNCAxLjEtLjhjLjMtLjMuNS0uNy43LTEuMi4yLS40LjItLjkuMi0xLjUgMC0uNS0uMS0xLS4yLTEuNS0uMi0uNC0uNC0uOC0uNy0xLjJhNC40NCA0LjQ0IDAgMCAwLTEuMS0uOGMtLjQtLjItLjktLjMtMS40LS4zcy0xIC4xLTEuNC4zLS44LjQtMS4xLjhjLS4zLjMtLjUuNy0uNyAxLjItLjEuNS0uMi45LS4yIDEuNXptMTEuNS01LjdINzJsMi42IDcuNGgwbDIuNi03LjRIODF2MTEuM2gtMi41di04LjdoMGwtMyA4LjdoLTEuOWwtMi45LTguN2gwdjguN2gtMi41Vjk3Ljl6bTE1LjMgMGg3Ljd2Mi4zSDg2djIuMWg0Ljl2Mi4zSDg2djIuM2g1LjV2Mi4zaC04Vjk3Ljl6bTEwLjIgMEg5OGMuNiAwIDEuMS4xIDEuNi4yczEgLjMgMS40LjYuNy42LjkgMS4xYy4yLjQuMyAxIC4zIDEuNyAwIC44LS4yIDEuNS0uNiAycy0xIC45LTEuOCAxLjFsMi45IDQuOGgtM2wtMi40LTQuNWgtMS4ydjQuNWgtMi41Vjk3Ljl6bTIuNSA0LjdoMS41LjdjLjIgMCAuNS0uMS43LS4xcy40LS4yLjUtLjQuMi0uNC4yLS43LS4xLS41LS4yLS43LS4zLS4zLS40LS40LS40LS4yLS42LS4yaC0uNy0xLjZ2Mi41em0tNjguMyAxNy4zYy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptMTMuMyA0LjJjMCAuNy0uMSAxLjMtLjMgMS45cy0uNSAxLjEtLjkgMS41LS45LjctMS41IDEtMS4zLjQtMi4xLjQtMS41LS4xLTIuMS0uNGMtLjYtLjItMS4xLS42LTEuNS0xcy0uNy0uOS0uOS0xLjUtLjMtMS4yLS4zLTEuOXYtN2gyLjV2Ni45YzAgLjQuMS43LjIgMXMuMy42LjUuOC40LjQuNy41LjYuMi45LjIuNi0uMS45LS4yLjUtLjMuNy0uNS40LS41LjUtLjguMi0uNi4yLTF2LTYuOWgyLjV2N3pNNTEgMTIwYy0uMi0uMy0uNS0uNS0uOS0uN3MtLjgtLjItMS4yLS4yYTMuMDggMy4wOCAwIDAgMC0xLjMuM2MtLjQuMi0uNy40LTEgLjgtLjMuMy0uNS43LS43IDEuMi0uMi40LS4yLjktLjIgMS41IDAgLjUuMSAxIC4yIDEuNS4yLjQuNC44LjcgMS4ycy42LjYgMSAuOC44LjMgMS4zLjMgMS0uMSAxLjQtLjMuNy0uNSAxLS45bDIuMSAxLjZjLS41LjctMS4xIDEuMi0xLjggMS41cy0xLjUuNS0yLjMuNWMtLjkgMC0xLjctLjEtMi40LS40cy0xLjQtLjctMS45LTEuMi0xLTEuMS0xLjMtMS45Yy0uMy0uNy0uNS0xLjYtLjUtMi41cy4yLTEuNy41LTIuNWMuMy0uNy43LTEuNCAxLjMtMS45LjUtLjUgMS4yLS45IDEuOS0xLjJzMS42LS40IDIuNC0uNGMuMyAwIC43IDAgMSAuMWwxIC4zYTQuNjcgNC42NyAwIDAgMSAxIC41Yy4zLjIuNi41LjguOEw1MSAxMjB6bTExLjEgMGMtLjItLjMtLjUtLjUtLjktLjdzLS44LS4yLTEuMi0uMmMtLjUgMC0uOS4xLTEuMy4zcy0uNy40LTEgLjhjLS4zLjMtLjUuNy0uNyAxLjItLjIuNC0uMi45LS4yIDEuNSAwIC41LjEgMSAuMiAxLjUuMi40LjQuOC43IDEuMi4zLjMuNi42IDEgLjhzLjguMyAxLjMuMyAxLS4xIDEuNC0uMy43LS41IDEtLjlsMi4xIDEuNmMtLjUuNy0xLjEgMS4yLTEuOCAxLjVzLTEuNS41LTIuMy41Yy0uOSAwLTEuNy0uMS0yLjQtLjRzLTEuNC0uNy0xLjktMS4yLTEtMS4xLTEuMy0xLjljLS4zLS43LS41LTEuNi0uNS0yLjVzLjItMS43LjUtMi41Yy4zLS43LjctMS40IDEuMy0xLjkuNS0uNSAxLjItLjkgMS45LTEuMnMxLjYtLjQgMi40LS40Yy4zIDAgLjcgMCAxIC4xbDEgLjNhNC42NyA0LjY3IDAgMCAxIDEgLjVjLjMuMi42LjUuOC44bC0yLjEgMS4yem0zLjktMi45aDcuN3YyLjNoLTUuMnYyLjFoNC45djIuM2gtNC45djIuM0g3NHYyLjNoLTh2LTExLjN6bTE1LjcgMi44Yy0uMi0uMy0uNS0uNC0uOC0uNi0uMy0uMS0uNy0uMi0xLS4yLS4yIDAtLjQgMC0uNi4xLS4yIDAtLjQuMS0uNS4yYS43OC43OCAwIDAgMC0uNC40Yy0uMS4xLS4yLjMtLjIuNSAwIC4zLjEuNi40LjhzLjYuMyAxIC41Yy40LjEuOC4zIDEuMy40LjQuMS45LjMgMS4zLjVzLjcuNSAxIC45LjQuOS40IDEuNmMwIC42LS4xIDEuMi0uNCAxLjYtLjIuNS0uNi45LTEgMS4ycy0uOS41LTEuNC43Yy0uNS4xLTEuMS4yLTEuNy4yLS43IDAtMS40LS4xLTItLjNzLTEuMi0uNi0xLjgtMS4xbDEuOC0yYy4zLjMuNi42IDEgLjhzLjguMyAxLjIuM2MuMiAwIC40IDAgLjYtLjEuMiAwIC40LS4xLjYtLjJhLjc4Ljc4IDAgMCAwIC40LS40Yy4xLS4yLjItLjMuMi0uNSAwLS4zLS4xLS42LS40LS44cy0uNi0uNC0xLS41LS44LS4zLTEuMy0uNC0uOS0uMy0xLjMtLjZjLS40LS4yLS43LS41LTEtLjlzLS40LS45LS40LTEuNS4xLTEuMS40LTEuNmMuMi0uNS42LS44IDEtMS4yLjQtLjMuOS0uNSAxLjQtLjdzMS4xLS4yIDEuNi0uMmE2LjI4IDYuMjggMCAwIDEgMS45LjNjLjYuMiAxLjEuNSAxLjYuOWwtMS45IDEuOXptOS4zIDBjLS4yLS4zLS41LS40LS44LS42LS4zLS4xLS43LS4yLTEtLjItLjIgMC0uNCAwLS42LjEtLjIgMC0uNC4xLS41LjJhLjc4Ljc4IDAgMCAwLS40LjRjLS4xLjEtLjIuMy0uMi41IDAgLjMuMS42LjQuOHMuNi4zIDEgLjVjLjQuMS44LjMgMS4zLjQuNC4xLjkuMyAxLjMuNXMuNy41IDEgLjkuNC45LjQgMS42YzAgLjYtLjEgMS4yLS40IDEuNi0uMi41LS42LjktMSAxLjJzLS45LjUtMS40LjdjLS41LjEtMS4xLjItMS43LjItLjcgMC0xLjQtLjEtMi0uM3MtMS4yLS42LTEuOC0xLjFsMS44LTJjLjMuMy42LjYgMSAuOHMuOC4zIDEuMi4zYy4yIDAgLjQgMCAuNi0uMS4yIDAgLjQtLjEuNi0uMmEuNzguNzggMCAwIDAgLjQtLjRjLjEtLjIuMi0uMy4yLS41IDAtLjMtLjEtLjYtLjQtLjhzLS42LS40LTEtLjUtLjgtLjMtMS4zLS40LS45LS4zLTEuMy0uNmMtLjQtLjItLjctLjUtMS0uOXMtLjQtLjktLjQtMS41LjEtMS4xLjQtMS42Yy4yLS41LjYtLjggMS0xLjIuNC0uMy45LS41IDEuNC0uN3MxLjEtLjIgMS42LS4yYTYuMjggNi4yOCAwIDAgMSAxLjkuM2MuNi4yIDEuMS41IDEuNi45bC0xLjkgMS45eiIgZmlsbD0iI2Y3OGUyOCIvPjwvc3ZnPg==");
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.product-tiles {
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media all and (min-width: 35.5rem) {
  .product-tiles {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 62rem) {
  .product-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-tiles.col, .product-tiles.col-md-3, .product-tiles.col-md-4, .product-tiles.col-md-6 {
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  margin-bottom: 30px;
}
@media all and (min-width: 62rem) {
  .product-tiles.col, .product-tiles.col-md-3, .product-tiles.col-md-4, .product-tiles.col-md-6 {
    margin-bottom: 0;
  }
}

.product-tile {
  display: grid;
  grid-auto-rows: 1fr;
  position: relative;
  border-radius: 1rem;
}
.product-tile .vsl-arrow {
  padding-right: 0;
  padding-left: 8px;
}
.product-tile-container {
  display: grid;
  grid-auto-rows: -webkit-max-content 1fr;
  grid-auto-rows: max-content 1fr;
}
.product-tile-link {
  display: grid;
  grid-auto-rows: 1fr;
  position: relative;
  color: #444;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
.product-tile-link:hover, .product-tile-link:focus {
  transition: all 0.25s;
}
.product-tile-link:hover .product-overlay, .product-tile-link:focus .product-overlay {
  opacity: 0.05;
}
.product-tile-link:hover .vsl-badge-icon, .product-tile-link:focus .vsl-badge-icon {
  transition: all 0.25s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: -15px;
  width: 80px;
  height: 80px;
}
.product-tile-link .product-theme {
  padding: 0.75rem 1rem 0.75rem 130px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.product-tile-link .product-theme .vsl-arrow {
  display: inline-block;
  padding-left: 5px;
  transition: all 0.25s;
}
.product-tile-link .product-content-container {
  display: grid;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  grid-row-gap: 0;
  position: relative;
  background-color: #fff;
  text-align: center;
  width: 100%;
  padding: 1em;
  align-content: center;
  border-radius: 0 0 1rem 1rem;
}
.product-tile-link .product-content-container .product-description {
  font-weight: bold;
  color: #005587;
}
.product-tile-link .product-content {
  position: relative;
}
.product-tile-link .product-image {
  margin: 1rem auto;
  max-width: 200px;
}
.product-tile-link .vsl-badge-icon {
  position: absolute;
  top: -10px;
  left: 30px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  width: 70px;
  height: 70px;
  transition: all 0.25s;
}

div.product-tile-link {
  background-color: #fff;
  border-radius: 1rem;
}
div.product-tile-link .product-tile-container {
  grid-auto-rows: 1fr;
}
div.product-tile-link .product-content-container {
  background-color: transparent;
  grid-auto-rows: 1fr;
  align-content: start;
  padding: 1.5rem;
}
div.product-tile-link .product-content-container .product-content {
  display: grid;
  grid-template-rows: -webkit-min-content;
  grid-template-rows: min-content;
}
div.product-tile-link .product-content-container .product-description {
  font-weight: normal;
  color: #444;
  text-align: left;
  display: grid;
}
div.product-tile-link .product-content-container .product-description p:last-child {
  align-self: end;
  margin-bottom: 0;
}
div.product-tile-link .product-content-container .product-description .vsl-arrow {
  padding-left: 0;
  padding-right: 8px;
}

@media all and (min-width: 35.5rem) {
  .product-tiles-container .product-tiles--pairs .product-tiles {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 62rem) {
  .product-tiles-container .product-tiles--pairs .product-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 35.5rem) {
  .product-tiles-container .product-tiles--fourths .product-tiles {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 62rem) {
  .product-tiles-container .product-tiles--fourths .product-tiles {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-tile .product-overlay {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all 0.25s;
  background-color: rgb(0, 140.76, 187.68);
  border-radius: 0 0 1rem 1rem;
}

.custom-product-tile.product-tile .product-theme {
  padding: 0.75rem 1rem;
  text-align: center;
}

.product-tile.reading .product-theme,
.product-tile.reading .product-overlay, .product-tile.literacy .product-theme,
.product-tile.literacy .product-overlay {
  background-color: #00956E;
}
.product-tile.reading .product-content-container .product-description, .product-tile.literacy .product-content-container .product-description {
  color: #00956E;
}
.product-tile.writing .product-theme,
.product-tile.writing .product-overlay {
  background-color: #333399;
}
.product-tile.writing .product-content-container .product-description {
  color: #333399;
}
.product-tile.math .product-theme,
.product-tile.math .product-overlay {
  background-color: #D52158;
}
.product-tile.math .product-content-container .product-description {
  color: #D52158;
}
.product-tile.assessment .product-theme,
.product-tile.assessment .product-overlay {
  background-color: #0099CC;
}
.product-tile.assessment .product-content-container .product-description {
  color: #0099CC;
}
.product-tile--Customer .product-theme,
.product-tile--Customer .product-overlay {
  background-color: #FF9015;
}
.product-tile--Customer .product-content-container .product-description {
  color: #FF9015;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.search-form .form-autocomplete, .search-form .form-select, .search-form .js-form-submit.rounded {
  border-radius: 50rem !important;
  margin: 0 !important;
  padding: 1rem 1.5rem;
}
.search-form .form-autocomplete input, .search-form .form-select input, .search-form .js-form-submit.rounded input {
  margin: 0 !important;
}
.search-form .js-form-submit.rounded {
  padding: 1rem 2rem;
}
.search-form .form-label {
  display: none;
}

.ui-menu.ui-autocomplete {
  display: block !important;
}

:root {
  --input-border-radius-size: 1rem;
}

.ui-autocomplete {
  border-radius: 0 0 var(--input-border-radius-size) var(--input-border-radius-size);
}

.search-api-autocomplete-search .ui-menu-item:hover,
.search-api-autocomplete-search .ui-menu-item a:hover, .search-api-autocomplete-search .ui-menu-item:focus,
.search-api-autocomplete-search .ui-menu-item a:focus, .search-api-autocomplete-search .ui-menu-item:active,
.search-api-autocomplete-search .ui-menu-item a:active {
  background-color: #eef7ff;
  background: #eef7ff;
  color: #444;
}
.search-api-autocomplete-search .ui-menu-item:first-child {
  border-radius: 0 0 var(--input-border-radius-size) var(--input-border-radius-size);
}

.search-api-autocomplete-suggestion {
  color: #0099CC;
}
.search-api-autocomplete-suggestion:hover, .search-api-autocomplete-suggestion:focus, .search-api-autocomplete-suggestion .ui-state-active {
  background-color: #eef7ff;
  color: #005587;
}

.search-list .search-item-result:last-child {
  border: 0 none;
}
.search-list .search-item-result .card {
  background-color: #0c508f;
  background: linear-gradient(125deg, #0c508f 0%, #00aee3 45%, #0099CC 95%);
  color: #fff;
  color: #fff;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.table > thead > tr > th {
  border-bottom: 0 none;
}

th {
  font-weight: normal;
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  vertical-align: top;
  padding: 8px;
  line-height: 1em;
  border-bottom: 1px solid #ddd;
}
.table > thead > tr > th ul,
.table > thead > tr > td ul,
.table > tbody > tr > th ul,
.table > tbody > tr > td ul,
.table > tfoot > tr > th ul,
.table > tfoot > tr > td ul {
  line-height: 1.5em;
}
.table > thead > tr > th p:last-child, .table > thead > tr > th p:only-child,
.table > thead > tr > td p:last-child,
.table > thead > tr > td p:only-child,
.table > tbody > tr > th p:last-child,
.table > tbody > tr > th p:only-child,
.table > tbody > tr > td p:last-child,
.table > tbody > tr > td p:only-child,
.table > tfoot > tr > th p:last-child,
.table > tfoot > tr > th p:only-child,
.table > tfoot > tr > td p:last-child,
.table > tfoot > tr > td p:only-child {
  margin-bottom: 0;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}
.table > tbody + tbody {
  border-top: 1px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table--bordered {
  border: 1px solid #ddd;
}
.table--bordered > tbody > tr > th,
.table--bordered > tbody > tr > td,
.table--bordered > tfoot > tr > th,
.table--bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table--bordered > thead > tr > th,
.table--bordered > thead > tr > td {
  border: 1px solid #ddd;
}

.table--striped > tbody > tr:nth-child(odd) > td,
.table--striped > tbody > tr:nth-child(odd) > th {
  background-color: #eee;
}
.table--striped > tbody > tr:nth-child(odd) > td a,
.table--striped > tbody > tr:nth-child(odd) > th a {
  color: rgb(0, 72.25, 114.75);
}

.table--alt-striped > tbody > tr > td:nth-child(odd),
.table--alt-striped > tbody > tr > th:nth-child(odd) {
  background-color: #eee;
}
.table--alt-striped > tbody > tr > td:nth-child(odd) a,
.table--alt-striped > tbody > tr > th:nth-child(odd) a {
  color: rgb(0, 72.25, 114.75);
}

.table--hover > tbody > tr:hover > td,
.table--hover > tbody > tr:hover > th {
  background-color: #ddd;
}

.table-highlight {
  background-color: #eee;
}
.table--reference:hover .table-highlight {
  background-color: transparent;
}

.table--condensed > thead > tr > th,
.table--condensed > thead > tr > td,
.table--condensed > tbody > tr > th,
.table--condensed > tbody > tr > td,
.table--condensed > tfoot > tr > th,
.table--condensed > tfoot > tr > td {
  padding: 3px;
  line-height: 1em;
}

.table--expanded > thead > tr > th,
.table--expanded > thead > tr > td,
.table--expanded > tbody > tr > th,
.table--expanded > tbody > tr > td,
.table--expanded > tfoot > tr > th,
.table--expanded > tfoot > tr > td {
  padding: 1em;
}

.table--header > caption + thead > tr:first-child > td,
.table--header > caption + thead > tr:first-child > th,
.table--header > colgroup + thead > tr:first-child > td,
.table--header > colgroup + thead > tr:first-child > th,
.table--header > thead:first-child > tr:first-child > td,
.table--header > thead:first-child > tr:first-child > th {
  border-top: 1px solid #ddd;
}
.table--header > thead > tr:first-child > th,
.table--header > thead > tr:first-child > .th,
.table--header > tbody > tr:first-child > th,
.table--header > tbody > tr:first-child > .th {
  font-weight: bold;
  background-color: #eee;
  line-height: 1.3em;
  border: 1px solid #ddd;
}
.table--header__dark > caption + thead > tr:first-child > td,
.table--header__dark > caption + thead > tr:first-child > th,
.table--header__dark > colgroup + thead > tr:first-child > td,
.table--header__dark > colgroup + thead > tr:first-child > th,
.table--header__dark > thead:first-child > tr:first-child > td,
.table--header__dark > thead:first-child > tr:first-child > th {
  border-top-color: #131313;
}
.table--header__dark > thead > tr:first-child > th,
.table--header__dark > thead > tr:first-child > .th,
.table--header__dark > tbody > tr:first-child > th,
.table--header__dark > tbody > tr:first-child > .th {
  font-weight: bold;
  color: #fff;
  background-color: #444;
  border: 1px solid #131313;
}
.table--header__light > caption + thead > tr:first-child > td,
.table--header__light > caption + thead > tr:first-child > th,
.table--header__light > colgroup + thead > tr:first-child > td,
.table--header__light > colgroup + thead > tr:first-child > th,
.table--header__light > thead:first-child > tr:first-child > td,
.table--header__light > thead:first-child > tr:first-child > th {
  border-top-color: #ddd;
}
.table--header__light > thead > tr:first-child > th,
.table--header__light > thead > tr:first-child > .th,
.table--header__light > tbody > tr:first-child > th,
.table--header__light > tbody > tr:first-child > .th {
  font-weight: bold;
  background-color: #EEF7FF;
  border: 1px solid #ddd;
}
.table--header__blue > caption + thead > tr:first-child > td,
.table--header__blue > caption + thead > tr:first-child > th,
.table--header__blue > colgroup + thead > tr:first-child > td,
.table--header__blue > colgroup + thead > tr:first-child > th,
.table--header__blue > thead:first-child > tr:first-child > td,
.table--header__blue > thead:first-child > tr:first-child > th {
  border-top-color: #0099CC;
}
.table--header__blue > thead > tr:first-child > th,
.table--header__blue > thead > tr:first-child > .th,
.table--header__blue > tbody > tr:first-child > th,
.table--header__blue > tbody > tr:first-child > .th {
  font-weight: bold;
  color: #fff;
  background-color: #005587;
  border: 1px solid rgb(0, 72.25, 114.75);
}

.table--notes, .basic-table-notes, .table--notes-centered {
  font-size: 0.75rem;
  padding: 0;
  margin-top: 1em;
}

.table--notes-centered {
  font-size: 0.875em;
  text-align: center;
}

.table--fixed {
  table-layout: fixed;
}

.table--alt {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1em;
  background-color: #fff;
  font-size: 0.875em;
  font-weight: normal;
  line-height: 1em;
}
.table--alt > thead > tr > th,
.table--alt > thead > tr > td,
.table--alt > tbody > tr > th,
.table--alt > tbody > tr > td,
.table--alt > tfoot > tr > th,
.table--alt > tfoot > tr > td {
  vertical-align: center;
  padding: 15px 8px;
  border-bottom: 0;
}
.table--alt > thead th,
.table--alt > tbody th,
.table--alt > tfoot th {
  font-weight: bold;
  color: #444;
}
.table--alt > thead th[scope=col],
.table--alt > tbody th[scope=col],
.table--alt > tfoot th[scope=col] {
  font-size: 1.15em;
  line-height: 1.4em;
}
.table--alt > tbody > tr:nth-child(even) > td,
.table--alt > tbody > tr:nth-child(even) > th {
  background-color: #eee;
}
.table--alt > tbody > tr:nth-child(even) > td a,
.table--alt > tbody > tr:nth-child(even) > th a {
  color: rgb(0, 72.25, 114.75);
}
.table--alt > tbody > tr:hover > td,
.table--alt > tbody > tr:hover > th {
  background-color: #bbb;
}
.table--alt > tbody > tr:hover > td a,
.table--alt > tbody > tr:hover > th a {
  color: rgb(0, 72.25, 114.75);
}
.table--alt > tbody > tr:hover > th[scope=col] {
  background-color: transparent;
}

.table-responsive .table--alt {
  margin-bottom: 0;
}

.table--narrow > thead > tr > th,
.table--narrow > thead > tr > td,
.table--narrow > tbody > tr > th,
.table--narrow > tbody > tr > td,
.table--narrow > tfoot > tr > th,
.table--narrow > tfoot > tr > td {
  padding: 12px 8px;
}

.table--valign > thead > tr > th,
.table--valign > thead > tr > td,
.table--valign > tbody > tr > th,
.table--valign > tbody > tr > td,
.table--valign > tfoot > tr > th,
.table--valign > tfoot > tr > td {
  vertical-align: middle;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.carets {
  position: relative;
}
.carets:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.carets--right {
  padding-right: 20px !important;
}
.carets--right:after {
  right: 0px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #ddd;
}

.table-responsive {
  width: 100%;
  border: 1px solid #ddd;
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
}
.table-responsive > .table {
  margin-bottom: 0;
}
.table-responsive > .table > tbody > tr:last-child > th,
.table-responsive > .table > tbody > tr:last-child > td,
.table-responsive > .table > tfoot > tr:last-child > th,
.table-responsive > .table > tfoot > tr:last-child > td {
  border-bottom: 0;
}
.table-responsive > .table--bordered {
  border: 0;
}
.table-responsive > .table--bordered > thead > tr > th,
.table-responsive > .table--bordered > thead > tr > td,
.table-responsive > .table--bordered > tbody > tr > th,
.table-responsive > .table--bordered > tbody > tr > td,
.table-responsive > .table--bordered > tfoot > tr > th,
.table-responsive > .table--bordered > tfoot > tr > td {
  border-top: 0;
}
.table-responsive > .table--bordered > thead > tr > th:first-child,
.table-responsive > .table--bordered > thead > tr > td:first-child,
.table-responsive > .table--bordered > tbody > tr > th:first-child,
.table-responsive > .table--bordered > tbody > tr > td:first-child,
.table-responsive > .table--bordered > tfoot > tr > th:first-child,
.table-responsive > .table--bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.table-responsive > .table--bordered > thead > tr > th:last-child,
.table-responsive > .table--bordered > thead > tr > td:last-child,
.table-responsive > .table--bordered > tbody > tr > th:last-child,
.table-responsive > .table--bordered > tbody > tr > td:last-child,
.table-responsive > .table--bordered > tfoot > tr > th:last-child,
.table-responsive > .table--bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.table-responsive > .table--bordered.table--header > thead > tr:first-child > th,
.table-responsive > .table--bordered.table--header > tbody > tr:first-child > th,
.table-responsive > .table--bordered.table--header > tfoot > tr:first-child > th {
  border-right: 1px solid #ddd;
  border-top: 0;
}
.table-responsive > .table--bordered.table--header > thead > tr:first-child > th:last-child,
.table-responsive > .table--bordered.table--header > thead > tr:first-child > td:last-child,
.table-responsive > .table--bordered.table--header > tbody > tr:first-child > th:last-child,
.table-responsive > .table--bordered.table--header > tbody > tr:first-child > td:last-child,
.table-responsive > .table--bordered.table--header > tfoot > tr:first-child > th:last-child,
.table-responsive > .table--bordered.table--header > tfoot > tr:first-child > td:last-child {
  border-right: 0;
}
.table-responsive > .table--bordered > tbody > tr:last-child > th,
.table-responsive > .table--bordered > tbody > tr:last-child > td,
.table-responsive > .table--bordered > tfoot > tr:last-child > th,
.table-responsive > .table--bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}
.table-responsive > .table--header > thead > tr:first-child > th,
.table-responsive > .table--header > thead > tr:first-child > td,
.table-responsive > .table--header > tbody > tr:first-child > th,
.table-responsive > .table--header > tbody > tr:first-child > td,
.table-responsive > .table--header > tfoot > tr:first-child > th,
.table-responsive > .table--header > tfoot > tr:first-child > td {
  border-top: 0 none;
}

.table-responsive[data-pattern=priority-columns] {
  position: relative;
}

.mq.js .table-responsive[data-pattern=priority-columns] th[data-priority],
.mq.js .table-responsive[data-pattern=priority-columns] td[data-priority],
.mq.js.lt-ie10 .sticky-table-header th[data-priority],
.mq.js.lt-ie10 .sticky-table-header td[data-priority] {
  display: none;
}
.lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="1"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="1"],
.lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="1"],
.lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="1"] {
  display: inline;
}
.mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="1"],
.mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="1"],
.mq.js.lt-ie10 .sticky-table-header th[data-priority="1"],
.mq.js.lt-ie10 .sticky-table-header td[data-priority="1"] {
  display: table-cell;
}
@media all and (min-width: 30rem) {
  .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="2"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="2"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="2"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="2"] {
    display: inline;
  }
  .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="2"],
  .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="2"],
  .mq.js.lt-ie10 .sticky-table-header th[data-priority="2"],
  .mq.js.lt-ie10 .sticky-table-header td[data-priority="2"] {
    display: table-cell;
  }
}
@media all and (min-width: 37.5rem) {
  .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="3"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="3"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="3"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="3"] {
    display: inline;
  }
  .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="3"],
  .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="3"],
  .mq.js.lt-ie10 .sticky-table-header th[data-priority="3"],
  .mq.js.lt-ie10 .sticky-table-header td[data-priority="3"] {
    display: table-cell;
  }
}
@media all and (min-width: 48rem) {
  .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="4"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="4"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="4"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="4"] {
    display: inline;
  }
  .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="4"],
  .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="4"],
  .mq.js.lt-ie10 .sticky-table-header th[data-priority="4"],
  .mq.js.lt-ie10 .sticky-table-header td[data-priority="4"] {
    display: table-cell;
  }
}
@media all and (min-width: 60rem) {
  .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="5"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="5"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="5"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="5"] {
    display: inline;
  }
  .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="5"],
  .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="5"],
  .mq.js.lt-ie10 .sticky-table-header th[data-priority="5"],
  .mq.js.lt-ie10 .sticky-table-header td[data-priority="5"] {
    display: table-cell;
  }
}
@media all and (min-width: 64rem) {
  .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="6"], .lt-ie9 .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="6"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header th[data-priority="6"],
  .lt-ie9 .mq.js.lt-ie10 .sticky-table-header td[data-priority="6"] {
    display: inline;
  }
  .mq.js .table-responsive[data-pattern=priority-columns] th[data-priority="6"],
  .mq.js .table-responsive[data-pattern=priority-columns] td[data-priority="6"],
  .mq.js.lt-ie10 .sticky-table-header th[data-priority="6"],
  .mq.js.lt-ie10 .sticky-table-header td[data-priority="6"] {
    display: table-cell;
  }
}

table.table--small-font {
  font-size: 0.75em;
  -webkit-text-size-adjust: none;
  line-height: 1.5em;
}
table.focus-on tbody tr:hover {
  cursor: pointer;
}
table.focus-on tbody tr.unfocused th, table.focus-on tbody tr.unfocused td {
  color: #eee;
  color: rgba(0, 0, 0, 0.4);
}
table.focus-on tbody tr.focused th, table.focus-on tbody tr.focused td {
  background-color: #ddd;
  color: #000;
}
table th.col-hide,
table td.col-hide {
  display: none;
}
table th.col-show,
table td.col-show {
  display: inline;
}
.lt-ie9 table th.col-show, .lt-ie9 table td.col-show {
  display: table-cell;
}
.lt-ie9 table.display-all th, .lt-ie9 table.display-all td {
  display: inline !important;
}
.lt-ie9 table.hide-all tbody th, .lt-ie9 table.hide-all td, .lt-ie9 table.hide-all th[data-priority] {
  display: none !important;
}
.lt-ie9 table.hide-all td:first-child, .lt-ie9 table.hide-all td + th {
  display: table-cell !important;
}
table.display-all th, table.display-all td {
  display: table-cell !important;
}
table.hide-all tbody th, table.hide-all td, table.hide-all th[data-priority] {
  display: none !important;
}
table.hide-all td:first-child, table.hide-all td + th {
  display: table-cell !important;
}

.sticky-table-header {
  background-color: #eee;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  position: absolute;
  top: 0;
  visibility: hidden;
  z-index: 10;
  overflow: hidden;
  min-width: 100%;
}
.sticky-table-header.fixed-solution {
  min-width: 0;
  position: fixed;
}
.lt-ie10 .sticky-table-header.fixed-solution {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  box-sizing: content-box;
  border-bottom: none;
}
.sticky-table-header > .table {
  margin-bottom: 0;
}
.sticky-table-header > .table--bordered {
  border: 0;
}
.sticky-table-header > .table--bordered > thead > tr > th:first-child,
.sticky-table-header > .table--bordered > thead > tr > td:first-child,
.sticky-table-header > .table--bordered > tbody > tr > th:first-child,
.sticky-table-header > .table--bordered > tbody > tr > td:first-child,
.sticky-table-header > .table--bordered > tfoot > tr > th:first-child,
.sticky-table-header > .table--bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.sticky-table-header > .table--bordered > thead > tr > th:last-child,
.sticky-table-header > .table--bordered > thead > tr > td:last-child,
.sticky-table-header > .table--bordered > tbody > tr > th:last-child,
.sticky-table-header > .table--bordered > tbody > tr > td:last-child,
.sticky-table-header > .table--bordered > tfoot > tr > th:last-child,
.sticky-table-header > .table--bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.sticky-table-header > .table--bordered > tbody > tr:last-child > th,
.sticky-table-header > .table--bordered > tbody > tr:last-child > td,
.sticky-table-header > .table--bordered > tfoot > tr:last-child > th,
.sticky-table-header > .table--bordered > tfoot > tr:last-child > td {
  border-bottom: 0;
}

.k-data-table,
.k-table {
  color: #444;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
#toc {
  position: relative;
  list-style: none;
  padding-left: 0.5rem;
  margin: 0 0 40px;
  font-size: 1rem;
}
#toc > li:first-child > a {
  display: none;
}
#toc li {
  position: relative;
  margin-bottom: 0;
}
#toc li a {
  display: block;
  margin-bottom: 0.5rem;
}
#toc ul {
  list-style: none;
  padding-left: 1.75rem;
}
#toc ul li::before {
  position: absolute;
  left: -1.65em;
  display: block;
  content: "\f33b";
  font-family: "Font Awesome 6 Pro";
  color: #bbb;
  font-size: 0.875rem;
  font-weight: normal;
}
#toc li > ul {
  font-size: 0.875rem;
}
#toc li > ul li::before {
  font-weight: bold;
  content: "\f33b";
}
#toc li > ul li > ul {
  font-size: 0.8125rem;
}
#toc li > ul li > ul li::before {
  font-weight: normal;
}
/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.utility {
  border: 1px solid #666;
  background-color: #666;
  border-radius: 8px;
}
.utility .utility-heading,
.utility h1.utility-heading,
.utility h2.utility-heading,
.utility h3.utility-heading,
.utility h4.utility-heading,
.utility h5.utility-heading,
.utility h6.utility-heading {
  color: #fff;
  border-radius: 8px 8px 0 0;
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
  padding: 0.75rem 1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: none;
  line-height: 1.5;
}
.utility .utility-details {
  color: #666;
  background-color: #eee;
  border-radius: 7px;
  font-size: 0.875rem;
  white-space: wrap;
  padding: 1rem;
}
.utility .utility-details p {
  font-size: 0.875rem;
}
.utility .utility-details p:last-child {
  margin-bottom: 0;
}
.utility .utility-heading + .utility-details {
  border-radius: 0 0 7px 7px;
}
.utility--info {
  border-color: #005587;
  background: #005587;
}
.utility--info .utility-details {
  color: #005587;
  background-color: #EEF7FF;
}
.utility--info .utility-details a {
  color: #005587;
}
.utility--error {
  border-color: #D52158;
  background: #D52158;
}
.utility--error .utility-details {
  color: #D52158;
  background-color: #fff4f6;
}
.utility--error .utility-details a {
  color: #D52158;
}
.utility--success {
  border-color: #00956E;
  background: #00956E;
}
.utility--success .utility-details {
  color: #00956E;
  background-color: #eef7ea;
}
.utility--success .utility-details a {
  color: #00956E;
}
.utility--warning {
  border-color: #FF9015;
  background: #FF9015;
}
.utility--warning .utility-details {
  color: rgb(253.92, 133.4707692308, 0);
  background-color: #fef8f6;
}
.utility--warning .utility-details a {
  color: rgb(253.92, 133.4707692308, 0);
}
.utility--reading {
  border-color: #00956E;
  background: #00956E;
}
.utility--reading .utility-details {
  color: #00956E;
  background-color: #eef7ea;
}
.utility--reading .utility-details a {
  color: #00956E;
}
.utility--writing {
  border-color: #333399;
  background: #333399;
}
.utility--writing .utility-details {
  color: #333399;
  background-color: rgb(156.315, 156.315, 222.105);
}
.utility--writing .utility-details a {
  color: #333399;
}
.utility--math {
  border-color: #D52158;
  background: #D52158;
}
.utility--math .utility-details {
  color: #D52158;
  background-color: #fff4f6;
}
.utility--math .utility-details a {
  color: #D52158;
}
.utility--assessment {
  border-color: #0099CC;
  background: #0099CC;
}
.utility--assessment .utility-details {
  color: rgb(0, 140.76, 187.68);
  background-color: rgb(123.42, 222.105, 255);
}
.utility--assessment .utility-details a {
  color: rgb(0, 140.76, 187.68);
}
.utility--cs {
  border-color: #FF9015;
  background: #FF9015;
}
.utility--cs .utility-details {
  color: rgb(253.92, 133.4707692308, 0);
  background-color: #fef8f6;
}
.utility--cs .utility-details a {
  color: rgb(253.92, 133.4707692308, 0);
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.webstore-product-container .webstore-product-list {
  list-style: none;
  display: grid;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin: 0;
  padding: 0;
}
@media all and (min-width: 35.5rem) {
  .webstore-product-container .webstore-product-list {
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (min-width: 62rem) {
  .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.webstore-product-container .webstore-product-list li, .webstore-product-container .webstore-product-list-item {
  display: grid;
  grid-auto-rows: 1fr;
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
.webstore-product-container .webstore-product-list a {
  display: grid;
  background-color: #eef7ff;
  transition: 0.5s;
  padding: 30px;
}
.webstore-product-container .webstore-product-list a:hover,
.webstore-product-container .webstore-product-list a:focus {
  text-decoration: none;
}
.webstore-product-container .webstore-product-list a:hover .webstore-product-title,
.webstore-product-container .webstore-product-list a:focus .webstore-product-title {
  text-decoration: underline;
}
.webstore-product-container .webstore-product-list a:hover .webstore-product-sku,
.webstore-product-container .webstore-product-list a:hover .webstore-product-price,
.webstore-product-container .webstore-product-list a:focus .webstore-product-sku,
.webstore-product-container .webstore-product-list a:focus .webstore-product-price {
  text-decoration: none;
}
.webstore-product-container .webstore-product-list a:hover .webstore-product-button,
.webstore-product-container .webstore-product-list a:focus .webstore-product-button {
  box-shadow: inset 0 -3.25em 0 0 #005587;
}
.webstore-product-container .webstore-product-button {
  align-self: end;
  margin-top: 20px;
}
.webstore-product-container .webstore-product-image {
  margin-bottom: 30px;
  display: grid;
  justify-items: center;
  align-items: end;
  height: 160px;
}
.webstore-product-container .webstore-product-image img {
  max-width: 160px;
  max-height: 170px;
}
.webstore-product-container .webstore-product-sku,
.webstore-product-container .webstore-product-price {
  color: #444;
}
.webstore-product-container .webstore-product-sku {
  font-size: 0.825rem;
  margin-bottom: 10px;
  display: none;
}
.webstore-product-container .webstore-product-price {
  font-size: 0.925rem;
  align-self: end;
}
.webstore-product-container .webstore-product-price strong {
  color: #0099CC;
}

.webstore-product-rounded .webstore-product-container .webstore-product-list a {
  border-radius: 30px;
}

@media all and (min-width: 35.5rem) {
  .webstore-product-thirds .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (min-width: 62rem) {
  .webstore-product-thirds .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media all and (min-width: 35.5rem) {
  .webstore-product-halves .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media all and (min-width: 62rem) {
  .webstore-product-halves .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media all and (min-width: 35.5rem) {
  .webstore-product-full .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media all and (min-width: 62rem) {
  .webstore-product-full .webstore-product-container .webstore-product-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.breadcrumbs-container {
  background-color: #005587;
}

.breadcrumbs {
  background-color: #005587;
}
.breadcrumbs .breadcrumb {
  max-width: 76.5rem;
  padding-left: 15px;
  padding-right: 15px;
  padding: 8px 15px;
  margin: 0 auto;
  list-style: none;
  background-color: #005587;
  border-radius: 0;
  color: #fff;
  font-size: 0.75rem;
}
.breadcrumbs .breadcrumb > .active {
  color: #bbb;
}
.breadcrumbs .breadcrumb li {
  margin-bottom: 0;
  font-size: 0.75rem;
}
.breadcrumbs .breadcrumb li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumbs .breadcrumb li a:link, .breadcrumbs .breadcrumb li a:active, .breadcrumbs .breadcrumb li a:visited {
  color: #fff;
}
.breadcrumbs .breadcrumb li a:hover, .breadcrumbs .breadcrumb li a:focus {
  text-decoration: underline;
}
.breadcrumbs .breadcrumb li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/ ";
}
@media (min-width: 0) and (max-width: 48rem) {
  .breadcrumbs {
    display: none;
  }
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.site-footer-wrapper {
  background: #005587;
  background-color: #00aee3;
  background: linear-gradient(125deg, rgb(0, 160.08, 208.84) 0%, #0c508f 35%, #005587 95%);
  color: #fff;
  text-align: left;
  margin: 0;
  padding: 2.5rem 1rem;
  color: #fff;
}
.site-footer-wrapper .site-footer-contact-button p.section-heading,
.site-footer-wrapper .section-heading {
  font-size: 1rem;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.site-footer-wrapper ul {
  list-style: none;
  padding-left: 0;
}
.site-footer-wrapper ul a, .site-footer-wrapper ul a:link {
  color: #fff;
  text-decoration: none;
}
.site-footer-wrapper ul a:hover, .site-footer-wrapper ul a:focus, .site-footer-wrapper ul a:link:hover, .site-footer-wrapper ul a:link:focus {
  text-decoration: underline;
}
.site-footer-wrapper .site-footer-list li {
  margin-bottom: 0.25rem;
}
.site-footer-wrapper .site-footer-contact {
  margin: 0;
}
@media (min-width: 0) and (max-width: 62rem) {
  .site-footer-wrapper .site-footer-contact-button {
    margin-top: 1rem;
  }
}
.site-footer-wrapper .link-white {
  text-decoration: none;
}
.site-footer-wrapper .link-white:hover, .site-footer-wrapper .link-white:focus, .site-footer-wrapper .link-white:active {
  background-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.75);
          text-decoration-color: rgba(255, 255, 255, 0.75);
}
.site-footer-wrapper .btn-outline {
  font-weight: bold;
  padding: 15px 10px;
}
@media all and (min-width: 47.99rem) {
  .site-footer-wrapper .btn-outline {
    font-size: 0.875rem;
    width: 100%;
  }
}
.site-footer-wrapper .btn-outline + .btn-outline {
  margin-left: 0.25rem;
}
.site-footer-wrapper .site-footer-logo {
  display: block;
  margin-top: 5rem;
}
.site-footer-wrapper .site-footer-logo img {
  max-width: 200px;
}
@media (min-width: 0) and (max-width: 62rem) {
  .site-footer-wrapper .site-footer-logo {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 47.99rem) {
  .site-footer-wrapper {
    text-align: center;
  }
  .site-footer-wrapper .btn-outline {
    display: block;
  }
  .site-footer-wrapper .btn-outline:first-child {
    margin-bottom: 0.5rem;
  }
  .site-footer-wrapper .btn-outline + .btn-outline {
    margin-left: 0;
  }
}
.site-footer-wrapper .site-footer-social {
  height: 32px;
  margin-bottom: 10px;
}
.site-footer-wrapper .site-footer-social li {
  padding: 0;
  display: inline-block;
  height: 32px;
  width: 40px;
}
.site-footer-wrapper .site-footer-social li a {
  display: inline-block;
  height: 32px;
  width: 40px;
}
.site-footer-wrapper .site-footer-social .fa-inverse {
  color: #005587;
}
.site-footer .cambium-footer {
  text-align: center;
  color: #fff;
  padding: 1.5rem 0;
  background-color: #2b2a2a;
}
.site-footer .cambium-footer * {
  line-height: 40px;
  font-size: 0.75rem;
}
.site-footer .cambium-footer .copyright {
  color: #bbb;
  text-align: left;
}
.site-footer .cambium-footer .copyright a {
  color: #bbb;
  margin-left: 1.5rem;
}
.site-footer .cambium-footer p {
  margin: 0;
  padding: 0;
}
.site-footer .cambium-footer a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.site-footer .cambium-footer a:hover, .site-footer .cambium-footer a:focus, .site-footer .cambium-footer a:active {
  background-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.75);
          text-decoration-color: rgba(255, 255, 255, 0.75);
}
.site-footer .cambium-footer .cambium-footer-copy img, .site-footer .cambium-footer .cambium-footer-copy svg {
  margin-left: 1.5rem;
}
.site-footer .cambium-footer .cambium-footer-copy img path, .site-footer .cambium-footer .cambium-footer-copy img circle, .site-footer .cambium-footer .cambium-footer-copy svg path, .site-footer .cambium-footer .cambium-footer-copy svg circle {
  fill: #fff;
}
@media (min-width: 0) and (max-width: 62rem) {
  .site-footer .cambium-footer .copyright {
    text-align: center;
  }
  .site-footer .cambium-footer .copyright a {
    display: block;
  }
  .site-footer .cambium-footer a.cambium-footer-logo {
    display: block;
  }
  .site-footer .cambium-footer img {
    margin: 0.5rem auto 0;
  }
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.stuck .main-navigation.sticky-top {
  margin-top: 0px;
  padding-top: 0.8rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}
@media all and (min-width: 62rem) {
  .stuck .main-navigation.sticky-top {
    padding-bottom: 0.25rem !important;
    padding-top: 0.5rem !important;
  }
  .stuck .main-navigation.sticky-top .navbar-container {
    align-items: end;
  }
}

.main-navigation {
  transition: all 0.5s ease-in;
}
@media (min-width: 0) and (max-width: 62rem) {
  .main-navigation {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
    padding: 0;
  }
}
.main-navigation .navbar-container {
  transition: all 0.5s ease-in;
  --bs-gutter-x: 0;
}
.main-navigation .nav-brand-logo {
  padding: 1rem 0;
  margin-left: 1.5rem;
}
@media all and (min-width: 62rem) {
  .main-navigation .nav-brand-logo {
    margin-left: 0;
  }
}
.main-navigation .nav-brand-logo img {
  max-height: 40px;
}
.main-navigation .nav-brand-logo:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.main-navigation .navbar-toggler {
  margin-right: 1.5rem;
}
@media all and (min-width: 62rem) {
  .main-navigation .navbar-toggler {
    margin-right: 0;
  }
}
.main-navigation .nav-link {
  transition: all 0.5s ease-in;
  color: #005587;
  text-transform: uppercase;
  font-weight: 400;
}
.main-navigation .nav-link:hover, .main-navigation .nav-link:focus, .main-navigation .nav-link:active {
  color: #67bd4b;
  background-color: transparent;
}
.main-navigation .nav-link::after {
  display: none;
}
.main-navigation .nav-link:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.main-navigation .dropdown-toggle.show {
  color: #67bd4b;
}
.main-navigation .dropdown-toggle.show i {
  color: #67bd4b;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main-navigation .dropdown-toggle:hover i, .main-navigation .dropdown-toggle:focus i, .main-navigation .dropdown-toggle:active i {
  color: #67bd4b;
}
.main-navigation .dropdown-menu .list-group-flush {
  padding-left: 0;
}
.main-navigation .dropdown-menu .dropdown-item,
.main-navigation .dropdown-menu .product-category a {
  color: rgb(0, 140.76, 187.68);
  padding: 0.125rem 0.5rem;
}
@media (min-width: 0) and (max-width: 62rem) {
  .main-navigation .dropdown-menu .dropdown-item,
  .main-navigation .dropdown-menu .product-category a {
    padding: 0.45rem 0.5rem;
  }
}
.main-navigation .dropdown-menu .dropdown-item:hover, .main-navigation .dropdown-menu .dropdown-item:focus, .main-navigation .dropdown-menu .dropdown-item:active,
.main-navigation .dropdown-menu .product-category a:hover,
.main-navigation .dropdown-menu .product-category a:focus,
.main-navigation .dropdown-menu .product-category a:active {
  background-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  -webkit-text-decoration-color: rgba(0, 153, 204, 0.75);
          text-decoration-color: rgba(0, 153, 204, 0.75);
}
.main-navigation .dropdown-menu .dropdown-item:focus-visible,
.main-navigation .dropdown-menu .product-category a:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.main-navigation .dropdown-menu.dropdown-menu-card {
  padding: 0;
  border: 0 none;
  background: none;
}
.main-navigation .dropdown-menu.dropdown-menu-card .card {
  border: 0 none;
}
@media (min-width: 0) and (max-width: 62rem) {
  .main-navigation .dropdown-menu.dropdown-menu-card .card {
    width: 100% !important;
  }
}
.main-navigation .dropdown-menu.dropdown-menu-card .card-body {
  padding: 1.75rem;
}
.main-navigation .dropdown-menu.dropdown-menu-card .card-body .fs-10.fw-bold {
  color: #666;
}
@media (min-width: 0) and (max-width: 48rem) {
  .main-navigation .dropdown-menu.dropdown-menu-card .rounded-start {
    border-top-left-radius: calc(1rem - 3px) !important;
    border-top-right-radius: calc(1rem - 3px) !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
.main-navigation .dropdown-menu.dropdown-menu-products .card-body:last-child {
  padding: 1.5rem 1rem 1.75rem;
}
.main-navigation .dropdown-menu.dropdown-menu-products .product-category a {
  text-decoration: none;
}
.main-navigation .dropdown-menu.dropdown-menu-products .product-category a:hover, .main-navigation .dropdown-menu.dropdown-menu-products .product-category a:focus {
  text-decoration: underline;
}
.main-navigation .dropdown-menu.dropdown-menu-products .btn-outline-light:hover, .main-navigation .dropdown-menu.dropdown-menu-products .btn-outline-light:focus, .main-navigation .dropdown-menu.dropdown-menu-products .btn-outline-light:active {
  color: #fff;
  outline: 1px auto rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
  text-decoration: none;
  box-shadow: none;
}
.main-navigation .dropdown-menu.dropdown-menu-products .btn-outline-light:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.main-navigation .dropdown-menu.dropdown-menu-products .product-category a,
.main-navigation .dropdown-menu.dropdown-menu-products .dropdown-item {
  font-size: 0.75rem;
}
.main-navigation .dropdown-menu.dropdown-menu-products .product-category a .bi,
.main-navigation .dropdown-menu.dropdown-menu-products .dropdown-item .bi {
  padding-left: 8px;
  display: none;
}
@media (min-width: 0) and (max-width: 48rem) {
  .main-navigation .dropdown-menu.dropdown-menu-products .product-category a,
  .main-navigation .dropdown-menu.dropdown-menu-products .dropdown-item {
    font-size: 0.875rem;
  }
  .main-navigation .dropdown-menu.dropdown-menu-products .product-category a-grade,
  .main-navigation .dropdown-menu.dropdown-menu-products .product-category a sup,
  .main-navigation .dropdown-menu.dropdown-menu-products .dropdown-item-grade,
  .main-navigation .dropdown-menu.dropdown-menu-products .dropdown-item sup {
    font-size: 0.75rem;
  }
}
@media (min-width: 0) and (max-width: 48rem) {
  .main-navigation .dropdown-menu.dropdown-menu-products .product-category-icon {
    margin-top: 1rem;
  }
}
.main-navigation .product-item {
  display: inline-block;
  font-size: 0.75rem;
  font-style: italic;
}
.main-navigation .product-item-grade {
  color: #808080;
  font-size: 0.688rem;
  font-style: normal;
}
.main-navigation .product-item sup {
  font-size: 0.688rem;
  padding-left: 2px;
  text-decoration: none;
  font-style: normal;
}
.main-navigation .product-item .bi {
  padding-left: 8px;
  display: none;
}
@media (min-width: 0) and (max-width: 62rem) {
  .main-navigation .product-item {
    font-size: 0.875rem;
  }
  .main-navigation .product-item-grade,
  .main-navigation .product-item sup {
    font-size: 0.75rem;
  }
}

@media (min-width: 0) and (max-width: 62rem) {
  .main-navigation .navbar-nav {
    margin-bottom: -0.5rem !important;
    border-top: 1px solid #ddd;
  }
  .main-navigation .navbar-nav .nav-item {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .main-navigation .navbar-nav .nav-link {
    padding: 0.8rem 1rem;
  }
  .main-navigation .navbar-nav .nav-link:hover, .main-navigation .navbar-nav .nav-link:focus, .main-navigation .navbar-nav .nav-link:active {
    color: rgb(0, 140.76, 187.68);
    background-color: transparent;
  }
  .main-navigation .navbar-nav .dropdown-toggle.show {
    color: rgb(0, 140.76, 187.68);
  }
  .main-navigation .navbar-nav .dropdown-toggle.show i {
    color: rgb(0, 140.76, 187.68);
  }
  .main-navigation .navbar-nav .dropdown-toggle:hover i, .main-navigation .navbar-nav .dropdown-toggle:focus i, .main-navigation .navbar-nav .dropdown-toggle:active i {
    color: rgb(0, 140.76, 187.68);
  }
  .main-navigation .navbar-nav a.btn.btn-mobile-full {
    background: #fff;
    text-align: center;
    color: rgb(0, 140.76, 187.68);
    padding: 0.8rem 1rem;
    border: 0 none;
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
  .main-navigation .navbar-nav a.btn.btn-mobile-full:hover, .main-navigation .navbar-nav a.btn.btn-mobile-full:focus, .main-navigation .navbar-nav a.btn.btn-mobile-full:active {
    background-color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    -webkit-text-decoration-color: rgba(0, 153, 204, 0.75);
            text-decoration-color: rgba(0, 153, 204, 0.75);
  }
  .main-navigation .navbar-nav a.btn.btn-mobile-full:focus-visible {
    outline: 1px auto #c3e7f5;
    background: #eef7ff;
    text-decoration: none;
    box-shadow: none;
  }
  .main-navigation .navbar-nav .dropdown-menu-products .card-body:last-child {
    border-top: 1px solid #ddd !important;
    padding: 1rem;
  }
  .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm {
    padding: 0;
    background: #fff;
  }
  .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm a.btn.btn-outline-light.btn-full {
    text-align: center;
    color: rgb(0, 140.76, 187.68);
    padding: 0.8rem 1rem;
    border: 0 none;
  }
  .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm a.btn.btn-outline-light.btn-full:hover, .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm a.btn.btn-outline-light.btn-full:focus, .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm a.btn.btn-outline-light.btn-full:active {
    background-color: transparent;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    -webkit-text-decoration-color: rgba(0, 153, 204, 0.75);
            text-decoration-color: rgba(0, 153, 204, 0.75);
    border-color: #ddd;
  }
  .main-navigation .navbar-nav .dropdown-menu-products .card-body.vsl-gradient-green-blue-sm a.btn.btn-outline-light.btn-full:focus-visible {
    outline: 1px auto #c3e7f5;
    background: #eef7ff;
    text-decoration: none;
    box-shadow: none;
  }
  .main-navigation .navbar-nav .card {
    border-radius: 0;
    background-color: #f4f4f4;
    border-top: 1px solid #ddd !important;
  }
  .main-navigation .navbar-nav .card .card-body {
    padding: 1rem;
  }
  .main-navigation .navbar-nav .card .card-body .row > div:first-child {
    display: block;
  }
  .main-navigation .navbar-nav .card.shadow-lg {
    box-shadow: none !important;
  }
  .main-navigation .navbar-nav .card .row > div:first-child {
    display: none;
  }
}
.navbar-toggle {
  border: 0 none;
}
.navbar-toggle:hover, .navbar-toggle:focus, .navbar-toggle:active, .navbar-toggle:focus-visible {
  outline: 1px auto #c3e7f5;
  background: #eef7ff;
  text-decoration: none;
  box-shadow: none;
}
.navbar-toggle.collapsed .ham-to-x .ham {
  left: 0;
  margin-top: 5px;
  position: relative;
  top: 0px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  width: 100%;
}
.navbar-toggle .ham-stack {
  cursor: pointer;
  display: inline-block;
  height: 32px;
  overflow: hidden;
  position: relative;
  top: 2px;
  width: 32px;
}
.navbar-toggle .ham-stack .ham {
  background-color: #0099CC;
  display: block;
  height: 4px;
  left: 0;
  position: relative;
  top: 0px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: 0.5s;
  width: 100%;
  margin-top: 5px;
}

.ham-to-x .ham:first-child {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.ham-to-x .ham:nth-child(2) {
  left: 10em;
  top: 4px;
}

.ham-to-x .ham:last-child {
  top: -9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.animate {
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
    opacity: 0;
  }
}
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.stuck .navbar.quick-links.sticky-top {
  margin-top: 0;
}
.stuck .navbar.quick-links.sticky-top ul.navbar-nav {
  padding: 0rem;
}
.stuck .navbar.quick-links.sticky-top ul.navbar-nav a {
  display: block;
  font-size: 0.75rem;
}

.navbar.quick-links {
  margin-top: -10px;
  padding: 0;
  z-index: 1031;
}
.navbar.quick-links .bg-lime {
  border-bottom-left-radius: calc(1rem - 3px) !important;
  border-bottom-right-radius: calc(1rem - 3px) !important;
}
.navbar.quick-links ul.navbar-nav {
  padding: 0 0.5rem;
  list-style: none;
}
.navbar.quick-links ul.navbar-nav li {
  padding: 0;
}
.navbar.quick-links ul.navbar-nav li form {
  position: relative;
  transition: all 1s;
  width: 26px;
  height: 26px;
  background: #67bd4b;
  border-radius: 25px;
  border: 1px solid #67bd4b;
  margin-top: 0.35rem;
  margin-left: 0.5rem;
}
.navbar.quick-links ul.navbar-nav li form:hover, .navbar.quick-links ul.navbar-nav li form:focus, .navbar.quick-links ul.navbar-nav li form:active {
  width: 300px;
  background: #fff;
  cursor: pointer;
}
.navbar.quick-links ul.navbar-nav li form:hover input, .navbar.quick-links ul.navbar-nav li form:focus input, .navbar.quick-links ul.navbar-nav li form:active input {
  display: block;
}
.navbar.quick-links ul.navbar-nav li form:hover .fa, .navbar.quick-links ul.navbar-nav li form:focus .fa, .navbar.quick-links ul.navbar-nav li form:active .fa {
  color: #67bd4b;
}
.navbar.quick-links ul.navbar-nav li form input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  line-height: 25px;
  outline: 0;
  border: 0;
  display: none;
  font-size: 0.8em;
  border-radius: 20px;
  padding: 0 20px;
}
.navbar.quick-links ul.navbar-nav li form .fa {
  box-sizing: border-box;
  padding: 5px;
  width: 33.5px;
  height: 33.5px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  transition: all 1s;
}
.navbar.quick-links ul.navbar-nav li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.938rem;
}
.navbar.quick-links ul.navbar-nav li a:hover, .navbar.quick-links ul.navbar-nav li a:focus, .navbar.quick-links ul.navbar-nav li a:active {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.navbar.quick-links ul.navbar-nav li a:focus-visible {
  outline: 1px auto rgba(0, 149, 110, 0.6);
  background: rgba(255, 255, 255, 0.2);
  -webkit-text-decoration-color: #00956e;
          text-decoration-color: #00956e;
  text-decoration: none;
  box-shadow: none;
}

html, body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/**
 * Body base styles
 */
body, .body-text {
  font-family: "Montserrat", "Lato", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #444;
  margin: 0;
}

p, .p, article, .article {
  font-size: 16px;
}

/**
 * Header base styles
 */
h1, .h1, .accent-title1 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

h2, .h2, .accent-title2 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

h3, .h3, .accent-title3 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

h4, .h4, .accent-title4 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

h5, .h5, .accent-title5 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

h6, .h6, .accent-title6 {
  font-family: "Montserrat", avenir next, avenir, helvetica neue, helvetica, arial, sans-serif;
}

.fs-7 {
  font-size: 0.938rem !important;
}

.fs-8 {
  font-size: 0.875rem !important;
}

.fs-9 {
  font-size: 0.75rem !important;
}

.fs-10 {
  font-size: 0.688rem !important;
}

.left-border {
  border-left: 3px solid #76BC21;
  padding-left: 0.75rem;
  font-weight: bolder;
}

.reading-theme .left-border,
.literacy-theme .left-border {
  border-left-color: #00956E;
}

.writing-theme .left-border {
  border-left-color: #333399;
}

.math-theme .left-border {
  border-left-color: #D52158;
}

.assessment-theme .left-border {
  border-left-color: #0099CC;
}

.cs-theme .left-border {
  border-left-color: #FF9015;
}

/**
 * Text modifier base styles
 */
b, strong, .strong {
  font-weight: 700;
}

.fw-boldest {
  font-weight: 800;
}

.em, em {
  font-style: italic;
}

small, .small {
  font-size: 0.75rem;
}

sup {
  padding-left: 2px;
}

/**
 * Selection styles
 */
::-moz-selection {
  color: #131313;
  background: #ddd;
}
::-moz-selection, ::selection {
  color: #131313;
  background: #ddd;
}

/**
 * Code base styles
 */
code,
kbd,
pre,
samp {
  font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
  font-size: 0.75rem;
}

code {
  display: inline-block;
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0.2rem 0.5rem;
  line-height: 1.2;
  color: #D52158;
  border-radius: 4px;
  max-width: 100%;
  overflow: scroll;
}

/**
 * Preformatted text base styles
 */
pre {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem;
  overflow-x: auto;
  /**
   * Remove border from code within preformatted text block
   */
}
pre code {
  border: 0;
}

/**
 * Code with languages associated with them
 * 1) Override Prism sysles for code blocks with language
 */
code[class*=language-],
pre[class*=language-] {
  font-family: monospace !important;
}

.no-underline {
  text-decoration: none !important;
}

/**
 * Typography styles needed for migration
 */
.fa-arrow-right, .vsl-arrow {
  font-style: normal;
  font-weight: normal;
  padding-right: 8px;
  display: inline-block;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
/**
 * Bootstrap 5.3 Overrides
 */
@media (min-width: 0) and (max-width: 575px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.text-standard {
  color: #444 !important;
}

.text-muted {
  color: #666 !important;
}

.text-primary {
  color: #005587 !important;
}

.text-info {
  color: #1fc0de !important;
}

.text-success,
.text-reading {
  color: #00956E !important;
}

.text-danger,
.text-math {
  color: #D52158 !important;
}

.text-warning,
.text-cs {
  color: #FF9015 !important;
}

.text-lime {
  color: #67bd4b !important;
}

.text-white {
  color: #fff !important;
}

.text-writing {
  color: #333399 !important;
}

.text-accessibility,
.text-assessment {
  color: #0099CC !important;
}

.text-blue-gray {
  color: #334a5e !important;
}

.link-primary {
  color: #005587 !important;
  -webkit-text-decoration-color: #005587;
          text-decoration-color: #005587;
}

.link-info {
  color: #1fc0de !important;
  -webkit-text-decoration-color: #1fc0de;
          text-decoration-color: #1fc0de;
}

.link-success,
.link-reading {
  color: #00956E !important;
  -webkit-text-decoration-color: #00956E;
          text-decoration-color: #00956E;
}

.link-danger,
.link-math {
  color: #D52158 !important;
  -webkit-text-decoration-color: #D52158;
          text-decoration-color: #D52158;
}

.link-warning,
.link-cs {
  color: #FF9015 !important;
  -webkit-text-decoration-color: #FF9015;
          text-decoration-color: #FF9015;
}

.link-lime {
  color: #67bd4b !important;
  -webkit-text-decoration-color: rgba(103, 189, 75, 0);
          text-decoration-color: rgba(103, 189, 75, 0);
}
.link-lime:hover, .link-lime:focus {
  -webkit-text-decoration-color: #67bd4b;
          text-decoration-color: #67bd4b;
}
.link-lime:hover .bi, .link-lime:focus .bi {
  -webkit-text-decoration-color: rgba(103, 189, 75, 0);
          text-decoration-color: rgba(103, 189, 75, 0);
}

.link-white {
  color: #fff !important;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}
.link-white:hover, .link-white:focus {
  color: #0099CC !important;
  -webkit-text-decoration-color: #0099cc;
          text-decoration-color: #0099cc;
}

.link-white-container a {
  color: #fff !important;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}
.link-white-container a:hover, .link-white-container a:focus {
  color: #0099CC !important;
  -webkit-text-decoration-color: #0099cc;
          text-decoration-color: #0099cc;
}

.link-writing {
  color: #333399 !important;
}

.link-accessibility,
.link-assessment {
  color: #0099CC !important;
}

.text-bg-primary,
.bg-primary {
  background-color: #005587 !important;
}

.text-bg-royal-blue,
.bg-royal-blue {
  background-color: #0c508f !important;
  color: #fff !important;
}

.text-bg-info,
.bg-info {
  background-color: #1fc0de !important;
  color: #fff !important;
}

.text-bg-success,
.bg-success,
.bg-reading {
  background-color: #00956E !important;
  color: #fff !important;
}

.text-bg-danger,
.bg-danger,
.bg-math {
  background-color: #D52158 !important;
  color: #fff !important;
}

.text-bg-warning,
.bg-warning,
.bg-cs {
  background-color: #FF9015 !important;
  color: #fff !important;
}

.text-bg-sky,
.bg-sky {
  background-color: #0099CC !important;
  color: #fff !important;
}

.text-bg-cyan,
.bg-cyan {
  background-color: #1fc0de !important;
}

.text-bg-cyan-lt,
.bg-cyan-lt {
  background-color: #c3e7f5 !important;
}

.text-bg-cyan-dk,
.bg-cyan-dk {
  background-color: #39c0c0 !important;
  color: #fff !important;
}

.text-bg-lime,
.bg-lime {
  background-color: #67bd4b !important;
  color: #fff !important;
}

.text-bg-white,
.bg-white {
  background-color: #fff !important;
}

.text-bg-shade,
.bg-shade,
.primary-color-light_background {
  background-color: #eef7ff !important;
}

.bg-shade-lt-purple {
  background-color: rgba(198, 187, 216, 0.4) !important;
}

.bg-shade-dk-purple {
  background-color: #572c81 !important;
  color: #fff !important;
}

.bg-writing {
  background-color: #333399 !important;
  color: #fff !important;
}

.bg-accessibility,
.bg-assmessment {
  background-color: #0099CC !important;
  color: #fff !important;
}

.bg-blue-gray {
  background-color: #334a5e !important;
  color: #fff !important;
}

.bg-green-blue-gray {
  background-color: #33555e !important;
  color: #fff !important;
}

.bg-green-gray {
  background-color: #335e5c !important;
  color: #fff !important;
}

.bg-lt-gray {
  background-color: #eee;
}

.bg-color-brand-cambium {
  background-color: #2b2a2a;
  color: #fff !important;
}

.border-primary {
  border-color: #005587 !important;
}

.border-info {
  border-color: #1fc0de !important;
}

.border-success,
.border-reading {
  border-color: #00956E !important;
}

.border-danger,
.border-math {
  border-color: #D52158 !important;
}

.border-warning,
.border-cs {
  border-color: #FF9015 !important;
}

.border-lime {
  border-color: #67bd4b !important;
}

.border-writing {
  border-color: #333399 !important;
}

.border-accessibility,
.border-assessment {
  border-color: #0099CC !important;
}

.rounded-lg-container img,
.rounded-lg {
  border-radius: calc(1rem - 3px) !important;
}

.rounded-top {
  border-top-left-radius: calc(1rem - 3px) !important;
  border-top-right-radius: calc(1rem - 3px) !important;
}

.rounded-bottom {
  border-bottom-left-radius: calc(1rem - 3px) !important;
  border-bottom-right-radius: calc(1rem - 3px) !important;
}

.rounded-start {
  border-top-left-radius: calc(1rem - 3px) !important;
  border-bottom-left-radius: calc(1rem - 3px) !important;
}

.rounded-end {
  border-top-right-radius: calc(1rem - 3px) !important;
  border-bottom-right-radius: calc(1rem - 3px) !important;
}

.link-no-decoration {
  text-decoration: none;
}

.justify-content-center > .container > .row {
  justify-content: center !important;
}

.align-items-center > .container > .row {
  align-items: center !important;
}

.g-0 > .container > .row {
  --bs-gutter-y: 0;
  --bs-gutter-x: 0;
}

.gx-1 > .container > .row {
  --bs-gutter-x: .25rem;
}

.gx-2 > .container > .row {
  --bs-gutter-x: .5rem;
}

.gx-3 > .container > .row {
  --bs-gutter-x: 1rem;
}

.gx-4 > .container > .row {
  --bs-gutter-x: 1.5rem;
}

.gx-5 > .container > .row {
  --bs-gutter-x: 3rem;
}

.subtitle-nobreak br {
  display: none;
}

.ajax-throbber .sk-fold-cube:nth-child(1)::before {
  background-color: #00956E !important;
}
.ajax-throbber .sk-fold-cube:nth-child(2)::before {
  background-color: #333399 !important;
}
.ajax-throbber .sk-fold-cube:nth-child(3)::before {
  background-color: #D52158 !important;
}
.ajax-throbber .sk-fold-cube:nth-child(4)::before {
  background-color: #0099CC !important;
}
.ajax-throbber .sk-fold-cube::before {
  background-color: #005587 !important;
}

.ajax-throbber .sk-flow-dot:nth-child(1) {
  background-color: #00956E !important;
}
.ajax-throbber .sk-flow-dot:nth-child(2) {
  background-color: #333399 !important;
}
.ajax-throbber .sk-flow-dot:nth-child(3) {
  background-color: #D52158 !important;
}

/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
/*------------------------------------*\
     #COLORS
 \*------------------------------------*/
/**
 * Primary Brand Colors
 * 1) Brand=specific colors
 */
/**
* Secondary Brand Colors
* 1) Brand=specific colors
*/
/**
 * Neutral Colors
 * 1) Neutral colors are grayscale values used throughout the UI
 */
/**
 * Utility Colors
 * 1) Utility colors are colors used to provide feedback, such as alert messages,
 *    form validation, etc.
 */
/**
 * Acadience Colors
 * 1) Brand=specific colors
 */
/*------------------------------------*\
     #TEMPLATING
 \*------------------------------------*/
/* Templating */
/*------------------------------------*\
     #TYPOGRAPHY
 \*------------------------------------*/
/**
* Bootstrap overrides
*/
.removed {
  display: none !important;
  visibility: hidden;
}

@media (min-width: 0) and (max-width: 47.99rem) {
  .mobile__removed {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 47.99rem) and (max-width: 64rem) {
  .tablet__removed {
    display: none !important;
    visibility: hidden;
  }
}

@media all and (min-width: 64rem) {
  .desktop__removed {
    display: none !important;
    visibility: hidden;
  }
}

.xxl__removed {
  display: block;
  visibility: visible;
}
@media all and (min-width: 87.5rem) {
  .xxl__removed {
    display: none !important;
    visibility: hidden;
  }
}

.hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px) !important; /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px) !important;
  height: 1px !important;
  width: 1px !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

@media (min-width: 0) and (max-width: 47.99rem) {
  .mobile__hide {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

@media (min-width: 47.99rem) and (max-width: 64rem) {
  .tablet__hide {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px) !important; /* for Internet Explorer */
    clip: rect(1px, 1px, 1px, 1px) !important;
    height: 1px !important;
    width: 1px !important;
    border: 0 !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

@media all and (min-width: 64rem) {
  .desktop__hide {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px) !important; /* for Internet Explorer */
    clip: rect(1px, 1px, 1px, 1px) !important;
    height: 1px !important;
    width: 1px !important;
    border: 0 !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

.hide.focusable:active,
.hide.focusable:focus {
  clip: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  width: auto !important;
  z-index: 1000;
}

.invisible {
  visibility: hidden;
}

.embedded-video,
.embedded-16x9 {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.embedded-video iframe,
.embedded-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embedded-4x3 {
  position: relative;
  padding-bottom: 75%; /* 4:3 */
  padding-top: 25px;
  height: 0;
}

.embedded-4x3 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.font-larger {
  font-size: 1.125em;
}

.font-standard {
  font-size: 1rem;
}

.font-smaller {
  font-size: 0.875em;
}

.font-spaced,
.text-spaced {
  letter-spacing: 1px;
}

.uppercase, .caps {
  text-transform: uppercase;
}

.not-italic {
  font-style: normal;
}

.t--left {
  text-align: left;
}

.t--right {
  text-align: right;
}

.text-center,
.text-center-sm,
.t--center {
  text-align: center;
}
.text-center .field--item,
.text-center .rounded-lg-container,
.text-center > .paragraph,
.text-center-sm .field--item,
.text-center-sm .rounded-lg-container,
.text-center-sm > .paragraph,
.t--center .field--item,
.t--center .rounded-lg-container,
.t--center > .paragraph {
  text-align: center;
}
.text-center .field--item img,
.text-center .rounded-lg-container img,
.text-center > .paragraph img,
.text-center-sm .field--item img,
.text-center-sm .rounded-lg-container img,
.text-center-sm > .paragraph img,
.t--center .field--item img,
.t--center .rounded-lg-container img,
.t--center > .paragraph img {
  display: inline-block;
  margin: 0 auto;
}
.text-center .figure .figure-caption,
.text-center-sm .figure .figure-caption,
.t--center .figure .figure-caption {
  text-align: center;
}
.text-center > img,
.text-center-sm > img,
.t--center > img {
  display: inline-block;
  margin: 0 auto;
}

.truncate {
  width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-col-padding {
  padding: 0;
}

.padding-40 {
  padding: 40px;
}

.padding-30 {
  padding: 30px;
}

.padding-20 {
  padding: 20px;
}

.p-top,
.p--top {
  padding-top: 1rem;
}
.p-top-sm,
.p--top-sm {
  padding-top: 0.5rem;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.p-bottom,
.p--bottom {
  padding-bottom: 1rem;
}
.p-bottom-sm,
.p--bottom-sm {
  padding-bottom: 0.5rem;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.m-top,
.m--top {
  margin-top: 1rem;
}
.m-top-sm,
.m--top-sm {
  margin-top: 0.5rem;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.m-bottom,
.m--bottom {
  margin-bottom: 1rem;
}
.m-bottom-sm,
.m--bottom-sm {
  margin-bottom: 0.5rem;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.no-margin,
.m--none {
  margin: 0 !important;
}

.no-padding,
.p--none {
  padding: 0 !important;
}

.no-margin--top,
.m--top-none {
  margin-top: 0 !important;
}

.no-padding--top,
.p--top-none {
  padding-top: 0 !important;
}

.no-margin--bottom {
  margin-bottom: 0 !important;
}

.no-padding--bottom {
  padding-bottom: 0 !important;
}

.m--left {
  margin-left: 1rem;
}

.m--right {
  margin-right: 1rem;
}

.p--left {
  padding-left: 1em;
}

.p--right {
  padding-right: 1em;
}

.p--all {
  padding: 1em;
}

@media (min-width: 0) and (max-width: 47.99rem) {
  .mobile__no-margin, .no-mobile-margin {
    margin: 0 !important;
  }
  .mobile__no-padding, .no-mobile-padding {
    padding: 0 !important;
  }
  .mobile__no-margin--top {
    margin-top: 0 !important;
  }
  .mobile__m--top {
    margin-top: 1.5em;
  }
  .mobile__m--top-lg {
    margin-top: 2em;
  }
  .mobile__m--left {
    margin-left: 1.5em;
  }
  .mobile__m--right {
    margin-right: 1.5em;
  }
  .mobile__m--bottom {
    margin-bottom: 1.5em;
  }
  .mobile__m--both {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .mobile__p--top, .breadcrumbs + .content:first-of-type > .content__block:first-of-type .content__block.mobile__p--top {
    padding-top: 1.5em;
  }
  .mobile__p--bottom {
    padding-bottom: 1.5em;
  }
  .mobile__p--both {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .mobile__no-sides {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mobile__font-larger {
    font-size: 1.125em;
  }
  .mobile__font-smaller {
    font-size: 0.875em;
  }
  .mobile__no-border {
    border: 0 none !important;
  }
  .mobile__t--center {
    text-align: center;
  }
  .mobile__t--center img {
    display: block;
    float: none;
    margin: 0 auto 1rem;
  }
}
@media (min-width: 0) and (max-width: 62rem) {
  .md__m--top {
    margin-top: 1.5em;
  }
  .md__m--left {
    margin-left: 1.5em;
  }
  .md__m--right {
    margin-right: 1.5em;
  }
  .md__m--bottom {
    margin-bottom: 1.5em;
  }
}
.block {
  display: block;
}

.block--full {
  display: block;
  width: 100%;
}

@media (min-width: 0) and (max-width: 30rem) {
  .mobile-block {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.block-indent {
  margin-left: 1em;
}
@media all and (min-width: 48rem) {
  .block-indent {
    margin-left: 3em;
  }
}

@media all and (min-width: 48rem) {
  .f--right {
    float: right;
  }
}

@media all and (min-width: 48rem) {
  .f--left {
    float: left;
  }
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after, .clearfix:before {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.full-width {
  width: 100%;
}

.underline-blue,
.product-underline {
  border-bottom: 1px solid #0099CC;
  width: 32px;
  margin: 10px 0 10px;
}
.underline-blue--reading, .underline-blue--literacy,
.product-underline--reading,
.product-underline--literacy {
  border-color: #00956E;
}
.underline-blue--writing,
.product-underline--writing {
  border-color: #333399;
}
.underline-blue--math,
.product-underline--math {
  border-color: #D52158;
}
.underline-blue--assessment,
.product-underline--assessment {
  border-color: #0099CC;
}
.underline-blue--cs,
.product-underline--cs {
  border-color: #FF9015;
}

/*# sourceMappingURL=main.style.css.map*/