@charset "UTF-8";

/*!
 * ----------------------------------------------------------------------------
 * Halfmoon CSS
 * Version: 2.0.2
 * https://www.gethalfmoon.com
 * Copyright (c) 2023, Tahmid Khan
 * Licensed under MIT (https://www.gethalfmoon.com/license)
 * ----------------------------------------------------------------------------
 * The above notice must be included in its entirety when this file is used.
 */

/**
 * ----------------------------------------------------------------------------
 * [ SVGs ]
 * ----------------------------------------------------------------------------
 */

:root,
[data-st-theme=light] {
	--st-checkbox-svg-light: 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 10l3 3l6-6'/%3e%3c/svg%3e");
    --st-checkbox-svg-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23222' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");

    --st-dash-svg-light: 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");
    --st-dash-svg-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23222' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");

    --st-radio-svg-light: 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");
    --st-radio-svg-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23222'/%3e%3c/svg%3e");

    --st-switch-svg-light: 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");
    --st-switch-svg-dark: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23222'/%3e%3c/svg%3e");
    --st-switch-svg-unchecked: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23bcbec2'/%3e%3c/svg%3e");
}

[data-st-theme=dark] {
    --st-switch-svg-unchecked: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23494b50'/%3e%3c/svg%3e");
}

/**
 * ----------------------------------------------------------------------------
 * [ Color palette ]
 * ----------------------------------------------------------------------------
 */

:root,
[data-st-theme=light] {
	/* Black */

	--st-black-hsl: 0, 0%, 0%;
	--st-black: hsl(var(--st-black-hsl));

	/* White */

	--st-white-hsl: 0, 0%, 100%;
	--st-white: hsl(var(--st-white-hsl));

	/* Gray */

	--st-mistyrose-hue: 0;
	--st-mistyrose-saturation: 5%;

	--st-stone-hue: 25;
	--st-stone-saturation: 5%;

	--st-sand-hue: 60;
	--st-sand-saturation: 5%;

	--st-sage-hue: 152;
	--st-sage-saturation: 6%;

	--st-slate-hue: 214.3;
	--st-slate-saturation: 12.3%;

	--st-neutral-hue: 218;
	--st-neutral-saturation: 5%;

	--st-zinc-hue: 240;
	--st-zinc-saturation: 4%;

	--st-mauve-hue: 331;
	--st-mauve-saturation: 7.5%;

	/* Light gray */

	--st-lightgray-hue: var(--st-neutral-hue);
	--st-lightgray-saturation: var(--st-neutral-saturation);
	--st-lightgray-100-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 97.5%;
	--st-lightgray-200-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 95%;
	--st-lightgray-300-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 92.5%;
	--st-lightgray-400-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 90%;
	--st-lightgray-500-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 87.5%;
	--st-lightgray-600-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 85%;
	--st-lightgray-700-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 80%;
	--st-lightgray-800-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 75%;
	--st-lightgray-900-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 70%;
	--st-lightgray-100: hsl(var(--st-lightgray-100-hsl));
	--st-lightgray-200: hsl(var(--st-lightgray-200-hsl));
	--st-lightgray-300: hsl(var(--st-lightgray-300-hsl));
	--st-lightgray-400: hsl(var(--st-lightgray-400-hsl));
	--st-lightgray-500: hsl(var(--st-lightgray-500-hsl));
	--st-lightgray-600: hsl(var(--st-lightgray-600-hsl));
	--st-lightgray-700: hsl(var(--st-lightgray-700-hsl));
	--st-lightgray-800: hsl(var(--st-lightgray-800-hsl));
	--st-lightgray-900: hsl(var(--st-lightgray-900-hsl));
	--st-lightgray-hsl: var(--st-lightgray-500-hsl);
	--st-lightgray: hsl(var(--st-lightgray-hsl));
	--st-lightgray-foreground-hsl: var(--st-lightgray-hue), var(--st-lightgray-saturation), 10%;
	--st-lightgray-foreground: hsl(var(--st-lightgray-foreground-hsl));
	--st-lightgray-text-emphasis-hsl: var(--st-lightgray-600-hsl);
	--st-lightgray-text-emphasis: hsl(var(--st-lightgray-text-emphasis-hsl));
	--st-lightgray-hover-bg: var(--st-lightgray-400);
	--st-lightgray-active-bg: var(--st-lightgray-300);
	--st-lightgray-bg-subtle: hsl(var(--st-lightgray-hue), var(--st-lightgray-saturation), 97.5%);
	--st-lightgray-border-subtle: var(--st-lightgray-400);
	--st-lightgray-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-lightgray-dash-svg: var(--st-dash-svg-dark);
	--st-lightgray-radio-svg: var(--st-radio-svg-dark);
	--st-lightgray-switch-svg: var(--st-switch-svg-dark);

	/* Gray */

	--st-gray-hue: var(--st-lightgray-hue);
	--st-gray-saturation: var(--st-lightgray-saturation);
	--st-gray-100-hsl: var(--st-gray-hue), var(--st-gray-saturation), 85%;
	--st-gray-200-hsl: var(--st-gray-hue), var(--st-gray-saturation), 75%;
	--st-gray-300-hsl: var(--st-gray-hue), var(--st-gray-saturation), 65%;
	--st-gray-400-hsl: var(--st-gray-hue), var(--st-gray-saturation), 55%;
	--st-gray-500-hsl: var(--st-gray-hue), var(--st-gray-saturation), 45%;
	--st-gray-600-hsl: var(--st-gray-hue), var(--st-gray-saturation), 40%;
	--st-gray-700-hsl: var(--st-gray-hue), var(--st-gray-saturation), 35%;
	--st-gray-800-hsl: var(--st-gray-hue), var(--st-gray-saturation), 30%;
	--st-gray-900-hsl: var(--st-gray-hue), var(--st-gray-saturation), 25%;
	--st-gray-100: hsl(var(--st-gray-100-hsl));
	--st-gray-200: hsl(var(--st-gray-200-hsl));
	--st-gray-300: hsl(var(--st-gray-300-hsl));
	--st-gray-400: hsl(var(--st-gray-400-hsl));
	--st-gray-500: hsl(var(--st-gray-500-hsl));
	--st-gray-600: hsl(var(--st-gray-600-hsl));
	--st-gray-700: hsl(var(--st-gray-700-hsl));
	--st-gray-800: hsl(var(--st-gray-800-hsl));
	--st-gray-900: hsl(var(--st-gray-900-hsl));
	--st-gray-hsl: var(--st-gray-500-hsl);
	--st-gray: hsl(var(--st-gray-hsl));
	--st-gray-foreground-hsl: var(--st-white-hsl);
	--st-gray-foreground: hsl(var(--st-gray-foreground-hsl));
	--st-gray-text-emphasis-hsl: var(--st-gray-600-hsl);
	--st-gray-text-emphasis: hsl(var(--st-gray-text-emphasis-hsl));
	--st-gray-hover-bg: var(--st-gray-600);
	--st-gray-active-bg: var(--st-gray-700);
	--st-gray-bg-subtle: hsl(var(--st-gray-hue), var(--st-gray-saturation), 95%);
	--st-gray-border-subtle: var(--st-gray-400);
	--st-gray-checkbox-svg: var(--st-checkbox-svg-light);
	--st-gray-dash-svg: var(--st-dash-svg-light);
	--st-gray-radio-svg: var(--st-radio-svg-light);
	--st-gray-switch-svg: var(--st-switch-svg-light);

	/* Dark gray */

	--st-darkgray-hue: var(--st-slate-hue);
	--st-darkgray-saturation: var(--st-slate-saturation);
	--st-darkgray-100-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 75%;
	--st-darkgray-200-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 65%;
	--st-darkgray-300-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 55%;
	--st-darkgray-400-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 45%;
	--st-darkgray-500-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 35%;
	--st-darkgray-600-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 30%;
	--st-darkgray-700-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 25%;
	--st-darkgray-800-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 20%;
	--st-darkgray-900-hsl: var(--st-darkgray-hue), var(--st-darkgray-saturation), 17.5%;
	--st-darkgray-100: hsl(var(--st-darkgray-100-hsl));
	--st-darkgray-200: hsl(var(--st-darkgray-200-hsl));
	--st-darkgray-300: hsl(var(--st-darkgray-300-hsl));
	--st-darkgray-400: hsl(var(--st-darkgray-400-hsl));
	--st-darkgray-500: hsl(var(--st-darkgray-500-hsl));
	--st-darkgray-600: hsl(var(--st-darkgray-600-hsl));
	--st-darkgray-700: hsl(var(--st-darkgray-700-hsl));
	--st-darkgray-800: hsl(var(--st-darkgray-800-hsl));
	--st-darkgray-900: hsl(var(--st-darkgray-900-hsl));
	--st-darkgray-hsl: var(--st-darkgray-500-hsl);
	--st-darkgray: hsl(var(--st-darkgray-hsl));
	--st-darkgray-foreground-hsl: var(--st-white-hsl);
	--st-darkgray-foreground: hsl(var(--st-darkgray-foreground-hsl));
	--st-darkgray-text-emphasis-hsl: var(--st-darkgray-600-hsl);
	--st-darkgray-text-emphasis: hsl(var(--st-darkgray-text-emphasis-hsl));
	--st-darkgray-hover-bg: var(--st-darkgray-600);
	--st-darkgray-active-bg: var(--st-darkgray-700);
	--st-darkgray-bg-subtle: hsl(var(--st-darkgray-hue), var(--st-darkgray-saturation), 80%);
	--st-darkgray-border-subtle: var(--st-darkgray-400);
	--st-darkgray-checkbox-svg: var(--st-checkbox-svg-light);
	--st-darkgray-dash-svg: var(--st-dash-svg-light);
	--st-darkgray-radio-svg: var(--st-radio-svg-light);
	--st-darkgray-switch-svg: var(--st-switch-svg-light);

	/* Sable (almost black) */

	--st-sable-hue: var(--st-darkgray-hue);
	--st-sable-saturation: var(--st-darkgray-saturation);
	--st-sable-100-hsl: var(--st-sable-hue), var(--st-sable-saturation), 28%;
	--st-sable-200-hsl: var(--st-sable-hue), var(--st-sable-saturation), 26%;
	--st-sable-300-hsl: var(--st-sable-hue), var(--st-sable-saturation), 24%;
	--st-sable-400-hsl: var(--st-sable-hue), var(--st-sable-saturation), 22%;
	--st-sable-500-hsl: var(--st-sable-hue), var(--st-sable-saturation), 20%;
	--st-sable-600-hsl: var(--st-sable-hue), var(--st-sable-saturation), 18%;
	--st-sable-700-hsl: var(--st-sable-hue), var(--st-sable-saturation), 16%;
	--st-sable-800-hsl: var(--st-sable-hue), var(--st-sable-saturation), 15%;
	--st-sable-900-hsl: var(--st-sable-hue), var(--st-sable-saturation), 14%;
	--st-sable-100: hsl(var(--st-sable-100-hsl));
	--st-sable-200: hsl(var(--st-sable-200-hsl));
	--st-sable-300: hsl(var(--st-sable-300-hsl));
	--st-sable-400: hsl(var(--st-sable-400-hsl));
	--st-sable-500: hsl(var(--st-sable-500-hsl));
	--st-sable-600: hsl(var(--st-sable-600-hsl));
	--st-sable-700: hsl(var(--st-sable-700-hsl));
	--st-sable-800: hsl(var(--st-sable-800-hsl));
	--st-sable-900: hsl(var(--st-sable-900-hsl));
	--st-sable-hsl: var(--st-sable-500-hsl);
	--st-sable: hsl(var(--st-sable-hsl));
	--st-sable-foreground-hsl: var(--st-white-hsl);
	--st-sable-foreground: hsl(var(--st-sable-foreground-hsl));
	--st-sable-text-emphasis-hsl: var(--st-sable-600-hsl);
	--st-sable-text-emphasis: hsl(var(--st-sable-text-emphasis-hsl));
	--st-sable-hover-bg: var(--st-sable-600);
	--st-sable-active-bg: var(--st-sable-700);
	--st-sable-bg-subtle: hsl(var(--st-sable-hue), var(--st-sable-saturation), 70%);
	--st-sable-border-subtle: var(--st-sable-400);
	--st-sable-checkbox-svg: var(--st-checkbox-svg-light);
	--st-sable-dash-svg: var(--st-dash-svg-light);
	--st-sable-radio-svg: var(--st-radio-svg-light);
	--st-sable-switch-svg: var(--st-switch-svg-light);

	/* Red */

	--st-red-hue: 0;
	--st-red-saturation: 67.5%;
	--st-red-100-hsl: var(--st-red-hue), var(--st-red-saturation), 90%;
	--st-red-200-hsl: var(--st-red-hue), var(--st-red-saturation), 80%;
	--st-red-300-hsl: var(--st-red-hue), var(--st-red-saturation), 70%;
	--st-red-400-hsl: var(--st-red-hue), var(--st-red-saturation), 60%;
	--st-red-500-hsl: var(--st-red-hue), var(--st-red-saturation), 50%;
	--st-red-600-hsl: var(--st-red-hue), var(--st-red-saturation), 40%;
	--st-red-700-hsl: var(--st-red-hue), var(--st-red-saturation), 30%;
	--st-red-800-hsl: var(--st-red-hue), var(--st-red-saturation), 20%;
	--st-red-900-hsl: var(--st-red-hue), var(--st-red-saturation), 10%;
	--st-red-100: hsl(var(--st-red-100-hsl));
	--st-red-200: hsl(var(--st-red-200-hsl));
	--st-red-300: hsl(var(--st-red-300-hsl));
	--st-red-400: hsl(var(--st-red-400-hsl));
	--st-red-500: hsl(var(--st-red-500-hsl));
	--st-red-600: hsl(var(--st-red-600-hsl));
	--st-red-700: hsl(var(--st-red-700-hsl));
	--st-red-800: hsl(var(--st-red-800-hsl));
	--st-red-900: hsl(var(--st-red-900-hsl));
	--st-red-hsl: var(--st-red-500-hsl);
	--st-red: hsl(var(--st-red-hsl));
	--st-red-foreground-hsl: var(--st-white-hsl);
	--st-red-foreground: hsl(var(--st-red-foreground-hsl));
	--st-red-text-emphasis-hsl: var(--st-red-600-hsl);
	--st-red-text-emphasis: hsl(var(--st-red-text-emphasis-hsl));
	--st-red-hover-bg: var(--st-red-600);
	--st-red-active-bg: var(--st-red-700);
	--st-red-bg-subtle: hsl(var(--st-red-hue), var(--st-red-saturation), 95%);
	--st-red-border-subtle: var(--st-red-400);
	--st-red-checkbox-svg: var(--st-checkbox-svg-light);
	--st-red-dash-svg: var(--st-dash-svg-light);
	--st-red-radio-svg: var(--st-radio-svg-light);
	--st-red-switch-svg: var(--st-switch-svg-light);

	/* Orange */

	--st-orange-hue: 17;
	--st-orange-saturation: 88%;
	--st-orange-100-hsl: var(--st-orange-hue), var(--st-orange-saturation), 90%;
	--st-orange-200-hsl: var(--st-orange-hue), var(--st-orange-saturation), 80%;
	--st-orange-300-hsl: var(--st-orange-hue), var(--st-orange-saturation), 70%;
	--st-orange-400-hsl: var(--st-orange-hue), var(--st-orange-saturation), 60%;
	--st-orange-500-hsl: var(--st-orange-hue), var(--st-orange-saturation), 50%;
	--st-orange-600-hsl: var(--st-orange-hue), var(--st-orange-saturation), 40%;
	--st-orange-700-hsl: var(--st-orange-hue), var(--st-orange-saturation), 30%;
	--st-orange-800-hsl: var(--st-orange-hue), var(--st-orange-saturation), 20%;
	--st-orange-900-hsl: var(--st-orange-hue), var(--st-orange-saturation), 10%;
	--st-orange-100: hsl(var(--st-orange-100-hsl));
	--st-orange-200: hsl(var(--st-orange-200-hsl));
	--st-orange-300: hsl(var(--st-orange-300-hsl));
	--st-orange-400: hsl(var(--st-orange-400-hsl));
	--st-orange-500: hsl(var(--st-orange-500-hsl));
	--st-orange-600: hsl(var(--st-orange-600-hsl));
	--st-orange-700: hsl(var(--st-orange-700-hsl));
	--st-orange-800: hsl(var(--st-orange-800-hsl));
	--st-orange-900: hsl(var(--st-orange-900-hsl));
	--st-orange-hsl: var(--st-orange-hue), var(--st-orange-saturation), 44%;
	--st-orange: hsl(var(--st-orange-hsl));
	--st-orange-foreground-hsl: var(--st-white-hsl);
	--st-orange-foreground: hsl(var(--st-orange-foreground-hsl));
	--st-orange-text-emphasis-hsl: var(--st-orange-600-hsl);
	--st-orange-text-emphasis: hsl(var(--st-orange-text-emphasis-hsl));
	--st-orange-hover-bg: var(--st-orange-600);
	--st-orange-active-bg: var(--st-orange-700);
	--st-orange-bg-subtle: hsl(var(--st-orange-hue), var(--st-orange-saturation), 95%);
	--st-orange-border-subtle: var(--st-orange-400);
	--st-orange-checkbox-svg: var(--st-checkbox-svg-light);
	--st-orange-dash-svg: var(--st-dash-svg-light);
	--st-orange-radio-svg: var(--st-radio-svg-light);
	--st-orange-switch-svg: var(--st-switch-svg-light);

	/* Sienna (burnt orange) */

	--st-sienna-hue: 25;
	--st-sienna-saturation: 50%;
	--st-sienna-100-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 90%;
	--st-sienna-200-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 80%;
	--st-sienna-300-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 70%;
	--st-sienna-400-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 60%;
	--st-sienna-500-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 50%;
	--st-sienna-600-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 40%;
	--st-sienna-700-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 30%;
	--st-sienna-800-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 20%;
	--st-sienna-900-hsl: var(--st-sienna-hue), var(--st-sienna-saturation), 10%;
	--st-sienna-100: hsl(var(--st-sienna-100-hsl));
	--st-sienna-200: hsl(var(--st-sienna-200-hsl));
	--st-sienna-300: hsl(var(--st-sienna-300-hsl));
	--st-sienna-400: hsl(var(--st-sienna-400-hsl));
	--st-sienna-500: hsl(var(--st-sienna-500-hsl));
	--st-sienna-600: hsl(var(--st-sienna-600-hsl));
	--st-sienna-700: hsl(var(--st-sienna-700-hsl));
	--st-sienna-800: hsl(var(--st-sienna-800-hsl));
	--st-sienna-900: hsl(var(--st-sienna-900-hsl));
	--st-sienna-hsl: var(--st-sienna-600-hsl);
	--st-sienna: hsl(var(--st-sienna-hsl));
	--st-sienna-foreground-hsl: var(--st-white-hsl);
	--st-sienna-foreground: hsl(var(--st-sienna-foreground-hsl));
	--st-sienna-text-emphasis-hsl: var(--st-sienna-700-hsl);
	--st-sienna-text-emphasis: hsl(var(--st-sienna-text-emphasis-hsl));
	--st-sienna-hover-bg: var(--st-sienna-700);
	--st-sienna-active-bg: var(--st-sienna-800);
	--st-sienna-bg-subtle: hsl(var(--st-sienna-hue), var(--st-sienna-saturation), 95%);
	--st-sienna-border-subtle: var(--st-sienna-400);
	--st-sienna-checkbox-svg: var(--st-checkbox-svg-light);
	--st-sienna-dash-svg: var(--st-dash-svg-light);
	--st-sienna-radio-svg: var(--st-radio-svg-light);
	--st-sienna-switch-svg: var(--st-switch-svg-light);

	/* Amber */

	--st-amber-hue: 38;
	--st-amber-saturation: 92%;
	--st-amber-100-hsl: var(--st-amber-hue), var(--st-amber-saturation), 90%;
	--st-amber-200-hsl: var(--st-amber-hue), var(--st-amber-saturation), 80%;
	--st-amber-300-hsl: var(--st-amber-hue), var(--st-amber-saturation), 70%;
	--st-amber-400-hsl: var(--st-amber-hue), var(--st-amber-saturation), 60%;
	--st-amber-500-hsl: var(--st-amber-hue), var(--st-amber-saturation), 50%;
	--st-amber-600-hsl: var(--st-amber-hue), var(--st-amber-saturation), 40%;
	--st-amber-700-hsl: var(--st-amber-hue), var(--st-amber-saturation), 30%;
	--st-amber-800-hsl: var(--st-amber-hue), var(--st-amber-saturation), 20%;
	--st-amber-900-hsl: var(--st-amber-hue), var(--st-amber-saturation), 10%;
	--st-amber-100: hsl(var(--st-amber-100-hsl));
	--st-amber-200: hsl(var(--st-amber-200-hsl));
	--st-amber-300: hsl(var(--st-amber-300-hsl));
	--st-amber-400: hsl(var(--st-amber-400-hsl));
	--st-amber-500: hsl(var(--st-amber-500-hsl));
	--st-amber-600: hsl(var(--st-amber-600-hsl));
	--st-amber-700: hsl(var(--st-amber-700-hsl));
	--st-amber-800: hsl(var(--st-amber-800-hsl));
	--st-amber-900: hsl(var(--st-amber-900-hsl));
	--st-amber-hsl: var(--st-amber-500-hsl);
	--st-amber: hsl(var(--st-amber-hsl));
	--st-amber-foreground-hsl: var(--st-amber-900-hsl);
	--st-amber-foreground: hsl(var(--st-amber-foreground-hsl));
	--st-amber-text-emphasis-hsl: var(--st-amber-700-hsl);
	--st-amber-text-emphasis: hsl(var(--st-amber-text-emphasis-hsl));
	--st-amber-hover-bg: var(--st-amber-400);
	--st-amber-active-bg: var(--st-amber-300);
	--st-amber-bg-subtle: hsl(var(--st-amber-hue), var(--st-amber-saturation), 95%);
	--st-amber-border-subtle: var(--st-amber-400);
	--st-amber-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-amber-dash-svg: var(--st-dash-svg-dark);
	--st-amber-radio-svg: var(--st-radio-svg-dark);
	--st-amber-switch-svg: var(--st-switch-svg-dark);

	/* Yellow */

	--st-yellow-hue: 50;
	--st-yellow-saturation: 93%;
	--st-yellow-100-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 90%;
	--st-yellow-200-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 80%;
	--st-yellow-300-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 70%;
	--st-yellow-400-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 60%;
	--st-yellow-500-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 50%;
	--st-yellow-600-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 40%;
	--st-yellow-700-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 30%;
	--st-yellow-800-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 20%;
	--st-yellow-900-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 10%;
	--st-yellow-100: hsl(var(--st-yellow-100-hsl));
	--st-yellow-200: hsl(var(--st-yellow-200-hsl));
	--st-yellow-300: hsl(var(--st-yellow-300-hsl));
	--st-yellow-400: hsl(var(--st-yellow-400-hsl));
	--st-yellow-500: hsl(var(--st-yellow-500-hsl));
	--st-yellow-600: hsl(var(--st-yellow-600-hsl));
	--st-yellow-700: hsl(var(--st-yellow-700-hsl));
	--st-yellow-800: hsl(var(--st-yellow-800-hsl));
	--st-yellow-900: hsl(var(--st-yellow-900-hsl));
	--st-yellow-hsl: var(--st-yellow-500-hsl);
	--st-yellow: hsl(var(--st-yellow-hsl));
	--st-yellow-foreground-hsl: var(--st-yellow-900-hsl);
	--st-yellow-foreground: hsl(var(--st-yellow-foreground-hsl));
	--st-yellow-text-emphasis-hsl: var(--st-yellow-hue), var(--st-yellow-saturation), 25%;
	--st-yellow-text-emphasis: hsl(var(--st-yellow-text-emphasis-hsl));
	--st-yellow-hover-bg: var(--st-yellow-400);
	--st-yellow-active-bg: var(--st-yellow-300);
	--st-yellow-bg-subtle: hsl(var(--st-yellow-hue), var(--st-yellow-saturation), 95%);
	--st-yellow-border-subtle: var(--st-yellow-400);
	--st-yellow-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-yellow-dash-svg: var(--st-dash-svg-dark);
	--st-yellow-radio-svg: var(--st-radio-svg-dark);
	--st-yellow-switch-svg: var(--st-switch-svg-dark);

	/* Lime */

	--st-lime-hue: 83;
	--st-lime-saturation: 78%;
	--st-lime-100-hsl: var(--st-lime-hue), var(--st-lime-saturation), 90%;
	--st-lime-200-hsl: var(--st-lime-hue), var(--st-lime-saturation), 80%;
	--st-lime-300-hsl: var(--st-lime-hue), var(--st-lime-saturation), 70%;
	--st-lime-400-hsl: var(--st-lime-hue), var(--st-lime-saturation), 60%;
	--st-lime-500-hsl: var(--st-lime-hue), var(--st-lime-saturation), 50%;
	--st-lime-600-hsl: var(--st-lime-hue), var(--st-lime-saturation), 40%;
	--st-lime-700-hsl: var(--st-lime-hue), var(--st-lime-saturation), 30%;
	--st-lime-800-hsl: var(--st-lime-hue), var(--st-lime-saturation), 20%;
	--st-lime-900-hsl: var(--st-lime-hue), var(--st-lime-saturation), 10%;
	--st-lime-100: hsl(var(--st-lime-100-hsl));
	--st-lime-200: hsl(var(--st-lime-200-hsl));
	--st-lime-300: hsl(var(--st-lime-300-hsl));
	--st-lime-400: hsl(var(--st-lime-400-hsl));
	--st-lime-500: hsl(var(--st-lime-500-hsl));
	--st-lime-600: hsl(var(--st-lime-600-hsl));
	--st-lime-700: hsl(var(--st-lime-700-hsl));
	--st-lime-800: hsl(var(--st-lime-800-hsl));
	--st-lime-900: hsl(var(--st-lime-900-hsl));
	--st-lime-hsl: var(--st-lime-500-hsl);
	--st-lime: hsl(var(--st-lime-hsl));
	--st-lime-foreground-hsl: var(--st-lime-900-hsl);
	--st-lime-foreground: hsl(var(--st-lime-foreground-hsl));
	--st-lime-text-emphasis-hsl: var(--st-lime-hue), var(--st-lime-saturation), 27.5%;
	--st-lime-text-emphasis: hsl(var(--st-lime-text-emphasis-hsl));
	--st-lime-hover-bg: var(--st-lime-400);
	--st-lime-active-bg: var(--st-lime-300);
	--st-lime-bg-subtle: hsl(var(--st-lime-hue), var(--st-lime-saturation), 95%);
	--st-lime-border-subtle: var(--st-lime-400);
	--st-lime-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-lime-dash-svg: var(--st-dash-svg-dark);
	--st-lime-radio-svg: var(--st-radio-svg-dark);
	--st-lime-switch-svg: var(--st-switch-svg-dark);

	/* Green */

	--st-green-hue: 145;
	--st-green-saturation: 52%;
	--st-green-100-hsl: var(--st-green-hue), var(--st-green-saturation), 90%;
	--st-green-200-hsl: var(--st-green-hue), var(--st-green-saturation), 80%;
	--st-green-300-hsl: var(--st-green-hue), var(--st-green-saturation), 70%;
	--st-green-400-hsl: var(--st-green-hue), var(--st-green-saturation), 60%;
	--st-green-500-hsl: var(--st-green-hue), var(--st-green-saturation), 50%;
	--st-green-600-hsl: var(--st-green-hue), var(--st-green-saturation), 40%;
	--st-green-700-hsl: var(--st-green-hue), var(--st-green-saturation), 30%;
	--st-green-800-hsl: var(--st-green-hue), var(--st-green-saturation), 20%;
	--st-green-900-hsl: var(--st-green-hue), var(--st-green-saturation), 10%;
	--st-green-100: hsl(var(--st-green-100-hsl));
	--st-green-200: hsl(var(--st-green-200-hsl));
	--st-green-300: hsl(var(--st-green-300-hsl));
	--st-green-400: hsl(var(--st-green-400-hsl));
	--st-green-500: hsl(var(--st-green-500-hsl));
	--st-green-600: hsl(var(--st-green-600-hsl));
	--st-green-700: hsl(var(--st-green-700-hsl));
	--st-green-800: hsl(var(--st-green-800-hsl));
	--st-green-900: hsl(var(--st-green-900-hsl));
	--st-green-hsl: var(--st-green-hue), var(--st-green-saturation), 34%;
	--st-green: hsl(var(--st-green-hsl));
	--st-green-foreground-hsl: var(--st-white-hsl);
	--st-green-foreground: hsl(var(--st-green-foreground-hsl));
	--st-green-text-emphasis-hsl: var(--st-green-700-hsl);
	--st-green-text-emphasis: hsl(var(--st-green-text-emphasis-hsl));
	--st-green-hover-bg: var(--st-green-700);
	--st-green-active-bg: var(--st-green-800);
	--st-green-bg-subtle: hsl(var(--st-green-hue), var(--st-green-saturation), 95%);
	--st-green-border-subtle: var(--st-green-400);
	--st-green-checkbox-svg: var(--st-checkbox-svg-light);
	--st-green-dash-svg: var(--st-dash-svg-light);
	--st-green-radio-svg: var(--st-radio-svg-light);
	--st-green-switch-svg: var(--st-switch-svg-light);

	/* Emerald */

	--st-emerald-hue: 160;
	--st-emerald-saturation: 84%;
	--st-emerald-100-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 90%;
	--st-emerald-200-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 80%;
	--st-emerald-300-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 70%;
	--st-emerald-400-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 60%;
	--st-emerald-500-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 50%;
	--st-emerald-600-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 40%;
	--st-emerald-700-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 30%;
	--st-emerald-800-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 20%;
	--st-emerald-900-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 10%;
	--st-emerald-100: hsl(var(--st-emerald-100-hsl));
	--st-emerald-200: hsl(var(--st-emerald-200-hsl));
	--st-emerald-300: hsl(var(--st-emerald-300-hsl));
	--st-emerald-400: hsl(var(--st-emerald-400-hsl));
	--st-emerald-500: hsl(var(--st-emerald-500-hsl));
	--st-emerald-600: hsl(var(--st-emerald-600-hsl));
	--st-emerald-700: hsl(var(--st-emerald-700-hsl));
	--st-emerald-800: hsl(var(--st-emerald-800-hsl));
	--st-emerald-900: hsl(var(--st-emerald-900-hsl));
	--st-emerald-hsl: var(--st-emerald-500-hsl);
	--st-emerald: hsl(var(--st-emerald-hsl));
	--st-emerald-foreground-hsl: var(--st-emerald-900-hsl);
	--st-emerald-foreground: hsl(var(--st-emerald-foreground-hsl));
	--st-emerald-text-emphasis-hsl: var(--st-emerald-hue), var(--st-emerald-saturation), 27.5%;
	--st-emerald-text-emphasis: hsl(var(--st-emerald-text-emphasis-hsl));
	--st-emerald-hover-bg: var(--st-emerald-400);
	--st-emerald-active-bg: var(--st-emerald-300);
	--st-emerald-bg-subtle: hsl(var(--st-emerald-hue), var(--st-emerald-saturation), 95%);
	--st-emerald-border-subtle: var(--st-emerald-400);
	--st-emerald-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-emerald-dash-svg: var(--st-dash-svg-dark);
	--st-emerald-radio-svg: var(--st-radio-svg-dark);
	--st-emerald-switch-svg: var(--st-switch-svg-dark);

	/* Turquoise */

	--st-turquoise-hue: 168;
	--st-turquoise-saturation: 52%;
	--st-turquoise-100-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 90%;
	--st-turquoise-200-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 80%;
	--st-turquoise-300-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 70%;
	--st-turquoise-400-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 60%;
	--st-turquoise-500-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 50%;
	--st-turquoise-600-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 40%;
	--st-turquoise-700-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 30%;
	--st-turquoise-800-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 20%;
	--st-turquoise-900-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 10%;
	--st-turquoise-100: hsl(var(--st-turquoise-100-hsl));
	--st-turquoise-200: hsl(var(--st-turquoise-200-hsl));
	--st-turquoise-300: hsl(var(--st-turquoise-300-hsl));
	--st-turquoise-400: hsl(var(--st-turquoise-400-hsl));
	--st-turquoise-500: hsl(var(--st-turquoise-500-hsl));
	--st-turquoise-600: hsl(var(--st-turquoise-600-hsl));
	--st-turquoise-700: hsl(var(--st-turquoise-700-hsl));
	--st-turquoise-800: hsl(var(--st-turquoise-800-hsl));
	--st-turquoise-900: hsl(var(--st-turquoise-900-hsl));
	--st-turquoise-hsl: var(--st-turquoise-hue), var(--st-turquoise-saturation), 34%;
	--st-turquoise: hsl(var(--st-turquoise-hsl));
	--st-turquoise-foreground-hsl: var(--st-white-hsl);
	--st-turquoise-foreground: hsl(var(--st-turquoise-foreground-hsl));
	--st-turquoise-text-emphasis-hsl: var(--st-turquoise-700-hsl);
	--st-turquoise-text-emphasis: hsl(var(--st-turquoise-text-emphasis-hsl));
	--st-turquoise-hover-bg: var(--st-turquoise-700);
	--st-turquoise-active-bg: var(--st-turquoise-800);
	--st-turquoise-bg-subtle: hsl(var(--st-turquoise-hue), var(--st-turquoise-saturation), 95%);
	--st-turquoise-border-subtle: var(--st-turquoise-400);
	--st-turquoise-checkbox-svg: var(--st-checkbox-svg-light);
	--st-turquoise-dash-svg: var(--st-dash-svg-light);
	--st-turquoise-radio-svg: var(--st-radio-svg-light);
	--st-turquoise-switch-svg: var(--st-switch-svg-light);

	/* Teal */

	--st-teal-hue: 173;
	--st-teal-saturation: 80%;
	--st-teal-100-hsl: var(--st-teal-hue), var(--st-teal-saturation), 90%;
	--st-teal-200-hsl: var(--st-teal-hue), var(--st-teal-saturation), 80%;
	--st-teal-300-hsl: var(--st-teal-hue), var(--st-teal-saturation), 70%;
	--st-teal-400-hsl: var(--st-teal-hue), var(--st-teal-saturation), 60%;
	--st-teal-500-hsl: var(--st-teal-hue), var(--st-teal-saturation), 50%;
	--st-teal-600-hsl: var(--st-teal-hue), var(--st-teal-saturation), 40%;
	--st-teal-700-hsl: var(--st-teal-hue), var(--st-teal-saturation), 30%;
	--st-teal-800-hsl: var(--st-teal-hue), var(--st-teal-saturation), 20%;
	--st-teal-900-hsl: var(--st-teal-hue), var(--st-teal-saturation), 10%;
	--st-teal-100: hsl(var(--st-teal-100-hsl));
	--st-teal-200: hsl(var(--st-teal-200-hsl));
	--st-teal-300: hsl(var(--st-teal-300-hsl));
	--st-teal-400: hsl(var(--st-teal-400-hsl));
	--st-teal-500: hsl(var(--st-teal-500-hsl));
	--st-teal-600: hsl(var(--st-teal-600-hsl));
	--st-teal-700: hsl(var(--st-teal-700-hsl));
	--st-teal-800: hsl(var(--st-teal-800-hsl));
	--st-teal-900: hsl(var(--st-teal-900-hsl));
	--st-teal-hsl: var(--st-teal-500-hsl);
	--st-teal: hsl(var(--st-teal-hsl));
	--st-teal-foreground-hsl: var(--st-teal-900-hsl);
	--st-teal-foreground: hsl(var(--st-teal-foreground-hsl));
	--st-teal-text-emphasis-hsl: var(--st-teal-hue), var(--st-teal-saturation), 27.5%;
	--st-teal-text-emphasis: hsl(var(--st-teal-text-emphasis-hsl));
	--st-teal-hover-bg: var(--st-teal-400);
	--st-teal-active-bg: var(--st-teal-300);
	--st-teal-bg-subtle: hsl(var(--st-teal-hue), var(--st-teal-saturation), 95%);
	--st-teal-border-subtle: var(--st-teal-400);
	--st-teal-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-teal-dash-svg: var(--st-dash-svg-dark);
	--st-teal-radio-svg: var(--st-radio-svg-dark);
	--st-teal-switch-svg: var(--st-switch-svg-dark);

	/* Cyan */

	--st-cyan-hue: 189;
	--st-cyan-saturation: 94%;
	--st-cyan-100-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 90%;
	--st-cyan-200-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 80%;
	--st-cyan-300-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 70%;
	--st-cyan-400-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 60%;
	--st-cyan-500-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 50%;
	--st-cyan-600-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 40%;
	--st-cyan-700-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 30%;
	--st-cyan-800-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 20%;
	--st-cyan-900-hsl: var(--st-cyan-hue), var(--st-cyan-saturation), 10%;
	--st-cyan-100: hsl(var(--st-cyan-100-hsl));
	--st-cyan-200: hsl(var(--st-cyan-200-hsl));
	--st-cyan-300: hsl(var(--st-cyan-300-hsl));
	--st-cyan-400: hsl(var(--st-cyan-400-hsl));
	--st-cyan-500: hsl(var(--st-cyan-500-hsl));
	--st-cyan-600: hsl(var(--st-cyan-600-hsl));
	--st-cyan-700: hsl(var(--st-cyan-700-hsl));
	--st-cyan-800: hsl(var(--st-cyan-800-hsl));
	--st-cyan-900: hsl(var(--st-cyan-900-hsl));
	--st-cyan-hsl: var(--st-cyan-500-hsl);
	--st-cyan: hsl(var(--st-cyan-hsl));
	--st-cyan-foreground-hsl: var(--st-cyan-900-hsl);
	--st-cyan-foreground: hsl(var(--st-cyan-foreground-hsl));
	--st-cyan-text-emphasis-hsl: var(--st-cyan-700-hsl);
	--st-cyan-text-emphasis: hsl(var(--st-cyan-text-emphasis-hsl));
	--st-cyan-hover-bg: var(--st-cyan-400);
	--st-cyan-active-bg: var(--st-cyan-300);
	--st-cyan-bg-subtle: hsl(var(--st-cyan-hue), var(--st-cyan-saturation), 95%);
	--st-cyan-border-subtle: var(--st-cyan-400);
	--st-cyan-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-cyan-dash-svg: var(--st-dash-svg-dark);
	--st-cyan-radio-svg: var(--st-radio-svg-dark);
	--st-cyan-switch-svg: var(--st-switch-svg-dark);

	/* Sky */

	--st-sky-hue: 198;
	--st-sky-saturation: 100%;
	--st-sky-100-hsl: var(--st-sky-hue), var(--st-sky-saturation), 90%;
	--st-sky-200-hsl: var(--st-sky-hue), var(--st-sky-saturation), 80%;
	--st-sky-300-hsl: var(--st-sky-hue), var(--st-sky-saturation), 70%;
	--st-sky-400-hsl: var(--st-sky-hue), var(--st-sky-saturation), 60%;
	--st-sky-500-hsl: var(--st-sky-hue), var(--st-sky-saturation), 50%;
	--st-sky-600-hsl: var(--st-sky-hue), var(--st-sky-saturation), 40%;
	--st-sky-700-hsl: var(--st-sky-hue), var(--st-sky-saturation), 30%;
	--st-sky-800-hsl: var(--st-sky-hue), var(--st-sky-saturation), 20%;
	--st-sky-900-hsl: var(--st-sky-hue), var(--st-sky-saturation), 10%;
	--st-sky-100: hsl(var(--st-sky-100-hsl));
	--st-sky-200: hsl(var(--st-sky-200-hsl));
	--st-sky-300: hsl(var(--st-sky-300-hsl));
	--st-sky-400: hsl(var(--st-sky-400-hsl));
	--st-sky-500: hsl(var(--st-sky-500-hsl));
	--st-sky-600: hsl(var(--st-sky-600-hsl));
	--st-sky-700: hsl(var(--st-sky-700-hsl));
	--st-sky-800: hsl(var(--st-sky-800-hsl));
	--st-sky-900: hsl(var(--st-sky-900-hsl));
	--st-sky-hsl: var(--st-sky-500-hsl);
	--st-sky: hsl(var(--st-sky-hsl));
	--st-sky-foreground-hsl: var(--st-sky-900-hsl);
	--st-sky-foreground: hsl(var(--st-sky-foreground-hsl));
	--st-sky-text-emphasis-hsl: var(--st-sky-700-hsl);
	--st-sky-text-emphasis: hsl(var(--st-sky-text-emphasis-hsl));
	--st-sky-hover-bg: var(--st-sky-400);
	--st-sky-active-bg: var(--st-sky-300);
	--st-sky-bg-subtle: hsl(var(--st-sky-hue), var(--st-sky-saturation), 95%);
	--st-sky-border-subtle: var(--st-sky-400);
	--st-sky-checkbox-svg: var(--st-checkbox-svg-dark);
	--st-sky-dash-svg: var(--st-dash-svg-dark);
	--st-sky-radio-svg: var(--st-radio-svg-dark);
	--st-sky-switch-svg: var(--st-switch-svg-dark);

	/* Blue */

	--st-blue-hue: 216;
	--st-blue-saturation: 100%;
	--st-blue-100-hsl: var(--st-blue-hue), var(--st-blue-saturation), 90%;
	--st-blue-200-hsl: var(--st-blue-hue), var(--st-blue-saturation), 80%;
	--st-blue-300-hsl: var(--st-blue-hue), var(--st-blue-saturation), 70%;
	--st-blue-400-hsl: var(--st-blue-hue), var(--st-blue-saturation), 60%;
	--st-blue-500-hsl: var(--st-blue-hue), var(--st-blue-saturation), 50%;
	--st-blue-600-hsl: var(--st-blue-hue), var(--st-blue-saturation), 40%;
	--st-blue-700-hsl: var(--st-blue-hue), var(--st-blue-saturation), 30%;
	--st-blue-800-hsl: var(--st-blue-hue), var(--st-blue-saturation), 20%;
	--st-blue-900-hsl: var(--st-blue-hue), var(--st-blue-saturation), 10%;
	--st-blue-100: hsl(var(--st-blue-100-hsl));
	--st-blue-200: hsl(var(--st-blue-200-hsl));
	--st-blue-300: hsl(var(--st-blue-300-hsl));
	--st-blue-400: hsl(var(--st-blue-400-hsl));
	--st-blue-500: hsl(var(--st-blue-500-hsl));
	--st-blue-600: hsl(var(--st-blue-600-hsl));
	--st-blue-700: hsl(var(--st-blue-700-hsl));
	--st-blue-800: hsl(var(--st-blue-800-hsl));
	--st-blue-900: hsl(var(--st-blue-900-hsl));
	--st-blue-hsl: var(--st-blue-500-hsl);
	--st-blue: hsl(var(--st-blue-hsl));
	--st-blue-foreground-hsl: var(--st-white-hsl);
	--st-blue-foreground: hsl(var(--st-blue-foreground-hsl));
	--st-blue-text-emphasis-hsl: var(--st-blue-600-hsl);
	--st-blue-text-emphasis: hsl(var(--st-blue-text-emphasis-hsl));
	--st-blue-hover-bg: var(--st-blue-600);
	--st-blue-active-bg: var(--st-blue-700);
	--st-blue-bg-subtle: hsl(var(--st-blue-hue), var(--st-blue-saturation), 95%);
	--st-blue-border-subtle: var(--st-blue-400);
	--st-blue-checkbox-svg: var(--st-checkbox-svg-light);
	--st-blue-dash-svg: var(--st-dash-svg-light);
	--st-blue-radio-svg: var(--st-radio-svg-light);
	--st-blue-switch-svg: var(--st-switch-svg-light);

	/* Navy */

	--st-navy-hue: 235;
	--st-navy-saturation: 85%;
	--st-navy-100-hsl: var(--st-navy-hue), var(--st-navy-saturation), 90%;
	--st-navy-200-hsl: var(--st-navy-hue), var(--st-navy-saturation), 80%;
	--st-navy-300-hsl: var(--st-navy-hue), var(--st-navy-saturation), 70%;
	--st-navy-400-hsl: var(--st-navy-hue), var(--st-navy-saturation), 60%;
	--st-navy-500-hsl: var(--st-navy-hue), var(--st-navy-saturation), 50%;
	--st-navy-600-hsl: var(--st-navy-hue), var(--st-navy-saturation), 40%;
	--st-navy-700-hsl: var(--st-navy-hue), var(--st-navy-saturation), 30%;
	--st-navy-800-hsl: var(--st-navy-hue), var(--st-navy-saturation), 20%;
	--st-navy-900-hsl: var(--st-navy-hue), var(--st-navy-saturation), 10%;
	--st-navy-100: hsl(var(--st-navy-100-hsl));
	--st-navy-200: hsl(var(--st-navy-200-hsl));
	--st-navy-300: hsl(var(--st-navy-300-hsl));
	--st-navy-400: hsl(var(--st-navy-400-hsl));
	--st-navy-500: hsl(var(--st-navy-500-hsl));
	--st-navy-600: hsl(var(--st-navy-600-hsl));
	--st-navy-700: hsl(var(--st-navy-700-hsl));
	--st-navy-800: hsl(var(--st-navy-800-hsl));
	--st-navy-900: hsl(var(--st-navy-900-hsl));
	--st-navy-hsl: var(--st-navy-500-hsl);
	--st-navy: hsl(var(--st-navy-hsl));
	--st-navy-foreground-hsl: var(--st-white-hsl);
	--st-navy-foreground: hsl(var(--st-navy-foreground-hsl));
	--st-navy-text-emphasis-hsl: var(--st-navy-600-hsl);
	--st-navy-text-emphasis: hsl(var(--st-navy-text-emphasis-hsl));
	--st-navy-hover-bg: var(--st-navy-600);
	--st-navy-active-bg: var(--st-navy-700);
	--st-navy-bg-subtle: hsl(var(--st-navy-hue), var(--st-navy-saturation), 95%);
	--st-navy-border-subtle: var(--st-navy-400);
	--st-navy-checkbox-svg: var(--st-checkbox-svg-light);
	--st-navy-dash-svg: var(--st-dash-svg-light);
	--st-navy-radio-svg: var(--st-radio-svg-light);
	--st-navy-switch-svg: var(--st-switch-svg-light);

	/* Indigo */

	--st-indigo-hue: 241;
	--st-indigo-saturation: 60%;
	--st-indigo-100-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 90%;
	--st-indigo-200-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 80%;
	--st-indigo-300-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 70%;
	--st-indigo-400-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 60%;
	--st-indigo-500-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 50%;
	--st-indigo-600-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 40%;
	--st-indigo-700-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 30%;
	--st-indigo-800-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 20%;
	--st-indigo-900-hsl: var(--st-indigo-hue), var(--st-indigo-saturation), 10%;
	--st-indigo-100: hsl(var(--st-indigo-100-hsl));
	--st-indigo-200: hsl(var(--st-indigo-200-hsl));
	--st-indigo-300: hsl(var(--st-indigo-300-hsl));
	--st-indigo-400: hsl(var(--st-indigo-400-hsl));
	--st-indigo-500: hsl(var(--st-indigo-500-hsl));
	--st-indigo-600: hsl(var(--st-indigo-600-hsl));
	--st-indigo-700: hsl(var(--st-indigo-700-hsl));
	--st-indigo-800: hsl(var(--st-indigo-800-hsl));
	--st-indigo-900: hsl(var(--st-indigo-900-hsl));
	--st-indigo-hsl: var(--st-indigo-500-hsl);
	--st-indigo: hsl(var(--st-indigo-hsl));
	--st-indigo-foreground-hsl: var(--st-white-hsl);
	--st-indigo-foreground: hsl(var(--st-indigo-foreground-hsl));
	--st-indigo-text-emphasis-hsl: var(--st-indigo-600-hsl);
	--st-indigo-text-emphasis: hsl(var(--st-indigo-text-emphasis-hsl));
	--st-indigo-hover-bg: var(--st-indigo-600);
	--st-indigo-active-bg: var(--st-indigo-700);
	--st-indigo-bg-subtle: hsl(var(--st-indigo-hue), var(--st-indigo-saturation), 95%);
	--st-indigo-border-subtle: var(--st-indigo-400);
	--st-indigo-checkbox-svg: var(--st-checkbox-svg-light);
	--st-indigo-dash-svg: var(--st-dash-svg-light);
	--st-indigo-radio-svg: var(--st-radio-svg-light);
	--st-indigo-switch-svg: var(--st-switch-svg-light);

	/* Violet */

	--st-violet-hue: 262;
	--st-violet-saturation: 83%;
	--st-violet-100-hsl: var(--st-violet-hue), var(--st-violet-saturation), 90%;
	--st-violet-200-hsl: var(--st-violet-hue), var(--st-violet-saturation), 80%;
	--st-violet-300-hsl: var(--st-violet-hue), var(--st-violet-saturation), 70%;
	--st-violet-400-hsl: var(--st-violet-hue), var(--st-violet-saturation), 60%;
	--st-violet-500-hsl: var(--st-violet-hue), var(--st-violet-saturation), 50%;
	--st-violet-600-hsl: var(--st-violet-hue), var(--st-violet-saturation), 40%;
	--st-violet-700-hsl: var(--st-violet-hue), var(--st-violet-saturation), 30%;
	--st-violet-800-hsl: var(--st-violet-hue), var(--st-violet-saturation), 20%;
	--st-violet-900-hsl: var(--st-violet-hue), var(--st-violet-saturation), 10%;
	--st-violet-100: hsl(var(--st-violet-100-hsl));
	--st-violet-200: hsl(var(--st-violet-200-hsl));
	--st-violet-300: hsl(var(--st-violet-300-hsl));
	--st-violet-400: hsl(var(--st-violet-400-hsl));
	--st-violet-500: hsl(var(--st-violet-500-hsl));
	--st-violet-600: hsl(var(--st-violet-600-hsl));
	--st-violet-700: hsl(var(--st-violet-700-hsl));
	--st-violet-800: hsl(var(--st-violet-800-hsl));
	--st-violet-900: hsl(var(--st-violet-900-hsl));
	--st-violet-hsl: var(--st-violet-500-hsl);
	--st-violet: hsl(var(--st-violet-hsl));
	--st-violet-foreground-hsl: var(--st-white-hsl);
	--st-violet-foreground: hsl(var(--st-violet-foreground-hsl));
	--st-violet-text-emphasis-hsl: var(--st-violet-600-hsl);
	--st-violet-text-emphasis: hsl(var(--st-violet-text-emphasis-hsl));
	--st-violet-hover-bg: var(--st-violet-600);
	--st-violet-active-bg: var(--st-violet-700);
	--st-violet-bg-subtle: hsl(var(--st-violet-hue), var(--st-violet-saturation), 95%);
	--st-violet-border-subtle: var(--st-violet-400);
	--st-violet-checkbox-svg: var(--st-checkbox-svg-light);
	--st-violet-dash-svg: var(--st-dash-svg-light);
	--st-violet-radio-svg: var(--st-radio-svg-light);
	--st-violet-switch-svg: var(--st-switch-svg-light);

	/* Purple */

	--st-purple-hue: 271;
	--st-purple-saturation: 80%;
	--st-purple-100-hsl: var(--st-purple-hue), var(--st-purple-saturation), 90%;
	--st-purple-200-hsl: var(--st-purple-hue), var(--st-purple-saturation), 80%;
	--st-purple-300-hsl: var(--st-purple-hue), var(--st-purple-saturation), 70%;
	--st-purple-400-hsl: var(--st-purple-hue), var(--st-purple-saturation), 60%;
	--st-purple-500-hsl: var(--st-purple-hue), var(--st-purple-saturation), 50%;
	--st-purple-600-hsl: var(--st-purple-hue), var(--st-purple-saturation), 40%;
	--st-purple-700-hsl: var(--st-purple-hue), var(--st-purple-saturation), 30%;
	--st-purple-800-hsl: var(--st-purple-hue), var(--st-purple-saturation), 20%;
	--st-purple-900-hsl: var(--st-purple-hue), var(--st-purple-saturation), 10%;
	--st-purple-100: hsl(var(--st-purple-100-hsl));
	--st-purple-200: hsl(var(--st-purple-200-hsl));
	--st-purple-300: hsl(var(--st-purple-300-hsl));
	--st-purple-400: hsl(var(--st-purple-400-hsl));
	--st-purple-500: hsl(var(--st-purple-500-hsl));
	--st-purple-600: hsl(var(--st-purple-600-hsl));
	--st-purple-700: hsl(var(--st-purple-700-hsl));
	--st-purple-800: hsl(var(--st-purple-800-hsl));
	--st-purple-900: hsl(var(--st-purple-900-hsl));
	--st-purple-hsl: var(--st-purple-500-hsl);
	--st-purple: hsl(var(--st-purple-hsl));
	--st-purple-foreground-hsl: var(--st-white-hsl);
	--st-purple-foreground: hsl(var(--st-purple-foreground-hsl));
	--st-purple-text-emphasis-hsl: var(--st-purple-600-hsl);
	--st-purple-text-emphasis: hsl(var(--st-purple-text-emphasis-hsl));
	--st-purple-hover-bg: var(--st-purple-600);
	--st-purple-active-bg: var(--st-purple-700);
	--st-purple-bg-subtle: hsl(var(--st-purple-hue), var(--st-purple-saturation), 95%);
	--st-purple-border-subtle: var(--st-purple-400);
	--st-purple-checkbox-svg: var(--st-checkbox-svg-light);
	--st-purple-dash-svg: var(--st-dash-svg-light);
	--st-purple-radio-svg: var(--st-radio-svg-light);
	--st-purple-switch-svg: var(--st-switch-svg-light);

	/* Fuchsia */

	--st-fuchsia-hue: 292;
	--st-fuchsia-saturation: 52.5%;
	--st-fuchsia-100-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 90%;
	--st-fuchsia-200-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 80%;
	--st-fuchsia-300-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 70%;
	--st-fuchsia-400-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 60%;
	--st-fuchsia-500-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 50%;
	--st-fuchsia-600-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 40%;
	--st-fuchsia-700-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 30%;
	--st-fuchsia-800-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 20%;
	--st-fuchsia-900-hsl: var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 10%;
	--st-fuchsia-100: hsl(var(--st-fuchsia-100-hsl));
	--st-fuchsia-200: hsl(var(--st-fuchsia-200-hsl));
	--st-fuchsia-300: hsl(var(--st-fuchsia-300-hsl));
	--st-fuchsia-400: hsl(var(--st-fuchsia-400-hsl));
	--st-fuchsia-500: hsl(var(--st-fuchsia-500-hsl));
	--st-fuchsia-600: hsl(var(--st-fuchsia-600-hsl));
	--st-fuchsia-700: hsl(var(--st-fuchsia-700-hsl));
	--st-fuchsia-800: hsl(var(--st-fuchsia-800-hsl));
	--st-fuchsia-900: hsl(var(--st-fuchsia-900-hsl));
	--st-fuchsia-hsl: var(--st-fuchsia-500-hsl);
	--st-fuchsia: hsl(var(--st-fuchsia-hsl));
	--st-fuchsia-foreground-hsl: var(--st-white-hsl);
	--st-fuchsia-foreground: hsl(var(--st-fuchsia-foreground-hsl));
	--st-fuchsia-text-emphasis-hsl: var(--st-fuchsia-600-hsl);
	--st-fuchsia-text-emphasis: hsl(var(--st-fuchsia-text-emphasis-hsl));
	--st-fuchsia-hover-bg: var(--st-fuchsia-600);
	--st-fuchsia-active-bg: var(--st-fuchsia-700);
	--st-fuchsia-bg-subtle: hsl(var(--st-fuchsia-hue), var(--st-fuchsia-saturation), 95%);
	--st-fuchsia-border-subtle: var(--st-fuchsia-400);
	--st-fuchsia-checkbox-svg: var(--st-checkbox-svg-light);
	--st-fuchsia-dash-svg: var(--st-dash-svg-light);
	--st-fuchsia-radio-svg: var(--st-radio-svg-light);
	--st-fuchsia-switch-svg: var(--st-switch-svg-light);

	/* Pink (magenta) */

	--st-pink-hue: 331;
	--st-pink-saturation: 60%;
	--st-pink-100-hsl: var(--st-pink-hue), var(--st-pink-saturation), 90%;
	--st-pink-200-hsl: var(--st-pink-hue), var(--st-pink-saturation), 80%;
	--st-pink-300-hsl: var(--st-pink-hue), var(--st-pink-saturation), 70%;
	--st-pink-400-hsl: var(--st-pink-hue), var(--st-pink-saturation), 60%;
	--st-pink-500-hsl: var(--st-pink-hue), var(--st-pink-saturation), 50%;
	--st-pink-600-hsl: var(--st-pink-hue), var(--st-pink-saturation), 40%;
	--st-pink-700-hsl: var(--st-pink-hue), var(--st-pink-saturation), 30%;
	--st-pink-800-hsl: var(--st-pink-hue), var(--st-pink-saturation), 20%;
	--st-pink-900-hsl: var(--st-pink-hue), var(--st-pink-saturation), 10%;
	--st-pink-100: hsl(var(--st-pink-100-hsl));
	--st-pink-200: hsl(var(--st-pink-200-hsl));
	--st-pink-300: hsl(var(--st-pink-300-hsl));
	--st-pink-400: hsl(var(--st-pink-400-hsl));
	--st-pink-500: hsl(var(--st-pink-500-hsl));
	--st-pink-600: hsl(var(--st-pink-600-hsl));
	--st-pink-700: hsl(var(--st-pink-700-hsl));
	--st-pink-800: hsl(var(--st-pink-800-hsl));
	--st-pink-900: hsl(var(--st-pink-900-hsl));
	--st-pink-hsl: var(--st-pink-500-hsl);
	--st-pink: hsl(var(--st-pink-hsl));
	--st-pink-foreground-hsl: var(--st-white-hsl);
	--st-pink-foreground: hsl(var(--st-pink-foreground-hsl));
	--st-pink-text-emphasis-hsl: var(--st-pink-600-hsl);
	--st-pink-text-emphasis: hsl(var(--st-pink-text-emphasis-hsl));
	--st-pink-hover-bg: var(--st-pink-600);
	--st-pink-active-bg: var(--st-pink-700);
	--st-pink-bg-subtle: hsl(var(--st-pink-hue), var(--st-pink-saturation), 95%);
	--st-pink-border-subtle: var(--st-pink-400);
	--st-pink-checkbox-svg: var(--st-checkbox-svg-light);
	--st-pink-dash-svg: var(--st-dash-svg-light);
	--st-pink-radio-svg: var(--st-radio-svg-light);
	--st-pink-switch-svg: var(--st-switch-svg-light);

	/* Primary */

	--st-primary-hue: var(--st-blue-hue);
	--st-primary-saturation: var(--st-blue-saturation);
	--st-primary-100-hsl: var(--st-blue-100-hsl);
	--st-primary-200-hsl: var(--st-blue-200-hsl);
	--st-primary-300-hsl: var(--st-blue-300-hsl);
	--st-primary-400-hsl: var(--st-blue-400-hsl);
	--st-primary-500-hsl: var(--st-blue-500-hsl);
	--st-primary-600-hsl: var(--st-blue-600-hsl);
	--st-primary-700-hsl: var(--st-blue-700-hsl);
	--st-primary-800-hsl: var(--st-blue-800-hsl);
	--st-primary-900-hsl: var(--st-blue-900-hsl);
	--st-primary-100: var(--st-blue-100);
	--st-primary-200: var(--st-blue-200);
	--st-primary-300: var(--st-blue-300);
	--st-primary-400: var(--st-blue-400);
	--st-primary-500: var(--st-blue-500);
	--st-primary-600: var(--st-blue-600);
	--st-primary-700: var(--st-blue-700);
	--st-primary-800: var(--st-blue-800);
	--st-primary-900: var(--st-blue-900);
	--st-primary-hsl: var(--st-blue-hsl);
	--st-primary: var(--st-blue);
	--st-primary-foreground-hsl: var(--st-blue-foreground-hsl);
	--st-primary-foreground: var(--st-blue-foreground);
	--st-primary-text-emphasis-hsl: var(--st-blue-text-emphasis-hsl);
	--st-primary-text-emphasis: var(--st-blue-text-emphasis);
	--st-primary-hover-bg: var(--st-blue-hover-bg);
	--st-primary-active-bg: var(--st-blue-active-bg);
	--st-primary-bg-subtle: var(--st-blue-bg-subtle);
	--st-primary-border-subtle: var(--st-blue-border-subtle);
	--st-primary-checkbox-svg: var(--st-blue-checkbox-svg);
	--st-primary-dash-svg: var(--st-blue-dash-svg);
	--st-primary-radio-svg: var(--st-blue-radio-svg);
	--st-primary-switch-svg: var(--st-blue-switch-svg);

	/* Secondary */

	--st-secondary-hue: var(--st-gray-hue);
	--st-secondary-saturation: var(--st-gray-saturation);
	--st-secondary-100-hsl: var(--st-gray-100-hsl);
	--st-secondary-200-hsl: var(--st-gray-200-hsl);
	--st-secondary-300-hsl: var(--st-gray-300-hsl);
	--st-secondary-400-hsl: var(--st-gray-400-hsl);
	--st-secondary-500-hsl: var(--st-gray-500-hsl);
	--st-secondary-600-hsl: var(--st-gray-600-hsl);
	--st-secondary-700-hsl: var(--st-gray-700-hsl);
	--st-secondary-800-hsl: var(--st-gray-800-hsl);
	--st-secondary-900-hsl: var(--st-gray-900-hsl);
	--st-secondary-100: var(--st-gray-100);
	--st-secondary-200: var(--st-gray-200);
	--st-secondary-300: var(--st-gray-300);
	--st-secondary-400: var(--st-gray-400);
	--st-secondary-500: var(--st-gray-500);
	--st-secondary-600: var(--st-gray-600);
	--st-secondary-700: var(--st-gray-700);
	--st-secondary-800: var(--st-gray-800);
	--st-secondary-900: var(--st-gray-900);
	--st-secondary-hsl: var(--st-gray-hsl);
	--st-secondary: var(--st-gray);
	--st-secondary-foreground-hsl: var(--st-gray-foreground-hsl);
	--st-secondary-foreground: var(--st-gray-foreground);
	--st-secondary-text-emphasis-hsl: var(--st-gray-text-emphasis-hsl);
	--st-secondary-text-emphasis: var(--st-gray-text-emphasis);
	--st-secondary-hover-bg: var(--st-gray-hover-bg);
	--st-secondary-active-bg: var(--st-gray-active-bg);
	--st-secondary-bg-subtle: var(--st-gray-bg-subtle);
	--st-secondary-border-subtle: var(--st-gray-border-subtle);
	--st-secondary-checkbox-svg: var(--st-gray-checkbox-svg);
	--st-secondary-dash-svg: var(--st-gray-dash-svg);
	--st-secondary-radio-svg: var(--st-gray-radio-svg);
	--st-secondary-switch-svg: var(--st-gray-switch-svg);

	/* Success */

	--st-success-hue: var(--st-green-hue);
	--st-success-saturation: var(--st-green-saturation);
	--st-success-100-hsl: var(--st-green-100-hsl);
	--st-success-200-hsl: var(--st-green-200-hsl);
	--st-success-300-hsl: var(--st-green-300-hsl);
	--st-success-400-hsl: var(--st-green-400-hsl);
	--st-success-500-hsl: var(--st-green-500-hsl);
	--st-success-600-hsl: var(--st-green-600-hsl);
	--st-success-700-hsl: var(--st-green-700-hsl);
	--st-success-800-hsl: var(--st-green-800-hsl);
	--st-success-900-hsl: var(--st-green-900-hsl);
	--st-success-100: var(--st-green-100);
	--st-success-200: var(--st-green-200);
	--st-success-300: var(--st-green-300);
	--st-success-400: var(--st-green-400);
	--st-success-500: var(--st-green-500);
	--st-success-600: var(--st-green-600);
	--st-success-700: var(--st-green-700);
	--st-success-800: var(--st-green-800);
	--st-success-900: var(--st-green-900);
	--st-success-hsl: var(--st-green-hsl);
	--st-success: var(--st-green);
	--st-success-foreground-hsl: var(--st-green-foreground-hsl);
	--st-success-foreground: var(--st-green-foreground);
	--st-success-text-emphasis-hsl: var(--st-green-text-emphasis-hsl);
	--st-success-text-emphasis: var(--st-green-text-emphasis);
	--st-success-hover-bg: var(--st-green-hover-bg);
	--st-success-active-bg: var(--st-green-active-bg);
	--st-success-bg-subtle: var(--st-green-bg-subtle);
	--st-success-border-subtle: var(--st-green-border-subtle);
	--st-success-checkbox-svg: var(--st-green-checkbox-svg);
	--st-success-dash-svg: var(--st-green-dash-svg);
	--st-success-radio-svg: var(--st-green-radio-svg);
	--st-success-switch-svg: var(--st-green-switch-svg);

	/* Info */

	--st-info-hue: var(--st-cyan-hue);
	--st-info-saturation: var(--st-cyan-saturation);
	--st-info-100-hsl: var(--st-cyan-100-hsl);
	--st-info-200-hsl: var(--st-cyan-200-hsl);
	--st-info-300-hsl: var(--st-cyan-300-hsl);
	--st-info-400-hsl: var(--st-cyan-400-hsl);
	--st-info-500-hsl: var(--st-cyan-500-hsl);
	--st-info-600-hsl: var(--st-cyan-600-hsl);
	--st-info-700-hsl: var(--st-cyan-700-hsl);
	--st-info-800-hsl: var(--st-cyan-800-hsl);
	--st-info-900-hsl: var(--st-cyan-900-hsl);
	--st-info-100: var(--st-cyan-100);
	--st-info-200: var(--st-cyan-200);
	--st-info-300: var(--st-cyan-300);
	--st-info-400: var(--st-cyan-400);
	--st-info-500: var(--st-cyan-500);
	--st-info-600: var(--st-cyan-600);
	--st-info-700: var(--st-cyan-700);
	--st-info-800: var(--st-cyan-800);
	--st-info-900: var(--st-cyan-900);
	--st-info-hsl: var(--st-cyan-hsl);
	--st-info: var(--st-cyan);
	--st-info-foreground-hsl: var(--st-cyan-foreground-hsl);
	--st-info-foreground: var(--st-cyan-foreground);
	--st-info-text-emphasis-hsl: var(--st-cyan-text-emphasis-hsl);
	--st-info-text-emphasis: var(--st-cyan-text-emphasis);
	--st-info-hover-bg: var(--st-cyan-hover-bg);
	--st-info-active-bg: var(--st-cyan-active-bg);
	--st-info-bg-subtle: var(--st-cyan-bg-subtle);
	--st-info-border-subtle: var(--st-cyan-border-subtle);
	--st-info-checkbox-svg: var(--st-cyan-checkbox-svg);
	--st-info-dash-svg: var(--st-cyan-dash-svg);
	--st-info-radio-svg: var(--st-cyan-radio-svg);
	--st-info-switch-svg: var(--st-cyan-switch-svg);

	/* Warning */

	--st-warning-hue: var(--st-yellow-hue);
	--st-warning-saturation: var(--st-yellow-saturation);
	--st-warning-100-hsl: var(--st-yellow-100-hsl);
	--st-warning-200-hsl: var(--st-yellow-200-hsl);
	--st-warning-300-hsl: var(--st-yellow-300-hsl);
	--st-warning-400-hsl: var(--st-yellow-400-hsl);
	--st-warning-500-hsl: var(--st-yellow-500-hsl);
	--st-warning-600-hsl: var(--st-yellow-600-hsl);
	--st-warning-700-hsl: var(--st-yellow-700-hsl);
	--st-warning-800-hsl: var(--st-yellow-800-hsl);
	--st-warning-900-hsl: var(--st-yellow-900-hsl);
	--st-warning-100: var(--st-yellow-100);
	--st-warning-200: var(--st-yellow-200);
	--st-warning-300: var(--st-yellow-300);
	--st-warning-400: var(--st-yellow-400);
	--st-warning-500: var(--st-yellow-500);
	--st-warning-600: var(--st-yellow-600);
	--st-warning-700: var(--st-yellow-700);
	--st-warning-800: var(--st-yellow-800);
	--st-warning-900: var(--st-yellow-900);
	--st-warning-hsl: var(--st-yellow-hsl);
	--st-warning: var(--st-yellow);
	--st-warning-foreground-hsl: var(--st-yellow-foreground-hsl);
	--st-warning-foreground: var(--st-yellow-foreground);
	--st-warning-text-emphasis-hsl: var(--st-yellow-text-emphasis-hsl);
	--st-warning-text-emphasis: var(--st-yellow-text-emphasis);
	--st-warning-hover-bg: var(--st-yellow-hover-bg);
	--st-warning-active-bg: var(--st-yellow-active-bg);
	--st-warning-bg-subtle: var(--st-yellow-bg-subtle);
	--st-warning-border-subtle: var(--st-yellow-border-subtle);
	--st-warning-checkbox-svg: var(--st-yellow-checkbox-svg);
	--st-warning-dash-svg: var(--st-yellow-dash-svg);
	--st-warning-radio-svg: var(--st-yellow-radio-svg);
	--st-warning-switch-svg: var(--st-yellow-switch-svg);

	/* Danger */

	--st-danger-hue: var(--st-red-hue);
	--st-danger-saturation: var(--st-red-saturation);
	--st-danger-100-hsl: var(--st-red-100-hsl);
	--st-danger-200-hsl: var(--st-red-200-hsl);
	--st-danger-300-hsl: var(--st-red-300-hsl);
	--st-danger-400-hsl: var(--st-red-400-hsl);
	--st-danger-500-hsl: var(--st-red-500-hsl);
	--st-danger-600-hsl: var(--st-red-600-hsl);
	--st-danger-700-hsl: var(--st-red-700-hsl);
	--st-danger-800-hsl: var(--st-red-800-hsl);
	--st-danger-900-hsl: var(--st-red-900-hsl);
	--st-danger-100: var(--st-red-100);
	--st-danger-200: var(--st-red-200);
	--st-danger-300: var(--st-red-300);
	--st-danger-400: var(--st-red-400);
	--st-danger-500: var(--st-red-500);
	--st-danger-600: var(--st-red-600);
	--st-danger-700: var(--st-red-700);
	--st-danger-800: var(--st-red-800);
	--st-danger-900: var(--st-red-900);
	--st-danger-hsl: var(--st-red-hsl);
	--st-danger: var(--st-red);
	--st-danger-foreground-hsl: var(--st-red-foreground-hsl);
	--st-danger-foreground: var(--st-red-foreground);
	--st-danger-text-emphasis-hsl: var(--st-red-text-emphasis-hsl);
	--st-danger-text-emphasis: var(--st-red-text-emphasis);
	--st-danger-hover-bg: var(--st-red-hover-bg);
	--st-danger-active-bg: var(--st-red-active-bg);
	--st-danger-bg-subtle: var(--st-red-bg-subtle);
	--st-danger-border-subtle: var(--st-red-border-subtle);
	--st-danger-checkbox-svg: var(--st-red-checkbox-svg);
	--st-danger-dash-svg: var(--st-red-dash-svg);
	--st-danger-radio-svg: var(--st-red-radio-svg);
	--st-danger-switch-svg: var(--st-red-switch-svg);

	/* Light */

	--st-light-hue: var(--st-lightgray-hue);
	--st-light-saturation: var(--st-lightgray-saturation);
	--st-light-100-hsl: var(--st-lightgray-100-hsl);
	--st-light-200-hsl: var(--st-lightgray-200-hsl);
	--st-light-300-hsl: var(--st-lightgray-300-hsl);
	--st-light-400-hsl: var(--st-lightgray-400-hsl);
	--st-light-500-hsl: var(--st-lightgray-500-hsl);
	--st-light-600-hsl: var(--st-lightgray-600-hsl);
	--st-light-700-hsl: var(--st-lightgray-700-hsl);
	--st-light-800-hsl: var(--st-lightgray-800-hsl);
	--st-light-900-hsl: var(--st-lightgray-900-hsl);
	--st-light-100: var(--st-lightgray-100);
	--st-light-200: var(--st-lightgray-200);
	--st-light-300: var(--st-lightgray-300);
	--st-light-400: var(--st-lightgray-400);
	--st-light-500: var(--st-lightgray-500);
	--st-light-600: var(--st-lightgray-600);
	--st-light-700: var(--st-lightgray-700);
	--st-light-800: var(--st-lightgray-800);
	--st-light-900: var(--st-lightgray-900);
	--st-light-hsl: var(--st-lightgray-hsl);
	--st-light: var(--st-lightgray);
	--st-light-foreground-hsl: var(--st-lightgray-foreground-hsl);
	--st-light-foreground: var(--st-lightgray-foreground);
	--st-light-text-emphasis-hsl: var(--st-lightgray-text-emphasis-hsl);
	--st-light-text-emphasis: var(--st-lightgray-text-emphasis);
	--st-light-hover-bg: var(--st-lightgray-hover-bg);
	--st-light-active-bg: var(--st-lightgray-active-bg);
	--st-light-bg-subtle: var(--st-lightgray-bg-subtle);
	--st-light-border-subtle: var(--st-lightgray-border-subtle);
	--st-light-checkbox-svg: var(--st-lightgray-checkbox-svg);
	--st-light-dash-svg: var(--st-lightgray-dash-svg);
	--st-light-radio-svg: var(--st-lightgray-radio-svg);
	--st-light-switch-svg: var(--st-lightgray-switch-svg);

	/* Dark */

	--st-dark-hue: var(--st-darkgray-hue);
	--st-dark-saturation: var(--st-darkgray-saturation);
	--st-dark-100-hsl: var(--st-darkgray-100-hsl);
	--st-dark-200-hsl: var(--st-darkgray-200-hsl);
	--st-dark-300-hsl: var(--st-darkgray-300-hsl);
	--st-dark-400-hsl: var(--st-darkgray-400-hsl);
	--st-dark-500-hsl: var(--st-darkgray-500-hsl);
	--st-dark-600-hsl: var(--st-darkgray-600-hsl);
	--st-dark-700-hsl: var(--st-darkgray-700-hsl);
	--st-dark-800-hsl: var(--st-darkgray-800-hsl);
	--st-dark-900-hsl: var(--st-darkgray-900-hsl);
	--st-dark-100: var(--st-darkgray-100);
	--st-dark-200: var(--st-darkgray-200);
	--st-dark-300: var(--st-darkgray-300);
	--st-dark-400: var(--st-darkgray-400);
	--st-dark-500: var(--st-darkgray-500);
	--st-dark-600: var(--st-darkgray-600);
	--st-dark-700: var(--st-darkgray-700);
	--st-dark-800: var(--st-darkgray-800);
	--st-dark-900: var(--st-darkgray-900);
	--st-dark-hsl: var(--st-darkgray-hsl);
	--st-dark: var(--st-darkgray);
	--st-dark-foreground-hsl: var(--st-darkgray-foreground-hsl);
	--st-dark-foreground: var(--st-darkgray-foreground);
	--st-dark-text-emphasis-hsl: var(--st-darkgray-text-emphasis-hsl);
	--st-dark-text-emphasis: var(--st-darkgray-text-emphasis);
	--st-dark-hover-bg: var(--st-darkgray-hover-bg);
	--st-dark-active-bg: var(--st-darkgray-active-bg);
	--st-dark-bg-subtle: var(--st-darkgray-bg-subtle);
	--st-dark-border-subtle: var(--st-darkgray-border-subtle);
	--st-dark-checkbox-svg: var(--st-darkgray-checkbox-svg);
	--st-dark-dash-svg: var(--st-darkgray-dash-svg);
	--st-dark-radio-svg: var(--st-darkgray-radio-svg);
	--st-dark-switch-svg: var(--st-darkgray-switch-svg);
}

[data-st-theme=dark] {
	/* Light gray */

	--st-lightgray-text-emphasis-hsl: var(--st-lightgray-400-hsl);
	--st-lightgray-text-emphasis: hsl(var(--st-lightgray-text-emphasis-hsl));
	--st-lightgray-bg-subtle: hsl(var(--st-lightgray-hue), var(--st-lightgray-saturation), 30%);
	--st-lightgray-border-subtle: var(--st-lightgray-600);

	/* Gray */

	--st-gray-text-emphasis-hsl: var(--st-gray-300-hsl);
	--st-gray-text-emphasis: hsl(var(--st-gray-text-emphasis-hsl));
	--st-gray-bg-subtle: hsl(var(--st-gray-hue), var(--st-gray-saturation), 25%);
	--st-gray-border-subtle: var(--st-gray-600);

	/* Dark gray */

	--st-darkgray-text-emphasis-hsl: var(--st-darkgray-300-hsl);
	--st-darkgray-text-emphasis: hsl(var(--st-darkgray-text-emphasis-hsl));
	--st-darkgray-bg-subtle: hsl(var(--st-darkgray-hue), var(--st-darkgray-saturation), 17.5%);
	--st-darkgray-border-subtle: var(--st-darkgray-600);

	/* Sable (black) */

	--st-sable-text-emphasis-hsl: var(--st-sable-400-hsl);
	--st-sable-text-emphasis: hsl(var(--st-sable-text-emphasis-hsl));
	--st-sable-bg-subtle: hsl(var(--st-sable-hue), var(--st-sable-saturation), 12%);
	--st-sable-border-subtle: var(--st-sable-600);

	/* Red */

	--st-red-text-emphasis-hsl: var(--st-red-hue), var(--st-red-saturation), 65%;
	--st-red-text-emphasis: hsl(var(--st-red-text-emphasis-hsl));
	--st-red-bg-subtle: hsl(var(--st-red-hue), calc(var(--st-red-saturation)/3), 15%);
	--st-red-border-subtle: var(--st-red-600);

	/* Orange */

	--st-orange-text-emphasis-hsl: var(--st-orange-400-hsl);
	--st-orange-text-emphasis: hsl(var(--st-orange-text-emphasis-hsl));
	--st-orange-bg-subtle: hsl(var(--st-orange-hue), calc(var(--st-orange-saturation)/3), 15%);
	--st-orange-border-subtle: var(--st-orange-600);

	/* Sienna (burnt orange) */

	--st-sienna-text-emphasis-hsl: var(--st-sienna-400-hsl);
	--st-sienna-text-emphasis: hsl(var(--st-sienna-text-emphasis-hsl));
	--st-sienna-bg-subtle: hsl(var(--st-sienna-hue), calc(var(--st-sienna-saturation)/3), 15%);
	--st-sienna-border-subtle: var(--st-sienna-600);

	/* Amber */

	--st-amber-text-emphasis-hsl: var(--st-amber-400-hsl);
	--st-amber-text-emphasis: hsl(var(--st-amber-text-emphasis-hsl));
	--st-amber-bg-subtle: hsl(var(--st-amber-hue), calc(var(--st-amber-saturation)/3), 15%);
	--st-amber-border-subtle: var(--st-amber-600);

	/* Yellow */

	--st-yellow-text-emphasis-hsl: var(--st-yellow-400-hsl);
	--st-yellow-text-emphasis: hsl(var(--st-yellow-text-emphasis-hsl));
	--st-yellow-bg-subtle: hsl(var(--st-yellow-hue), calc(var(--st-yellow-saturation)/3), 15%);
	--st-yellow-border-subtle: var(--st-yellow-600);

	/* Lime */

	--st-lime-text-emphasis-hsl: var(--st-lime-400-hsl);
	--st-lime-text-emphasis: hsl(var(--st-lime-text-emphasis-hsl));
	--st-lime-bg-subtle: hsl(var(--st-lime-hue), calc(var(--st-lime-saturation)/3), 15%);
	--st-lime-border-subtle: var(--st-lime-600);

	/* Green */

	--st-green-text-emphasis-hsl: var(--st-green-400-hsl);
	--st-green-text-emphasis: hsl(var(--st-green-text-emphasis-hsl));
	--st-green-bg-subtle: hsl(var(--st-green-hue), calc(var(--st-green-saturation)/3), 15%);
	--st-green-border-subtle: var(--st-green-600);

	/* Emerald */

	--st-emerald-text-emphasis-hsl: var(--st-emerald-400-hsl);
	--st-emerald-text-emphasis: hsl(var(--st-emerald-text-emphasis-hsl));
	--st-emerald-bg-subtle: hsl(var(--st-emerald-hue), calc(var(--st-emerald-saturation)/3), 15%);
	--st-emerald-border-subtle: var(--st-emerald-600);

	/* Turquoise */

	--st-turquoise-text-emphasis-hsl: var(--st-turquoise-400-hsl);
	--st-turquoise-text-emphasis: hsl(var(--st-turquoise-text-emphasis-hsl));
	--st-turquoise-bg-subtle: hsl(var(--st-turquoise-hue), calc(var(--st-turquoise-saturation)/3), 15%);
	--st-turquoise-border-subtle: var(--st-turquoise-600);

	/* Teal */

	--st-teal-text-emphasis-hsl: var(--st-teal-400-hsl);
	--st-teal-text-emphasis: hsl(var(--st-teal-text-emphasis-hsl));
	--st-teal-bg-subtle: hsl(var(--st-teal-hue), calc(var(--st-teal-saturation)/3), 15%);
	--st-teal-border-subtle: var(--st-teal-600);

	/* Cyan */

	--st-cyan-text-emphasis-hsl: var(--st-cyan-400-hsl);
	--st-cyan-text-emphasis: hsl(var(--st-cyan-text-emphasis-hsl));
	--st-cyan-bg-subtle: hsl(var(--st-cyan-hue), calc(var(--st-cyan-saturation)/3), 15%);
	--st-cyan-border-subtle: var(--st-cyan-600);

	/* Sky */

	--st-sky-text-emphasis-hsl: var(--st-sky-400-hsl);
	--st-sky-text-emphasis: hsl(var(--st-sky-text-emphasis-hsl));
	--st-sky-bg-subtle: hsl(var(--st-sky-hue), calc(var(--st-sky-saturation)/3), 15%);
	--st-sky-border-subtle: var(--st-sky-600);

	/* Blue */

	--st-blue-text-emphasis-hsl: var(--st-blue-400-hsl);
	--st-blue-text-emphasis: hsl(var(--st-blue-text-emphasis-hsl));
	--st-blue-bg-subtle: hsl(var(--st-blue-hue), calc(var(--st-blue-saturation)/3), 15%);
	--st-blue-border-subtle: var(--st-blue-600);

	/* Navy */

	--st-navy-text-emphasis-hsl: var(--st-navy-300-hsl);
	--st-navy-text-emphasis: hsl(var(--st-navy-text-emphasis-hsl));
	--st-navy-bg-subtle: hsl(var(--st-navy-hue), calc(var(--st-navy-saturation)/3), 15%);
	--st-navy-border-subtle: var(--st-navy-600);

	/* Indigo */

	--st-indigo-text-emphasis-hsl: var(--st-indigo-300-hsl);
	--st-indigo-text-emphasis: hsl(var(--st-indigo-text-emphasis-hsl));
	--st-indigo-bg-subtle: hsl(var(--st-indigo-hue), calc(var(--st-indigo-saturation)/3), 15%);
	--st-indigo-border-subtle: var(--st-indigo-600);

	/* Violet */

	--st-violet-text-emphasis-hsl: var(--st-violet-300-hsl);
	--st-violet-text-emphasis: hsl(var(--st-violet-text-emphasis-hsl));
	--st-violet-bg-subtle: hsl(var(--st-violet-hue), calc(var(--st-violet-saturation)/3), 15%);
	--st-violet-border-subtle: var(--st-violet-600);

	/* Purple */

	--st-purple-text-emphasis-hsl: var(--st-purple-300-hsl);
	--st-purple-text-emphasis: hsl(var(--st-purple-text-emphasis-hsl));
	--st-purple-bg-subtle: hsl(var(--st-purple-hue), calc(var(--st-purple-saturation)/3), 15%);
	--st-purple-border-subtle: var(--st-purple-600);

	/* Fuchsia */

	--st-fuchsia-text-emphasis-hsl: var(--st-fuchsia-400-hsl);
	--st-fuchsia-text-emphasis: hsl(var(--st-fuchsia-text-emphasis-hsl));
	--st-fuchsia-bg-subtle: hsl(var(--st-fuchsia-hue), calc(var(--st-fuchsia-saturation)/3), 15%);
	--st-fuchsia-border-subtle: var(--st-fuchsia-600);

	/* Pink (magenta) */

	--st-pink-text-emphasis-hsl: var(--st-pink-400-hsl);
	--st-pink-text-emphasis: hsl(var(--st-pink-text-emphasis-hsl));
	--st-pink-bg-subtle: hsl(var(--st-pink-hue), calc(var(--st-pink-saturation)/3), 15%);
	--st-pink-border-subtle: var(--st-pink-600);

	/* Primary */

	--st-primary-text-emphasis-hsl: var(--st-blue-text-emphasis-hsl);
	--st-primary-text-emphasis: var(--st-blue-text-emphasis);
	--st-primary-bg-subtle: var(--st-blue-bg-subtle);
	--st-primary-border-subtle: var(--st-blue-border-subtle);

	/* Secondary */

	--st-secondary-hue: var(--st-darkgray-hue);
	--st-secondary-saturation: var(--st-darkgray-saturation);
	--st-secondary-100-hsl: var(--st-darkgray-100-hsl);
	--st-secondary-200-hsl: var(--st-darkgray-200-hsl);
	--st-secondary-300-hsl: var(--st-darkgray-300-hsl);
	--st-secondary-400-hsl: var(--st-darkgray-400-hsl);
	--st-secondary-500-hsl: var(--st-darkgray-500-hsl);
	--st-secondary-600-hsl: var(--st-darkgray-600-hsl);
	--st-secondary-700-hsl: var(--st-darkgray-700-hsl);
	--st-secondary-800-hsl: var(--st-darkgray-800-hsl);
	--st-secondary-900-hsl: var(--st-darkgray-900-hsl);
	--st-secondary-100: var(--st-darkgray-100);
	--st-secondary-200: var(--st-darkgray-200);
	--st-secondary-300: var(--st-darkgray-300);
	--st-secondary-400: var(--st-darkgray-400);
	--st-secondary-500: var(--st-darkgray-500);
	--st-secondary-600: var(--st-darkgray-600);
	--st-secondary-700: var(--st-darkgray-700);
	--st-secondary-800: var(--st-darkgray-800);
	--st-secondary-900: var(--st-darkgray-900);
	--st-secondary-hsl: var(--st-darkgray-hsl);
	--st-secondary: var(--st-darkgray);
	--st-secondary-foreground-hsl: var(--st-darkgray-foreground-hsl);
	--st-secondary-foreground: var(--st-darkgray-foreground);
	--st-secondary-text-emphasis-hsl: var(--st-darkgray-text-emphasis-hsl);
	--st-secondary-text-emphasis: var(--st-darkgray-text-emphasis);
	--st-secondary-hover-bg: var(--st-darkgray-hover-bg);
	--st-secondary-active-bg: var(--st-darkgray-active-bg);
	--st-secondary-bg-subtle: var(--st-darkgray-bg-subtle);
	--st-secondary-border-subtle: var(--st-darkgray-border-subtle);
	--st-secondary-checkbox-svg: var(--st-darkgray-checkbox-svg);
	--st-secondary-dash-svg: var(--st-darkgray-dash-svg);
	--st-secondary-radio-svg: var(--st-darkgray-radio-svg);
	--st-secondary-switch-svg: var(--st-darkgray-switch-svg);

	/* Success */

	--st-success-text-emphasis-hsl: var(--st-green-text-emphasis-hsl);
	--st-success-text-emphasis: var(--st-green-text-emphasis);
	--st-success-bg-subtle: var(--st-green-bg-subtle);
	--st-success-border-subtle: var(--st-green-border-subtle);

	/* Info */

	--st-info-text-emphasis-hsl: var(--st-cyan-text-emphasis-hsl);
	--st-info-text-emphasis: var(--st-cyan-text-emphasis);
	--st-info-bg-subtle: var(--st-cyan-bg-subtle);
	--st-info-border-subtle: var(--st-cyan-border-subtle);

	/* Warning */

	--st-warning-text-emphasis-hsl: var(--st-yellow-text-emphasis-hsl);
	--st-warning-text-emphasis: var(--st-yellow-text-emphasis);
	--st-warning-bg-subtle: var(--st-yellow-bg-subtle);
	--st-warning-border-subtle: var(--st-yellow-border-subtle);

	/* Danger */

	--st-danger-text-emphasis-hsl: var(--st-red-text-emphasis-hsl);
	--st-danger-text-emphasis: var(--st-red-text-emphasis);
	--st-danger-bg-subtle: var(--st-red-bg-subtle);
	--st-danger-border-subtle: var(--st-red-border-subtle);

	/* Light */

	--st-light-hue: var(--st-gray-hue);
	--st-light-saturation: var(--st-gray-saturation);
	--st-light-100-hsl: var(--st-gray-100-hsl);
	--st-light-200-hsl: var(--st-gray-200-hsl);
	--st-light-300-hsl: var(--st-gray-300-hsl);
	--st-light-400-hsl: var(--st-gray-400-hsl);
	--st-light-500-hsl: var(--st-gray-500-hsl);
	--st-light-600-hsl: var(--st-gray-600-hsl);
	--st-light-700-hsl: var(--st-gray-700-hsl);
	--st-light-800-hsl: var(--st-gray-800-hsl);
	--st-light-900-hsl: var(--st-gray-900-hsl);
	--st-light-100: var(--st-gray-100);
	--st-light-200: var(--st-gray-200);
	--st-light-300: var(--st-gray-300);
	--st-light-400: var(--st-gray-400);
	--st-light-500: var(--st-gray-500);
	--st-light-600: var(--st-gray-600);
	--st-light-700: var(--st-gray-700);
	--st-light-800: var(--st-gray-800);
	--st-light-900: var(--st-gray-900);
	--st-light-hsl: var(--st-gray-hsl);
	--st-light: var(--st-gray);
	--st-light-foreground-hsl: var(--st-gray-foreground-hsl);
	--st-light-foreground: var(--st-gray-foreground);
	--st-light-text-emphasis-hsl: var(--st-gray-text-emphasis-hsl);
	--st-light-text-emphasis: var(--st-gray-text-emphasis);
	--st-light-hover-bg: var(--st-gray-hover-bg);
	--st-light-active-bg: var(--st-gray-active-bg);
	--st-light-bg-subtle: var(--st-gray-bg-subtle);
	--st-light-border-subtle: var(--st-gray-border-subtle);
	--st-light-checkbox-svg: var(--st-gray-checkbox-svg);
	--st-light-dash-svg: var(--st-gray-dash-svg);
	--st-light-radio-svg: var(--st-gray-radio-svg);
	--st-light-switch-svg: var(--st-gray-switch-svg);

	/* Dark */

	--st-dark-hue: var(--st-sable-hue);
	--st-dark-saturation: var(--st-sable-saturation);
	--st-dark-100-hsl: var(--st-sable-100-hsl);
	--st-dark-200-hsl: var(--st-sable-200-hsl);
	--st-dark-300-hsl: var(--st-sable-300-hsl);
	--st-dark-400-hsl: var(--st-sable-400-hsl);
	--st-dark-500-hsl: var(--st-sable-500-hsl);
	--st-dark-600-hsl: var(--st-sable-600-hsl);
	--st-dark-700-hsl: var(--st-sable-700-hsl);
	--st-dark-800-hsl: var(--st-sable-800-hsl);
	--st-dark-900-hsl: var(--st-sable-900-hsl);
	--st-dark-100: var(--st-sable-100);
	--st-dark-200: var(--st-sable-200);
	--st-dark-300: var(--st-sable-300);
	--st-dark-400: var(--st-sable-400);
	--st-dark-500: var(--st-sable-500);
	--st-dark-600: var(--st-sable-600);
	--st-dark-700: var(--st-sable-700);
	--st-dark-800: var(--st-sable-800);
	--st-dark-900: var(--st-sable-900);
	--st-dark-hsl: var(--st-sable-hsl);
	--st-dark: var(--st-sable);
	--st-dark-foreground-hsl: var(--st-sable-foreground-hsl);
	--st-dark-foreground: var(--st-sable-foreground);
	--st-dark-text-emphasis-hsl: var(--st-sable-text-emphasis-hsl);
	--st-dark-text-emphasis: var(--st-sable-text-emphasis);
	--st-dark-hover-bg: var(--st-sable-hover-bg);
	--st-dark-active-bg: var(--st-sable-active-bg);
	--st-dark-bg-subtle: var(--st-sable-bg-subtle);
	--st-dark-border-subtle: var(--st-sable-border-subtle);
	--st-dark-checkbox-svg: var(--st-sable-checkbox-svg);
	--st-dark-dash-svg: var(--st-sable-dash-svg);
	--st-dark-radio-svg: var(--st-sable-radio-svg);
	--st-dark-switch-svg: var(--st-sable-switch-svg);
}

/**
 * ----------------------------------------------------------------------------
 * [ Variables ]
 * ----------------------------------------------------------------------------
 */

:root,
[data-st-theme=light] {
	/* Color scheme */

	color-scheme: light;

	/* Font family */

	--st-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";
	--st-font-serif: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
	--st-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--st-body-font-family: var(--st-font-sans-serif);

	/* Font size */

	--st-font-size-base: 0.875rem;
	--st-font-size-sm: 0.75rem;
	--st-font-size-lg: 1rem;
	--st-relative-font-size-sm: 0.85714285714em; /* 12px */
	--st-relative-font-size-xs: 0.71428571428em; /* 10px */
	--st-relative-font-size-2xs: 0.57142857142em; /* 8px */
	--st-relative-font-size-3xs: 0.42857142857em; /* 6px */
	--st-relative-font-size-4xs: 0.28571428571em; /* 4px */
	--st-relative-font-size-5xs: 0.21428571428em; /* 3px */
	--st-relative-font-size-6xs: 0.14285714285em; /* 2px */
	--st-relative-font-size-7xs: 0.07142857142em; /* 1px */
	--st-body-font-size: var(--st-font-size-base);
	--st-h1-font-size: calc(var(--st-font-size-base) + 1.375rem);
	--st-h2-font-size: calc(var(--st-font-size-base) + 1rem);
	--st-h3-font-size: calc(var(--st-font-size-base) + 0.75rem);
	--st-h4-font-size: calc(var(--st-font-size-base) + 0.5rem);
	--st-h5-font-size: calc(var(--st-font-size-base) + 0.25rem);
	--st-h6-font-size: var(--st-font-size-base);

	/* Font weight */

	--st-font-weight-lighter: lighter;
	--st-font-weight-light: 300;
	--st-font-weight-normal: 400;
	--st-font-weight-medium: 500;
	--st-font-weight-semibold: 600;
	--st-font-weight-bold: 700;
	--st-font-weight-bolder: bolder;
	--st-body-font-weight: var(--st-font-weight-normal);
	--st-heading-font-weight: var(--st-font-weight-bold);

	/* Line height */

	--st-line-height-base: 1.5;
	--st-line-height-sm: 1.25;
	--st-line-height-lg: 2;
	--st-body-line-height: var(--st-line-height-base);
	--st-heading-line-height: 1.2;

	/* Font smoothing */

	--st-body-webkit-font-smoothing: antialiased;
	--st-body-moz-osx-font-smoothing: grayscale;

	/* Spacer */

	--st-spacer: 1rem;
	--st-spacer-1: calc(var(--st-spacer) * 0.25);
	--st-spacer-2: calc(var(--st-spacer) * 0.5);
	--st-spacer-3: var(--st-spacer);
	--st-spacer-4: calc(var(--st-spacer) * 1.5);
	--st-spacer-5: calc(var(--st-spacer) * 3);

	/* Color */

	--st-color-hue: var(--st-gray-hue);
	--st-color-saturation: var(--st-gray-saturation);
	--st-body-color-hsl: var(--st-color-hue), var(--st-color-saturation), 15%;
	--st-body-color: hsl(var(--st-body-color-hsl));
	--st-emphasis-color-hsl: var(--st-black-hsl);
	--st-emphasis-color: hsl(var(--st-emphasis-color-hsl));
	--st-secondary-color-hsl: var(--st-color-hue), var(--st-color-saturation), 40%;
	--st-secondary-color: hsl(var(--st-secondary-color-hsl));
	--st-tertiary-color-hsl: var(--st-color-hue), var(--st-color-saturation), 65%;
	--st-tertiary-color: hsl(var(--st-tertiary-color-hsl));
	--st-heading-color: inherit;

	/* Background */

	--st-body-bg-hsl: var(--st-white-hsl);
	--st-body-bg: hsl(var(--st-body-bg-hsl));
	--st-secondary-bg-hsl: var(--st-lightgray-100-hsl);
	--st-secondary-bg: hsl(var(--st-secondary-bg-hsl));
	--st-tertiary-bg-hsl: var(--st-lightgray-200-hsl);
	--st-tertiary-bg: hsl(var(--st-tertiary-bg-hsl));
	--st-gradient: linear-gradient(180deg, hsla(var(--st-white-hsl), 0.15), hsla(var(--st-white-hsl), 0));

	/* Border */

	--st-border-width: 1px;
	--st-border-width-1: var(--st-border-width);
	--st-border-width-2: calc(var(--st-border-width) + 1px);
	--st-border-width-3: calc(var(--st-border-width) + 2px);
	--st-border-width-4: calc(var(--st-border-width) + 3px);
	--st-border-width-5: calc(var(--st-border-width) + 4px);
	--st-border-style: solid;
	--st-border-color: var(--st-lightgray-800);
	--st-border-color-light: var(--st-lightgray-600);
	--st-border-color-dark: var(--st-border-color);
	--st-border-color-translucent: hsla(var(--st-black-hsl), 0.15);
	--st-border-radius: 0.375rem;
	--st-border-radius-sm: 0.25rem;
	--st-border-radius-lg: 0.5rem;
	--st-border-radius-xl: 1rem;
	--st-border-radius-xxl: 2rem;
	--st-border-radius-2xl: var(--st-border-radius-xxl);
	--st-border-radius-pill: 50rem;

	/* Box shadow */

	--st-box-shadow-color: hsla(var(--st-black-hsl), 0.15);
	--st-box-shadow: 0 0.5rem 1rem var(--st-box-shadow-color);
	--st-box-shadow-sm: 0 0.125rem 0.25rem var(--st-box-shadow-color);
	--st-box-shadow-lg: 0 1rem 3rem var(--st-box-shadow-color);
	--st-box-shadow-inset: inset 0 1px var(--st-box-shadow-color);

	/* Focus ring */

	--st-focus-ring-width: 0.25rem;
	--st-focus-ring-opacity: 0.25;
	--st-focus-ring-color: hsla(var(--st-primary-hsl), var(--st-focus-ring-opacity));

	/* Link */

	--st-link-color-hsl: var(--st-primary-hsl);
	--st-link-color: hsl(var(--st-link-color-hsl));
	--st-link-decoration: underline;
	--st-link-decoration-offset: var(--st-relative-font-size-4xs);
	--st-link-hover-color-hsl: var(--st-primary-text-emphasis-hsl);
	--st-link-hover-color: hsl(var(--st-link-hover-color-hsl));
	--st-link-hover-decoration: underline;

	/* Highlight */

	--st-highlight-padding: var(--st-relative-font-size-6xs);
	--st-highlight-color: inherit;
	--st-highlight-bg: hsla(var(--st-yellow-hsl), 0.25);
	--st-highlight-border-radius: 0;

	/* Code */

	--st-code-padding: var(--st-relative-font-size-6xs) var(--st-relative-font-size-4xs);
	--st-code-font-size: var(--st-relative-font-size-sm);
	--st-code-color: inherit;
	--st-code-bg: hsla(var(--st-black-hsl), 0.1);
	--st-code-border-radius: var(--st-border-radius-sm);

	/* Keyboard input */

	--st-kbd-padding: 0.125rem 0.375rem;
	--st-kbd-font-size: var(--st-font-size-sm);
	--st-kbd-color: var(--st-dark-foreground);
	--st-kbd-bg: var(--st-dark);
	--st-kbd-border-radius: var(--st-border-radius-sm);

	/* Container */

	--st-container-max-width-sm: 540px;
	--st-container-max-width-md: 720px;
	--st-container-max-width-lg: 960px;
	--st-container-max-width-xl: 1140px;
	--st-container-max-width-xxl: 1320px;

	/* Sidebar */

	--st-sidebar-margin: 0;
	--st-sidebar-width: 20rem;
	--st-sidebar-height: 100%;
	--st-padding-sbwidth: var(--st-sidebar-width);

	/* Content (used as needed in cards, panels, menus, etc.) */

	--st-content-color-hsl: var(--st-body-color-hsl);
	--st-content-color: hsl(var(--st-content-color-hsl));
	--st-content-bg-hsl: var(--st-body-bg-hsl);
	--st-content-bg: hsl(var(--st-content-bg-hsl));
	--st-content-border-color: var(--st-border-color-dark);
	--st-content-box-shadow: none;
	--st-content-floating-color-hsl: var(--st-content-color-hsl);
	--st-content-floating-color: hsl(var(--st-content-floating-color-hsl));
	--st-content-floating-bg-hsl: var(--st-content-bg-hsl);
	--st-content-floating-bg: hsl(var(--st-content-floating-bg-hsl));
	--st-content-floating-border-color: var(--st-content-border-color);
	--st-content-floating-box-shadow: 0 1rem 2.25rem 0 rgba(0, 0, 0, 0.05), 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.04);

	/* Action (used as needed in buttons, inputs, menu items, page links, etc.) */

	--st-action-padding-x: 0.5rem;
	--st-action-padding-y: 0.25rem;
	--st-action-font-size: var(--st-font-size-base);
	--st-action-line-height: calc(20/14);
	--st-action-sm-padding-x: 0.375rem;
	--st-action-sm-padding-y: 0.125rem;
	--st-action-sm-font-size: var(--st-font-size-sm);
	--st-action-sm-line-height: calc(18/12);
	--st-action-lg-padding-x: 0.625rem;
	--st-action-lg-padding-y: 0.3125rem;
	--st-action-lg-font-size: var(--st-font-size-lg);
	--st-action-lg-line-height: calc(24/16);
	--st-action-color: hsl(var(--st-color-hue), var(--st-color-saturation), 20%);
	--st-action-bg: var(--st-white);
	--st-action-border-color: var(--st-border-color-dark);
	--st-action-hover-color: var(--st-action-color);
	--st-action-hover-bg: var(--st-lightgray-200);
	--st-action-hover-border-color: var(--st-action-border-color);
	--st-action-focus-shadow-hsl: var(--st-primary-hsl);
	--st-action-active-color: var(--st-action-color);
	--st-action-active-bg: var(--st-lightgray-400);
	--st-action-active-border-color: var(--st-action-border-color);
	--st-action-active-shadow: none;
	--st-action-disabled-color: var(--st-secondary-color);
	--st-action-disabled-bg: var(--st-lightgray-400);
	--st-action-disabled-border-color: var(--st-action-border-color);

	/* Form */

	--st-form-color: var(--st-body-color);
	--st-form-bg: var(--st-action-bg);
	--st-form-secondary-bg: var(--st-action-hover-bg);
	--st-form-tertiary-bg: var(--st-action-active-bg);
	--st-form-border-color: var(--st-action-border-color);
	--st-form-focus-border-color: var(--st-form-border-color);
	--st-form-focus-shadow-hsl: var(--st-primary-hsl);
	--st-form-disabled-color: var(--st-action-disabled-color);
	--st-form-disabled-bg: var(--st-action-disabled-bg);
	--st-form-disabled-border-color: var(--st-action-disabled-border-color);
	--st-form-valid-color: var(--st-success-text-emphasis);
	--st-form-valid-border-color: var(--st-success-border-subtle);
	--st-form-invalid-color: var(--st-danger-text-emphasis);
	--st-form-invalid-border-color: var(--st-danger-border-subtle);
	--st-form-check-bg: var(--st-form-bg);
	--st-form-check-border-color: var(--st-border-color);
	--st-form-check-focus-border-color: var(--st-form-check-border-color);
	--st-form-check-focus-shadow-hsl: var(--st-form-focus-shadow-hsl);

	/* Contextual buttons */

	--st-ctx-btn-border-color: transparent;
	--st-ctx-btn-hover-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-active-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-disabled-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-bg-clip: border-box;

	/* Action bar (used as needed in range, progress, etc.) */

	--st-actionbar-bg: var(--st-action-hover-bg);
	--st-actionbar-border-color: hsla(var(--st-black-hsl), 0.075);
	--st-progresstrack-border-width: 0;
	--st-progresstrack-box-shadow: inset 0 0 0 var(--st-border-width) var(--st-actionbar-border-color);
	--st-progresstrack-bg-clip: border-box;
}

[data-st-theme=dark] {
	/* Color scheme */

	color-scheme: dark;

	/* Color */

	--st-color-hue: var(--st-gray-hue);
	--st-color-saturation: var(--st-gray-saturation);
	--st-body-color-hsl: var(--st-color-hue), var(--st-color-saturation), 85%;
	--st-body-color: hsl(var(--st-body-color-hsl));
	--st-emphasis-color-hsl: var(--st-white-hsl);
	--st-emphasis-color: hsl(var(--st-emphasis-color-hsl));
	--st-secondary-color-hsl: var(--st-color-hue), var(--st-color-saturation), 60%;
	--st-secondary-color: hsl(var(--st-secondary-color-hsl));
	--st-tertiary-color-hsl: var(--st-color-hue), var(--st-color-saturation), 35%;
	--st-tertiary-color: hsl(var(--st-tertiary-color-hsl));
	--st-heading-color: inherit;

	/* Background */

	--st-body-bg-hsl: var(--st-sable-hue), var(--st-sable-saturation), 13%;
	--st-body-bg: hsl(var(--st-body-bg-hsl));
	--st-secondary-bg-hsl: var(--st-sable-hue), var(--st-sable-saturation), 11.8%;
	--st-secondary-bg: hsl(var(--st-secondary-bg-hsl));
	--st-tertiary-bg-hsl: var(--st-sable-hue), var(--st-sable-saturation), 11%;
	--st-tertiary-bg: hsl(var(--st-tertiary-bg-hsl));
	--st-gradient: linear-gradient(180deg, hsla(var(--st-white-hsl), 0.15), hsla(var(--st-white-hsl), 0));

	/* Border */

	--st-border-color: var(--st-gray-800);
	--st-border-color-light: var(--st-border-color);
	--st-border-color-dark: hsl(var(--st-sable-hue), var(--st-sable-saturation), 9.5%);
	--st-border-color-translucent: hsla(var(--st-white-hsl), 0.15);

	/* Box shadow */

	--st-box-shadow-color: hsla(var(--st-black-hsl), 0.4);
	--st-box-shadow: 0 0.5rem 1rem var(--st-box-shadow-color);
	--st-box-shadow-sm: 0 0.125rem 0.25rem var(--st-box-shadow-color);
	--st-box-shadow-lg: 0 1rem 3rem var(--st-box-shadow-color);
	--st-box-shadow-inset: inset 0 1px var(--st-box-shadow-color);

	/* Link */

	--st-link-color-hsl: var(--st-primary-text-emphasis-hsl);
	--st-link-color: hsl(var(--st-link-color-hsl));
	--st-link-hover-color-hsl: var(--st-primary-hsl);
	--st-link-hover-color: hsl(var(--st-link-hover-color-hsl));

	/* Highlight */

	--st-highlight-color: inherit;
	--st-highlight-bg: hsla(var(--st-yellow-hsl), 0.1);

	/* Code */

	--st-code-color: inherit;
	--st-code-bg: hsla(var(--st-white-hsl), 0.075);

	/* Keyboard input */

	--st-kbd-color: var(--st-light-foreground);
	--st-kbd-bg: var(--st-light);

	/* Content (used as needed in cards, panels, menus, etc.) */

	--st-content-color-hsl: var(--st-body-color-hsl);
	--st-content-color: hsl(var(--st-content-color-hsl));
	--st-content-bg-hsl: var(--st-tertiary-bg-hsl);
	--st-content-bg: hsl(var(--st-content-bg-hsl));
	--st-content-border-color: var(--st-border-color-dark);
	--st-content-box-shadow: none;
	--st-content-floating-color-hsl: var(--st-content-color-hsl);
	--st-content-floating-color: hsl(var(--st-content-floating-color-hsl));
	--st-content-floating-bg-hsl: var(--st-sable-hue), var(--st-sable-saturation), 13.5%;
	--st-content-floating-bg: hsl(var(--st-content-floating-bg-hsl));
	--st-content-floating-border-color: var(--st-content-border-color);
	--st-content-floating-box-shadow: 0 1rem 2.25rem 0 rgba(0, 0, 0, 0.2), 0 0.25rem 1rem 0 rgba(0, 0, 0, 0.16);

	/* Action (used as needed in buttons, inputs, menu items, page links, etc.) */

	--st-action-color: hsl(var(--st-color-hue), var(--st-color-saturation), 80%);
	--st-action-bg: var(--st-sable-700);
	--st-action-border-color: var(--st-border-color-dark);
	--st-action-hover-color: var(--st-action-color);
	--st-action-hover-bg: var(--st-sable-600);
	--st-action-hover-border-color: var(--st-action-border-color);
	--st-action-focus-shadow-hsl: var(--st-primary-hsl);
	--st-action-active-color: var(--st-action-color);
	--st-action-active-bg: var(--st-sable-500);
	--st-action-active-border-color: var(--st-action-border-color);
	--st-action-active-shadow: none;
	--st-action-disabled-color: var(--st-secondary-color);
	--st-action-disabled-bg: var(--st-sable-400);
	--st-action-disabled-border-color: var(--st-action-border-color);

	/* Form */

	--st-form-color: var(--st-body-color);
	--st-form-bg: var(--st-action-bg);
	--st-form-secondary-bg: var(--st-action-hover-bg);
	--st-form-tertiary-bg: var(--st-action-active-bg);
	--st-form-border-color: var(--st-action-border-color);
	--st-form-focus-border-color: var(--st-form-border-color);
	--st-form-focus-shadow-hsl: var(--st-primary-hsl);
	--st-form-disabled-color: var(--st-action-disabled-color);
	--st-form-disabled-bg: var(--st-action-disabled-bg);
	--st-form-disabled-border-color: var(--st-action-disabled-border-color);
	--st-form-valid-color: var(--st-success-text-emphasis);
	--st-form-valid-border-color: var(--st-success-border-subtle);
	--st-form-invalid-color: var(--st-danger-text-emphasis);
	--st-form-invalid-border-color: var(--st-danger-border-subtle);
	--st-form-check-bg: var(--st-form-bg);
	--st-form-check-border-color: var(--st-border-color);
	--st-form-check-focus-border-color: var(--st-form-check-border-color);
	--st-form-check-focus-shadow-hsl: var(--st-form-focus-shadow-hsl);

	/* Contextual buttons */

	--st-ctx-btn-border-color: var(--st-border-color-dark);
	--st-ctx-btn-hover-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-active-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-disabled-border-color: var(--st-ctx-btn-border-color);
	--st-ctx-btn-bg-clip: padding-box;

	/* Action bar (used as needed in range, progress, etc.) */

	--st-actionbar-bg: var(--st-action-bg);
	--st-actionbar-border-color: var(--st-action-border-color);
	--st-progresstrack-border-width: var(--st-border-width);
	--st-progresstrack-box-shadow: none;
	--st-progresstrack-bg-clip: padding-box;
}

/**
 * ----------------------------------------------------------------------------
 * [ Reboot ]
 * ----------------------------------------------------------------------------
 */

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

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

hr {
	margin: 1rem 0;
	color: inherit;
	border: 0;
	border-top: var(--st-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: var(--st-heading-font-weight);
	line-height: var(--st-heading-line-height);
	color: var(--st-heading-color);
}

h1, .h1 {
	font-size: calc((var(--st-font-size-base) + 0.4875rem) + 1.5vw);
}

@media (min-width: 1200px) {
	h1, .h1 {
		font-size: var(--st-h1-font-size);
	}
}

h2, .h2 {
	font-size: calc((var(--st-font-size-base) + 0.4375rem) + 0.9vw);
}

@media (min-width: 1200px) {
	h2, .h2 {
		font-size: var(--st-h2-font-size);
	}
}

h3, .h3 {
	font-size: calc((var(--st-font-size-base) + 0.4rem) + 0.6vw);
}

@media (min-width: 1200px) {
	h3, .h3 {
		font-size: var(--st-h3-font-size);
	}
}

h4, .h4 {
	font-size: calc((var(--st-font-size-base) + 0.375rem) + 0.3vw);
}

@media (min-width: 1200px) {
	h4, .h4 {
		font-size: var(--st-h4-font-size);
	}
}

h5, .h5 {
	font-size: var(--st-h5-font-size);
}

h6, .h6 {
	font-size: var(--st-h6-font-size);
}

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;
}

a > abbr[title] {
	text-underline-offset: var(--st-relative-font-size-6xs);
}

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: var(--st-font-weight-bold);
}

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

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: var(--st-font-weight-bolder);
}

small, .small {
	font-size: var(--st-relative-font-size-sm);
}

mark, .mark {
	padding: var(--st-highlight-padding);
	color: var(--st-highlight-color);
	background-color: var(--st-highlight-bg);
	border-radius: var(--st-highlight-border-radius);
}

sub,
sup {
	position: relative;
	font-size: var(--st-relative-font-size-xs);
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: calc(-1 * var(--st-relative-font-size-4xs));
}

sup {
	top: calc(-1 * var(--st-relative-font-size-3xs));
}

a {
	color: hsla(var(--st-link-color-hsl), var(--st-link-opacity, 1));
	text-decoration: var(--st-link-decoration);
	text-underline-offset: var(--st-link-decoration-offset);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

a:hover {
	--st-link-color-hsl: var(--st-link-hover-color-hsl);
	--st-link-decoration: var(--st-link-hover-decoration);
}

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

pre,
code,
kbd,
samp {
	font-family: var(--st-font-monospace);
	font-size: 1em;
}

pre {
	display: block;
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	font-size: var(--st-relative-font-size-sm);
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
	border-radius: 0;
	word-break: normal;
	word-wrap: normal;
}

code {
	padding: var(--st-code-padding);
	font-size: var(--st-code-font-size);
	color: var(--st-code-color);
	background-color: var(--st-code-bg);
	border-radius: var(--st-code-border-radius);
	word-wrap: break-word;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

a > code {
	color: inherit;
}

kbd {
	padding: var(--st-kbd-padding);
	font-size: var(--st-kbd-font-size);
	color: var(--st-kbd-color);
	background-color: var(--st-kbd-bg);
	border-radius: var(--st-kbd-border-radius);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

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(--st-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;
	font-size: calc((var(--st-font-size-base) + 0.375rem) + 0.3vw);
	line-height: inherit;
}

@media (min-width: 1200px) {
	legend {
		font-size: calc(var(--st-font-size-base) + 0.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] {
	outline-offset: -2px;
	-webkit-appearance: textfield;
}

/* 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;
}

/**
 * ----------------------------------------------------------------------------
 * [ Typography ]
 * ----------------------------------------------------------------------------
 */

.lead {
	font-size: calc(var(--st-font-size-base) + 0.25rem);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
	font-weight: var(--st-font-weight-bold);
	line-height: 1.2;
}

.display-1 {
	font-size: calc((var(--st-font-size-base) + 0.7rem) + 4.5vw);
}

@media (min-width: 1200px) {
	.display-1 {
		font-size: calc(var(--st-font-size-base) + 3.875rem);
	}
}

.display-2 {
	font-size: calc((var(--st-font-size-base) + 0.65rem) + 3.9vw);
}

@media (min-width: 1200px) {
	.display-2 {
		font-size: calc(var(--st-font-size-base) + 3.375rem);
	}
}

.display-3 {
	font-size: calc((var(--st-font-size-base) + 0.6rem) + 3.3vw);
}

@media (min-width: 1200px) {
	.display-3 {
		font-size: calc(var(--st-font-size-base) + 2.875rem);
	}
}

.display-4 {
	font-size: calc((var(--st-font-size-base) + 0.55rem) + 2.7vw);
}

@media (min-width: 1200px) {
	.display-4 {
		font-size: calc(var(--st-font-size-base) + 2.375rem);
	}
}

.display-5 {
	font-size: calc((var(--st-font-size-base) + 0.5rem) + 2.1vw);
}

@media (min-width: 1200px) {
	.display-5 {
		font-size: calc(var(--st-font-size-base) + 1.875rem);
	}
}

.display-6 {
	font-size: calc((var(--st-font-size-base) + 0.45rem) + 1.5vw);
}

@media (min-width: 1200px) {
	.display-6 {
		font-size: calc(var(--st-font-size-base) + 1.375rem);
	}
}

.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: var(--st-relative-font-size-sm);
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: calc(var(--st-font-size-base) + 0.25rem);
}

.blockquote > :last-child {
	margin-bottom: 0;
}

.blockquote-footer {
	margin-top: -1rem;
	margin-bottom: 1rem;
	font-size: var(--st-relative-font-size-sm);
	color: var(--st-secondary-color);
}

.blockquote-footer::before {
	content: "— ";
}

/**
 * ----------------------------------------------------------------------------
 * [ Images ]
 * ----------------------------------------------------------------------------
 */

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

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

/**
 * ----------------------------------------------------------------------------
 * [ legend ]
 * ----------------------------------------------------------------------------
 */

.legend {
	--st-legend-size: 0.75em;
	display: inline-block;
	background: var(--st-border-color);
	width: var(--st-legend-size);
	height: var(--st-legend-size);
	border-radius: var(--st-border-radius-sm);
	border: 1px solid var(--st-border-color-translucent);
}

/**
 * ----------------------------------------------------------------------------
 * [ Figures ]
 * ----------------------------------------------------------------------------
 */

.figure {
	display: inline-block;
}

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

.figure-caption {
	font-size: var(--st-relative-font-size-sm);
	color: var(--st-secondary-color);
}

/**
 * ----------------------------------------------------------------------------
 * [ Grid ]
 * ----------------------------------------------------------------------------
 */

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

@media (min-width: 576px) {
	.container-sm, .container {
		max-width: var(--st-container-max-width-sm);
	}
}

@media (min-width: 768px) {
	.container-md, .container-sm, .container {
		max-width: var(--st-container-max-width-md);
	}
}

@media (min-width: 992px) {
	.container-lg, .container-md, .container-sm, .container {
		max-width: var(--st-container-max-width-lg);
	}
}

@media (min-width: 1200px) {
	.container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: var(--st-container-max-width-xl);
	}
}

@media (min-width: 1400px) {
	.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
		max-width: var(--st-container-max-width-xxl);
	}
}

:root {
	--st-breakpoint-xs: 0;
	--st-breakpoint-sm: 576px;
	--st-breakpoint-md: 768px;
	--st-breakpoint-lg: 992px;
	--st-breakpoint-xl: 1200px;
	--st-breakpoint-xxl: 1400px;
}

.row {
	--st-gutter-x: var(--st-spacer-4);
	--st-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--st-gutter-y));
	margin-right: calc(-0.5 * var(--st-gutter-x));
	margin-left: calc(-0.5 * var(--st-gutter-x));
}

.row > * {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--st-gutter-x) * 0.5);
	padding-left: calc(var(--st-gutter-x) * 0.5);
	margin-top: var(--st-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.3333333333%;
}

.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.6666666667%;
}

.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 {
	--st-gutter-x: 0;
}

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

.g-1,
.gx-1 {
	--st-gutter-x: var(--st-spacer-1);
}

.g-1,
.gy-1 {
	--st-gutter-y: var(--st-spacer-1);
}

.g-2,
.gx-2 {
	--st-gutter-x: var(--st-spacer-2);
}

.g-2,
.gy-2 {
	--st-gutter-y: var(--st-spacer-2);
}

.g-3,
.gx-3 {
	--st-gutter-x: var(--st-spacer-3);
}

.g-3,
.gy-3 {
	--st-gutter-y: var(--st-spacer-3);
}

.g-4,
.gx-4 {
	--st-gutter-x: var(--st-spacer-4);
}

.g-4,
.gy-4 {
	--st-gutter-y: var(--st-spacer-4);
}

.g-5,
.gx-5 {
	--st-gutter-x: var(--st-spacer-5);
}

.g-5,
.gy-5 {
	--st-gutter-y: var(--st-spacer-5);
}

@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.3333333333%;
	}

	.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.6666666667%;
	}

	.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 {
		--st-gutter-x: 0;
	}

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

	.g-sm-1,
	.gx-sm-1 {
		--st-gutter-x: var(--st-spacer-1);
	}

	.g-sm-1,
	.gy-sm-1 {
		--st-gutter-y: var(--st-spacer-1);
	}

	.g-sm-2,
	.gx-sm-2 {
		--st-gutter-x: var(--st-spacer-2);
	}

	.g-sm-2,
	.gy-sm-2 {
		--st-gutter-y: var(--st-spacer-2);
	}

	.g-sm-3,
	.gx-sm-3 {
		--st-gutter-x: var(--st-spacer-3);
	}

	.g-sm-3,
	.gy-sm-3 {
		--st-gutter-y: var(--st-spacer-3);
	}

	.g-sm-4,
	.gx-sm-4 {
		--st-gutter-x: var(--st-spacer-4);
	}

	.g-sm-4,
	.gy-sm-4 {
		--st-gutter-y: var(--st-spacer-4);
	}

	.g-sm-5,
	.gx-sm-5 {
		--st-gutter-x: var(--st-spacer-5);
	}

	.g-sm-5,
	.gy-sm-5 {
		--st-gutter-y: var(--st-spacer-5);
	}
}

@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.3333333333%;
	}

	.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.6666666667%;
	}

	.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 {
		--st-gutter-x: 0;
	}

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

	.g-md-1,
	.gx-md-1 {
		--st-gutter-x: var(--st-spacer-1);
	}

	.g-md-1,
	.gy-md-1 {
		--st-gutter-y: var(--st-spacer-1);
	}

	.g-md-2,
	.gx-md-2 {
		--st-gutter-x: var(--st-spacer-2);
	}

	.g-md-2,
	.gy-md-2 {
		--st-gutter-y: var(--st-spacer-2);
	}

	.g-md-3,
	.gx-md-3 {
		--st-gutter-x: var(--st-spacer-3);
	}

	.g-md-3,
	.gy-md-3 {
		--st-gutter-y: var(--st-spacer-3);
	}

	.g-md-4,
	.gx-md-4 {
		--st-gutter-x: var(--st-spacer-4);
	}

	.g-md-4,
	.gy-md-4 {
		--st-gutter-y: var(--st-spacer-4);
	}

	.g-md-5,
	.gx-md-5 {
		--st-gutter-x: var(--st-spacer-5);
	}

	.g-md-5,
	.gy-md-5 {
		--st-gutter-y: var(--st-spacer-5);
	}
}

@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.3333333333%;
	}

	.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.6666666667%;
	}

	.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 {
		--st-gutter-x: 0;
	}

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

	.g-lg-1,
	.gx-lg-1 {
		--st-gutter-x: var(--st-spacer-1);
	}

	.g-lg-1,
	.gy-lg-1 {
		--st-gutter-y: var(--st-spacer-1);
	}

	.g-lg-2,
	.gx-lg-2 {
		--st-gutter-x: var(--st-spacer-2);
	}

	.g-lg-2,
	.gy-lg-2 {
		--st-gutter-y: var(--st-spacer-2);
	}

	.g-lg-3,
	.gx-lg-3 {
		--st-gutter-x: var(--st-spacer-3);
	}

	.g-lg-3,
	.gy-lg-3 {
		--st-gutter-y: var(--st-spacer-3);
	}

	.g-lg-4,
	.gx-lg-4 {
		--st-gutter-x: var(--st-spacer-4);
	}

	.g-lg-4,
	.gy-lg-4 {
		--st-gutter-y: var(--st-spacer-4);
	}

	.g-lg-5,
	.gx-lg-5 {
		--st-gutter-x: var(--st-spacer-5);
	}

	.g-lg-5,
	.gy-lg-5 {
		--st-gutter-y: var(--st-spacer-5);
	}
}

@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.3333333333%;
	}

	.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.6666666667%;
	}

	.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 {
		--st-gutter-x: 0;
	}

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

	.g-xl-1,
	.gx-xl-1 {
		--st-gutter-x: var(--st-spacer-1);
	}

	.g-xl-1,
	.gy-xl-1 {
		--st-gutter-y: var(--st-spacer-1);
	}

	.g-xl-2,
	.gx-xl-2 {
		--st-gutter-x: var(--st-spacer-2);
	}

	.g-xl-2,
	.gy-xl-2 {
		--st-gutter-y: var(--st-spacer-2);
	}

	.g-xl-3,
	.gx-xl-3 {
		--st-gutter-x: var(--st-spacer-3);
	}

	.g-xl-3,
	.gy-xl-3 {
		--st-gutter-y: var(--st-spacer-3);
	}

	.g-xl-4,
	.gx-xl-4 {
		--st-gutter-x: var(--st-spacer-4);
	}

	.g-xl-4,
	.gy-xl-4 {
		--st-gutter-y: var(--st-spacer-4);
	}

	.g-xl-5,
	.gx-xl-5 {
		--st-gutter-x: var(--st-spacer-5);
	}

	.g-xl-5,
	.gy-xl-5 {
		--st-gutter-y: var(--st-spacer-5);
	}
}

@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.3333333333%;
	}

	.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.6666666667%;
	}

	.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 {
		--st-gutter-x: 0;
	}

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

	.g-xxl-1,
	.gx-xxl-1 {
		--st-gutter-x: var(--st-spacer-1);
	}

	.g-xxl-1,
	.gy-xxl-1 {
		--st-gutter-y: var(--st-spacer-1);
	}

	.g-xxl-2,
	.gx-xxl-2 {
		--st-gutter-x: var(--st-spacer-2);
	}

	.g-xxl-2,
	.gy-xxl-2 {
		--st-gutter-y: var(--st-spacer-2);
	}

	.g-xxl-3,
	.gx-xxl-3 {
		--st-gutter-x: var(--st-spacer-3);
	}

	.g-xxl-3,
	.gy-xxl-3 {
		--st-gutter-y: var(--st-spacer-3);
	}

	.g-xxl-4,
	.gx-xxl-4 {
		--st-gutter-x: var(--st-spacer-4);
	}

	.g-xxl-4,
	.gy-xxl-4 {
		--st-gutter-y: var(--st-spacer-4);
	}

	.g-xxl-5,
	.gx-xxl-5 {
		--st-gutter-x: var(--st-spacer-5);
	}

	.g-xxl-5,
	.gy-xxl-5 {
		--st-gutter-y: var(--st-spacer-5);
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Tables ]
 * ----------------------------------------------------------------------------
 */

.table {
	--st-table-color-type: initial;
  	--st-table-bg-type: initial;
  	--st-table-color-state: initial;
  	--st-table-bg-state: initial;
	--st-table-color: var(--st-body-color);
	--st-table-bg: transparent;
	--st-table-border-color: var(--st-border-color);
	--st-table-accent-bg: transparent;
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-black-hsl), 0.03);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-black-hsl), 0.09);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-black-hsl), 0.06);
	width: 100%;
	margin-bottom: 1rem;
	vertical-align: top;
	border-color: var(--st-table-border-color);
}

[data-st-theme=dark] .table {
	--st-table-striped-bg: hsla(var(--st-white-hsl), 0.025);
	--st-table-active-bg: hsla(var(--st-white-hsl), 0.075);
	--st-table-hover-bg: hsla(var(--st-white-hsl), 0.05);
}

.table > :not(caption) > * > * {
	padding: 0.375rem 0.5rem;
	color: var(--st-table-color-state, var(--st-table-color-type, var(--st-table-color)));
	background-color: var(--st-table-bg);
	border-bottom-width: var(--st-border-width);
	box-shadow: inset 0 0 0 9999px var(--st-table-bg-state, var(--st-table-bg-type, var(--st-table-accent-bg)));
}

.table > tbody {
	vertical-align: inherit;
}

.table > thead {
	vertical-align: bottom;
}

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

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

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

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

.table-bordered > :not(caption) > * > * {
	border-width: 0 var(--st-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) > * {
	--st-table-color-type: var(--st-table-striped-color);
	--st-table-bg-type: var(--st-table-striped-bg);
}

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

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

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

/* Primary table */

.table-primary {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-primary-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-primary-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-primary-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-primary-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Secondary table */

.table-secondary {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-secondary-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-secondary-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-secondary-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-secondary-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Success table */

.table-success {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-success-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-success-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-success-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-success-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Info table */

.table-info {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-info-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-info-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-info-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-info-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Warning table */

.table-warning {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-warning-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-warning-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-warning-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-warning-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Danger table */

.table-danger {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-danger-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-danger-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-danger-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-danger-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Light table */

.table-light {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-light-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-light-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-light-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-light-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Dark table */

.table-dark {
	--st-table-color: var(--st-body-color);
	--st-table-bg: hsla(var(--st-dark-hsl), 0.125);
	--st-table-border-color: var(--st-border-color);
	--st-table-striped-color: var(--st-table-color);
	--st-table-striped-bg: hsla(var(--st-dark-hsl), 0.15);
	--st-table-active-color: var(--st-table-color);
	--st-table-active-bg: hsla(var(--st-dark-hsl), 0.25);
	--st-table-hover-color: var(--st-table-color);
	--st-table-hover-bg: hsla(var(--st-dark-hsl), 0.2);
	color: var(--st-table-color);
	border-color: var(--st-table-border-color);
}

/* Responsive table */

.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 ]
 * ----------------------------------------------------------------------------
 */

.form-label {
	margin-bottom: 0.5rem;
}

.col-form-label {
	padding-top: calc(var(--st-action-padding-y) + var(--st-border-width));
	padding-bottom: calc(var(--st-action-padding-y) + var(--st-border-width));
	margin-bottom: 0;
	font-size: var(--st-action-font-size);
	line-height: var(--st-action-line-height);
}

.col-form-label-lg {
	padding-top: calc(var(--st-action-lg-padding-y) + var(--st-border-width));
	padding-bottom: calc(var(--st-action-lg-padding-y) + var(--st-border-width));
	font-size: var(--st-action-lg-font-size);
	line-height: var(--st-action-lg-line-height);
}

.col-form-label-sm {
	padding-top: calc(var(--st-action-sm-padding-y) + var(--st-border-width));
	padding-bottom: calc(var(--st-action-sm-padding-y) + var(--st-border-width));
	font-size: var(--st-action-sm-font-size);
	line-height: var(--st-action-sm-line-height);
}

.form-text {
	margin-top: 0.25rem;
	font-size: var(--st-font-size-sm);
	color: var(--st-secondary-color);
}

/* Form control */

.form-control {
	display: block;
	width: 100%;
	padding: var(--st-action-padding-y) var(--st-action-padding-x);
	font-size: var(--st-action-font-size);
	font-weight: var(--st-font-weight-normal);
	line-height: var(--st-action-line-height);
	color: var(--st-form-color);
	background-color: var(--st-form-bg);
	background-clip: padding-box;
	border: var(--st-border-width) solid var(--st-form-border-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: var(--st-border-radius);
}

@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(--st-form-color);
	background-color: var(--st-form-bg);
	border-color: var(--st-form-focus-border-color);
	outline: 0;
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-form-focus-shadow-hsl), 0.35);
}

.form-control::-webkit-date-and-time-value {
	min-width: 5.3125rem;
	height: 1.5em;
	margin: 0;
}

.form-control::-webkit-datetime-edit {
	display: block;
	padding: 0;
}

.form-control::-moz-placeholder {
	color: var(--st-tertiary-color);
	opacity: 1;
}

.form-control::placeholder {
	color: var(--st-tertiary-color);
	opacity: 1;
}

.form-control:disabled {
	color: var(--st-form-disabled-color);
	background-color: var(--st-form-disabled-bg);
	border-color: var(--st-form-disabled-border-color);
	opacity: 1;
}

.form-control::-webkit-file-upload-button {
	padding: var(--st-action-padding-y) var(--st-action-padding-x);
	margin: calc(-1 * var(--st-action-padding-y)) calc(-1 * var(--st-action-padding-x));
	-webkit-margin-end: var(--st-action-padding-x);
	margin-inline-end: var(--st-action-padding-x);
	color: var(--st-form-color);
	background-color: var(--st-form-secondary-bg);
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: var(--st-border-width);
	border-radius: 0;
}

.form-control::file-selector-button {
	padding: var(--st-action-padding-y) var(--st-action-padding-x);
	margin: calc(-1 * var(--st-action-padding-y)) calc(-1 * var(--st-action-padding-x));
	-webkit-margin-end: var(--st-action-padding-x);
	margin-inline-end: var(--st-action-padding-x);
	color: var(--st-form-color);
	background-color: var(--st-form-secondary-bg);
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: var(--st-border-width);
	border-radius: 0;
}

@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(--st-form-tertiary-bg);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background-color: var(--st-form-tertiary-bg);
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding: var(--st-action-padding-y) 0;
	margin-bottom: 0;
	line-height: var(--st-action-line-height);
	color: var(--st-form-color);
	background-color: transparent;
	border: solid transparent;
	border-width: var(--st-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(var(--st-action-sm-font-size) * var(--st-action-sm-line-height) + var(--st-action-sm-padding-y) * 2 + var(--st-border-width) * 2);
	padding: var(--st-action-sm-padding-y) var(--st-action-sm-padding-x);
	font-size: var(--st-action-sm-font-size);
	line-height: var(--st-action-sm-line-height);
	border-radius: var(--st-border-radius-sm);
}

.form-control-sm::-webkit-file-upload-button {
	padding: var(--st-action-sm-padding-y) var(--st-action-sm-padding-x);
	margin: calc(-1 * var(--st-action-sm-padding-y)) calc(-1 * var(--st-action-sm-padding-x));
	-webkit-margin-end: var(--st-action-sm-padding-x);
	margin-inline-end: var(--st-action-sm-padding-x);
}

.form-control-sm::file-selector-button {
	padding: var(--st-action-sm-padding-y) var(--st-action-sm-padding-x);
	margin: calc(-1 * var(--st-action-sm-padding-y)) calc(-1 * var(--st-action-sm-padding-x));
	-webkit-margin-end: var(--st-action-sm-padding-x);
	margin-inline-end: var(--st-action-sm-padding-x);
}

.form-control-lg {
	min-height: calc(var(--st-action-lg-font-size) * var(--st-action-lg-line-height) + var(--st-action-lg-padding-y) * 2 + var(--st-border-width) * 2);
	padding: var(--st-action-lg-padding-y) var(--st-action-lg-padding-x);
	font-size: var(--st-action-lg-font-size);
	line-height: var(--st-action-lg-line-height);
	border-radius: var(--st-border-radius-lg);
}

.form-control-lg::-webkit-file-upload-button {
	padding: var(--st-action-lg-padding-y) var(--st-action-lg-padding-x);
	margin: calc(-1 * var(--st-action-lg-padding-y)) calc(-1 * var(--st-action-lg-padding-x));
	-webkit-margin-end: var(--st-action-lg-padding-x);
	margin-inline-end: var(--st-action-lg-padding-x);
}

.form-control-lg::file-selector-button {
	padding: var(--st-action-lg-padding-y) var(--st-action-lg-padding-x);
	margin: calc(-1 * var(--st-action-lg-padding-y)) calc(-1 * var(--st-action-lg-padding-x));
	-webkit-margin-end: var(--st-action-lg-padding-x);
	margin-inline-end: var(--st-action-lg-padding-x);
}

textarea.form-control {
	min-height: calc(var(--st-action-font-size) * var(--st-action-line-height) + var(--st-action-padding-y) * 2 + var(--st-border-width) * 2);
}

textarea.form-control-sm,
.input-group-sm > textarea.form-control {
	min-height: calc(var(--st-action-sm-font-size) * var(--st-action-sm-line-height) + var(--st-action-sm-padding-y) * 2 + var(--st-border-width) * 2);
}

textarea.form-control-lg,
.input-group-lg > textarea.form-control  {
	min-height: calc(var(--st-action-lg-font-size) * var(--st-action-lg-line-height) + var(--st-action-lg-padding-y) * 2 + var(--st-border-width) * 2);
}

.form-control-color {
	width: 3rem;
	height: calc(1.5em + var(--st-action-padding-y) + var(--st-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(--st-border-radius);
}

.form-control-color::-webkit-color-swatch {
	border: 0 !important;
	border-radius: var(--st-border-radius);
}

.form-control-color.form-control-sm {
	height: calc(1.5em + var(--st-action-sm-padding-y) + var(--st-border-width) * 2);
}

.form-control-color.form-control-lg {
	height: calc(1.5em + var(--st-action-lg-padding-y) + var(--st-border-width) * 2);
}

/* Form select */

.form-select {
	--st-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='%233d4043' 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: var(--st-action-padding-y) 2rem var(--st-action-padding-y) var(--st-action-padding-x);
	font-size: var(--st-action-font-size);
	font-weight: var(--st-font-weight-normal);
	line-height: var(--st-action-line-height);
	color: var(--st-form-color);
	background-color: var(--st-form-bg);
	background-image: var(--st-form-select-bg-img), var(--st-form-select-bg-icon, none);
	background-repeat: no-repeat;
	background-position: right var(--st-action-padding-x) center;
	background-size: 1rem 0.75rem;
	border: var(--st-border-width) solid var(--st-form-border-color);
	border-radius: var(--st-border-radius);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media (prefers-reduced-motion: reduce) {
	.form-select {
		transition: none;
	}
}

.form-select:focus {
	border-color: var(--st-form-focus-border-color);
	outline: 0;
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-form-focus-shadow-hsl), 0.35);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
	padding-right: var(--st-action-padding-x);
	background-image: none;
}

.form-select:disabled {
	color: var(--st-form-disabled-color);
	background-color: var(--st-form-disabled-bg);
	border-color: var(--st-form-disabled-border-color);
}

.form-select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 var(--st-form-color);
}

.form-select-sm {
	padding-top: var(--st-action-sm-padding-y);
	padding-bottom: var(--st-action-sm-padding-y);
	padding-left: var(--st-action-sm-padding-x);
	font-size: var(--st-action-sm-font-size);
	line-height: var(--st-action-sm-line-height);
	border-radius: var(--st-border-radius-sm);
}

.form-select-lg {
	padding-top: var(--st-action-lg-padding-y);
	padding-bottom: var(--st-action-lg-padding-y);
	padding-left: var(--st-action-lg-padding-x);
	font-size: var(--st-action-lg-font-size);
	line-height: var(--st-action-lg-line-height);
	border-radius: var(--st-border-radius-lg);
}

[data-st-theme=dark] .form-select {
	--st-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='%23aeb1b7' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select[multiple] {
	overflow-y: auto;
}

/* Form check */

.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 {
	flex-shrink: 0;
	width: 1em;
	height: 1em;
	margin-top: var(--st-relative-font-size-4xs);
	vertical-align: top;
	background-color: var(--st-form-check-bg);
	background-image: var(--st-form-check-bg-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border: var(--st-border-width) solid var(--st-form-check-border-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
	border-radius: var(--st-relative-font-size-4xs);
}

.form-check-input[type=radio] {
	border-radius: 50%;
}

.form-check-input:active {
	filter: brightness(90%);
}

.form-check-input:focus {
	border-color: var(--st-form-check-focus-border-color);
	outline: 0;
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-form-check-focus-shadow-hsl), 0.35);
}

.form-check-input:checked {
	background-color: var(--st-primary);
	border-color: var(--st-primary);
}

.form-check-input:checked[type=checkbox] {
	--st-form-check-bg-image: var(--st-primary-checkbox-svg);
}

.form-check-input:checked[type=radio] {
	--st-form-check-bg-image: var(--st-primary-radio-svg);
}

.form-check-input[type=checkbox]:indeterminate {
	background-color: var(--st-primary);
	border-color: var(--st-primary);
	--st-form-check-bg-image: var(--st-primary-dash-svg);
}

.form-check-input:disabled {
	pointer-events: 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 {
	--st-form-switch-bg: var(--st-switch-svg-unchecked);
	width: 2em;
	margin-left: -2.5em;
	background-image: var(--st-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 {
	--st-form-switch-bg: var(--st-switch-svg-unchecked);
}

.form-switch .form-check-input:checked {
	background-position: right center;
	--st-form-switch-bg: var(--st-primary-switch-svg);
}

.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;
	filter: none;
	opacity: 0.65;
}

/* Form range */

.form-range {
	width: 100%;
	height: 1.625rem;
	padding: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form-range:focus {
	outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
	border-color: var(--st-primary-border-subtle);
	box-shadow: 0 0 0 0.3125rem hsla(var(--st-form-focus-shadow-hsl), 0.35);
}

.form-range:focus::-moz-range-thumb {
	border-color: var(--st-primary-border-subtle);
	box-shadow: 0 0 0 0.3125rem hsla(var(--st-form-focus-shadow-hsl), 0.35);
}

.form-range::-moz-focus-outer {
	border: 0;
}

.form-range::-webkit-slider-thumb {
	width: 1.625rem;
	height: 1.625rem;
	margin-top: -0.625rem;
	background-color: var(--st-form-check-bg);
	border: var(--st-border-width-2) solid var(--st-form-check-border-color);
	border-radius: 50%;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	.form-range::-webkit-slider-thumb {
		-webkit-transition: none;
		transition: none;
	}
}

.form-range::-webkit-slider-runnable-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	box-sizing: border-box;
	cursor: pointer;
	background-color: var(--st-actionbar-bg);
	border: var(--st-border-width) solid var(--st-actionbar-border-color);
	border-radius: 1rem;
}

.form-range::-moz-range-thumb {
	width: 1.625rem;
	height: 1.625rem;
	background-color: var(--st-form-check-bg);
	border: var(--st-border-width-2) solid var(--st-form-check-border-color);
	border-radius: 50%;
	-moz-appearance: none;
	appearance: none;
	box-sizing: border-box;
	cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
	.form-range::-moz-range-thumb {
		-moz-transition: none;
		transition: none;
	}
}

.form-range::-moz-range-track {
	width: 100%;
	height: 0.5rem;
	color: transparent;
	box-sizing: border-box;
	cursor: pointer;
	background-color: var(--st-actionbar-bg);
	border: var(--st-border-width) solid var(--st-actionbar-border-color);
	border-radius: 1rem;
}

.form-range:disabled {
	pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
	background-color: var(--st-form-check-border-color);
}

.form-range:disabled::-moz-range-thumb {
	background-color: var(--st-form-check-border-color);
}

/* Floating labels */

.form-floating {
	position: relative;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
	height: calc(3.5rem + calc(var(--st-border-width) * 2));
	min-height: calc(3.5rem + calc(var(--st-border-width) * 2));
	line-height: var(--st-line-height-sm);
}

.form-floating > label {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	height: 100%;
	padding: 1rem 0.75rem;
	overflow: hidden;
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	color: hsla(var(--st-body-color-hsl), 0.75);
	border: var(--st-border-width) solid transparent;
	transform-origin: 0 0;
	transition: opacity 0.1s ease-in-out, 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::-moz-placeholder,
.form-floating > .form-control-plaintext::-moz-placeholder {
	color: transparent;
}

.form-floating > .form-control::placeholder,
.form-floating > .form-control-plaintext::placeholder {
	color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown),
.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
	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-shown) ~ label {
	color: hsla(var(--st-body-color-hsl), 0.75);
	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 {
	color: hsla(var(--st-body-color-hsl), 0.75);
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
	position: absolute;
	inset: 1rem 0.375rem;
	z-index: -1;
	height: 1.5em;
	content: "";
	background-color: var(--st-form-bg);
	border-radius: var(--st-border-radius);
}

.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
	position: absolute;
	inset: 1rem 0.375rem;
	z-index: -1;
	height: 1.5em;
	content: "";
	background-color: var(--st-form-bg);
	border-radius: var(--st-border-radius);
}

.form-floating > .form-control-plaintext ~ label::after {
	background-color: transparent;
}

.form-floating > .form-control:-webkit-autofill ~ label {
	color: hsla(var(--st-body-color-hsl), 0.75);
	transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-plaintext ~ label {
	border-width: var(--st-border-width) 0;
}

.form-floating > :disabled ~ label,
.form-floating > .form-control:disabled ~ label {
	color: var(--st-form-disabled-color);
}

.form-floating > :disabled ~ label::after,
.form-floating > .form-control:disabled ~ label::after {
	background-color: var(--st-form-disabled-bg);
}

/* Input group */

.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: var(--st-action-padding-y) var(--st-action-padding-x);
	font-size: var(--st-action-font-size);
	font-weight: var(--st-font-weight-normal);
	line-height: var(--st-action-line-height);
	color: var(--st-body-color);
	text-align: center;
	white-space: nowrap;
	background-color: var(--st-form-tertiary-bg);
	border: var(--st-border-width) solid var(--st-form-border-color);
	border-radius: var(--st-border-radius);
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
	padding: var(--st-action-lg-padding-y) var(--st-action-lg-padding-x);
	font-size: var(--st-action-lg-font-size);
	line-height: var(--st-action-lg-line-height);
	border-radius: var(--st-border-radius-lg);
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
	padding: var(--st-action-sm-padding-y) var(--st-action-sm-padding-x);
	font-size: var(--st-action-sm-font-size);
	line-height: var(--st-action-sm-line-height);
	border-radius: var(--st-border-radius-sm);
}

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

.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(var(--st-border-width) * -1);
	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;
}

/* Success validation */

.valid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: var(--st-relative-font-size-sm);
	color: var(--st-form-valid-color);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.25rem 0.375rem;
	margin-top: 0.125rem;
	font-size: var(--st-font-size-sm);
	line-height: var(--st-line-height-sm);
	color: var(--st-success-foreground);
	background-color: var(--st-success);
	border-radius: var(--st-border-radius-sm);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.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(--st-form-valid-border-color);
	padding-right: calc(1.5em + var(--st-action-padding-x));
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233b844f' 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.1z'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2)) center;
	background-size: calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y)) calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y));
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
	border-color: var(--st-form-valid-border-color);
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-success-hsl), 0.35);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
	padding-right: calc(1.5em + var(--st-action-padding-x));
	background-position: top calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2)) right calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2));
}

.was-validated .form-select:valid,
.form-select.is-valid {
	border-color: var(--st-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"] {
	--st-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='%233b844f' 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.1z'/%3e%3c/svg%3e");
	padding-right: 3.5rem;
	background-position: right var(--st-action-padding-x) center, center right 2rem;
	background-size: 1rem 0.75rem, calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y)) calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y));
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
	border-color: var(--st-form-valid-border-color);
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-success-hsl), 0.35);
}

.was-validated .form-control-color:valid,
.form-control-color.is-valid {
	width: calc(3rem + calc(1.5em + var(--st-action-padding-x)));
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
	border-color: var(--st-form-valid-border-color);
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
	background-color: var(--st-success);
	border-color: var(--st-success);
}

.was-validated .form-check-input:valid:checked[type=checkbox],
.form-check-input.is-valid:checked[type=checkbox] {
	--st-form-check-bg-image: var(--st-success-checkbox-svg);
}

.was-validated .form-check-input:valid:checked[type=radio],
.form-check-input.is-valid:checked[type=radio] {
	--st-form-check-bg-image: var(--st-success-radio-svg);
}

.was-validated.form-switch .form-check-input:valid:checked,
.was-validated .form-switch .form-check-input:valid:checked,
.form-switch .form-check-input.is-valid:checked {
	--st-form-switch-bg: var(--st-success-switch-svg);
}

.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-success-hsl), 0.35);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
	color: var(--st-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;
}

/* Error validation */

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: 0.25rem;
	font-size: var(--st-relative-font-size-sm);
	color: var(--st-form-invalid-color);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: 0.25rem 0.375rem;
	margin-top: 0.125rem;
	font-size: var(--st-font-size-sm);
	line-height: var(--st-line-height-sm);
	color: var(--st-danger-foreground);
	background-color: var(--st-danger);
	border-radius: var(--st-border-radius-sm);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.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(--st-form-invalid-border-color);
	padding-right: calc(1.5em + var(--st-action-padding-x));
	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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2)) center;
	background-size: calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y)) calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y));
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
	border-color: var(--st-form-invalid-border-color);
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-danger-hsl), 0.35);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
	padding-right: calc(1.5em + var(--st-action-padding-x));
	background-position: top calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2)) right calc(var(--st-relative-font-size-4xs) + (var(--st-action-padding-y) / 2));
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
	border-color: var(--st-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"] {
	--st-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='%23dc3545'%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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	padding-right: 3.5rem;
	background-position: right var(--st-action-padding-x) center, center right 2rem;
	background-size: 1rem 0.75rem, calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y)) calc(var(--st-relative-font-size-xs) + var(--st-action-padding-y));
}

.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
	border-color: var(--st-form-invalid-border-color);
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-danger-hsl), 0.35);
}

.was-validated .form-control-color:invalid,
.form-control-color.is-invalid {
	width: calc(3rem + calc(1.5em + var(--st-action-padding-x)));
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
	border-color: var(--st-form-invalid-border-color);
}

.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
	background-color: var(--st-danger);
	border-color: var(--st-danger);
}

.was-validated .form-check-input:invalid:checked[type=checkbox],
.form-check-input.is-invalid:checked[type=checkbox] {
	--st-form-check-bg-image: var(--st-danger-checkbox-svg);
}

.was-validated .form-check-input:invalid:checked[type=radio],
.form-check-input.is-invalid:checked[type=radio] {
	--st-form-check-bg-image: var(--st-danger-radio-svg);
}

.was-validated.form-switch .form-check-input:invalid:checked,
.was-validated .form-switch .form-check-input:invalid:checked,
.form-switch .form-check-input.is-invalid:checked {
	--st-form-switch-bg: var(--st-danger-switch-svg);
}

.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-danger-hsl), 0.35);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
	color: var(--st-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;
}

/**
 * ----------------------------------------------------------------------------
 * [ Buttons ]
 *
 * The secondary button is unique because it largely uses the --st-action-* 
 * variables. Therefore, it has been styled and given a "default" look. 
 * ----------------------------------------------------------------------------
 */

.btn {
	--st-btn-padding-x: var(--st-action-padding-x);
	--st-btn-padding-y: var(--st-action-padding-y);
	--st-btn-font-family: ;
	--st-btn-font-size: var(--st-action-font-size);
	--st-btn-font-weight: var(--st-font-weight-normal);
	--st-btn-line-height: var(--st-action-line-height);
	--st-btn-color: var(--st-body-color);
	--st-btn-bg: transparent;
	--st-btn-border-width: var(--st-border-width);
	--st-btn-border-color: transparent;
	--st-btn-border-radius: var(--st-border-radius);
	--st-btn-hover-border-color: var(--st-btn-border-color);
	--st-btn-box-shadow: none;
	--st-btn-disabled-opacity: 0.65;
	--st-btn-focus-box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-btn-focus-shadow-hsl), 0.5);
	--st-btn-bg-clip: border-box;
	--st-btn-webkit-font-smoothing: auto;
	--st-btn-moz-osx-font-smoothing: auto;
	display: inline-block;
	padding: var(--st-btn-padding-y) var(--st-btn-padding-x);
	font-family: var(--st-btn-font-family);
	font-size: var(--st-btn-font-size);
	font-weight: var(--st-btn-font-weight);
	line-height: var(--st-btn-line-height);
	color: var(--st-btn-color);
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: var(--st-btn-border-width) solid var(--st-btn-border-color);
	border-radius: var(--st-btn-border-radius);
	background-color: var(--st-btn-bg);
	background-clip: var(--st-btn-bg-clip);
	-webkit-font-smoothing: var(--st-btn-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-btn-moz-osx-font-smoothing);
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		transition: none;
	}
}

.btn:hover {
	color: var(--st-btn-hover-color);
	background-color: var(--st-btn-hover-bg);
	border-color: var(--st-btn-hover-border-color);
}

.btn-check + .btn:hover {
	color: var(--st-btn-color);
	background-color: var(--st-btn-bg);
	border-color: var(--st-btn-border-color);
}

.btn:focus-visible {
	color: var(--st-btn-hover-color);
	background-color: var(--st-btn-hover-bg);
	border-color: var(--st-btn-hover-border-color);
	outline: 0;
	box-shadow: var(--st-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
	border-color: var(--st-btn-hover-border-color);
	outline: 0;
	box-shadow: var(--st-btn-focus-box-shadow);
}

.btn-check:checked + .btn,
:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.active,
.btn.show {
	color: var(--st-btn-active-color);
	background-color: var(--st-btn-active-bg);
	border-color: var(--st-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(--st-btn-focus-box-shadow);
}

.btn-check:checked:focus-visible + .btn {
	box-shadow: var(--st-btn-focus-box-shadow);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
	color: var(--st-btn-disabled-color);
	pointer-events: none;
	background-color: var(--st-btn-disabled-bg);
	border-color: var(--st-btn-disabled-border-color);
	opacity: var(--st-btn-disabled-opacity);
}

/* Primary button */

.btn-primary {
	--st-btn-color: var(--st-primary-foreground);
	--st-btn-bg: var(--st-primary);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-primary-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-primary-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-primary-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Secondary button */

.btn-secondary {
	--st-btn-color: var(--st-action-color);
	--st-btn-bg: var(--st-action-bg);
	--st-btn-border-color: var(--st-action-border-color);
	--st-btn-hover-color: var(--st-action-hover-color);
	--st-btn-hover-bg: var(--st-action-hover-bg);
	--st-btn-hover-border-color: var(--st-action-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-action-focus-shadow-hsl);
	--st-btn-active-color: var(--st-action-active-color);
	--st-btn-active-bg: var(--st-action-active-bg);
	--st-btn-active-border-color: var(--st-action-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
}

/* Success button */

.btn-success {
	--st-btn-color: var(--st-success-foreground);
	--st-btn-bg: var(--st-success);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-success-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-success-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-success-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Info button */

.btn-info {
	--st-btn-color: var(--st-info-foreground);
	--st-btn-bg: var(--st-info);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-info-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-info-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-info-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Warning button */

.btn-warning {
	--st-btn-color: var(--st-warning-foreground);
	--st-btn-bg: var(--st-warning);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-warning-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-warning-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-warning-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Danger button */

.btn-danger {
	--st-btn-color: var(--st-danger-foreground);
	--st-btn-bg: var(--st-danger);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-danger-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-danger-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-danger-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Light button */

.btn-light {
	--st-btn-color: var(--st-light-foreground);
	--st-btn-bg: var(--st-light);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-light-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-light-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-light-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Dark button */

.btn-dark {
	--st-btn-color: var(--st-dark-foreground);
	--st-btn-bg: var(--st-dark);
	--st-btn-border-color: var(--st-ctx-btn-border-color);
	--st-btn-hover-color: var(--st-btn-color);
	--st-btn-hover-bg: var(--st-dark-hover-bg);
	--st-btn-hover-border-color: var(--st-ctx-btn-hover-border-color);
	--st-btn-focus-shadow-hsl: var(--st-dark-hsl);
	--st-btn-active-color: var(--st-btn-color);
	--st-btn-active-bg: var(--st-dark-active-bg);
	--st-btn-active-border-color: var(--st-ctx-btn-active-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-ctx-btn-disabled-border-color);
	--st-btn-bg-clip: var(--st-ctx-btn-bg-clip);
}

/* Primary outline button */

.btn-outline-primary {
	--st-btn-color: var(--st-primary-text-emphasis);
	--st-btn-border-color: var(--st-primary-text-emphasis);
	--st-btn-hover-color: var(--st-primary-foreground);
	--st-btn-hover-bg: var(--st-primary);
	--st-btn-hover-border-color: var(--st-primary);
	--st-btn-focus-shadow-hsl: var(--st-primary-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Secondary outline button */

.btn-outline-secondary {
	--st-btn-color: var(--st-secondary-text-emphasis);
	--st-btn-border-color: var(--st-secondary-text-emphasis);
	--st-btn-hover-color: var(--st-secondary-foreground);
	--st-btn-hover-bg: var(--st-secondary);
	--st-btn-hover-border-color: var(--st-secondary);
	--st-btn-focus-shadow-hsl: var(--st-secondary-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Success outline button */

.btn-outline-success {
	--st-btn-color: var(--st-success-text-emphasis);
	--st-btn-border-color: var(--st-success-text-emphasis);
	--st-btn-hover-color: var(--st-success-foreground);
	--st-btn-hover-bg: var(--st-success);
	--st-btn-hover-border-color: var(--st-success);
	--st-btn-focus-shadow-hsl: var(--st-success-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Info outline button */

.btn-outline-info {
	--st-btn-color: var(--st-info-text-emphasis);
	--st-btn-border-color: var(--st-info-text-emphasis);
	--st-btn-hover-color: var(--st-info-foreground);
	--st-btn-hover-bg: var(--st-info);
	--st-btn-hover-border-color: var(--st-info);
	--st-btn-focus-shadow-hsl: var(--st-info-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Warning outline button */

.btn-outline-warning {
	--st-btn-color: var(--st-warning-text-emphasis);
	--st-btn-border-color: var(--st-warning-text-emphasis);
	--st-btn-hover-color: var(--st-warning-foreground);
	--st-btn-hover-bg: var(--st-warning);
	--st-btn-hover-border-color: var(--st-warning);
	--st-btn-focus-shadow-hsl: var(--st-warning-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Danger outline button */

.btn-outline-danger {
	--st-btn-color: var(--st-danger-text-emphasis);
	--st-btn-border-color: var(--st-danger-text-emphasis);
	--st-btn-hover-color: var(--st-danger-foreground);
	--st-btn-hover-bg: var(--st-danger);
	--st-btn-hover-border-color: var(--st-danger);
	--st-btn-focus-shadow-hsl: var(--st-danger-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Light outline button */

.btn-outline-light {
	--st-btn-color: var(--st-light-text-emphasis);
	--st-btn-border-color: var(--st-light-text-emphasis);
	--st-btn-hover-color: var(--st-light-foreground);
	--st-btn-hover-bg: var(--st-light);
	--st-btn-hover-border-color: var(--st-light);
	--st-btn-focus-shadow-hsl: var(--st-light-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Dark outline button */

.btn-outline-dark {
	--st-btn-color: var(--st-dark-text-emphasis);
	--st-btn-border-color: var(--st-dark-text-emphasis);
	--st-btn-hover-color: var(--st-dark-foreground);
	--st-btn-hover-bg: var(--st-dark);
	--st-btn-hover-border-color: var(--st-dark);
	--st-btn-focus-shadow-hsl: var(--st-dark-hsl);
	--st-btn-active-color: var(--st-btn-hover-color);
	--st-btn-active-bg: var(--st-btn-hover-bg);
	--st-btn-active-border-color: var(--st-btn-hover-border-color);
	--st-btn-active-shadow: none;
	--st-btn-disabled-color: var(--st-btn-color);
	--st-btn-disabled-bg: var(--st-btn-bg);
	--st-btn-disabled-border-color: var(--st-btn-border-color);
	--st-btn-bg-clip: border-box;
	--st-gradient: none;
}

/* Link button */

.btn-link {
	--st-btn-color: var(--st-link-color);
	--st-btn-bg: transparent;
	--st-btn-border-color: transparent;
	--st-btn-hover-color: var(--st-link-hover-color);
	--st-btn-hover-border-color: transparent;
	--st-btn-active-color: var(--st-link-hover-color);
	--st-btn-active-border-color: transparent;
	--st-btn-disabled-color: var(--st-secondary-color);
	--st-btn-disabled-border-color: transparent;
	--st-btn-box-shadow: none;
	--st-btn-focus-shadow-hsl: var(--st-primary-hsl);
	text-decoration: var(--st-link-decoration);
	text-underline-offset: var(--st-link-decoration-offset);
}

.btn-link:focus-visible {
	color: var(--st-btn-color);
}

.btn-link:hover {
	color: var(--st-btn-hover-color);
	text-decoration: var(--st-link-hover-decoration);
}

/* Large button */

.btn-lg,
.btn-group-lg > .btn {
	--st-btn-padding-x: var(--st-action-lg-padding-x);
	--st-btn-padding-y: var(--st-action-lg-padding-y);
	--st-btn-font-size: var(--st-action-lg-font-size);
	--st-btn-line-height: var(--st-action-lg-line-height);
	--st-btn-border-radius: var(--st-border-radius-lg);
}

/* Small button */

.btn-sm,
.btn-group-sm > .btn {
	--st-btn-padding-x: var(--st-action-sm-padding-x);
	--st-btn-padding-y: var(--st-action-sm-padding-y);
	--st-btn-font-size: var(--st-action-sm-font-size);
	--st-btn-line-height: var(--st-action-sm-line-height);
	--st-btn-border-radius: var(--st-border-radius-sm);
}

/**
 * ----------------------------------------------------------------------------
 * [ Collapse ]
 * ----------------------------------------------------------------------------
 */

.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;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Dropdowns ]
 * ----------------------------------------------------------------------------
 */

.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 {
	--st-dropdown-zindex: 1000;
	--st-dropdown-min-width: 11.25rem;
	--st-dropdown-padding-x: 0.25rem;
	--st-dropdown-padding-y: 0.25rem;
	--st-dropdown-spacer: 0.125rem;
	--st-dropdown-font-size: var(--st-font-size-base);
	--st-dropdown-color: var(--st-content-floating-color);
	--st-dropdown-bg: var(--st-content-floating-bg);
	--st-dropdown-border-color: var(--st-content-floating-border-color);
	--st-dropdown-border-radius: var(--st-border-radius);
	--st-dropdown-border-width: var(--st-border-width);
	--st-dropdown-inner-border-radius: calc(var(--st-dropdown-border-radius) - var(--st-border-width));
	--st-dropdown-divider-bg: var(--st-border-color-translucent);
	--st-dropdown-divider-margin-y: 0.5rem;
	--st-dropdown-box-shadow: var(--st-content-floating-box-shadow);
	--st-dropdown-link-color: var(--st-dropdown-color);
	--st-dropdown-link-hover-color: var(--st-dropdown-link-color);
	--st-dropdown-link-hover-bg: var(--st-action-hover-bg);
	--st-dropdown-link-active-color: var(--st-dropdown-link-color);
	--st-dropdown-link-active-bg: var(--st-action-active-bg);
	--st-dropdown-link-disabled-color: var(--st-tertiary-color);
	--st-dropdown-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	--st-dropdown-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
	--st-dropdown-item-padding-x: 1rem;
	--st-dropdown-item-padding-y: 0.25rem;
	--st-dropdown-item-border-radius: var(--st-border-radius-sm);
	--st-dropdown-header-color: var(--st-secondary-color);
	--st-dropdown-header-padding-x: 1rem;
	--st-dropdown-header-padding-y: 0.5rem;
	position: absolute;
	z-index: var(--st-dropdown-zindex);
	display: none;
	min-width: var(--st-dropdown-min-width);
	padding: var(--st-dropdown-padding-y) var(--st-dropdown-padding-x);
	margin: 0;
	font-size: var(--st-dropdown-font-size);
	color: var(--st-dropdown-color);
	text-align: left;
	list-style: none;
	background-color: var(--st-dropdown-bg);
	background-clip: padding-box;
	border: var(--st-dropdown-border-width) solid var(--st-dropdown-border-color);
	border-radius: var(--st-dropdown-border-radius);
	box-shadow: var(--st-dropdown-box-shadow);
}

.dropdown-menu[data-st-popper] {
	top: 100%;
	left: 0;
	margin-top: var(--st-dropdown-spacer);
}

.dropdown-menu-start {
	--st-position: start;
}

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

.dropdown-menu-end {
	--st-position: end;
}

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

.dropdown-menu {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.dropdown-menu.card {
	padding: 0;
	min-width: 25rem;
	display: none;
}

.dropdown-menu.card.show {
	display: flex;
}

.dropdown-item {
	min-width: 11rem;
	display: flex;
	align-items: center;
	margin: 0;
	line-height: 1.4285714286;
	gap: 0.5rem;
}

.dropdown-item-icon {
	width: 1.25rem !important;
	height: 1.25rem !important;
	margin-right: 0.5rem;
	color: var(--st-secondary);
	opacity: 0.7;
	text-align: center;
}

.dropdown-item-indicator {
	margin-right: 0.5rem;
	margin-left: -0.25rem;
	height: 1.25rem;
	display: inline-flex;
	line-height: 1;
	vertical-align: bottom;
	align-items: center;
}

.dropdown-header {
	font-size: 0.75rem;
	font-weight: var(--st-font-weight-medium);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1rem;
	color: var(--st-secondary);
	padding-bottom: 0.25rem;
	pointer-events: none;
}

.dropdown-menu-scrollable {
	height: auto;
	max-height: 13rem;
	overflow-x: hidden;
}

.dropdown-menu-column {
	min-width: 11rem;
}

.dropdown-menu-column .dropdown-item {
	min-width: 0;
}

.dropdown-menu-columns {
	display: flex;
	flex: 0 0.25rem;
}

.dropdown-menu-arrow:before {
	content: "";
	position: absolute;
	top: -0.25rem;
	left: 0.75rem;
	display: block;
	background: inherit;
	width: 14px;
	height: 14px;
	/*rtl:ignore*/
	transform: rotate(45deg);
	transform-origin: center;
	border: 1px solid;
	border-color: inherit;
	z-index: -1;
	clip: rect(0px, 9px, 9px, 0px);
}

.dropdown-menu-arrow.dropdown-menu-end:before {
	right: 0.75rem;
	left: auto;
}

.dropend>.dropdown-menu {
	margin-top: calc(-0.25rem - 1px);
	margin-left: -0.25rem;
}

.dropend .dropdown-toggle:after {
	margin-left: auto;
}

.dropdown-menu-card {
	padding: 0;
	min-width: 20rem;
}

.dropdown-menu-card>.card {
	margin: 0;
	border: 0;
	box-shadow: none;
}

@media (min-width: 576px) {
	.dropdown-menu-sm-start {
		--st-position: start;
	}

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

	.dropdown-menu-sm-end {
		--st-position: end;
	}

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

@media (min-width: 768px) {
	.dropdown-menu-md-start {
		--st-position: start;
	}

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

	.dropdown-menu-md-end {
		--st-position: end;
	}

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

@media (min-width: 992px) {
	.dropdown-menu-lg-start {
		--st-position: start;
	}

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

	.dropdown-menu-lg-end {
		--st-position: end;
	}

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

@media (min-width: 1200px) {
	.dropdown-menu-xl-start {
		--st-position: start;
	}

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

	.dropdown-menu-xl-end {
		--st-position: end;
	}

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

@media (min-width: 1400px) {
	.dropdown-menu-xxl-start {
		--st-position: start;
	}

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

	.dropdown-menu-xxl-end {
		--st-position: end;
	}

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

.dropup .dropdown-menu[data-st-popper] {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: var(--st-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-st-popper] {
	top: 0;
	right: auto;
	left: 100%;
	margin-top: 0;
	margin-left: var(--st-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-st-popper] {
	top: 0;
	right: 100%;
	left: auto;
	margin-top: 0;
	margin-right: var(--st-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(--st-dropdown-divider-margin-y) 0;
	overflow: hidden;
	border-top: var(--st-border-width) solid var(--st-dropdown-divider-bg);
	opacity: 1;
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: var(--st-dropdown-item-padding-y) var(--st-dropdown-item-padding-x);
	clear: both;
	font-weight: var(--st-font-weight-normal);
	color: var(--st-dropdown-link-color);
	text-align: inherit;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-radius: var(--st-dropdown-item-border-radius);
	-webkit-font-smoothing: var(--st-dropdown-link-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-dropdown-link-moz-osx-font-smoothing);
}

.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--st-dropdown-link-hover-color);
	background-color: var(--st-dropdown-link-hover-bg);
}

.dropdown-item:active {
	color: var(--st-dropdown-link-active-color);
	text-decoration: none;
	background-color: var(--st-dropdown-link-active-bg);
}

.dropdown-item.active {
	color: var(--st-primary-foreground);
	background-color: var(--st-primary);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.dropdown-item.active:focus-visible {
	background-color: var(--st-primary-hover-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
	color: var(--st-dropdown-link-disabled-color);
	pointer-events: none;
	background-color: transparent;
}

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Button group ]
 *
 * Because the secondary button is the "default" variation, the z-indices are 
 * slightly adjusted for a better look overall.
 * ----------------------------------------------------------------------------
 */

.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 + .btn:not(.btn-secondary),
.btn-group > .btn:not(.btn-secondary),
.btn-group-vertical > .btn-check + .btn:not(.btn-secondary),
.btn-group-vertical > .btn:not(.btn-secondary) {
	z-index: 1;
}

.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: 2;
}

.btn-toolbar {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.btn-toolbar .input-group {
	width: auto;
}

.btn-group {
	border-radius: var(--st-border-radius);
}

.btn-group > :not(.btn-check:first-child) + .btn,
.btn-group > .btn-group:not(:first-child) {
	margin-left: calc(-1 * var(--st-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.5rem;
	padding-left: 0.5rem;
}

.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.625rem;
	padding-left: 0.625rem;
}

.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(--st-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 ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

/**
 * ----------------------------------------------------------------------------
 * [ Navs and tabs ]
 * ----------------------------------------------------------------------------
 */

.nav {
	--st-nav-link-padding-x: 0.5rem;
	--st-nav-link-padding-y: 0.25rem;
	--st-nav-link-font-weight: ;
	--st-nav-link-color: var(--st-link-color);
	--st-nav-link-hover-color: var(--st-link-hover-color);
	--st-nav-link-disabled-color: var(--st-tertiary-color);
	--st-nav-link-webkit-font-smoothing: auto;
	--st-nav-link-moz-osx-font-smoothing: auto;
	display: flex;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.nav-link {
	display: block;
	padding: var(--st-nav-link-padding-y) var(--st-nav-link-padding-x);
	font-size: var(--st-nav-link-font-size);
	font-weight: var(--st-nav-link-font-weight);
	color: var(--st-nav-link-color);
	text-decoration: none;
	background: none;
	border: 0;
	-webkit-font-smoothing: var(--st-nav-link-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-nav-link-moz-osx-font-smoothing);
}

.nav-link:hover,
.nav-link:focus {
	color: var(--st-nav-link-hover-color);
}

.nav-link:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-action-focus-shadow-hsl), 0.5);
}

.nav-link.disabled,
.nav-link:disabled {
	color: var(--st-nav-link-disabled-color);
	pointer-events: none;
	cursor: default;
}

.nav-tabs {
	--st-nav-link-color: var(--st-body-color);
	--st-nav-link-hover-color: var(--st-nav-link-color);
	--st-nav-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	--st-nav-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
	--st-nav-tabs-border-width: var(--st-border-width);
	--st-nav-tabs-border-color: var(--st-border-color);
	--st-nav-tabs-border-radius: var(--st-border-radius);
	--st-nav-tabs-link-hover-border-color: var(--st-border-color-translucent) var(--st-border-color-translucent) transparent;
	--st-nav-tabs-link-active-color: var(--st-nav-link-color);
	--st-nav-tabs-link-active-bg: var(--st-content-bg);
	--st-nav-tabs-link-active-border-color: var(--st-nav-tabs-border-color) var(--st-nav-tabs-border-color) var(--st-nav-tabs-link-active-bg);
	border-bottom: var(--st-nav-tabs-border-width) solid var(--st-nav-tabs-border-color);
}

.nav-tabs .nav-link {
	margin-bottom: calc(-1 * var(--st-nav-tabs-border-width));
	border: var(--st-nav-tabs-border-width) solid transparent;
	border-top-left-radius: var(--st-nav-tabs-border-radius);
	border-top-right-radius: var(--st-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
	isolation: isolate;
	border-color: var(--st-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
	color: var(--st-nav-tabs-link-active-color);
	background-color: var(--st-nav-tabs-link-active-bg);
	border-color: var(--st-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
	margin-top: calc(-1 * var(--st-nav-tabs-border-width));
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-pills {
	--st-nav-link-color: var(--st-body-color);
	--st-nav-link-hover-color: var(--st-secondary-color);
	--st-nav-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	--st-nav-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
	--st-nav-pills-border-radius: var(--st-border-radius);
	--st-nav-pills-link-active-color: var(--st-primary-foreground);
	--st-nav-pills-link-active-bg: var(--st-primary);
}

.nav-pills .nav-link {
	border-radius: var(--st-nav-pills-border-radius);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: var(--st-nav-pills-link-active-color);
	background-color: var(--st-nav-pills-link-active-bg);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.nav-underline {
	--st-nav-link-color: var(--st-body-color);
	--st-nav-link-hover-color: var(--st-secondary-color);
	--st-nav-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	--st-nav-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
	--st-nav-underline-gap: 1rem;
	--st-nav-underline-border-width: 0.125rem;
	--st-nav-underline-link-padding: var(--st-nav-link-padding-y) 0 calc(var(--st-nav-link-padding-y) + var(--st-nav-underline-border-width)) 0;
	--st-nav-underline-link-active-color: var(--st-link-color);
	gap: var(--st-nav-underline-gap);
}

.nav-underline .nav-link {
	padding: var(--st-nav-underline-link-padding);
	border-bottom: var(--st-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
	color: var(--st-nav-underline-link-active-color);
	border-bottom-color: currentcolor;
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

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

.nav-justified > .nav-link,
.nav-justified .nav-item {
	flex-basis: 0;
	flex-grow: 1;
	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 ]
 * ----------------------------------------------------------------------------
 */

.navbar {
	--st-color-hsl: var(--st-emphasis-color-hsl);
	--st-navbar-padding-x: 0;
	--st-navbar-padding-y: 0.5rem;
	--st-navbar-color: hsla(var(--st-color-hsl), 0.65);
	--st-navbar-hover-color: hsla(var(--st-color-hsl), 0.75);
	--st-navbar-disabled-color: hsla(var(--st-color-hsl), 0.3);
	--st-navbar-active-color: hsla(var(--st-color-hsl), 0.95);
	--st-navbar-brand-padding-y: 0.3125rem;
	--st-navbar-brand-margin-end: 1rem;
	--st-navbar-brand-font-size: calc(var(--st-font-size-base) + 0.25rem);
	--st-navbar-brand-color: hsla(var(--st-color-hsl), 0.85);
	--st-navbar-brand-hover-color: var(--st-navbar-brand-color);
	--st-navbar-nav-link-padding-x: 0.75rem;
	--st-navbar-toggler-padding-y: 0.125rem;
	--st-navbar-toggler-padding-x: 0.25rem;
	--st-navbar-toggler-font-size: var(--st-font-size-lg);
	--st-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='%23242628' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	--st-navbar-toggler-border-color: transparent;
	--st-navbar-toggler-border-radius: var(--st-border-radius-sm);
	--st-navbar-toggler-focus-width: var(--st-focus-ring-width);
	--st-navbar-toggler-transition: none;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: var(--st-navbar-padding-y) var(--st-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(--st-navbar-brand-padding-y);
	padding-bottom: var(--st-navbar-brand-padding-y);
	margin-right: var(--st-navbar-brand-margin-end);
	font-size: var(--st-navbar-brand-font-size);
	color: var(--st-navbar-brand-color);
	text-decoration: none;
	white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
	color: var(--st-navbar-brand-hover-color);
}

.navbar-nav {
	--st-nav-link-padding-x: 0;
	--st-nav-link-padding-y: 0.5rem;
	--st-nav-link-font-weight: ;
	--st-nav-link-color: var(--st-navbar-color);
	--st-nav-link-hover-color: var(--st-navbar-hover-color);
	--st-nav-link-disabled-color: var(--st-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(--st-navbar-active-color);
}

.navbar-nav .dropdown-menu {
	position: static;
}

.navbar-text {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: var(--st-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
	color: var(--st-navbar-active-color);
}

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

.navbar-toggler {
	padding: var(--st-navbar-toggler-padding-y) var(--st-navbar-toggler-padding-x);
	font-size: var(--st-navbar-toggler-font-size);
	line-height: 1;
	color: var(--st-navbar-color);
	background-color: transparent;
	border: var(--st-border-width) solid var(--st-navbar-toggler-border-color);
	border-radius: var(--st-navbar-toggler-border-radius);
	transition: var(--st-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
	.navbar-toggler {
		transition: none;
	}
}

.navbar-toggler:hover {
	text-decoration: none;
}

.navbar-toggler:focus-visible {
	text-decoration: none;
	outline: 0;
	box-shadow: 0 0 0 var(--st-navbar-toggler-focus-width) hsla(var(--st-emphasis-color-hsl), 0.25);
}

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

.navbar-nav-scroll {
	max-height: var(--st-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(--st-navbar-nav-link-padding-x);
		padding-left: var(--st-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;
		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(--st-navbar-nav-link-padding-x);
		padding-left: var(--st-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;
		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(--st-navbar-nav-link-padding-x);
		padding-left: var(--st-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;
		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(--st-navbar-nav-link-padding-x);
		padding-left: var(--st-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;
		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(--st-navbar-nav-link-padding-x);
		padding-left: var(--st-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;
		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(--st-navbar-nav-link-padding-x);
	padding-left: var(--st-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;
	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;
}

[data-st-theme=dark] .navbar-toggler-icon {
	--st-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='%23c9cbcf' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Local light and dark variants */

.navbar-toggler[data-st-theme=light] .navbar-toggler-icon {
	--st-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='%23242628' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[data-st-theme=dark] .navbar-toggler-icon {
	--st-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='%23c9cbcf' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/**
 * ----------------------------------------------------------------------------
 * [ Card ]
 * ----------------------------------------------------------------------------
 */

.card {
	--st-card-spacer-y: 1rem;
	--st-card-spacer-x: 1rem;
	--st-card-title-spacer-y: 0.5rem;
	--st-card-title-color: ;
	--st-card-subtitle-color: ;
	--st-card-border-width: var(--st-border-width);
	--st-card-border-color: var(--st-content-border-color);
	--st-card-inner-border-color: var(--st-border-color-translucent);
	--st-card-group-border-color: var(--st-border-color);
	--st-card-border-radius: var(--st-border-radius-lg);
	--st-card-box-shadow: var(--st-content-box-shadow);
	--st-card-inner-border-radius: calc(var(--st-card-border-radius) - (var(--st-card-border-width)));
	--st-card-cap-padding-y: 0.5rem;
	--st-card-cap-padding-x: 1rem;
	--st-card-cap-bg: hsla(var(--st-black-hsl), 0.025);
	--st-card-cap-color: ;
	--st-card-height: ;
	--st-card-color: ;
	--st-card-bg: var(--st-content-bg);
	--st-card-img-overlay-padding: 1rem;
	--st-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--st-card-height);
	color: var(--st-body-color);
	word-wrap: break-word;
	background-color: var(--st-card-bg);
	background-clip: border-box;
	border: var(--st-card-border-width) solid var(--st-card-border-color);
	border-radius: var(--st-card-border-radius);
	box-shadow: var(--st-card-box-shadow);
}

[data-st-theme=dark] .card {
	--st-card-cap-bg: hsla(var(--st-black-hsl), 0.1);
}

.card > hr {
	margin-right: 0;
	margin-left: 0;
}

.card > .list-group {
	border-top: var(--st-card-border-width) solid var(--st-list-group-border-color);
	border-bottom: var(--st-card-border-width) solid var(--st-list-group-border-color);
}

.card > .list-group:first-child {
	border-top-width: 0;
	border-top-left-radius: var(--st-card-inner-border-radius);
	border-top-right-radius: var(--st-card-inner-border-radius);
}

.card > .list-group:last-child {
	border-bottom-width: 0;
	border-bottom-right-radius: var(--st-card-inner-border-radius);
	border-bottom-left-radius: var(--st-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(--st-card-spacer-y) var(--st-card-spacer-x);
	color: var(--st-card-color);
}

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

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

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

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

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

.card-header:first-child {
	border-radius: var(--st-card-inner-border-radius) var(--st-card-inner-border-radius) 0 0;
}

.card-footer {
	padding: var(--st-card-cap-padding-y) var(--st-card-cap-padding-x);
	color: var(--st-card-cap-color);
	background-color: var(--st-card-cap-bg);
	border-top: var(--st-card-border-width) solid var(--st-card-inner-border-color);
}

.card-footer:last-child {
	border-radius: 0 0 var(--st-card-inner-border-radius) var(--st-card-inner-border-radius);
}

.card-header-tabs {
	margin-right: calc(-0.5 * var(--st-card-cap-padding-x));
	margin-bottom: calc(-1 * var(--st-card-cap-padding-y));
	margin-left: calc(-0.5 * var(--st-card-cap-padding-x));
	border-bottom: 0;
}

.card-header-tabs .nav-link.active {
	background-color: var(--st-card-bg);
	border-bottom-color: var(--st-card-bg);
}

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

.card-header-underline {
	margin-right: calc(-0.5 * var(--st-card-cap-padding-x));
	margin-bottom: calc(-1 * var(--st-card-cap-padding-y));
	margin-left: calc(-0.5 * var(--st-card-cap-padding-x));
}

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

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

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

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

.card-group > .card {
	margin-bottom: var(--st-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;
		border-right-color: var(--st-card-group-border-color);
	}

	.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;
		border-left-color: var(--st-card-group-border-color);
	}

	.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;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Accordion ]
 * ----------------------------------------------------------------------------
 */

.accordion {
	--st-accordion-color: var(--st-body-color);
	--st-accordion-bg: transparent;
	--st-accordion-transition: ;
	--st-accordion-border-color: var(--st-border-color);
	--st-accordion-border-width: var(--st-border-width);
	--st-accordion-border-radius: var(--st-border-radius);
	--st-accordion-inner-border-radius: calc(var(--st-accordion-border-radius) - var(--st-accordion-border-width));
	--st-accordion-btn-padding-x: 1rem;
	--st-accordion-btn-padding-y: 0.75rem;
	--st-accordion-btn-color: var(--st-accordion-color);
	--st-accordion-btn-bg: var(--st-accordion-bg);
	--st-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23242628' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
	--st-accordion-btn-icon-width: 0.75rem;
	--st-accordion-btn-icon-transform: rotate(-180deg);
	--st-accordion-btn-icon-transition: transform 0.2s ease-in-out;
	--st-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='%23242628' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
	--st-accordion-btn-focus-box-shadow: inset 0 0 0 var(--st-focus-ring-width) hsla(var(--st-action-focus-shadow-hsl), 0.5);
	--st-accordion-body-padding-x: 1rem;
	--st-accordion-body-padding-y: 1rem;
	--st-accordion-active-color: var(--st-accordion-color);
	--st-accordion-active-bg: var(--st-accordion-bg);
}

[data-st-theme=dark] .accordion {
	--st-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c9cbcf' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
	--st-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='%23c9cbcf' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: var(--st-accordion-btn-padding-y) var(--st-accordion-btn-padding-x);
	font-size: var(--st-font-size-base);
	color: var(--st-accordion-btn-color);
	text-align: left;
	background-color: var(--st-accordion-btn-bg);
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: var(--st-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
	.accordion-button {
		transition: none;
	}
}

.accordion-button:not(.collapsed) {
	color: var(--st-accordion-active-color);
	background-color: var(--st-accordion-active-bg);
	box-shadow: inset 0 calc(-1 * var(--st-accordion-border-width)) 0 var(--st-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
	background-image: var(--st-accordion-btn-active-icon);
	transform: var(--st-accordion-btn-icon-transform);
}

.accordion-button::after {
	flex-shrink: 0;
	width: var(--st-accordion-btn-icon-width);
	height: var(--st-accordion-btn-icon-width);
	margin-left: auto;
	content: "";
	background-image: var(--st-accordion-btn-icon);
	background-repeat: no-repeat;
	background-size: var(--st-accordion-btn-icon-width);
	transition: var(--st-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(--st-accordion-btn-focus-box-shadow);
}

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

.accordion-item {
	color: var(--st-accordion-color);
	background-color: var(--st-accordion-bg);
	border: var(--st-accordion-border-width) solid var(--st-accordion-border-color);
}

.accordion-item:first-of-type {
	border-top-left-radius: var(--st-accordion-border-radius);
	border-top-right-radius: var(--st-accordion-border-radius);
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
	border-top-left-radius: var(--st-accordion-inner-border-radius);
	border-top-right-radius: var(--st-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
	border-top: 0;
}

.accordion-item:last-of-type {
	border-bottom-right-radius: var(--st-accordion-border-radius);
	border-bottom-left-radius: var(--st-accordion-border-radius);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
	border-bottom-right-radius: var(--st-accordion-inner-border-radius);
	border-bottom-left-radius: var(--st-accordion-inner-border-radius);
}

.accordion-item:last-of-type > .accordion-collapse {
	border-bottom-right-radius: var(--st-accordion-border-radius);
	border-bottom-left-radius: var(--st-accordion-border-radius);
}

.accordion-body {
	padding: var(--st-accordion-body-padding-y) var(--st-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-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

.accordion-flush > .accordion-item > .accordion-collapse {
  border-radius: 0;
}

/**
 * ----------------------------------------------------------------------------
 * [ Breadcrumb ]
 * ----------------------------------------------------------------------------
 */

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

.breadcrumb-item + .breadcrumb-item {
	padding-left: var(--st-breadcrumb-item-padding-x);
}

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

.breadcrumb-item.active {
	color: var(--st-breadcrumb-item-active-color);
}

/**
 * ----------------------------------------------------------------------------
 * [ Pagination ]
 * ----------------------------------------------------------------------------
 */

.pagination {
	--st-pagination-padding-x: 0.375rem;
	--st-pagination-padding-y: 0.25rem;
	--st-pagination-font-size: var(--st-font-size-base);
	--st-pagination-line-height: calc(20/14);
	--st-pagination-min-width: 1.875rem;
	--st-pagination-color: var(--st-action-color);
	--st-pagination-bg: var(--st-action-bg);
	--st-pagination-border-width: var(--st-border-width);
	--st-pagination-border-color: var(--st-action-border-color);
	--st-pagination-border-radius: var(--st-border-radius);
	--st-pagination-hover-color: var(--st-action-hover-color);
	--st-pagination-hover-bg: var(--st-action-hover-bg);
	--st-pagination-hover-border-color: var(--st-action-border-color);
	--st-pagination-focus-color: var(--st-action-active-color);
	--st-pagination-focus-bg: var(--st-action-active-bg);
	--st-pagination-focus-box-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-action-focus-shadow-hsl), 0.5);
	--st-pagination-active-color: var(--st-primary-foreground);
	--st-pagination-active-bg: var(--st-primary);
	--st-pagination-active-border-color: var(--st-ctx-btn-border-color);
	--st-pagination-active-bg-clip: var(--st-ctx-btn-bg-clip);
	--st-pagination-active-webkit-font-smoothing: auto;
	--st-pagination-active-moz-osx-font-smoothing: auto;
	--st-pagination-disabled-color: var(--st-action-disabled-color);
	--st-pagination-disabled-bg: var(--st-action-disabled-bg);
	--st-pagination-disabled-border-color: var(--st-action-disabled-border-color);
	display: flex;
	padding-left: 0;
	list-style: none;
}

.page-link {
	position: relative;
	display: block;
	padding: var(--st-pagination-padding-y) var(--st-pagination-padding-x);
	font-size: var(--st-pagination-font-size);
	line-height: var(--st-pagination-line-height);
	min-width: var(--st-pagination-min-width);
	color: var(--st-pagination-color);
	text-decoration: none;
	text-align: center;
	background-color: var(--st-pagination-bg);
	border: var(--st-pagination-border-width) solid var(--st-pagination-border-color);
}

@media (prefers-reduced-motion: reduce) {
	.page-link {
		transition: none;
	}
}

.page-link:hover {
	z-index: 2;
	color: var(--st-pagination-hover-color);
	background-color: var(--st-pagination-hover-bg);
	border-color: var(--st-pagination-hover-border-color);
}

.page-link:focus {
	z-index: 3;
	color: var(--st-pagination-focus-color);
	background-color: var(--st-pagination-focus-bg);
	outline: 0;
	box-shadow: var(--st-pagination-focus-box-shadow);
}

.page-link.active,
.active > .page-link {
	z-index: 3;
	color: var(--st-pagination-active-color);
	background-color: var(--st-pagination-active-bg);
	border-color: var(--st-pagination-active-border-color);
	background-clip: var(--st-pagination-active-bg-clip);
	-webkit-font-smoothing: var(--st-pagination-active-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-pagination-active-moz-osx-font-smoothing);
}

.page-link.disabled,
.disabled > .page-link {
	color: var(--st-pagination-disabled-color);
	pointer-events: none;
	background-color: var(--st-pagination-disabled-bg);
	border-color: var(--st-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
	margin-left: calc(-1 * var(--st-pagination-border-width));
}

.page-item:first-child .page-link {
	border-top-left-radius: var(--st-pagination-border-radius);
	border-bottom-left-radius: var(--st-pagination-border-radius);
}

.page-item:last-child .page-link {
	border-top-right-radius: var(--st-pagination-border-radius);
	border-bottom-right-radius: var(--st-pagination-border-radius);
}

.pagination-lg {
	--st-pagination-padding-x: 0.625rem;
	--st-pagination-padding-y: 0.3125rem;
	--st-pagination-font-size: var(--st-font-size-lg);
	--st-pagination-line-height: calc(24/16);
	--st-pagination-min-width: 2.25rem;
	--st-pagination-border-radius: var(--st-border-radius-lg);
}

.pagination-sm {
	--st-pagination-padding-x: 0.125rem;
	--st-pagination-padding-y: 0.125rem;
	--st-pagination-font-size: var(--st-font-size-sm);
	--st-pagination-line-height: calc(18/12);
	--st-pagination-min-width: 1.5rem;
	--st-pagination-border-radius: var(--st-border-radius-sm);
}

/**
 * ----------------------------------------------------------------------------
 * [ Badge ]
 * ----------------------------------------------------------------------------
 */

.badge {
	--st-badge-padding-x: var(--st-relative-font-size-2xs);
	--st-badge-padding-y: var(--st-relative-font-size-4xs);
	--st-badge-font-size: var(--st-relative-font-size-sm);
	--st-badge-font-weight: var(--st-font-weight-normal);
	--st-badge-color: var(--st-secondary-foreground);
	--st-badge-bg: var(--st-secondary);
	--st-badge-border-radius: var(--st-border-radius);
	display: inline-block;
	padding: var(--st-badge-padding-y) var(--st-badge-padding-x);
	font-size: var(--st-badge-font-size);
	font-weight: var(--st-badge-font-weight);
	line-height: 1;
	color: var(--st-badge-color);
	background-color: var(--st-badge-bg);
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: var(--st-badge-border-radius);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.badge:empty {
	display: none;
}

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

/**
 * ----------------------------------------------------------------------------
 * [ Alerts ]
 * ----------------------------------------------------------------------------
 */

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

.alert-heading {
	color: inherit;
}

.alert-link {
	font-weight: var(--st-font-weight-normal);
	color: var(--st-alert-link-color);
	text-decoration: underline;
	-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
}

.alert-link:hover {
	opacity: 0.75;
	text-decoration: underline;
}

.alert-dismissible {
	padding-right: 2.5rem;
}

.alert-dismissible .btn-close {
	position: absolute;
	top: 50%;
	right: 0.375rem;
	transform: translateY(-50%);
	z-index: 2;
}

/* Primary alert */

.alert-primary {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-primary-bg-subtle);
	--st-alert-border-color: var(--st-primary-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Secondary alert */

.alert-secondary {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-secondary-bg-subtle);
	--st-alert-border-color: var(--st-secondary-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Success alert */

.alert-success {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-success-bg-subtle);
	--st-alert-border-color: var(--st-success-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Info alert */

.alert-info {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-info-bg-subtle);
	--st-alert-border-color: var(--st-info-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Warning alert */

.alert-warning {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-warning-bg-subtle);
	--st-alert-border-color: var(--st-warning-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Danger alert */

.alert-danger {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-danger-bg-subtle);
	--st-alert-border-color: var(--st-danger-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Light alert */

.alert-light {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-light-bg-subtle);
	--st-alert-border-color: var(--st-light-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/* Dark alert */

.alert-dark {
	--st-alert-color: var(--st-body-color);
	--st-alert-bg: var(--st-dark-bg-subtle);
	--st-alert-border-color: var(--st-dark-border-subtle);
	--st-alert-link-color: var(--st-alert-color);
}

/**
 * ----------------------------------------------------------------------------
 * [ Progress ]
 * ----------------------------------------------------------------------------
 */

@keyframes progress-bar-stripes {
	0% {
		background-position-x: 0.625rem;
	}
}

.progress,
.progress-stacked {
	--st-progress-height: 0.625rem;
	--st-progress-font-size: 0.5rem;
	--st-progress-bg: var(--st-actionbar-bg);
	--st-progress-border: var(--st-progresstrack-border-width) solid var(--st-actionbar-border-color);
	--st-progress-border-radius: var(--st-border-radius-pill);
	--st-progress-box-shadow: var(--st-progresstrack-box-shadow);
	--st-progress-bg-clip: var(--st-progresstrack-bg-clip);
	--st-progress-bar-color: var(--st-primary-foreground);
	--st-progress-bar-bg: var(--st-primary);
	--st-progress-bar-transition: width 0.6s ease;
	display: flex;
	height: var(--st-progress-height);
	overflow: hidden;
	font-size: var(--st-progress-font-size);
	background-color: var(--st-progress-bg);
	border: var(--st-progress-border);
	border-radius: var(--st-progress-border-radius);
	box-shadow: var(--st-progress-box-shadow);
	background-clip: var(--st-progress-bg-clip);
}

.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: var(--st-progress-bar-color);
	text-align: center;
	white-space: nowrap;
	background-color: var(--st-progress-bar-bg);
	transition: var(--st-progress-bar-transition);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

@media (prefers-reduced-motion: reduce) {
	.progress-bar {
		transition: none;
	}
}

.progress-bar-striped {
	background-image: linear-gradient(
		45deg,
		hsla(var(--st-primary-foreground-hsl), 0.15) 25%,
		transparent 25%,
		transparent 50%,
		hsla(var(--st-primary-foreground-hsl), 0.15) 50%,
		hsla(var(--st-primary-foreground-hsl), 0.15) 75%,
		transparent 75%,
		transparent
	);
	background-size: var(--st-progress-height) var(--st-progress-height);
}

.progress-stacked > .progress {
	height: 100%;
	overflow: visible;
	font-size: inherit;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background-clip: border-box;
}

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

.progress-bar-animated {
	animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
	.progress-bar-animated {
		animation: none;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ List group ]
 * ----------------------------------------------------------------------------
 */

.list-group {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: transparent;
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-border-width: var(--st-border-width);
	--st-list-group-border-radius: var(--st-border-radius);
	--st-list-group-item-padding-x: 1rem;
	--st-list-group-item-padding-y: 0.375rem;
	--st-list-group-action-color: var(--st-list-group-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-black-hsl), 0.06);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-black-hsl), 0.09);
	--st-list-group-disabled-color: var(--st-secondary-color);
	--st-list-group-disabled-bg: hsla(var(--st-black-hsl), 0.03);
	--st-list-group-active-color: var(--st-primary-foreground);
	--st-list-group-active-bg: var(--st-primary);
	--st-list-group-active-border-color: var(--st-primary);
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	border-radius: var(--st-list-group-border-radius);
}

.list-group {
	margin-left: 0;
	margin-right: 0;
}

[data-st-theme=dark] .list-group {
	--st-list-group-action-hover-bg: hsla(var(--st-white-hsl), 0.05);
	--st-list-group-action-active-bg: hsla(var(--st-white-hsl), 0.075);
	--st-list-group-disabled-bg: hsla(var(--st-white-hsl), 0.025);
}

.list-group-numbered {
	list-style-type: none;
	counter-reset: section;
}

.list-group-header {
	background: var(--st-bg-surface-tertiary);
	padding: 0.5rem 1.25rem;
	font-size: 0.75rem;
	font-weight: var(--st-font-weight-medium);
	line-height: 1;
	text-transform: uppercase;
	color: var(--st-gray-500);
	border-bottom: var(--st-border-width) var(--st-border-style) var(--st-border-color);
}

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

.list-group-item-action {
	width: 100%;
	color: var(--st-list-group-action-color);
	text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
	z-index: 1;
	color: var(--st-list-group-action-hover-color);
	text-decoration: none;
	background-color: var(--st-list-group-action-hover-bg);
}

.list-group-item-action:active {
	color: var(--st-list-group-action-active-color);
	background-color: var(--st-list-group-action-active-bg);
}

.list-group-item {
	position: relative;
	display: block;
	padding: var(--st-list-group-item-padding-y) var(--st-list-group-item-padding-x);
	color: var(--st-list-group-color);
	text-decoration: none;
	background-color: var(--st-list-group-bg);
	border: var(--st-list-group-border-width) solid var(--st-list-group-border-color);
	-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
}

/* .list-group-item {
	background-color: inherit;
} */

.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(--st-list-group-disabled-color);
	pointer-events: none;
	background-color: var(--st-list-group-disabled-bg);
}

.list-group-item.active {
	z-index: 2;
	color: var(--st-list-group-active-color);
	background-color: var(--st-list-group-active-bg);
	border-color: var(--st-list-group-active-border-color);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.list-group-item + .list-group-item {
	border-top-width: 0;
}

.list-group-item + .list-group-item.active {
	margin-top: calc(-1 * var(--st-list-group-border-width));
	border-top-width: var(--st-list-group-border-width);
}

.list-bordered .list-item {
	border-top: var(--st-border-width) var(--st-border-style) var(--st-border-color);
	margin-top: -1px;
}

.list-bordered .list-item:first-child {
	border-top: none;
}

.list-group-hoverable .list-group-item:active,
.list-group-hoverable .list-group-item:focus,
.list-group-hoverable .list-group-item:hover {
	background-color: rgba(var(--st-secondary-rgb), 0.08);
}

.list-group-hoverable .list-group-item-actions {
	opacity: 0;
	transition: opacity 0.3s;
}

@media (prefers-reduced-motion: reduce) {
	.list-group-hoverable .list-group-item-actions {
		transition: none;
	}
}

.list-group-hoverable .list-group-item:hover .list-group-item-actions,
.list-group-hoverable .list-group-item-actions.show {
	opacity: 1;
}

.list-group-transparent {
	--st-list-group-border-radius: 0;
	margin: 0 -1.25rem;
}

.list-group-transparent .list-group-item {
	background: none;
	border: 0;
}

.list-group-transparent .list-group-item .icon {
	color: var(--st-secondary);
}

.list-group-transparent .list-group-item.active {
	font-weight: var(--st-font-weight-bold);
	color: inherit;
	background: var(--st-active-bg);
}

.list-group-transparent .list-group-item.active .icon {
	color: inherit;
}

.list-group-horizontal {
	flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
	border-bottom-left-radius: var(--st-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(--st-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(--st-list-group-border-width);
	border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
	margin-left: calc(-1 * var(--st-list-group-border-width));
	border-left-width: var(--st-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(--st-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(--st-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(--st-list-group-border-width);
		border-left-width: 0;
	}

	.list-group-horizontal-sm > .list-group-item + .list-group-item.active {
		margin-left: calc(-1 * var(--st-list-group-border-width));
		border-left-width: var(--st-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(--st-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(--st-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(--st-list-group-border-width);
		border-left-width: 0;
	}

	.list-group-horizontal-md > .list-group-item + .list-group-item.active {
		margin-left: calc(-1 * var(--st-list-group-border-width));
		border-left-width: var(--st-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(--st-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(--st-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(--st-list-group-border-width);
		border-left-width: 0;
	}

	.list-group-horizontal-lg > .list-group-item + .list-group-item.active {
		margin-left: calc(-1 * var(--st-list-group-border-width));
		border-left-width: var(--st-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(--st-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(--st-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(--st-list-group-border-width);
		border-left-width: 0;
	}

	.list-group-horizontal-xl > .list-group-item + .list-group-item.active {
		margin-left: calc(-1 * var(--st-list-group-border-width));
		border-left-width: var(--st-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(--st-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(--st-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(--st-list-group-border-width);
		border-left-width: 0;
	}

	.list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
		margin-left: calc(-1 * var(--st-list-group-border-width));
		border-left-width: var(--st-list-group-border-width);
	}
}

.list-group-flush {
	border-radius: 0;
}

.list-group-flush > .list-group-item {
	border-width: 0 0 var(--st-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
	border-bottom-width: 0;
}

.list-group-flush>.list-group-header:last-child {
	border-bottom-width: 0;
}

/* Primary list group item */

.list-group-item-primary {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-primary-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-primary-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-primary-hsl), 0.25);
	--st-list-group-active-color: var(--st-primary-foreground);
	--st-list-group-active-bg: var(--st-primary-hover-bg);
	--st-list-group-active-border-color: var(--st-primary-hover-bg);
}

/* Secondary list group item */

.list-group-item-secondary {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-secondary-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-secondary-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-secondary-hsl), 0.25);
	--st-list-group-active-color: var(--st-secondary-foreground);
	--st-list-group-active-bg: var(--st-secondary-hover-bg);
	--st-list-group-active-border-color: var(--st-secondary-hover-bg);
}

/* Success list group item */

.list-group-item-success {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-success-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-success-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-success-hsl), 0.25);
	--st-list-group-active-color: var(--st-success-foreground);
	--st-list-group-active-bg: var(--st-success-hover-bg);
	--st-list-group-active-border-color: var(--st-success-hover-bg);
}

/* Info list group item */

.list-group-item-info {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-info-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-info-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-info-hsl), 0.25);
	--st-list-group-active-color: var(--st-info-foreground);
	--st-list-group-active-bg: var(--st-info-hover-bg);
	--st-list-group-active-border-color: var(--st-info-hover-bg);
}

/* Warning list group item */

.list-group-item-warning {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-warning-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-warning-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-warning-hsl), 0.25);
	--st-list-group-active-color: var(--st-warning-foreground);
	--st-list-group-active-bg: var(--st-warning-hover-bg);
	--st-list-group-active-border-color: var(--st-warning-hover-bg);
}

/* Danger list group item */

.list-group-item-danger {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-danger-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-danger-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-danger-hsl), 0.25);
	--st-list-group-active-color: var(--st-danger-foreground);
	--st-list-group-active-bg: var(--st-danger-hover-bg);
	--st-list-group-active-border-color: var(--st-danger-hover-bg);
}

/* Light list group item */

.list-group-item-light {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-light-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-light-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-light-hsl), 0.25);
	--st-list-group-active-color: var(--st-light-foreground);
	--st-list-group-active-bg: var(--st-light-hover-bg);
	--st-list-group-active-border-color: var(--st-light-hover-bg);
}

/* Dark list group item */

.list-group-item-dark {
	--st-list-group-color: var(--st-body-color);
	--st-list-group-bg: hsla(var(--st-dark-hsl), 0.125);
	--st-list-group-border-color: var(--st-border-color);
	--st-list-group-action-hover-color: var(--st-list-group-action-color);
	--st-list-group-action-hover-bg: hsla(var(--st-dark-hsl), 0.2);
	--st-list-group-action-active-color: var(--st-list-group-action-color);
	--st-list-group-action-active-bg: hsla(var(--st-dark-hsl), 0.25);
	--st-list-group-active-color: var(--st-dark-foreground);
	--st-list-group-active-bg: var(--st-dark-hover-bg);
	--st-list-group-active-border-color: var(--st-dark-hover-bg);
}

/**
 * ----------------------------------------------------------------------------
 * [ Close button ]
 * ----------------------------------------------------------------------------
 */

.btn-close {
	--st-btn-close-color: var(--st-black);
	--st-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.414z'/%3e%3c/svg%3e");
	--st-btn-close-opacity: 0.5;
	--st-btn-close-hover-opacity: 0.75;
	--st-btn-close-focus-shadow: 0 0 0 var(--st-focus-ring-width) hsla(var(--st-black-hsl), 0.25);
	--st-btn-close-focus-opacity: 1;
	--st-btn-close-disabled-opacity: 0.25;
	--st-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: var(--st-relative-font-size-4xs);
	color: var(--st-btn-close-color);
	background: transparent var(--st-btn-close-bg) center/1em auto no-repeat;
	border: 0;
	border-radius: var(--st-border-radius-sm);
	opacity: var(--st-btn-close-opacity);
}

.btn-close:hover {
	color: var(--st-btn-close-color);
	text-decoration: none;
	opacity: var(--st-btn-close-hover-opacity);
}

.btn-close:focus {
	outline: 0;
	box-shadow: var(--st-btn-close-focus-shadow);
	opacity: var(--st-btn-close-focus-opacity);
}

.btn-close:disabled, .btn-close.disabled {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	opacity: var(--st-btn-close-disabled-opacity);
}

[data-st-theme=dark] .btn-close {
	filter: var(--st-btn-close-white-filter);
}

/* Local light and dark variants */

.btn-close[data-st-theme=light] {
	filter: none;
}

.btn-close[data-st-theme=dark] {
	filter: var(--st-btn-close-white-filter);
}

/**
 * ----------------------------------------------------------------------------
 * [ Toast ]
 * ----------------------------------------------------------------------------
 */

.toast {
	--st-toast-zindex: 1090;
	--st-toast-padding-x: 0.75rem;
	--st-toast-padding-y: 0.5rem;
	--st-toast-spacing: 1.5rem;
	--st-toast-max-width: 21.875rem;
	--st-toast-font-size: 0.875rem;
	--st-toast-color: ;
	--st-toast-bg: hsla(var(--st-content-floating-bg-hsl), 0.95);
	--st-toast-border-width: var(--st-border-width);
	--st-toast-border-color: var(--st-content-floating-border-color);
	--st-toast-border-radius: var(--st-border-radius);
	--st-toast-box-shadow: var(--st-content-floating-box-shadow);
	--st-toast-header-color: var(--st-secondary-color);
	--st-toast-header-bg: var(--st-toast-bg);
	--st-toast-header-border-color: var(--st-border-color-translucent);
	width: var(--st-toast-max-width);
	max-width: 100%;
	font-size: var(--st-toast-font-size);
	color: var(--st-toast-color);
	pointer-events: auto;
	background-color: var(--st-toast-bg);
	background-clip: padding-box;
	border: var(--st-toast-border-width) solid var(--st-toast-border-color);
	box-shadow: var(--st-toast-box-shadow);
	border-radius: var(--st-toast-border-radius);
}

.toast.showing {
	opacity: 0;
}

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

.toast-container {
	--st-toast-zindex: 1090;
	position: absolute;
	z-index: var(--st-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(--st-toast-spacing);
}

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

.toast-header .btn-close {
	margin-right: calc(-0.5 * var(--st-toast-padding-x));
	margin-left: var(--st-toast-padding-x);
}

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

/**
 * ----------------------------------------------------------------------------
 * [ Modal ]
 * ----------------------------------------------------------------------------
 */

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

.modal-dialog {
	position: relative;
	width: auto;
	margin: var(--st-modal-margin);
	pointer-events: none;
}

.modal.fade .modal-dialog {
	transition: transform 0.3s ease-out;
	transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog {
		transition: none;
	}
}

.modal.show .modal-dialog {
	transform: none;
}

.modal.modal-static .modal-dialog {
	transform: scale(1.02);
}

.modal-dialog-scrollable {
	height: calc(100% - var(--st-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(--st-modal-margin) * 2);
}

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

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

.modal-backdrop.fade {
	opacity: 0;
}

.modal-backdrop.show {
	opacity: var(--st-backdrop-opacity);
}

.modal-header {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	padding: var(--st-modal-header-padding);
	border-bottom: var(--st-modal-header-border-width) solid var(--st-modal-header-border-color);
	border-top-left-radius: var(--st-modal-inner-border-radius);
	border-top-right-radius: var(--st-modal-inner-border-radius);
}

.modal-header .btn-close {
	padding: calc(var(--st-modal-header-padding-y) * 0.5) calc(var(--st-modal-header-padding-x) * 0.5);
	margin: calc(-0.5 * var(--st-modal-header-padding-y)) calc(-0.5 * var(--st-modal-header-padding-x)) calc(-0.5 * var(--st-modal-header-padding-y)) auto;
}

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

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

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

.modal-footer > * {
	margin: calc(var(--st-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
	.modal {
		--st-modal-margin: 1.75rem;
	}

	.modal-dialog {
		max-width: var(--st-modal-width);
		margin-right: auto;
		margin-left: auto;
	}

	.modal-sm {
		--st-modal-width: 18.75rem;
	}
}

@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		--st-modal-width: 42.5rem;
	}
}

@media (min-width: 1200px) {
	.modal-xl {
		--st-modal-width: 65rem;
	}
}

.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;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Tooltips ]
 * ----------------------------------------------------------------------------
 */

.tooltip {
	--st-tooltip-zindex: 1080;
	--st-tooltip-max-width: 12.5rem;
	--st-tooltip-padding-x: 0.5rem;
	--st-tooltip-padding-y: 0.25rem;
	--st-tooltip-margin: ;
	--st-tooltip-font-size: var(--st-font-size-sm);
	--st-tooltip-color: var(--st-body-bg);
	--st-tooltip-bg: var(--st-emphasis-color);
	--st-tooltip-border-radius: var(--st-border-radius);
	--st-tooltip-opacity: 0.95;
	--st-tooltip-webkit-font-smoothing: auto;
	--st-tooltip-moz-osx-font-smoothing: auto;
	--st-tooltip-arrow-width: 0.8rem;
	--st-tooltip-arrow-height: 0.4rem;
	z-index: var(--st-tooltip-zindex);
	display: block;
	margin: var(--st-tooltip-margin);
	font-family: var(--st-body-font-family);
	font-style: normal;
	font-weight: var(--st-font-weight-normal);
	line-height: var(--st-line-height-base);
	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(--st-tooltip-font-size);
	word-wrap: break-word;
	opacity: 0;
}

.tooltip.show {
	opacity: var(--st-tooltip-opacity);
}

.tooltip .tooltip-arrow {
	display: block;
	width: var(--st-tooltip-arrow-width);
	height: var(--st-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(--st-tooltip-arrow-height));
}

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

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
	left: calc(-1 * var(--st-tooltip-arrow-height));
	width: var(--st-tooltip-arrow-height);
	height: var(--st-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(--st-tooltip-arrow-width) * 0.5) var(--st-tooltip-arrow-height) calc(var(--st-tooltip-arrow-width) * 0.5) 0;
	border-right-color: var(--st-tooltip-bg);
}
/* rtl:end:ignore */

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
	top: calc(-1 * var(--st-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(--st-tooltip-arrow-width) * 0.5) var(--st-tooltip-arrow-height);
	border-bottom-color: var(--st-tooltip-bg);
}

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
	right: calc(-1 * var(--st-tooltip-arrow-height));
	width: var(--st-tooltip-arrow-height);
	height: var(--st-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(--st-tooltip-arrow-width) * 0.5) 0 calc(var(--st-tooltip-arrow-width) * 0.5) var(--st-tooltip-arrow-height);
	border-left-color: var(--st-tooltip-bg);
}
/* rtl:end:ignore */

.tooltip-inner {
	max-width: var(--st-tooltip-max-width);
	padding: var(--st-tooltip-padding-y) var(--st-tooltip-padding-x);
	color: var(--st-tooltip-color);
	text-align: center;
	background-color: var(--st-tooltip-bg);
	border-radius: var(--st-tooltip-border-radius);
	-webkit-font-smoothing: var(--st-tooltip-webkit-font-smoothing);
	-moz-osx-font-smoothing: var(--st-tooltip-moz-osx-font-smoothing);
}

/**
 * ----------------------------------------------------------------------------
 * [ Popovers ]
 * ----------------------------------------------------------------------------
 */

.popover {
	--st-popover-zindex: 1070;
	--st-popover-max-width: 17.25rem;
	--st-popover-font-size: var(--st-font-size-base);
	--st-popover-bg: var(--st-content-floating-bg);
	--st-popover-border-width: var(--st-border-width);
	--st-popover-border-color: var(--st-content-floating-border-color);
	--st-popover-border-radius: var(--st-border-radius);
	--st-popover-inner-border-radius: calc(var(--st-popover-border-radius) - var(--st-popover-border-width));
	--st-popover-box-shadow: var(--st-content-floating-box-shadow);
	--st-popover-header-padding-x: 0.75rem;
	--st-popover-header-padding-y: 0.5rem;
	--st-popover-header-font-size: var(--st-popover-font-size);
	--st-popover-header-color: var(--st-body-color);
	--st-popover-header-bg: var(--st-popover-bg);
	--st-popover-header-border-color: var(--st-border-color-translucent);
	--st-popover-body-padding-x: 0.75rem;
	--st-popover-body-padding-y: 0.75rem;
	--st-popover-body-color: var(--st-content-floating-color);
	--st-popover-arrow-width: 1rem;
	--st-popover-arrow-height: 0.5rem;
	--st-popover-arrow-border: var(--st-popover-border-color);
	z-index: var(--st-popover-zindex);
	display: block;
	max-width: var(--st-popover-max-width);
	font-family: var(--st-body-font-family);
	font-style: normal;
	font-weight: var(--st-font-weight-normal);
	line-height: var(--st-line-height-base);
	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(--st-popover-font-size);
	word-wrap: break-word;
	background-color: var(--st-popover-bg);
	background-clip: padding-box;
	border: var(--st-popover-border-width) solid var(--st-popover-border-color);
	border-radius: var(--st-popover-border-radius);
	box-shadow: var(--st-popover-box-shadow);
}

.popover .popover-arrow {
	display: block;
	width: var(--st-popover-arrow-width);
	height: var(--st-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(--st-popover-arrow-height)) - var(--st-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(--st-popover-arrow-height) calc(var(--st-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(--st-popover-arrow-border);
}

.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
	bottom: var(--st-popover-border-width);
	border-top-color: var(--st-popover-bg);
}

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
	left: calc(-1 * (var(--st-popover-arrow-height)) - var(--st-popover-border-width));
	width: var(--st-popover-arrow-height);
	height: var(--st-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(--st-popover-arrow-width) * 0.5) var(--st-popover-arrow-height) calc(var(--st-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(--st-popover-arrow-border);
}

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

.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
	top: calc(-1 * (var(--st-popover-arrow-height)) - var(--st-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(--st-popover-arrow-width) * 0.5) var(--st-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(--st-popover-arrow-border);
}

.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
	top: var(--st-popover-border-width);
	border-bottom-color: var(--st-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(--st-popover-arrow-width);
	margin-left: calc(-0.5 * var(--st-popover-arrow-width));
	content: "";
	border-bottom: var(--st-popover-border-width) solid var(--st-popover-header-bg);
}

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
	right: calc(-1 * (var(--st-popover-arrow-height)) - var(--st-popover-border-width));
	width: var(--st-popover-arrow-height);
	height: var(--st-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(--st-popover-arrow-width) * 0.5) 0 calc(var(--st-popover-arrow-width) * 0.5) var(--st-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(--st-popover-arrow-border);
}

.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
	right: var(--st-popover-border-width);
	border-left-color: var(--st-popover-bg);
}
/* rtl:end:ignore */

.popover-header {
	padding: var(--st-popover-header-padding-y) var(--st-popover-header-padding-x);
	margin-bottom: 0;
	font-size: var(--st-popover-header-font-size);
	color: var(--st-popover-header-color);
	background-color: var(--st-popover-header-bg);
	border-bottom: var(--st-popover-border-width) solid var(--st-popover-header-border-color);
	border-top-left-radius: var(--st-popover-inner-border-radius);
	border-top-right-radius: var(--st-popover-inner-border-radius);
}

.popover-header:empty {
	display: none;
}

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

/**
 * ----------------------------------------------------------------------------
 * [ Carousel ]
 * ----------------------------------------------------------------------------
 */

.carousel {
	position: relative;
}

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

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carousel-inner::after {
	display: block;
	clear: both;
	content: "";
}

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: 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 {
	transform: translateX(100%);
}

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

.carousel-fade .carousel-item {
	opacity: 0;
	transition-property: opacity;
	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: var(--st-white);
	text-align: center;
	background: none;
	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: var(--st-white);
	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: 2.5rem;
	height: 2.5rem;
	background-color: var(--st-white);
	background-repeat: no-repeat;
	background-size: 50% 50%;
	border-radius: 50%;
}

.carousel-control-prev-icon {
	background-position: 45% center;
}

.carousel-control-next-icon {
	background-position: 55% center;
}

.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='%23242628'%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 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23242628'%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-.708z'/%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='%23242628'%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-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23242628'%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 0z'/%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-st-target] {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 1.875rem;
	height: 0.1875rem;
	padding: 0;
	margin-right: 0.1875rem;
	margin-left: 0.1875rem;
	text-indent: -999px;
	cursor: pointer;
	background-color: var(--st-white);
	background-clip: padding-box;
	border: 0;
	border-top: 0.625rem solid transparent;
	border-bottom: 0.625rem solid transparent;
	opacity: 0.5;
	transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
	.carousel-indicators [data-st-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(--st-white);
	text-align: center;
}

[data-st-theme=dark] .carousel .carousel-control-prev-icon,
[data-st-theme=dark] .carousel .carousel-control-next-icon,
[data-st-theme=dark].carousel .carousel-control-prev-icon,
[data-st-theme=dark].carousel .carousel-control-next-icon {
	background-color: var(--st-black);
}

[data-st-theme=dark] .carousel .carousel-control-prev-icon,
[data-st-theme=dark].carousel .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='%23c9cbcf'%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 0z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9cbcf'%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-.708z'/%3e%3c/svg%3e")*/;
}

[data-st-theme=dark] .carousel .carousel-control-next-icon,
[data-st-theme=dark].carousel .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='%23c9cbcf'%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-.708z'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c9cbcf'%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 0z'/%3e%3c/svg%3e")*/;
}

[data-st-theme=dark] .carousel .carousel-indicators [data-st-target],
[data-st-theme=dark].carousel .carousel-indicators [data-st-target] {
	background-color: var(--st-black);
}

[data-st-theme=dark] .carousel .carousel-caption,
[data-st-theme=dark].carousel .carousel-caption {
	color: var(--st-black);
}

/**
 * ----------------------------------------------------------------------------
 * [ Spinner ]
 * ----------------------------------------------------------------------------
 */

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

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

.spinner-border {
	--st-spinner-width: calc(var(--st-font-size-base) * 2);
	--st-spinner-height: calc(var(--st-font-size-base) * 2);
	--st-spinner-vertical-align: calc(-1 * var(--st-relative-font-size-6xs));
	--st-spinner-border-width: var(--st-relative-font-size-4xs);
	--st-spinner-animation-speed: 0.75s;
	--st-spinner-animation-name: spinner-border;
	border: var(--st-spinner-border-width) solid currentcolor;
	border-right-color: transparent;
}

.spinner-border-sm {
	--st-spinner-width: var(--st-font-size-base);
	--st-spinner-height: var(--st-font-size-base);
	--st-spinner-border-width: var(--st-relative-font-size-6xs);
}

@keyframes spinner-grow {
	0% {
		transform: scale(0);
	}

	50% {
		opacity: 1;
		transform: none;
	}
}

.spinner-grow {
	--st-spinner-width: calc(var(--st-font-size-base) * 2);
	--st-spinner-height: calc(var(--st-font-size-base) * 2);
	--st-spinner-vertical-align: calc(-1 * var(--st-relative-font-size-6xs));
	--st-spinner-animation-speed: 0.75s;
	--st-spinner-animation-name: spinner-grow;
	background-color: currentcolor;
	opacity: 0;
}

.spinner-grow-sm {
	--st-spinner-width: var(--st-font-size-base);
	--st-spinner-height: var(--st-font-size-base);
}

@media (prefers-reduced-motion:reduce) {
	.spinner-border,
	.spinner-grow {
		--st-spinner-animation-speed: 1.5s;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Offcanvas ]
 * ----------------------------------------------------------------------------
 */

.offcanvas,
.offcanvas-xxl,
.offcanvas-xl,
.offcanvas-lg,
.offcanvas-md,
.offcanvas-sm {
	--st-offcanvas-zindex: 1045;
	--st-offcanvas-width: 21.875rem;
	--st-offcanvas-height: 30vh;
	--st-offcanvas-padding-x: 1rem;
	--st-offcanvas-padding-y: 1rem;
	--st-offcanvas-color: var(--st-content-color);
	--st-offcanvas-bg: var(--st-content-bg);
	--st-offcanvas-border-width: var(--st-border-width);
	--st-offcanvas-border-color: var(--st-content-border-color);
	--st-offcanvas-box-shadow: var(--st-box-shadow-sm);
	--st-offcanvas-transition: transform 0.3s ease-in-out;
	--st-offcanvas-title-line-height: var(--st-line-height-sm);
}

@media (max-width: 575.98px) {
	.offcanvas-sm {
		position: fixed;
		bottom: 0;
		z-index: var(--st-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--st-offcanvas-color);
		visibility: hidden;
		background-color: var(--st-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--st-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(--st-offcanvas-width);
		border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(-100%);
	}

	.offcanvas-sm.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--st-offcanvas-width);
		border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(100%);
	}

	.offcanvas-sm.offcanvas-top {
		top: 0;
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(-100%);
	}

	.offcanvas-sm.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(100%);
	}

	.offcanvas-sm.showing,
	.offcanvas-sm.show:not(.hiding) {
		transform: none;
	}

	.offcanvas-sm.showing,
	.offcanvas-sm.hiding,
	.offcanvas-sm.show {
		visibility: visible;
	}
}

@media (min-width: 576px) {
	.offcanvas-sm {
		--st-offcanvas-height: auto;
		--st-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(--st-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--st-offcanvas-color);
		visibility: hidden;
		background-color: var(--st-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--st-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(--st-offcanvas-width);
		border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(-100%);
	}

	.offcanvas-md.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--st-offcanvas-width);
		border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(100%);
	}

	.offcanvas-md.offcanvas-top {
		top: 0;
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(-100%);
	}

	.offcanvas-md.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(100%);
	}

	.offcanvas-md.showing,
	.offcanvas-md.show:not(.hiding) {
		transform: none;
	}

	.offcanvas-md.showing,
	.offcanvas-md.hiding,
	.offcanvas-md.show {
		visibility: visible;
	}
}

@media (min-width: 768px) {
	.offcanvas-md {
		--st-offcanvas-height: auto;
		--st-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(--st-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--st-offcanvas-color);
		visibility: hidden;
		background-color: var(--st-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--st-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(--st-offcanvas-width);
		border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(-100%);
	}

	.offcanvas-lg.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--st-offcanvas-width);
		border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(100%);
	}

	.offcanvas-lg.offcanvas-top {
		top: 0;
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(-100%);
	}

	.offcanvas-lg.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(100%);
	}

	.offcanvas-lg.showing,
	.offcanvas-lg.show:not(.hiding) {
		transform: none;
	}

	.offcanvas-lg.showing,
	.offcanvas-lg.hiding,
	.offcanvas-lg.show {
		visibility: visible;
	}
}

@media (min-width: 992px) {
	.offcanvas-lg {
		--st-offcanvas-height: auto;
		--st-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(--st-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--st-offcanvas-color);
		visibility: hidden;
		background-color: var(--st-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--st-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(--st-offcanvas-width);
		border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(-100%);
	}

	.offcanvas-xl.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--st-offcanvas-width);
		border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(100%);
	}

	.offcanvas-xl.offcanvas-top {
		top: 0;
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(-100%);
	}

	.offcanvas-xl.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(100%);
	}

	.offcanvas-xl.showing,
	.offcanvas-xl.show:not(.hiding) {
		transform: none;
	}

	.offcanvas-xl.showing,
	.offcanvas-xl.hiding,
	.offcanvas-xl.show {
		visibility: visible;
	}
}

@media (min-width: 1200px) {
	.offcanvas-xl {
		--st-offcanvas-height: auto;
		--st-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(--st-offcanvas-zindex);
		display: flex;
		flex-direction: column;
		max-width: 100%;
		color: var(--st-offcanvas-color);
		visibility: hidden;
		background-color: var(--st-offcanvas-bg);
		background-clip: padding-box;
		outline: 0;
		transition: var(--st-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(--st-offcanvas-width);
		border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(-100%);
	}

	.offcanvas-xxl.offcanvas-end {
		top: 0;
		right: 0;
		width: var(--st-offcanvas-width);
		border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateX(100%);
	}

	.offcanvas-xxl.offcanvas-top {
		top: 0;
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(-100%);
	}

	.offcanvas-xxl.offcanvas-bottom {
		right: 0;
		left: 0;
		height: var(--st-offcanvas-height);
		max-height: 100%;
		border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
		transform: translateY(100%);
	}

	.offcanvas-xxl.showing,
	.offcanvas-xxl.show:not(.hiding) {
		transform: none;
	}

	.offcanvas-xxl.showing,
	.offcanvas-xxl.hiding,
	.offcanvas-xxl.show {
		visibility: visible;
	}
}

@media (min-width: 1400px) {
	.offcanvas-xxl {
		--st-offcanvas-height: auto;
		--st-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(--st-offcanvas-zindex);
	display: flex;
	flex-direction: column;
	max-width: 100%;
	color: var(--st-offcanvas-color);
	visibility: hidden;
	background-color: var(--st-offcanvas-bg);
	background-clip: padding-box;
	outline: 0;
	transition: var(--st-offcanvas-transition);
}

@media (prefers-reduced-motion: reduce) {
	.offcanvas {
		transition: none;
	}
}

.offcanvas.offcanvas-start {
	top: 0;
	left: 0;
	width: var(--st-offcanvas-width);
	border-right: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
	transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
	top: 0;
	right: 0;
	width: var(--st-offcanvas-width);
	border-left: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
	transform: translateX(100%);
}

.offcanvas.offcanvas-top {
	top: 0;
	right: 0;
	left: 0;
	height: var(--st-offcanvas-height);
	max-height: 100%;
	border-bottom: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
	transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
	right: 0;
	left: 0;
	height: var(--st-offcanvas-height);
	max-height: 100%;
	border-top: var(--st-offcanvas-border-width) solid var(--st-offcanvas-border-color);
	transform: translateY(100%);
}

.offcanvas.showing,
.offcanvas.show:not(.hiding) {
	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: var(--st-black);
}

.offcanvas-backdrop.fade {
	opacity: 0;
}

.offcanvas-backdrop.show {
	opacity: 0.5;
}

.offcanvas-header {
	display: flex;
	align-items: center;
	padding: var(--st-offcanvas-padding-y) var(--st-offcanvas-padding-x);
}

.offcanvas-header .btn-close {
	padding: calc(var(--st-offcanvas-padding-y) * 0.5) calc(var(--st-offcanvas-padding-x) * 0.5);
	margin: calc(-0.5 * var(--st-offcanvas-padding-y)) calc(-0.5 * var(--st-offcanvas-padding-x)) calc(-0.5 * var(--st-offcanvas-padding-y)) auto;
}

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Sidebar ]
 * ----------------------------------------------------------------------------
 */

.sidebar {
	--st-sidebar-padding: var(--st-spacer);
	--st-sidebar-color: hsla(var(--st-emphasis-color-hsl), 0.65);
	--st-sidebar-hover-color: hsla(var(--st-emphasis-color-hsl), 0.8);
	--st-sidebar-disabled-color: hsla(var(--st-emphasis-color-hsl), 0.3);
	--st-sidebar-active-color: var(--st-link-color);
	--st-sidebar-bg: var(--st-content-bg);
	--st-sidebar-border-width: var(--st-border-width);
	--st-sidebar-border-color: var(--st-content-border-color);
	--st-sidebar-border-radius: 0;
	--st-sidebar-brand-padding-y: 0;
	--st-sidebar-brand-margin-end: 1rem;
	--st-sidebar-brand-font-size: calc(var(--st-font-size-base) + 0.25rem);
	--st-sidebar-brand-color: hsla(var(--st-emphasis-color-hsl), 0.85);
	--st-sidebar-brand-hover-color: var(--st-sidebar-brand-color);
	--st-sidebar-item-padding-x: 0;
	--st-sidebar-item-padding-y: 0.375rem;
	--st-sidebar-header-font-size: var(--st-font-size-base);
	--st-sidebar-header-font-weight: var(--st-font-weight-normal);
	--st-sidebar-divider-bg: var(--st-border-color-translucent);
	--st-sidebar-divider-margin-y: 0.5rem;
	position: fixed;
	top: 0;
	left: 0;
	margin: var(--st-sidebar-margin);
	width: var(--st-sidebar-width);
	height: var(--st-sidebar-height);
	display: flex;
	flex-direction: column;
	background-color: var(--st-sidebar-bg) !important;
	border-right: var(--st-sidebar-border-width) solid var(--st-sidebar-border-color) !important;
	border-radius: var(--st-sidebar-border-radius);
	outline: 0;
}

@media (min-width: 576px) {
	body:has(> .sidebar.offcanvas-sm) {
		padding-left: var(--st-padding-sbwidth);
	}

	.ps-sm-sbwidth {
		padding-left: var(--st-padding-sbwidth) !important;
	}
}

@media (min-width: 768px) {
	body:has(> .sidebar.offcanvas-md) {
		padding-left: var(--st-padding-sbwidth);
	}
	
	.ps-md-sbwidth {
		padding-left: var(--st-padding-sbwidth) !important;
	}
}

@media (min-width: 992px) {
	body:has(> .sidebar.offcanvas-lg) {
		padding-left: var(--st-padding-sbwidth);
	}
	
	.ps-lg-sbwidth {
		padding-left: var(--st-padding-sbwidth) !important;
	}
}

@media (min-width: 1200px) {
	body:has(> .sidebar.offcanvas-xl) {
		padding-left: var(--st-padding-sbwidth);
	}
	
	.ps-xl-sbwidth {
		padding-left: var(--st-padding-sbwidth) !important;
	}
}

@media (min-width: 1400px) {
	body:has(> .sidebar.offcanvas-xxl) {
		padding-left: var(--st-padding-sbwidth);
	}
	
	.ps-xxl-sbwidth {
		padding-left: var(--st-padding-sbwidth) !important;
	}
}

.sidebar .offcanvas-header {
	display: flex;
}

.sidebar .offcanvas-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: var(--st-sidebar-padding);
	overflow-y: auto;
}

.sidebar-brand {
	padding-top: var(--st-sidebar-brand-padding-y);
	padding-bottom: var(--st-sidebar-brand-padding-y);
	margin-right: var(--st-sidebar-brand-margin-end);
	font-size: var(--st-sidebar-brand-font-size);
	color: var(--st-sidebar-brand-color);
	text-decoration: none;
	white-space: nowrap;
}

.sidebar-brand:hover,
.sidebar-brand:focus {
	color: var(--st-sidebar-brand-hover-color);
}

.sidebar-nav {
	--st-nav-link-padding-x: var(--st-sidebar-item-padding-x);
	--st-nav-link-padding-y: var(--st-sidebar-item-padding-y);
	--st-nav-link-font-weight: ;
	--st-nav-link-color: var(--st-sidebar-color);
	--st-nav-link-hover-color: var(--st-sidebar-hover-color);
	--st-nav-link-disabled-color: var(--st-sidebar-disabled-color);
	display: flex;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.sidebar-nav .nav-link.active,
.sidebar-nav .nav-link.show {
	color: var(--st-sidebar-active-color);
	-webkit-font-smoothing: auto;
	-moz-osx-font-smoothing: auto;
}

.sidebar-nav-pills {
	--st-nav-link-padding-x: 0.5rem;
    --st-nav-link-padding-y: 0.5rem;
    --st-nav-link-font-weight: ;
    --st-nav-link-color: var(--st-link-color);
    --st-nav-link-hover-color: var(--st-link-hover-color);
    --st-nav-link-disabled-color: var(--st-tertiary-color);
    --st-nav-link-webkit-font-smoothing: auto;
    --st-nav-link-moz-osx-font-smoothing: auto;

	--st-nav-link-color: var(--st-body-color);
	--st-nav-link-hover-color: var(--st-secondary-color);
	--st-nav-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
	--st-nav-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
	--st-nav-pills-border-radius: var(--st-border-radius);
	--st-nav-pills-link-active-color: var(--st-primary-foreground);
	--st-nav-pills-link-active-bg: var(--st-primary);

    display: flex;
	flex-direction: column;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.sidebar-nav-pills, .nav-underline {
    --st-nav-link-color: var(--st-body-color);
    --st-nav-link-hover-color: var(--st-secondary-color);
    --st-nav-link-webkit-font-smoothing: var(--st-body-webkit-font-smoothing);
    --st-nav-link-moz-osx-font-smoothing: var(--st-body-moz-osx-font-smoothing);
}

.sidebar-nav-pills .nav-link.active,
.sidebar-nav-pills .show>.nav-link {
    color: var(--st-nav-pills-link-active-color);
    background-color: var(--st-nav-pills-link-active-bg);
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

.sidebar-nav-pills .nav-link {
    border-radius: var(--st-nav-pills-border-radius);
}

.sidebar-header {
	display: block;
	padding: var(--st-sidebar-item-padding-y) 0;
	margin-bottom: 0;
	font-size: var(--st-sidebar-header-font-size);
	font-weight: var(--st-sidebar-header-font-weight);
}

.sidebar-divider {
	height: 0;
	margin: var(--st-sidebar-divider-margin-y) 0;
	overflow: hidden;
	border-top: var(--st-border-width) solid var(--st-sidebar-divider-bg);
	opacity: 1;
}

/**
 * ----------------------------------------------------------------------------
 * [ Placeholders ]
 * ----------------------------------------------------------------------------
 */

.placeholder {
	display: inline-block;
	min-height: 1em;
	vertical-align: middle;
	cursor: wait;
	background-color: currentcolor;
	opacity: 0.5;
}

.placeholder.btn::before {
	display: inline-block;
	content: "";
}

.placeholder-xs {
	min-height: 0.6em;
}

.placeholder-sm {
	min-height: 0.8em;
}

.placeholder-lg {
	min-height: 1.2em;
}

.placeholder-glow .placeholder {
	animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
	50% {
		opacity: 0.2;
	}
}

.placeholder-wave {
	-webkit-mask-image: linear-gradient(
		130deg,
		var(--st-black) 55%,
		hsla(var(--st-black-hsl), 0.65) 75%,
		var(--st-black) 95%
	);
	mask-image: linear-gradient(
		130deg,
		var(--st-black) 55%,
		hsla(var(--st-black-hsl), 0.65) 75%,
		var(--st-black) 95%
	);
	-webkit-mask-size: 200% 100%;
	mask-size: 200% 100%;
	animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
	100% {
		-webkit-mask-position: -200% 0%;
		mask-position: -200% 0%;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Clearfix ]
 * ----------------------------------------------------------------------------
 */

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

/**
 * ----------------------------------------------------------------------------
 * [ Color and background ]
 * ----------------------------------------------------------------------------
 */

.text-bg-primary {
	--st-color-hsl: var(--st-primary-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-primary-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-secondary {
	--st-color-hsl: var(--st-secondary-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-secondary-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-success {
	--st-color-hsl: var(--st-success-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-success-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-info {
	--st-color-hsl: var(--st-info-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-info-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-warning {
	--st-color-hsl: var(--st-warning-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-warning-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-danger {
	--st-color-hsl: var(--st-danger-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-danger-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-light {
	--st-color-hsl: var(--st-light-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-light-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

.text-bg-dark {
	--st-color-hsl: var(--st-dark-foreground-hsl);
	color: hsla(var(--st-color-hsl), var(--st-text-opacity, 1)) !important;
	background-color: hsla(var(--st-dark-hsl), var(--st-bg-opacity, 1)) !important;
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Colored links ]
 * ----------------------------------------------------------------------------
 */

.link-primary {
	color: hsla(var(--st-primary-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-primary-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-primary-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-primary:hover,
.link-primary:focus {
	color: hsla(var(--st-primary-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-primary-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-primary-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-secondary {
	color: hsla(var(--st-secondary-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-secondary-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-secondary-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-secondary:hover,
.link-secondary:focus {
	color: hsla(var(--st-secondary-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-secondary-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-secondary-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-success {
	color: hsla(var(--st-success-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-success-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-success-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-success:hover,
.link-success:focus {
	color: hsla(var(--st-success-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-success-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-success-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-info {
	color: hsla(var(--st-info-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-info-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-info-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-info:hover,
.link-info:focus {
	color: hsla(var(--st-info-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-info-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-info-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-warning {
	color: hsla(var(--st-warning-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-warning-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-warning-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-warning:hover,
.link-warning:focus {
	color: hsla(var(--st-warning-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-warning-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-warning-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-danger {
	color: hsla(var(--st-danger-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-danger-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-danger-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-danger:hover,
.link-danger:focus {
	color: hsla(var(--st-danger-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-danger-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-danger-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-light {
	color: hsla(var(--st-light-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-light-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-light-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-light:hover,
.link-light:focus {
	color: hsla(var(--st-light-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-light-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-light-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-dark {
	color: hsla(var(--st-dark-text-emphasis-hsl, var(--st-link-opacity, 1))) !important;
	-webkit-text-decoration-color: hsla(var(--st-dark-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-dark-text-emphasis-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-dark:hover,
.link-dark:focus {
	color: hsla(var(--st-dark-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-dark-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-dark-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
	color: hsla(var(--st-emphasis-color-hsl), var(--st-link-opacity, 1)) !important;
	-webkit-text-decoration-color: hsla(var(--st-emphasis-color-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-emphasis-color-hsl), var(--st-link-underline-opacity, 1)) !important;
}

.link-body-emphasis:hover,
.link-body-emphasis:focus {
	color: hsla(var(--st-emphasis-color-hsl), var(--st-link-opacity, 0.75)) !important;
	-webkit-text-decoration-color: hsla(var(--st-emphasis-color-hsl), var(--st-link-underline-opacity, 0.75)) !important;
	text-decoration-color: hsla(var(--st-emphasis-color-hsl), var(--st-link-underline-opacity, 0.75)) !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Focus ring ]
 * ----------------------------------------------------------------------------
 */

.focus-ring:focus {
	outline: 0 !important;
	box-shadow: var(--st-focus-ring-x, 0) var(--st-focus-ring-y, 0) var(--st-focus-ring-blur, 0) var(--st-focus-ring-width) var(--st-focus-ring-color) !important;
}

.focus-ring-primary {
	--st-focus-ring-color: hsla(var(--st-primary-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-secondary {
	--st-focus-ring-color: hsla(var(--st-secondary-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-success {
	--st-focus-ring-color: hsla(var(--st-success-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-info {
	--st-focus-ring-color: hsla(var(--st-info-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-warning {
	--st-focus-ring-color: hsla(var(--st-warning-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-danger {
	--st-focus-ring-color: hsla(var(--st-danger-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-light {
	--st-focus-ring-color: hsla(var(--st-light-hsl), var(--st-focus-ring-opacity));
}

.focus-ring-dark {
	--st-focus-ring-color: hsla(var(--st-dark-hsl), var(--st-focus-ring-opacity));
}

/**
 * ----------------------------------------------------------------------------
 * [ Icon link ]
 * ----------------------------------------------------------------------------
 */

.icon-link {
  	display: inline-flex;
  	gap: 0.375rem;
  	align-items: center;
  	-webkit-text-decoration-color: hsla(var(--st-link-color-hsl), var(--st-link-opacity, 1));
  	text-decoration-color: hsla(var(--st-link-color-hsl), var(--st-link-opacity, 1));
  	text-underline-offset: var(--st-link-decoration-offset);
  	-webkit-backface-visibility: hidden;
  	backface-visibility: hidden;
}

.icon-link > .bi {
  	flex-shrink: 0;
  	width: 1em;
  	height: 1em;
  	fill: currentcolor;
  	transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
  	.icon-link > .bi {
    	transition: none;
  	}
}

.icon-link-hover:hover > .bi,
.icon-link-hover:focus-visible > .bi {
  	transform: var(--st-icon-link-transform, translate3d(0.25em, 0, 0));
}

/**
 * ----------------------------------------------------------------------------
 * [ Position ]
 * ----------------------------------------------------------------------------
 */

.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 ]
 * ----------------------------------------------------------------------------
 */

.ratio {
	position: relative;
	width: 100%;
}

.ratio::before {
	display: block;
	padding-top: var(--st-aspect-ratio);
	content: "";
}

.ratio > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ratio-1x1 {
	--st-aspect-ratio: 100%;
}

.ratio-4x3 {
	--st-aspect-ratio: 75%;
}

.ratio-16x9 {
	--st-aspect-ratio: 56.25%;
}

.ratio-21x9 {
	--st-aspect-ratio: 42.8571428571%;
}

/**
 * ----------------------------------------------------------------------------
 * [ Stacks ]
 * ----------------------------------------------------------------------------
 */

.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 ]
 * ----------------------------------------------------------------------------
 */

.stretched-link::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	content: "";
}

/**
 * ----------------------------------------------------------------------------
 * [ Text truncation ]
 * ----------------------------------------------------------------------------
 */

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/**
 * ----------------------------------------------------------------------------
 * [ Vertical rule ]
 * ----------------------------------------------------------------------------
 */

.vr {
	display: inline-block;
	align-self: stretch;
	width: var(--st-border-width);
	min-height: 1em;
	background-color: currentcolor;
	opacity: 0.25;
}

/**
 * ----------------------------------------------------------------------------
 * [ Visually hidden ]
 * ----------------------------------------------------------------------------
 */

.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;
}

/**
 * ----------------------------------------------------------------------------
 * [ Background utilities ]
 * ----------------------------------------------------------------------------
 */

.bg-primary {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-primary-hsl), var(--st-bg-opacity)) !important;
}

.bg-secondary {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-secondary-hsl), var(--st-bg-opacity)) !important;
}

.bg-success {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-success-hsl), var(--st-bg-opacity)) !important;
}

.bg-info {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-info-hsl), var(--st-bg-opacity)) !important;
}

.bg-warning {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-warning-hsl), var(--st-bg-opacity)) !important;
}

.bg-danger {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-danger-hsl), var(--st-bg-opacity)) !important;
}

.bg-light {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-light-hsl), var(--st-bg-opacity)) !important;
}

.bg-dark {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-dark-hsl), var(--st-bg-opacity)) !important;
}

.bg-black {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-black-hsl), var(--st-bg-opacity)) !important;
}

.bg-white {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-white-hsl), var(--st-bg-opacity)) !important;
}

.bg-body {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-body-bg-hsl), var(--st-bg-opacity)) !important;
}

.bg-transparent {
	--st-bg-opacity: 1;
	background-color: transparent !important;
}

.bg-body-secondary {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-secondary-bg-hsl), var(--st-bg-opacity)) !important;
}

.bg-body-tertiary {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-tertiary-bg-hsl), var(--st-bg-opacity)) !important;
}

.bg-body-emphasis {
	--st-bg-opacity: 1;
	background-color: hsla(var(--st-emphasis-bg-hsl), var(--st-bg-opacity)) !important;
}

.bg-opacity-10 {
	--st-bg-opacity: 0.1;
}

.bg-opacity-25 {
	--st-bg-opacity: 0.25;
}

.bg-opacity-50 {
	--st-bg-opacity: 0.5;
}

.bg-opacity-75 {
	--st-bg-opacity: 0.75;
}

.bg-opacity-100 {
	--st-bg-opacity: 1;
}

.bg-primary-subtle {
	background-color: var(--st-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
	background-color: var(--st-secondary-bg-subtle) !important;
}

.bg-success-subtle {
	background-color: var(--st-success-bg-subtle) !important;
}

.bg-info-subtle {
	background-color: var(--st-info-bg-subtle) !important;
}

.bg-warning-subtle {
	background-color: var(--st-warning-bg-subtle) !important;
}

.bg-danger-subtle {
	background-color: var(--st-danger-bg-subtle) !important;
}

.bg-light-subtle {
	background-color: var(--st-light-bg-subtle) !important;
}

.bg-dark-subtle {
	background-color: var(--st-dark-bg-subtle) !important;
}

.bg-gradient {
	background-image: var(--st-gradient) !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Border utilities ]
 * ----------------------------------------------------------------------------
 */

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

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

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

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

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

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

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

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

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

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

.border-primary {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-primary-hsl), var(--st-border-opacity)) !important;
}

.border-secondary {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-secondary-hsl), var(--st-border-opacity)) !important;
}

.border-success {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-success-hsl), var(--st-border-opacity)) !important;
}

.border-info {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-info-hsl), var(--st-border-opacity)) !important;
}

.border-warning {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-warning-hsl), var(--st-border-opacity)) !important;
}

.border-danger {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-danger-hsl), var(--st-border-opacity)) !important;
}

.border-light {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-light-hsl), var(--st-border-opacity)) !important;
}

.border-dark {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-dark-hsl), var(--st-border-opacity)) !important;
}

.border-black {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-black-hsl), var(--st-border-opacity)) !important;
}

.border-white {
	--st-border-opacity: 1;
	border-color: hsla(var(--st-white-hsl), var(--st-border-opacity)) !important;
}

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

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

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

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

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

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

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

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

.border-1 {
	border-width: var(--st-border-width-1) !important;
}

.border-2 {
	border-width: var(--st-border-width-2) !important;
}

.border-3 {
	border-width: var(--st-border-width-3) !important;
}

.border-4 {
	border-width: var(--st-border-width-4) !important;
}

.border-5 {
	border-width: var(--st-border-width-5) !important;
}

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

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

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

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

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

.rounded {
	border-radius: var(--st-border-radius) !important;
}

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

.rounded-1 {
	border-radius: var(--st-border-radius-sm) !important;
}

.rounded-2 {
	border-radius: var(--st-border-radius) !important;
}

.rounded-3 {
	border-radius: var(--st-border-radius-lg) !important;
}

.rounded-4 {
	border-radius: var(--st-border-radius-xl) !important;
}

.rounded-5 {
	border-radius: var(--st-border-radius-xxl) !important;
}

.rounded-circle {
	border-radius: 50% !important;
}

.rounded-pill {
	border-radius: var(--st-border-radius-pill) !important;
}

.rounded-top {
	border-top-left-radius: var(--st-border-radius) !important;
	border-top-right-radius: var(--st-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(--st-border-radius-sm) !important;
	border-top-right-radius: var(--st-border-radius-sm) !important;
}

.rounded-top-2 {
	border-top-left-radius: var(--st-border-radius) !important;
	border-top-right-radius: var(--st-border-radius) !important;
}

.rounded-top-3 {
	border-top-left-radius: var(--st-border-radius-lg) !important;
	border-top-right-radius: var(--st-border-radius-lg) !important;
}

.rounded-top-4 {
	border-top-left-radius: var(--st-border-radius-xl) !important;
	border-top-right-radius: var(--st-border-radius-xl) !important;
}

.rounded-top-5 {
	border-top-left-radius: var(--st-border-radius-xxl) !important;
	border-top-right-radius: var(--st-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(--st-border-radius-pill) !important;
	border-top-right-radius: var(--st-border-radius-pill) !important;
}

.rounded-end {
	border-top-right-radius: var(--st-border-radius) !important;
	border-bottom-right-radius: var(--st-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(--st-border-radius-sm) !important;
	border-bottom-right-radius: var(--st-border-radius-sm) !important;
}

.rounded-end-2 {
	border-top-right-radius: var(--st-border-radius) !important;
	border-bottom-right-radius: var(--st-border-radius) !important;
}

.rounded-end-3 {
	border-top-right-radius: var(--st-border-radius-lg) !important;
	border-bottom-right-radius: var(--st-border-radius-lg) !important;
}

.rounded-end-4 {
	border-top-right-radius: var(--st-border-radius-xl) !important;
	border-bottom-right-radius: var(--st-border-radius-xl) !important;
}

.rounded-end-5 {
	border-top-right-radius: var(--st-border-radius-xxl) !important;
	border-bottom-right-radius: var(--st-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(--st-border-radius-pill) !important;
	border-bottom-right-radius: var(--st-border-radius-pill) !important;
}

.rounded-bottom {
	border-bottom-right-radius: var(--st-border-radius) !important;
	border-bottom-left-radius: var(--st-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(--st-border-radius-sm) !important;
	border-bottom-left-radius: var(--st-border-radius-sm) !important;
}

.rounded-bottom-2 {
	border-bottom-right-radius: var(--st-border-radius) !important;
	border-bottom-left-radius: var(--st-border-radius) !important;
}

.rounded-bottom-3 {
	border-bottom-right-radius: var(--st-border-radius-lg) !important;
	border-bottom-left-radius: var(--st-border-radius-lg) !important;
}

.rounded-bottom-4 {
	border-bottom-right-radius: var(--st-border-radius-xl) !important;
	border-bottom-left-radius: var(--st-border-radius-xl) !important;
}

.rounded-bottom-5 {
	border-bottom-right-radius: var(--st-border-radius-xxl) !important;
	border-bottom-left-radius: var(--st-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(--st-border-radius-pill) !important;
	border-bottom-left-radius: var(--st-border-radius-pill) !important;
}

.rounded-start {
	border-bottom-left-radius: var(--st-border-radius) !important;
	border-top-left-radius: var(--st-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(--st-border-radius-sm) !important;
	border-top-left-radius: var(--st-border-radius-sm) !important;
}

.rounded-start-2 {
	border-bottom-left-radius: var(--st-border-radius) !important;
	border-top-left-radius: var(--st-border-radius) !important;
}

.rounded-start-3 {
	border-bottom-left-radius: var(--st-border-radius-lg) !important;
	border-top-left-radius: var(--st-border-radius-lg) !important;
}

.rounded-start-4 {
	border-bottom-left-radius: var(--st-border-radius-xl) !important;
	border-top-left-radius: var(--st-border-radius-xl) !important;
}

.rounded-start-5 {
	border-bottom-left-radius: var(--st-border-radius-xxl) !important;
	border-top-left-radius: var(--st-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(--st-border-radius-pill) !important;
	border-top-left-radius: var(--st-border-radius-pill) !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Box shadow utilities ]
 * ----------------------------------------------------------------------------
 */

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Color utilities ]
 * ----------------------------------------------------------------------------
 */

.text-primary {
	--st-text-opacity: 1;
	color: hsla(var(--st-primary-hsl), var(--st-text-opacity)) !important;
}

.text-secondary {
	--st-text-opacity: 1;
	color: hsla(var(--st-secondary-hsl), var(--st-text-opacity)) !important;
}

.text-success {
	--st-text-opacity: 1;
	color: hsla(var(--st-success-hsl), var(--st-text-opacity)) !important;
}

.text-info {
	--st-text-opacity: 1;
	color: hsla(var(--st-info-hsl), var(--st-text-opacity)) !important;
}

.text-warning {
	--st-text-opacity: 1;
	color: hsla(var(--st-warning-hsl), var(--st-text-opacity)) !important;
}

.text-danger {
	--st-text-opacity: 1;
	color: hsla(var(--st-danger-hsl), var(--st-text-opacity)) !important;
}

.text-light {
	--st-text-opacity: 1;
	color: hsla(var(--st-light-hsl), var(--st-text-opacity)) !important;
}

.text-dark {
	--st-text-opacity: 1;
	color: hsla(var(--st-dark-hsl), var(--st-text-opacity)) !important;
}

.text-black {
	--st-text-opacity: 1;
	color: hsla(var(--st-black-hsl), var(--st-text-opacity)) !important;
}

.text-white {
	--st-text-opacity: 1;
	color: hsla(var(--st-white-hsl), var(--st-text-opacity)) !important;
}

.text-body {
	--st-text-opacity: 1;
	color: hsla(var(--st-body-color-hsl), var(--st-text-opacity)) !important;
}

.text-muted {
	--st-text-opacity: 1;
	color: var(--st-secondary-color) !important;
}

.text-black-50 {
	--st-text-opacity: 1;
	color: hsla(var(--st-black-hsl), 0.5) !important;
}

.text-white-50 {
	--st-text-opacity: 1;
	color: hsla(var(--st-white-hsl), 0.5) !important;
}

.text-body-secondary {
	--st-text-opacity: 1;
	color: var(--st-secondary-color) !important;
}

.text-body-tertiary {
	--st-text-opacity: 1;
	color: var(--st-tertiary-color) !important;
}

.text-body-emphasis {
	--st-text-opacity: 1;
	color: var(--st-emphasis-color) !important;
}

.text-reset {
	--st-text-opacity: 1;
	color: inherit !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Display utilities ]
 * ----------------------------------------------------------------------------
 */

.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;
}

@media (min-width: 576px) {
	.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;
	}
}

@media (min-width: 768px) {
	.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;
	}
}

@media (min-width: 992px) {
	.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;
	}
}

@media (min-width: 1200px) {
	.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;
	}
}

@media (min-width: 1400px) {
	.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;
	}
}

@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-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;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Flex utilities ]
 * ----------------------------------------------------------------------------
 */

.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;
}

@media (min-width: 576px) {
	.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;
	}
}

@media (min-width: 768px) {
	.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;
	}
}

@media (min-width: 992px) {
	.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;
	}
}

@media (min-width: 1200px) {
	.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;
	}
}

@media (min-width: 1400px) {
	.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;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Float utilities ]
 * ----------------------------------------------------------------------------
 */

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

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

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

@media (min-width: 576px) {
	.float-sm-start {
		float: left !important;
	}

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

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

@media (min-width: 768px) {
	.float-md-start {
		float: left !important;
	}

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

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

@media (min-width: 992px) {
	.float-lg-start {
		float: left !important;
	}

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

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

@media (min-width: 1200px) {
	.float-xl-start {
		float: left !important;
	}

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

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

@media (min-width: 1400px) {
	.float-xxl-start {
		float: left !important;
	}

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

/**
 * ----------------------------------------------------------------------------
 * [ Interaction utilities ]
 * ----------------------------------------------------------------------------
 */

.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;
	user-select: auto !important;
}

.user-select-none {
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	user-select: none !important;
}

.pe-none {
	pointer-events: none !important;
}

.pe-auto {
	pointer-events: auto !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Link utilities ]
 * ----------------------------------------------------------------------------
 */

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

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

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

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

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

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

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

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

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

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

.link-offset-1 {
	text-underline-offset: var(--st-relative-font-size-6xs) !important;
}

.link-offset-1-hover:hover {
	text-underline-offset: var(--st-relative-font-size-6xs) !important;
}

.link-offset-2 {
	text-underline-offset: var(--st-relative-font-size-4xs) !important;
}

.link-offset-2-hover:hover {
	text-underline-offset: var(--st-relative-font-size-4xs) !important;
}

.link-offset-3 {
	text-underline-offset: var(--st-relative-font-size-3xs) !important;
}

.link-offset-3-hover:hover {
	text-underline-offset: var(--st-relative-font-size-3xs) !important;
}

.link-underline-primary {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-primary-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-primary-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-secondary {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-secondary-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-secondary-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-success {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-success-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-success-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-info {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-info-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-info-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-warning {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-warning-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-warning-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-danger {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-danger-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-danger-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-light {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-light-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-light-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline-dark {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-dark-hsl), var(--st-link-underline-opacity)) !important;
	text-decoration-color: hsla(var(--st-dark-hsl), var(--st-link-underline-opacity)) !important;
}

.link-underline {
	--st-link-underline-opacity: 1;
	-webkit-text-decoration-color: hsla(var(--st-link-color-hsl), var(--st-link-underline-opacity, 1)) !important;
	text-decoration-color: hsla(var(--st-link-color-hsl), var(--st-link-underline-opacity, 1)) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Object fit utilities ]
 * ----------------------------------------------------------------------------
 */

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

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

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

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

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


@media (min-width: 576px) {
	.object-fit-sm-contain {
		object-fit: contain !important;
	}

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

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

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

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

@media (min-width: 768px) {
	.object-fit-md-contain {
		object-fit: contain !important;
	}

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

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

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

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

@media (min-width: 992px) {
	.object-fit-lg-contain {
		object-fit: contain !important;
	}

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

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

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

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

@media (min-width: 1200px) {
	.object-fit-xl-contain {
		object-fit: contain !important;
	}

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

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

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

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

@media (min-width: 1400px) {
	.object-fit-xxl-contain {
		object-fit: contain !important;
	}

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Opacity utilities ]
 * ----------------------------------------------------------------------------
 */

.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 utilities ]
 * ----------------------------------------------------------------------------
 */

.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;
}

@media (min-width: 576px) {
	.overflow-sm-auto {
		overflow: auto !important;
	}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
	.overflow-md-auto {
		overflow: auto !important;
	}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
	.overflow-lg-auto {
		overflow: auto !important;
	}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
	.overflow-xl-auto {
		overflow: auto !important;
	}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1400px) {
	.overflow-xxl-auto {
		overflow: auto !important;
	}

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

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

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

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

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

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

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

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Position utilities ]
 * ----------------------------------------------------------------------------
 */

.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 {
	transform: translate(-50%, -50%) !important;
}

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

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

@media (min-width: 576px) {
	.position-sm-static {
		position: static !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
	.position-md-static {
		position: static !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
	.position-lg-static {
		position: static !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
	.position-xl-static {
		position: static !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1400px) {
	.position-xxl-static {
		position: static !important;
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Sizing utilities ]
 * ----------------------------------------------------------------------------
 */

.specific-w-25 {
	width: 1.5625rem !important;
}

.specific-w-50 {
	width: 3.125rem !important;
}

.specific-w-75 {
	width: 4.6875rem !important;
}

.specific-w-100 {
	width: 6.25rem !important;
}

.specific-w-150 {
	width: 9.375rem !important;
}

.specific-w-200 {
	width: 12.5rem !important;
}

.specific-w-250 {
	width: 15.625rem !important;
}

.specific-w-300 {
	width: 18.75rem !important;
}

.specific-w-350 {
	width: 21.875rem !important;
}

.specific-w-400 {
	width: 25rem !important;
}

.specific-w-450 {
	width: 28.125rem !important;
}

.specific-w-500 {
	width: 31.25rem !important;
}

.specific-w-550 {
	width: 34.375rem !important;
}

.specific-w-600 {
	width: 37.5rem !important;
}

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

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

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

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

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

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

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

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

.specific-h-25 {
	height: 1.5625rem !important;
}

.specific-h-50 {
	height: 3.125rem !important;
}

.specific-h-75 {
	height: 4.6875rem !important;
}

.specific-h-100 {
	height: 6.25rem !important;
}

.specific-h-150 {
	height: 9.375rem !important;
}

.specific-h-200 {
	height: 12.5rem !important;
}

.specific-h-250 {
	height: 15.625rem !important;
}

.specific-h-300 {
	height: 18.75rem !important;
}

.specific-h-350 {
	height: 21.875rem !important;
}

.specific-h-400 {
	height: 25rem !important;
}

.specific-h-450 {
	height: 28.125rem !important;
}

.specific-h-500 {
	height: 31.25rem !important;
}

.specific-h-550 {
	height: 34.375rem !important;
}

.specific-h-600 {
	height: 37.5rem !important;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
	.specific-w-sm-25 {
		width: 1.5625rem !important;
	}

	.specific-w-sm-50 {
		width: 3.125rem !important;
	}

	.specific-w-sm-75 {
		width: 4.6875rem !important;
	}

	.specific-w-sm-100 {
		width: 6.25rem !important;
	}

	.specific-w-sm-150 {
		width: 9.375rem !important;
	}

	.specific-w-sm-200 {
		width: 12.5rem !important;
	}

	.specific-w-sm-250 {
		width: 15.625rem !important;
	}

	.specific-w-sm-300 {
		width: 18.75rem !important;
	}

	.specific-w-sm-350 {
		width: 21.875rem !important;
	}

	.specific-w-sm-400 {
		width: 25rem !important;
	}

	.specific-w-sm-450 {
		width: 28.125rem !important;
	}

	.specific-w-sm-500 {
		width: 31.25rem !important;
	}

	.specific-w-sm-550 {
		width: 34.375rem !important;
	}

	.specific-w-sm-600 {
		width: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

	.specific-h-sm-25 {
		height: 1.5625rem !important;
	}

	.specific-h-sm-50 {
		height: 3.125rem !important;
	}

	.specific-h-sm-75 {
		height: 4.6875rem !important;
	}

	.specific-h-sm-100 {
		height: 6.25rem !important;
	}

	.specific-h-sm-150 {
		height: 9.375rem !important;
	}

	.specific-h-sm-200 {
		height: 12.5rem !important;
	}

	.specific-h-sm-250 {
		height: 15.625rem !important;
	}

	.specific-h-sm-300 {
		height: 18.75rem !important;
	}

	.specific-h-sm-350 {
		height: 21.875rem !important;
	}

	.specific-h-sm-400 {
		height: 25rem !important;
	}

	.specific-h-sm-450 {
		height: 28.125rem !important;
	}

	.specific-h-sm-500 {
		height: 31.25rem !important;
	}

	.specific-h-sm-550 {
		height: 34.375rem !important;
	}

	.specific-h-sm-600 {
		height: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
	.specific-w-md-25 {
		width: 1.5625rem !important;
	}

	.specific-w-md-50 {
		width: 3.125rem !important;
	}

	.specific-w-md-75 {
		width: 4.6875rem !important;
	}

	.specific-w-md-100 {
		width: 6.25rem !important;
	}

	.specific-w-md-150 {
		width: 9.375rem !important;
	}

	.specific-w-md-200 {
		width: 12.5rem !important;
	}

	.specific-w-md-250 {
		width: 15.625rem !important;
	}

	.specific-w-md-300 {
		width: 18.75rem !important;
	}

	.specific-w-md-350 {
		width: 21.875rem !important;
	}

	.specific-w-md-400 {
		width: 25rem !important;
	}

	.specific-w-md-450 {
		width: 28.125rem !important;
	}

	.specific-w-md-500 {
		width: 31.25rem !important;
	}

	.specific-w-md-550 {
		width: 34.375rem !important;
	}

	.specific-w-md-600 {
		width: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

	.specific-h-md-25 {
		height: 1.5625rem !important;
	}

	.specific-h-md-50 {
		height: 3.125rem !important;
	}

	.specific-h-md-75 {
		height: 4.6875rem !important;
	}

	.specific-h-md-100 {
		height: 6.25rem !important;
	}

	.specific-h-md-150 {
		height: 9.375rem !important;
	}

	.specific-h-md-200 {
		height: 12.5rem !important;
	}

	.specific-h-md-250 {
		height: 15.625rem !important;
	}

	.specific-h-md-300 {
		height: 18.75rem !important;
	}

	.specific-h-md-350 {
		height: 21.875rem !important;
	}

	.specific-h-md-400 {
		height: 25rem !important;
	}

	.specific-h-md-450 {
		height: 28.125rem !important;
	}

	.specific-h-md-500 {
		height: 31.25rem !important;
	}

	.specific-h-md-550 {
		height: 34.375rem !important;
	}

	.specific-h-md-600 {
		height: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
	.specific-w-lg-25 {
		width: 1.5625rem !important;
	}

	.specific-w-lg-50 {
		width: 3.125rem !important;
	}

	.specific-w-lg-75 {
		width: 4.6875rem !important;
	}

	.specific-w-lg-100 {
		width: 6.25rem !important;
	}

	.specific-w-lg-150 {
		width: 9.375rem !important;
	}

	.specific-w-lg-200 {
		width: 12.5rem !important;
	}

	.specific-w-lg-250 {
		width: 15.625rem !important;
	}

	.specific-w-lg-300 {
		width: 18.75rem !important;
	}

	.specific-w-lg-350 {
		width: 21.875rem !important;
	}

	.specific-w-lg-400 {
		width: 25rem !important;
	}

	.specific-w-lg-450 {
		width: 28.125rem !important;
	}

	.specific-w-lg-500 {
		width: 31.25rem !important;
	}

	.specific-w-lg-550 {
		width: 34.375rem !important;
	}

	.specific-w-lg-600 {
		width: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

	.specific-h-lg-25 {
		height: 1.5625rem !important;
	}

	.specific-h-lg-50 {
		height: 3.125rem !important;
	}

	.specific-h-lg-75 {
		height: 4.6875rem !important;
	}

	.specific-h-lg-100 {
		height: 6.25rem !important;
	}

	.specific-h-lg-150 {
		height: 9.375rem !important;
	}

	.specific-h-lg-200 {
		height: 12.5rem !important;
	}

	.specific-h-lg-250 {
		height: 15.625rem !important;
	}

	.specific-h-lg-300 {
		height: 18.75rem !important;
	}

	.specific-h-lg-350 {
		height: 21.875rem !important;
	}

	.specific-h-lg-400 {
		height: 25rem !important;
	}

	.specific-h-lg-450 {
		height: 28.125rem !important;
	}

	.specific-h-lg-500 {
		height: 31.25rem !important;
	}

	.specific-h-lg-550 {
		height: 34.375rem !important;
	}

	.specific-h-lg-600 {
		height: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
	.specific-w-xl-25 {
		width: 1.5625rem !important;
	}

	.specific-w-xl-50 {
		width: 3.125rem !important;
	}

	.specific-w-xl-75 {
		width: 4.6875rem !important;
	}

	.specific-w-xl-100 {
		width: 6.25rem !important;
	}

	.specific-w-xl-150 {
		width: 9.375rem !important;
	}

	.specific-w-xl-200 {
		width: 12.5rem !important;
	}

	.specific-w-xl-250 {
		width: 15.625rem !important;
	}

	.specific-w-xl-300 {
		width: 18.75rem !important;
	}

	.specific-w-xl-350 {
		width: 21.875rem !important;
	}

	.specific-w-xl-400 {
		width: 25rem !important;
	}

	.specific-w-xl-450 {
		width: 28.125rem !important;
	}

	.specific-w-xl-500 {
		width: 31.25rem !important;
	}

	.specific-w-xl-550 {
		width: 34.375rem !important;
	}

	.specific-w-xl-600 {
		width: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

	.specific-h-xl-25 {
		height: 1.5625rem !important;
	}

	.specific-h-xl-50 {
		height: 3.125rem !important;
	}

	.specific-h-xl-75 {
		height: 4.6875rem !important;
	}

	.specific-h-xl-100 {
		height: 6.25rem !important;
	}

	.specific-h-xl-150 {
		height: 9.375rem !important;
	}

	.specific-h-xl-200 {
		height: 12.5rem !important;
	}

	.specific-h-xl-250 {
		height: 15.625rem !important;
	}

	.specific-h-xl-300 {
		height: 18.75rem !important;
	}

	.specific-h-xl-350 {
		height: 21.875rem !important;
	}

	.specific-h-xl-400 {
		height: 25rem !important;
	}

	.specific-h-xl-450 {
		height: 28.125rem !important;
	}

	.specific-h-xl-500 {
		height: 31.25rem !important;
	}

	.specific-h-xl-550 {
		height: 34.375rem !important;
	}

	.specific-h-xl-600 {
		height: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

@media (min-width: 1400px) {
	.specific-w-xxl-25 {
		width: 1.5625rem !important;
	}

	.specific-w-xxl-50 {
		width: 3.125rem !important;
	}

	.specific-w-xxl-75 {
		width: 4.6875rem !important;
	}

	.specific-w-xxl-100 {
		width: 6.25rem !important;
	}

	.specific-w-xxl-150 {
		width: 9.375rem !important;
	}

	.specific-w-xxl-200 {
		width: 12.5rem !important;
	}

	.specific-w-xxl-250 {
		width: 15.625rem !important;
	}

	.specific-w-xxl-300 {
		width: 18.75rem !important;
	}

	.specific-w-xxl-350 {
		width: 21.875rem !important;
	}

	.specific-w-xxl-400 {
		width: 25rem !important;
	}

	.specific-w-xxl-450 {
		width: 28.125rem !important;
	}

	.specific-w-xxl-500 {
		width: 31.25rem !important;
	}

	.specific-w-xxl-550 {
		width: 34.375rem !important;
	}

	.specific-w-xxl-600 {
		width: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

	.specific-h-xxl-25 {
		height: 1.5625rem !important;
	}

	.specific-h-xxl-50 {
		height: 3.125rem !important;
	}

	.specific-h-xxl-75 {
		height: 4.6875rem !important;
	}

	.specific-h-xxl-100 {
		height: 6.25rem !important;
	}

	.specific-h-xxl-150 {
		height: 9.375rem !important;
	}

	.specific-h-xxl-200 {
		height: 12.5rem !important;
	}

	.specific-h-xxl-250 {
		height: 15.625rem !important;
	}

	.specific-h-xxl-300 {
		height: 18.75rem !important;
	}

	.specific-h-xxl-350 {
		height: 21.875rem !important;
	}

	.specific-h-xxl-400 {
		height: 25rem !important;
	}

	.specific-h-xxl-450 {
		height: 28.125rem !important;
	}

	.specific-h-xxl-500 {
		height: 31.25rem !important;
	}

	.specific-h-xxl-550 {
		height: 34.375rem !important;
	}

	.specific-h-xxl-600 {
		height: 37.5rem !important;
	}

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

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

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

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

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

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

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

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

/**
 * ----------------------------------------------------------------------------
 * [ Spacing utilities ]
 * ----------------------------------------------------------------------------
 */

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

.m-1 {
	margin: var(--st-spacer-1) !important;
}

.m-2 {
	margin: var(--st-spacer-2) !important;
}

.m-3 {
	margin: var(--st-spacer-3) !important;
}

.m-4 {
	margin: var(--st-spacer-4) !important;
}

.m-5 {
	margin: var(--st-spacer-5) !important;
}

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

.m-n1 {
	margin: calc(-1 * var(--st-spacer-1)) !important;
}

.m-n2 {
	margin: calc(-1 * var(--st-spacer-2)) !important;
}

.m-n3 {
	margin: calc(-1 * var(--st-spacer-3)) !important;
}

.m-n4 {
	margin: calc(-1 * var(--st-spacer-4)) !important;
}

.m-n5 {
	margin: calc(-1 * var(--st-spacer-5)) !important;
}

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

.mx-1 {
	margin-right: var(--st-spacer-1) !important;
	margin-left: var(--st-spacer-1) !important;
}

.mx-2 {
	margin-right: var(--st-spacer-2) !important;
	margin-left: var(--st-spacer-2) !important;
}

.mx-3 {
	margin-right: var(--st-spacer-3) !important;
	margin-left: var(--st-spacer-3) !important;
}

.mx-4 {
	margin-right: var(--st-spacer-4) !important;
	margin-left: var(--st-spacer-4) !important;
}

.mx-5 {
	margin-right: var(--st-spacer-5) !important;
	margin-left: var(--st-spacer-5) !important;
}

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

.mx-n1 {
	margin-right: calc(-1 * var(--st-spacer-1)) !important;
	margin-left: calc(-1 * var(--st-spacer-1)) !important;
}

.mx-n2 {
	margin-right: calc(-1 * var(--st-spacer-2)) !important;
	margin-left: calc(-1 * var(--st-spacer-2)) !important;
}

.mx-n3 {
	margin-right: calc(-1 * var(--st-spacer-3)) !important;
	margin-left: calc(-1 * var(--st-spacer-3)) !important;
}

.mx-n4 {
	margin-right: calc(-1 * var(--st-spacer-4)) !important;
	margin-left: calc(-1 * var(--st-spacer-4)) !important;
}

.mx-n5 {
	margin-right: calc(-1 * var(--st-spacer-5)) !important;
	margin-left: calc(-1 * var(--st-spacer-5)) !important;
}

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

.my-1 {
	margin-top: var(--st-spacer-1) !important;
	margin-bottom: var(--st-spacer-1) !important;
}

.my-2 {
	margin-top: var(--st-spacer-2) !important;
	margin-bottom: var(--st-spacer-2) !important;
}

.my-3 {
	margin-top: var(--st-spacer-3) !important;
	margin-bottom: var(--st-spacer-3) !important;
}

.my-4 {
	margin-top: var(--st-spacer-4) !important;
	margin-bottom: var(--st-spacer-4) !important;
}

.my-5 {
	margin-top: var(--st-spacer-5) !important;
	margin-bottom: var(--st-spacer-5) !important;
}

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

.my-n1 {
	margin-top: calc(-1 * var(--st-spacer-1)) !important;
	margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
}

.my-n2 {
	margin-top: calc(-1 * var(--st-spacer-2)) !important;
	margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
}

.my-n3 {
	margin-top: calc(-1 * var(--st-spacer-3)) !important;
	margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
}

.my-n4 {
	margin-top: calc(-1 * var(--st-spacer-4)) !important;
	margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
}

.my-n5 {
	margin-top: calc(-1 * var(--st-spacer-5)) !important;
	margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
}

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

.mt-1 {
	margin-top: var(--st-spacer-1) !important;
}

.mt-2 {
	margin-top: var(--st-spacer-2) !important;
}

.mt-3 {
	margin-top: var(--st-spacer-3) !important;
}

.mt-4 {
	margin-top: var(--st-spacer-4) !important;
}

.mt-5 {
	margin-top: var(--st-spacer-5) !important;
}

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

.mt-n1 {
	margin-top: calc(-1 * var(--st-spacer-1)) !important;
}

.mt-n2 {
	margin-top: calc(-1 * var(--st-spacer-2)) !important;
}

.mt-n3 {
	margin-top: calc(-1 * var(--st-spacer-3)) !important;
}

.mt-n4 {
	margin-top: calc(-1 * var(--st-spacer-4)) !important;
}

.mt-n5 {
	margin-top: calc(-1 * var(--st-spacer-5)) !important;
}

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

.me-1 {
	margin-right: var(--st-spacer-1) !important;
}

.me-2 {
	margin-right: var(--st-spacer-2) !important;
}

.me-3 {
	margin-right: var(--st-spacer-3) !important;
}

.me-4 {
	margin-right: var(--st-spacer-4) !important;
}

.me-5 {
	margin-right: var(--st-spacer-5) !important;
}

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

.me-n1 {
	margin-right: calc(-1 * var(--st-spacer-1)) !important;
}

.me-n2 {
	margin-right: calc(-1 * var(--st-spacer-2)) !important;
}

.me-n3 {
	margin-right: calc(-1 * var(--st-spacer-3)) !important;
}

.me-n4 {
	margin-right: calc(-1 * var(--st-spacer-4)) !important;
}

.me-n5 {
	margin-right: calc(-1 * var(--st-spacer-5)) !important;
}

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

.mb-1 {
	margin-bottom: var(--st-spacer-1) !important;
}

.mb-2 {
	margin-bottom: var(--st-spacer-2) !important;
}

.mb-3 {
	margin-bottom: var(--st-spacer-3) !important;
}

.mb-4 {
	margin-bottom: var(--st-spacer-4) !important;
}

.mb-5 {
	margin-bottom: var(--st-spacer-5) !important;
}

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

.mb-n1 {
	margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
}

.mb-n2 {
	margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
}

.mb-n3 {
	margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
}

.mb-n4 {
	margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
}

.mb-n5 {
	margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
}

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

.ms-1 {
	margin-left: var(--st-spacer-1) !important;
}

.ms-2 {
	margin-left: var(--st-spacer-2) !important;
}

.ms-3 {
	margin-left: var(--st-spacer-3) !important;
}

.ms-4 {
	margin-left: var(--st-spacer-4) !important;
}

.ms-5 {
	margin-left: var(--st-spacer-5) !important;
}

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

.ms-n1 {
	margin-left: calc(-1 * var(--st-spacer-1)) !important;
}

.ms-n2 {
	margin-left: calc(-1 * var(--st-spacer-2)) !important;
}

.ms-n3 {
	margin-left: calc(-1 * var(--st-spacer-3)) !important;
}

.ms-n4 {
	margin-left: calc(-1 * var(--st-spacer-4)) !important;
}

.ms-n5 {
	margin-left: calc(-1 * var(--st-spacer-5)) !important;
}

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

.p-1 {
	padding: var(--st-spacer-1) !important;
}

.p-2 {
	padding: var(--st-spacer-2) !important;
}

.p-3 {
	padding: var(--st-spacer-3) !important;
}

.p-4 {
	padding: var(--st-spacer-4) !important;
}

.p-5 {
	padding: var(--st-spacer-5) !important;
}

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

.px-1 {
	padding-right: var(--st-spacer-1) !important;
	padding-left: var(--st-spacer-1) !important;
}

.px-2 {
	padding-right: var(--st-spacer-2) !important;
	padding-left: var(--st-spacer-2) !important;
}

.px-3 {
	padding-right: var(--st-spacer-3) !important;
	padding-left: var(--st-spacer-3) !important;
}

.px-4 {
	padding-right: var(--st-spacer-4) !important;
	padding-left: var(--st-spacer-4) !important;
}

.px-5 {
	padding-right: var(--st-spacer-5) !important;
	padding-left: var(--st-spacer-5) !important;
}

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

.py-1 {
	padding-top: var(--st-spacer-1) !important;
	padding-bottom: var(--st-spacer-1) !important;
}

.py-2 {
	padding-top: var(--st-spacer-2) !important;
	padding-bottom: var(--st-spacer-2) !important;
}

.py-3 {
	padding-top: var(--st-spacer-3) !important;
	padding-bottom: var(--st-spacer-3) !important;
}

.py-4 {
	padding-top: var(--st-spacer-4) !important;
	padding-bottom: var(--st-spacer-4) !important;
}

.py-5 {
	padding-top: var(--st-spacer-5) !important;
	padding-bottom: var(--st-spacer-5) !important;
}

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

.pt-1 {
	padding-top: var(--st-spacer-1) !important;
}

.pt-2 {
	padding-top: var(--st-spacer-2) !important;
}

.pt-3 {
	padding-top: var(--st-spacer-3) !important;
}

.pt-4 {
	padding-top: var(--st-spacer-4) !important;
}

.pt-5 {
	padding-top: var(--st-spacer-5) !important;
}

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

.pe-1 {
	padding-right: var(--st-spacer-1) !important;
}

.pe-2 {
	padding-right: var(--st-spacer-2) !important;
}

.pe-3 {
	padding-right: var(--st-spacer-3) !important;
}

.pe-4 {
	padding-right: var(--st-spacer-4) !important;
}

.pe-5 {
	padding-right: var(--st-spacer-5) !important;
}

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

.pb-1 {
	padding-bottom: var(--st-spacer-1) !important;
}

.pb-2 {
	padding-bottom: var(--st-spacer-2) !important;
}

.pb-3 {
	padding-bottom: var(--st-spacer-3) !important;
}

.pb-4 {
	padding-bottom: var(--st-spacer-4) !important;
}

.pb-5 {
	padding-bottom: var(--st-spacer-5) !important;
}

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

.ps-1 {
	padding-left: var(--st-spacer-1) !important;
}

.ps-2 {
	padding-left: var(--st-spacer-2) !important;
}

.ps-3 {
	padding-left: var(--st-spacer-3) !important;
}

.ps-4 {
	padding-left: var(--st-spacer-4) !important;
}

.ps-5 {
	padding-left: var(--st-spacer-5) !important;
}

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

.gap-1 {
	gap: var(--st-spacer-1) !important;
}

.gap-2 {
	gap: var(--st-spacer-2) !important;
}

.gap-3 {
	gap: var(--st-spacer-3) !important;
}

.gap-4 {
	gap: var(--st-spacer-4) !important;
}

.gap-5 {
	gap: var(--st-spacer-5) !important;
}

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

.row-gap-1 {
	row-gap: var(--st-spacer-1) !important;
}

.row-gap-2 {
	row-gap: var(--st-spacer-2) !important;
}

.row-gap-3 {
	row-gap: var(--st-spacer-3) !important;
}

.row-gap-4 {
	row-gap: var(--st-spacer-4) !important;
}

.row-gap-5 {
	row-gap: var(--st-spacer-5) !important;
}

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

.column-gap-1 {
	-moz-column-gap: var(--st-spacer-1) !important;
	column-gap: var(--st-spacer-1) !important;
}

.column-gap-2 {
	-moz-column-gap: var(--st-spacer-2) !important;
	column-gap: var(--st-spacer-2) !important;
}

.column-gap-3 {
	-moz-column-gap: var(--st-spacer-3) !important;
	column-gap: var(--st-spacer-3) !important;
}

.column-gap-4 {
	-moz-column-gap: var(--st-spacer-4) !important;
	column-gap: var(--st-spacer-4) !important;
}

.column-gap-5 {
	-moz-column-gap: var(--st-spacer-5) !important;
	column-gap: var(--st-spacer-5) !important;
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0 !important;
	}
	
	.m-sm-1 {
		margin: var(--st-spacer-1) !important;
	}
	
	.m-sm-2 {
		margin: var(--st-spacer-2) !important;
	}
	
	.m-sm-3 {
		margin: var(--st-spacer-3) !important;
	}
	
	.m-sm-4 {
		margin: var(--st-spacer-4) !important;
	}
	
	.m-sm-5 {
		margin: var(--st-spacer-5) !important;
	}
	
	.m-sm-auto {
		margin: auto !important;
	}

	.m-sm-n1 {
		margin: calc(-1 * var(--st-spacer-1)) !important;
	}

	.m-sm-n2 {
		margin: calc(-1 * var(--st-spacer-2)) !important;
	}

	.m-sm-n3 {
		margin: calc(-1 * var(--st-spacer-3)) !important;
	}

	.m-sm-n4 {
		margin: calc(-1 * var(--st-spacer-4)) !important;
	}

	.m-sm-n5 {
		margin: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mx-sm-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.mx-sm-1 {
		margin-right: var(--st-spacer-1) !important;
		margin-left: var(--st-spacer-1) !important;
	}
	
	.mx-sm-2 {
		margin-right: var(--st-spacer-2) !important;
		margin-left: var(--st-spacer-2) !important;
	}
	
	.mx-sm-3 {
		margin-right: var(--st-spacer-3) !important;
		margin-left: var(--st-spacer-3) !important;
	}
	
	.mx-sm-4 {
		margin-right: var(--st-spacer-4) !important;
		margin-left: var(--st-spacer-4) !important;
	}
	
	.mx-sm-5 {
		margin-right: var(--st-spacer-5) !important;
		margin-left: var(--st-spacer-5) !important;
	}
	
	.mx-sm-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.mx-sm-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mx-sm-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mx-sm-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mx-sm-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mx-sm-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.my-sm-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.my-sm-1 {
		margin-top: var(--st-spacer-1) !important;
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.my-sm-2 {
		margin-top: var(--st-spacer-2) !important;
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.my-sm-3 {
		margin-top: var(--st-spacer-3) !important;
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.my-sm-4 {
		margin-top: var(--st-spacer-4) !important;
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.my-sm-5 {
		margin-top: var(--st-spacer-5) !important;
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.my-sm-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.my-sm-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.my-sm-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.my-sm-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.my-sm-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.my-sm-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mt-sm-0 {
		margin-top: 0 !important;
	}
	
	.mt-sm-1 {
		margin-top: var(--st-spacer-1) !important;
	}
	
	.mt-sm-2 {
		margin-top: var(--st-spacer-2) !important;
	}
	
	.mt-sm-3 {
		margin-top: var(--st-spacer-3) !important;
	}
	
	.mt-sm-4 {
		margin-top: var(--st-spacer-4) !important;
	}
	
	.mt-sm-5 {
		margin-top: var(--st-spacer-5) !important;
	}
	
	.mt-sm-auto {
		margin-top: auto !important;
	}

	.mt-sm-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mt-sm-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mt-sm-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mt-sm-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mt-sm-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.me-sm-0 {
		margin-right: 0 !important;
	}
	
	.me-sm-1 {
		margin-right: var(--st-spacer-1) !important;
	}
	
	.me-sm-2 {
		margin-right: var(--st-spacer-2) !important;
	}
	
	.me-sm-3 {
		margin-right: var(--st-spacer-3) !important;
	}
	
	.me-sm-4 {
		margin-right: var(--st-spacer-4) !important;
	}
	
	.me-sm-5 {
		margin-right: var(--st-spacer-5) !important;
	}
	
	.me-sm-auto {
		margin-right: auto !important;
	}

	.me-sm-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
	}

	.me-sm-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
	}

	.me-sm-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
	}

	.me-sm-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
	}

	.me-sm-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mb-sm-0 {
		margin-bottom: 0 !important;
	}
	
	.mb-sm-1 {
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.mb-sm-2 {
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.mb-sm-3 {
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.mb-sm-4 {
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.mb-sm-5 {
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.mb-sm-auto {
		margin-bottom: auto !important;
	}

	.mb-sm-n1 {
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mb-sm-n2 {
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mb-sm-n3 {
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mb-sm-n4 {
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mb-sm-n5 {
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.ms-sm-0 {
		margin-left: 0 !important;
	}
	
	.ms-sm-1 {
		margin-left: var(--st-spacer-1) !important;
	}
	
	.ms-sm-2 {
		margin-left: var(--st-spacer-2) !important;
	}
	
	.ms-sm-3 {
		margin-left: var(--st-spacer-3) !important;
	}
	
	.ms-sm-4 {
		margin-left: var(--st-spacer-4) !important;
	}
	
	.ms-sm-5 {
		margin-left: var(--st-spacer-5) !important;
	}
	
	.ms-sm-auto {
		margin-left: auto !important;
	}

	.ms-sm-n1 {
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.ms-sm-n2 {
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.ms-sm-n3 {
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.ms-sm-n4 {
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.ms-sm-n5 {
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.p-sm-0 {
		padding: 0 !important;
	}
	
	.p-sm-1 {
		padding: var(--st-spacer-1) !important;
	}
	
	.p-sm-2 {
		padding: var(--st-spacer-2) !important;
	}
	
	.p-sm-3 {
		padding: var(--st-spacer-3) !important;
	}
	
	.p-sm-4 {
		padding: var(--st-spacer-4) !important;
	}
	
	.p-sm-5 {
		padding: var(--st-spacer-5) !important;
	}
	
	.px-sm-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.px-sm-1 {
		padding-right: var(--st-spacer-1) !important;
		padding-left: var(--st-spacer-1) !important;
	}
	
	.px-sm-2 {
		padding-right: var(--st-spacer-2) !important;
		padding-left: var(--st-spacer-2) !important;
	}
	
	.px-sm-3 {
		padding-right: var(--st-spacer-3) !important;
		padding-left: var(--st-spacer-3) !important;
	}
	
	.px-sm-4 {
		padding-right: var(--st-spacer-4) !important;
		padding-left: var(--st-spacer-4) !important;
	}
	
	.px-sm-5 {
		padding-right: var(--st-spacer-5) !important;
		padding-left: var(--st-spacer-5) !important;
	}
	
	.py-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.py-sm-1 {
		padding-top: var(--st-spacer-1) !important;
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.py-sm-2 {
		padding-top: var(--st-spacer-2) !important;
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.py-sm-3 {
		padding-top: var(--st-spacer-3) !important;
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.py-sm-4 {
		padding-top: var(--st-spacer-4) !important;
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.py-sm-5 {
		padding-top: var(--st-spacer-5) !important;
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.pt-sm-0 {
		padding-top: 0 !important;
	}
	
	.pt-sm-1 {
		padding-top: var(--st-spacer-1) !important;
	}
	
	.pt-sm-2 {
		padding-top: var(--st-spacer-2) !important;
	}
	
	.pt-sm-3 {
		padding-top: var(--st-spacer-3) !important;
	}
	
	.pt-sm-4 {
		padding-top: var(--st-spacer-4) !important;
	}
	
	.pt-sm-5 {
		padding-top: var(--st-spacer-5) !important;
	}
	
	.pe-sm-0 {
		padding-right: 0 !important;
	}
	
	.pe-sm-1 {
		padding-right: var(--st-spacer-1) !important;
	}
	
	.pe-sm-2 {
		padding-right: var(--st-spacer-2) !important;
	}
	
	.pe-sm-3 {
		padding-right: var(--st-spacer-3) !important;
	}
	
	.pe-sm-4 {
		padding-right: var(--st-spacer-4) !important;
	}
	
	.pe-sm-5 {
		padding-right: var(--st-spacer-5) !important;
	}
	
	.pb-sm-0 {
		padding-bottom: 0 !important;
	}
	
	.pb-sm-1 {
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.pb-sm-2 {
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.pb-sm-3 {
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.pb-sm-4 {
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.pb-sm-5 {
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.ps-sm-0 {
		padding-left: 0 !important;
	}
	
	.ps-sm-1 {
		padding-left: var(--st-spacer-1) !important;
	}
	
	.ps-sm-2 {
		padding-left: var(--st-spacer-2) !important;
	}
	
	.ps-sm-3 {
		padding-left: var(--st-spacer-3) !important;
	}
	
	.ps-sm-4 {
		padding-left: var(--st-spacer-4) !important;
	}
	
	.ps-sm-5 {
		padding-left: var(--st-spacer-5) !important;
	}
	
	.gap-sm-0 {
		gap: 0 !important;
	}
	
	.gap-sm-1 {
		gap: var(--st-spacer-1) !important;
	}
	
	.gap-sm-2 {
		gap: var(--st-spacer-2) !important;
	}
	
	.gap-sm-3 {
		gap: var(--st-spacer-3) !important;
	}
	
	.gap-sm-4 {
		gap: var(--st-spacer-4) !important;
	}
	
	.gap-sm-5 {
		gap: var(--st-spacer-5) !important;
	}

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

	.row-gap-sm-1 {
		row-gap: var(--st-spacer-1) !important;
	}

	.row-gap-sm-2 {
		row-gap: var(--st-spacer-2) !important;
	}

	.row-gap-sm-3 {
		row-gap: var(--st-spacer-3) !important;
	}

	.row-gap-sm-4 {
		row-gap: var(--st-spacer-4) !important;
	}

	.row-gap-sm-5 {
		row-gap: var(--st-spacer-5) !important;
	}

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

	.column-gap-sm-1 {
		-moz-column-gap: var(--st-spacer-1) !important;
		column-gap: var(--st-spacer-1) !important;
	}

	.column-gap-sm-2 {
		-moz-column-gap: var(--st-spacer-2) !important;
		column-gap: var(--st-spacer-2) !important;
	}

	.column-gap-sm-3 {
		-moz-column-gap: var(--st-spacer-3) !important;
		column-gap: var(--st-spacer-3) !important;
	}

	.column-gap-sm-4 {
		-moz-column-gap: var(--st-spacer-4) !important;
		column-gap: var(--st-spacer-4) !important;
	}

	.column-gap-sm-5 {
		-moz-column-gap: var(--st-spacer-5) !important;
		column-gap: var(--st-spacer-5) !important;
	}
}

@media (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}
	
	.m-md-1 {
		margin: var(--st-spacer-1) !important;
	}
	
	.m-md-2 {
		margin: var(--st-spacer-2) !important;
	}
	
	.m-md-3 {
		margin: var(--st-spacer-3) !important;
	}
	
	.m-md-4 {
		margin: var(--st-spacer-4) !important;
	}
	
	.m-md-5 {
		margin: var(--st-spacer-5) !important;
	}
	
	.m-md-auto {
		margin: auto !important;
	}

	.m-md-n1 {
		margin: calc(-1 * var(--st-spacer-1)) !important;
	}

	.m-md-n2 {
		margin: calc(-1 * var(--st-spacer-2)) !important;
	}

	.m-md-n3 {
		margin: calc(-1 * var(--st-spacer-3)) !important;
	}

	.m-md-n4 {
		margin: calc(-1 * var(--st-spacer-4)) !important;
	}

	.m-md-n5 {
		margin: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mx-md-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.mx-md-1 {
		margin-right: var(--st-spacer-1) !important;
		margin-left: var(--st-spacer-1) !important;
	}
	
	.mx-md-2 {
		margin-right: var(--st-spacer-2) !important;
		margin-left: var(--st-spacer-2) !important;
	}
	
	.mx-md-3 {
		margin-right: var(--st-spacer-3) !important;
		margin-left: var(--st-spacer-3) !important;
	}
	
	.mx-md-4 {
		margin-right: var(--st-spacer-4) !important;
		margin-left: var(--st-spacer-4) !important;
	}
	
	.mx-md-5 {
		margin-right: var(--st-spacer-5) !important;
		margin-left: var(--st-spacer-5) !important;
	}
	
	.mx-md-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.mx-md-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mx-md-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mx-md-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mx-md-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mx-md-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.my-md-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.my-md-1 {
		margin-top: var(--st-spacer-1) !important;
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.my-md-2 {
		margin-top: var(--st-spacer-2) !important;
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.my-md-3 {
		margin-top: var(--st-spacer-3) !important;
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.my-md-4 {
		margin-top: var(--st-spacer-4) !important;
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.my-md-5 {
		margin-top: var(--st-spacer-5) !important;
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.my-md-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.my-md-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.my-md-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.my-md-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.my-md-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.my-md-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mt-md-0 {
		margin-top: 0 !important;
	}
	
	.mt-md-1 {
		margin-top: var(--st-spacer-1) !important;
	}
	
	.mt-md-2 {
		margin-top: var(--st-spacer-2) !important;
	}
	
	.mt-md-3 {
		margin-top: var(--st-spacer-3) !important;
	}
	
	.mt-md-4 {
		margin-top: var(--st-spacer-4) !important;
	}
	
	.mt-md-5 {
		margin-top: var(--st-spacer-5) !important;
	}
	
	.mt-md-auto {
		margin-top: auto !important;
	}

	.mt-md-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mt-md-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mt-md-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mt-md-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mt-md-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.me-md-0 {
		margin-right: 0 !important;
	}
	
	.me-md-1 {
		margin-right: var(--st-spacer-1) !important;
	}
	
	.me-md-2 {
		margin-right: var(--st-spacer-2) !important;
	}
	
	.me-md-3 {
		margin-right: var(--st-spacer-3) !important;
	}
	
	.me-md-4 {
		margin-right: var(--st-spacer-4) !important;
	}
	
	.me-md-5 {
		margin-right: var(--st-spacer-5) !important;
	}
	
	.me-md-auto {
		margin-right: auto !important;
	}

	.me-md-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
	}

	.me-md-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
	}

	.me-md-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
	}

	.me-md-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
	}

	.me-md-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mb-md-0 {
		margin-bottom: 0 !important;
	}
	
	.mb-md-1 {
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.mb-md-2 {
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.mb-md-3 {
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.mb-md-4 {
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.mb-md-5 {
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.mb-md-auto {
		margin-bottom: auto !important;
	}

	.mb-md-n1 {
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mb-md-n2 {
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mb-md-n3 {
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mb-md-n4 {
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mb-md-n5 {
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.ms-md-0 {
		margin-left: 0 !important;
	}
	
	.ms-md-1 {
		margin-left: var(--st-spacer-1) !important;
	}
	
	.ms-md-2 {
		margin-left: var(--st-spacer-2) !important;
	}
	
	.ms-md-3 {
		margin-left: var(--st-spacer-3) !important;
	}
	
	.ms-md-4 {
		margin-left: var(--st-spacer-4) !important;
	}
	
	.ms-md-5 {
		margin-left: var(--st-spacer-5) !important;
	}
	
	.ms-md-auto {
		margin-left: auto !important;
	}

	.ms-md-n1 {
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.ms-md-n2 {
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.ms-md-n3 {
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.ms-md-n4 {
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.ms-md-n5 {
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.p-md-0 {
		padding: 0 !important;
	}
	
	.p-md-1 {
		padding: var(--st-spacer-1) !important;
	}
	
	.p-md-2 {
		padding: var(--st-spacer-2) !important;
	}
	
	.p-md-3 {
		padding: var(--st-spacer-3) !important;
	}
	
	.p-md-4 {
		padding: var(--st-spacer-4) !important;
	}
	
	.p-md-5 {
		padding: var(--st-spacer-5) !important;
	}
	
	.px-md-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.px-md-1 {
		padding-right: var(--st-spacer-1) !important;
		padding-left: var(--st-spacer-1) !important;
	}
	
	.px-md-2 {
		padding-right: var(--st-spacer-2) !important;
		padding-left: var(--st-spacer-2) !important;
	}
	
	.px-md-3 {
		padding-right: var(--st-spacer-3) !important;
		padding-left: var(--st-spacer-3) !important;
	}
	
	.px-md-4 {
		padding-right: var(--st-spacer-4) !important;
		padding-left: var(--st-spacer-4) !important;
	}
	
	.px-md-5 {
		padding-right: var(--st-spacer-5) !important;
		padding-left: var(--st-spacer-5) !important;
	}
	
	.py-md-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.py-md-1 {
		padding-top: var(--st-spacer-1) !important;
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.py-md-2 {
		padding-top: var(--st-spacer-2) !important;
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.py-md-3 {
		padding-top: var(--st-spacer-3) !important;
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.py-md-4 {
		padding-top: var(--st-spacer-4) !important;
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.py-md-5 {
		padding-top: var(--st-spacer-5) !important;
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.pt-md-0 {
		padding-top: 0 !important;
	}
	
	.pt-md-1 {
		padding-top: var(--st-spacer-1) !important;
	}
	
	.pt-md-2 {
		padding-top: var(--st-spacer-2) !important;
	}
	
	.pt-md-3 {
		padding-top: var(--st-spacer-3) !important;
	}
	
	.pt-md-4 {
		padding-top: var(--st-spacer-4) !important;
	}
	
	.pt-md-5 {
		padding-top: var(--st-spacer-5) !important;
	}
	
	.pe-md-0 {
		padding-right: 0 !important;
	}
	
	.pe-md-1 {
		padding-right: var(--st-spacer-1) !important;
	}
	
	.pe-md-2 {
		padding-right: var(--st-spacer-2) !important;
	}
	
	.pe-md-3 {
		padding-right: var(--st-spacer-3) !important;
	}
	
	.pe-md-4 {
		padding-right: var(--st-spacer-4) !important;
	}
	
	.pe-md-5 {
		padding-right: var(--st-spacer-5) !important;
	}
	
	.pb-md-0 {
		padding-bottom: 0 !important;
	}
	
	.pb-md-1 {
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.pb-md-2 {
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.pb-md-3 {
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.pb-md-4 {
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.pb-md-5 {
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.ps-md-0 {
		padding-left: 0 !important;
	}
	
	.ps-md-1 {
		padding-left: var(--st-spacer-1) !important;
	}
	
	.ps-md-2 {
		padding-left: var(--st-spacer-2) !important;
	}
	
	.ps-md-3 {
		padding-left: var(--st-spacer-3) !important;
	}
	
	.ps-md-4 {
		padding-left: var(--st-spacer-4) !important;
	}
	
	.ps-md-5 {
		padding-left: var(--st-spacer-5) !important;
	}
	
	.gap-md-0 {
		gap: 0 !important;
	}
	
	.gap-md-1 {
		gap: var(--st-spacer-1) !important;
	}
	
	.gap-md-2 {
		gap: var(--st-spacer-2) !important;
	}
	
	.gap-md-3 {
		gap: var(--st-spacer-3) !important;
	}
	
	.gap-md-4 {
		gap: var(--st-spacer-4) !important;
	}
	
	.gap-md-5 {
		gap: var(--st-spacer-5) !important;
	}

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

	.row-gap-md-1 {
		row-gap: var(--st-spacer-1) !important;
	}

	.row-gap-md-2 {
		row-gap: var(--st-spacer-2) !important;
	}

	.row-gap-md-3 {
		row-gap: var(--st-spacer-3) !important;
	}

	.row-gap-md-4 {
		row-gap: var(--st-spacer-4) !important;
	}

	.row-gap-md-5 {
		row-gap: var(--st-spacer-5) !important;
	}

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

	.column-gap-md-1 {
		-moz-column-gap: var(--st-spacer-1) !important;
		column-gap: var(--st-spacer-1) !important;
	}

	.column-gap-md-2 {
		-moz-column-gap: var(--st-spacer-2) !important;
		column-gap: var(--st-spacer-2) !important;
	}

	.column-gap-md-3 {
		-moz-column-gap: var(--st-spacer-3) !important;
		column-gap: var(--st-spacer-3) !important;
	}

	.column-gap-md-4 {
		-moz-column-gap: var(--st-spacer-4) !important;
		column-gap: var(--st-spacer-4) !important;
	}

	.column-gap-md-5 {
		-moz-column-gap: var(--st-spacer-5) !important;
		column-gap: var(--st-spacer-5) !important;
	}
}

@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0 !important;
	}
	
	.m-lg-1 {
		margin: var(--st-spacer-1) !important;
	}
	
	.m-lg-2 {
		margin: var(--st-spacer-2) !important;
	}
	
	.m-lg-3 {
		margin: var(--st-spacer-3) !important;
	}
	
	.m-lg-4 {
		margin: var(--st-spacer-4) !important;
	}
	
	.m-lg-5 {
		margin: var(--st-spacer-5) !important;
	}
	
	.m-lg-auto {
		margin: auto !important;
	}

	.m-lg-n1 {
		margin: calc(-1 * var(--st-spacer-1)) !important;
	}

	.m-lg-n2 {
		margin: calc(-1 * var(--st-spacer-2)) !important;
	}

	.m-lg-n3 {
		margin: calc(-1 * var(--st-spacer-3)) !important;
	}

	.m-lg-n4 {
		margin: calc(-1 * var(--st-spacer-4)) !important;
	}

	.m-lg-n5 {
		margin: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mx-lg-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.mx-lg-1 {
		margin-right: var(--st-spacer-1) !important;
		margin-left: var(--st-spacer-1) !important;
	}
	
	.mx-lg-2 {
		margin-right: var(--st-spacer-2) !important;
		margin-left: var(--st-spacer-2) !important;
	}
	
	.mx-lg-3 {
		margin-right: var(--st-spacer-3) !important;
		margin-left: var(--st-spacer-3) !important;
	}
	
	.mx-lg-4 {
		margin-right: var(--st-spacer-4) !important;
		margin-left: var(--st-spacer-4) !important;
	}
	
	.mx-lg-5 {
		margin-right: var(--st-spacer-5) !important;
		margin-left: var(--st-spacer-5) !important;
	}
	
	.mx-lg-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.mx-lg-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mx-lg-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mx-lg-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mx-lg-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mx-lg-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.my-lg-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.my-lg-1 {
		margin-top: var(--st-spacer-1) !important;
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.my-lg-2 {
		margin-top: var(--st-spacer-2) !important;
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.my-lg-3 {
		margin-top: var(--st-spacer-3) !important;
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.my-lg-4 {
		margin-top: var(--st-spacer-4) !important;
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.my-lg-5 {
		margin-top: var(--st-spacer-5) !important;
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.my-lg-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.my-lg-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.my-lg-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.my-lg-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.my-lg-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.my-lg-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mt-lg-0 {
		margin-top: 0 !important;
	}
	
	.mt-lg-1 {
		margin-top: var(--st-spacer-1) !important;
	}
	
	.mt-lg-2 {
		margin-top: var(--st-spacer-2) !important;
	}
	
	.mt-lg-3 {
		margin-top: var(--st-spacer-3) !important;
	}
	
	.mt-lg-4 {
		margin-top: var(--st-spacer-4) !important;
	}
	
	.mt-lg-5 {
		margin-top: var(--st-spacer-5) !important;
	}
	
	.mt-lg-auto {
		margin-top: auto !important;
	}

	.mt-lg-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mt-lg-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mt-lg-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mt-lg-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mt-lg-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.me-lg-0 {
		margin-right: 0 !important;
	}
	
	.me-lg-1 {
		margin-right: var(--st-spacer-1) !important;
	}
	
	.me-lg-2 {
		margin-right: var(--st-spacer-2) !important;
	}
	
	.me-lg-3 {
		margin-right: var(--st-spacer-3) !important;
	}
	
	.me-lg-4 {
		margin-right: var(--st-spacer-4) !important;
	}
	
	.me-lg-5 {
		margin-right: var(--st-spacer-5) !important;
	}
	
	.me-lg-auto {
		margin-right: auto !important;
	}

	.me-lg-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
	}

	.me-lg-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
	}

	.me-lg-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
	}

	.me-lg-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
	}

	.me-lg-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mb-lg-0 {
		margin-bottom: 0 !important;
	}
	
	.mb-lg-1 {
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.mb-lg-2 {
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.mb-lg-3 {
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.mb-lg-4 {
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.mb-lg-5 {
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.mb-lg-auto {
		margin-bottom: auto !important;
	}

	.mb-lg-n1 {
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mb-lg-n2 {
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mb-lg-n3 {
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mb-lg-n4 {
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mb-lg-n5 {
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.ms-lg-0 {
		margin-left: 0 !important;
	}
	
	.ms-lg-1 {
		margin-left: var(--st-spacer-1) !important;
	}
	
	.ms-lg-2 {
		margin-left: var(--st-spacer-2) !important;
	}
	
	.ms-lg-3 {
		margin-left: var(--st-spacer-3) !important;
	}
	
	.ms-lg-4 {
		margin-left: var(--st-spacer-4) !important;
	}
	
	.ms-lg-5 {
		margin-left: var(--st-spacer-5) !important;
	}
	
	.ms-lg-auto {
		margin-left: auto !important;
	}

	.ms-lg-n1 {
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.ms-lg-n2 {
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.ms-lg-n3 {
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.ms-lg-n4 {
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.ms-lg-n5 {
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.p-lg-0 {
		padding: 0 !important;
	}
	
	.p-lg-1 {
		padding: var(--st-spacer-1) !important;
	}
	
	.p-lg-2 {
		padding: var(--st-spacer-2) !important;
	}
	
	.p-lg-3 {
		padding: var(--st-spacer-3) !important;
	}
	
	.p-lg-4 {
		padding: var(--st-spacer-4) !important;
	}
	
	.p-lg-5 {
		padding: var(--st-spacer-5) !important;
	}
	
	.px-lg-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.px-lg-1 {
		padding-right: var(--st-spacer-1) !important;
		padding-left: var(--st-spacer-1) !important;
	}
	
	.px-lg-2 {
		padding-right: var(--st-spacer-2) !important;
		padding-left: var(--st-spacer-2) !important;
	}
	
	.px-lg-3 {
		padding-right: var(--st-spacer-3) !important;
		padding-left: var(--st-spacer-3) !important;
	}
	
	.px-lg-4 {
		padding-right: var(--st-spacer-4) !important;
		padding-left: var(--st-spacer-4) !important;
	}
	
	.px-lg-5 {
		padding-right: var(--st-spacer-5) !important;
		padding-left: var(--st-spacer-5) !important;
	}
	
	.py-lg-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.py-lg-1 {
		padding-top: var(--st-spacer-1) !important;
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.py-lg-2 {
		padding-top: var(--st-spacer-2) !important;
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.py-lg-3 {
		padding-top: var(--st-spacer-3) !important;
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.py-lg-4 {
		padding-top: var(--st-spacer-4) !important;
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.py-lg-5 {
		padding-top: var(--st-spacer-5) !important;
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.pt-lg-0 {
		padding-top: 0 !important;
	}
	
	.pt-lg-1 {
		padding-top: var(--st-spacer-1) !important;
	}
	
	.pt-lg-2 {
		padding-top: var(--st-spacer-2) !important;
	}
	
	.pt-lg-3 {
		padding-top: var(--st-spacer-3) !important;
	}
	
	.pt-lg-4 {
		padding-top: var(--st-spacer-4) !important;
	}
	
	.pt-lg-5 {
		padding-top: var(--st-spacer-5) !important;
	}
	
	.pe-lg-0 {
		padding-right: 0 !important;
	}
	
	.pe-lg-1 {
		padding-right: var(--st-spacer-1) !important;
	}
	
	.pe-lg-2 {
		padding-right: var(--st-spacer-2) !important;
	}
	
	.pe-lg-3 {
		padding-right: var(--st-spacer-3) !important;
	}
	
	.pe-lg-4 {
		padding-right: var(--st-spacer-4) !important;
	}
	
	.pe-lg-5 {
		padding-right: var(--st-spacer-5) !important;
	}
	
	.pb-lg-0 {
		padding-bottom: 0 !important;
	}
	
	.pb-lg-1 {
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.pb-lg-2 {
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.pb-lg-3 {
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.pb-lg-4 {
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.pb-lg-5 {
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.ps-lg-0 {
		padding-left: 0 !important;
	}
	
	.ps-lg-1 {
		padding-left: var(--st-spacer-1) !important;
	}
	
	.ps-lg-2 {
		padding-left: var(--st-spacer-2) !important;
	}
	
	.ps-lg-3 {
		padding-left: var(--st-spacer-3) !important;
	}
	
	.ps-lg-4 {
		padding-left: var(--st-spacer-4) !important;
	}
	
	.ps-lg-5 {
		padding-left: var(--st-spacer-5) !important;
	}
	
	.gap-lg-0 {
		gap: 0 !important;
	}
	
	.gap-lg-1 {
		gap: var(--st-spacer-1) !important;
	}
	
	.gap-lg-2 {
		gap: var(--st-spacer-2) !important;
	}
	
	.gap-lg-3 {
		gap: var(--st-spacer-3) !important;
	}
	
	.gap-lg-4 {
		gap: var(--st-spacer-4) !important;
	}
	
	.gap-lg-5 {
		gap: var(--st-spacer-5) !important;
	}

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

	.row-gap-lg-1 {
		row-gap: var(--st-spacer-1) !important;
	}

	.row-gap-lg-2 {
		row-gap: var(--st-spacer-2) !important;
	}

	.row-gap-lg-3 {
		row-gap: var(--st-spacer-3) !important;
	}

	.row-gap-lg-4 {
		row-gap: var(--st-spacer-4) !important;
	}

	.row-gap-lg-5 {
		row-gap: var(--st-spacer-5) !important;
	}

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

	.column-gap-lg-1 {
		-moz-column-gap: var(--st-spacer-1) !important;
		column-gap: var(--st-spacer-1) !important;
	}

	.column-gap-lg-2 {
		-moz-column-gap: var(--st-spacer-2) !important;
		column-gap: var(--st-spacer-2) !important;
	}

	.column-gap-lg-3 {
		-moz-column-gap: var(--st-spacer-3) !important;
		column-gap: var(--st-spacer-3) !important;
	}

	.column-gap-lg-4 {
		-moz-column-gap: var(--st-spacer-4) !important;
		column-gap: var(--st-spacer-4) !important;
	}

	.column-gap-lg-5 {
		-moz-column-gap: var(--st-spacer-5) !important;
		column-gap: var(--st-spacer-5) !important;
	}
}

@media (min-width: 1200px) {
	.m-xl-0 {
		margin: 0 !important;
	}
	
	.m-xl-1 {
		margin: var(--st-spacer-1) !important;
	}
	
	.m-xl-2 {
		margin: var(--st-spacer-2) !important;
	}
	
	.m-xl-3 {
		margin: var(--st-spacer-3) !important;
	}
	
	.m-xl-4 {
		margin: var(--st-spacer-4) !important;
	}
	
	.m-xl-5 {
		margin: var(--st-spacer-5) !important;
	}
	
	.m-xl-auto {
		margin: auto !important;
	}

	.m-xl-n1 {
		margin: calc(-1 * var(--st-spacer-1)) !important;
	}

	.m-xl-n2 {
		margin: calc(-1 * var(--st-spacer-2)) !important;
	}

	.m-xl-n3 {
		margin: calc(-1 * var(--st-spacer-3)) !important;
	}

	.m-xl-n4 {
		margin: calc(-1 * var(--st-spacer-4)) !important;
	}

	.m-xl-n5 {
		margin: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mx-xl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.mx-xl-1 {
		margin-right: var(--st-spacer-1) !important;
		margin-left: var(--st-spacer-1) !important;
	}
	
	.mx-xl-2 {
		margin-right: var(--st-spacer-2) !important;
		margin-left: var(--st-spacer-2) !important;
	}
	
	.mx-xl-3 {
		margin-right: var(--st-spacer-3) !important;
		margin-left: var(--st-spacer-3) !important;
	}
	
	.mx-xl-4 {
		margin-right: var(--st-spacer-4) !important;
		margin-left: var(--st-spacer-4) !important;
	}
	
	.mx-xl-5 {
		margin-right: var(--st-spacer-5) !important;
		margin-left: var(--st-spacer-5) !important;
	}
	
	.mx-xl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.mx-xl-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mx-xl-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mx-xl-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mx-xl-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mx-xl-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.my-xl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.my-xl-1 {
		margin-top: var(--st-spacer-1) !important;
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.my-xl-2 {
		margin-top: var(--st-spacer-2) !important;
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.my-xl-3 {
		margin-top: var(--st-spacer-3) !important;
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.my-xl-4 {
		margin-top: var(--st-spacer-4) !important;
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.my-xl-5 {
		margin-top: var(--st-spacer-5) !important;
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.my-xl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.my-xl-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.my-xl-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.my-xl-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.my-xl-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.my-xl-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mt-xl-0 {
		margin-top: 0 !important;
	}
	
	.mt-xl-1 {
		margin-top: var(--st-spacer-1) !important;
	}
	
	.mt-xl-2 {
		margin-top: var(--st-spacer-2) !important;
	}
	
	.mt-xl-3 {
		margin-top: var(--st-spacer-3) !important;
	}
	
	.mt-xl-4 {
		margin-top: var(--st-spacer-4) !important;
	}
	
	.mt-xl-5 {
		margin-top: var(--st-spacer-5) !important;
	}
	
	.mt-xl-auto {
		margin-top: auto !important;
	}

	.mt-xl-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mt-xl-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mt-xl-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mt-xl-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mt-xl-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.me-xl-0 {
		margin-right: 0 !important;
	}
	
	.me-xl-1 {
		margin-right: var(--st-spacer-1) !important;
	}
	
	.me-xl-2 {
		margin-right: var(--st-spacer-2) !important;
	}
	
	.me-xl-3 {
		margin-right: var(--st-spacer-3) !important;
	}
	
	.me-xl-4 {
		margin-right: var(--st-spacer-4) !important;
	}
	
	.me-xl-5 {
		margin-right: var(--st-spacer-5) !important;
	}
	
	.me-xl-auto {
		margin-right: auto !important;
	}

	.me-xl-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
	}

	.me-xl-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
	}

	.me-xl-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
	}

	.me-xl-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
	}

	.me-xl-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mb-xl-0 {
		margin-bottom: 0 !important;
	}
	
	.mb-xl-1 {
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.mb-xl-2 {
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.mb-xl-3 {
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.mb-xl-4 {
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.mb-xl-5 {
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.mb-xl-auto {
		margin-bottom: auto !important;
	}

	.mb-xl-n1 {
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mb-xl-n2 {
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mb-xl-n3 {
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mb-xl-n4 {
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mb-xl-n5 {
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.ms-xl-0 {
		margin-left: 0 !important;
	}
	
	.ms-xl-1 {
		margin-left: var(--st-spacer-1) !important;
	}
	
	.ms-xl-2 {
		margin-left: var(--st-spacer-2) !important;
	}
	
	.ms-xl-3 {
		margin-left: var(--st-spacer-3) !important;
	}
	
	.ms-xl-4 {
		margin-left: var(--st-spacer-4) !important;
	}
	
	.ms-xl-5 {
		margin-left: var(--st-spacer-5) !important;
	}
	
	.ms-xl-auto {
		margin-left: auto !important;
	}

	.ms-xl-n1 {
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.ms-xl-n2 {
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.ms-xl-n3 {
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.ms-xl-n4 {
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.ms-xl-n5 {
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.p-xl-0 {
		padding: 0 !important;
	}
	
	.p-xl-1 {
		padding: var(--st-spacer-1) !important;
	}
	
	.p-xl-2 {
		padding: var(--st-spacer-2) !important;
	}
	
	.p-xl-3 {
		padding: var(--st-spacer-3) !important;
	}
	
	.p-xl-4 {
		padding: var(--st-spacer-4) !important;
	}
	
	.p-xl-5 {
		padding: var(--st-spacer-5) !important;
	}
	
	.px-xl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.px-xl-1 {
		padding-right: var(--st-spacer-1) !important;
		padding-left: var(--st-spacer-1) !important;
	}
	
	.px-xl-2 {
		padding-right: var(--st-spacer-2) !important;
		padding-left: var(--st-spacer-2) !important;
	}
	
	.px-xl-3 {
		padding-right: var(--st-spacer-3) !important;
		padding-left: var(--st-spacer-3) !important;
	}
	
	.px-xl-4 {
		padding-right: var(--st-spacer-4) !important;
		padding-left: var(--st-spacer-4) !important;
	}
	
	.px-xl-5 {
		padding-right: var(--st-spacer-5) !important;
		padding-left: var(--st-spacer-5) !important;
	}
	
	.py-xl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.py-xl-1 {
		padding-top: var(--st-spacer-1) !important;
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.py-xl-2 {
		padding-top: var(--st-spacer-2) !important;
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.py-xl-3 {
		padding-top: var(--st-spacer-3) !important;
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.py-xl-4 {
		padding-top: var(--st-spacer-4) !important;
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.py-xl-5 {
		padding-top: var(--st-spacer-5) !important;
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.pt-xl-0 {
		padding-top: 0 !important;
	}
	
	.pt-xl-1 {
		padding-top: var(--st-spacer-1) !important;
	}
	
	.pt-xl-2 {
		padding-top: var(--st-spacer-2) !important;
	}
	
	.pt-xl-3 {
		padding-top: var(--st-spacer-3) !important;
	}
	
	.pt-xl-4 {
		padding-top: var(--st-spacer-4) !important;
	}
	
	.pt-xl-5 {
		padding-top: var(--st-spacer-5) !important;
	}
	
	.pe-xl-0 {
		padding-right: 0 !important;
	}
	
	.pe-xl-1 {
		padding-right: var(--st-spacer-1) !important;
	}
	
	.pe-xl-2 {
		padding-right: var(--st-spacer-2) !important;
	}
	
	.pe-xl-3 {
		padding-right: var(--st-spacer-3) !important;
	}
	
	.pe-xl-4 {
		padding-right: var(--st-spacer-4) !important;
	}
	
	.pe-xl-5 {
		padding-right: var(--st-spacer-5) !important;
	}
	
	.pb-xl-0 {
		padding-bottom: 0 !important;
	}
	
	.pb-xl-1 {
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.pb-xl-2 {
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.pb-xl-3 {
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.pb-xl-4 {
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.pb-xl-5 {
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.ps-xl-0 {
		padding-left: 0 !important;
	}
	
	.ps-xl-1 {
		padding-left: var(--st-spacer-1) !important;
	}
	
	.ps-xl-2 {
		padding-left: var(--st-spacer-2) !important;
	}
	
	.ps-xl-3 {
		padding-left: var(--st-spacer-3) !important;
	}
	
	.ps-xl-4 {
		padding-left: var(--st-spacer-4) !important;
	}
	
	.ps-xl-5 {
		padding-left: var(--st-spacer-5) !important;
	}
	
	.gap-xl-0 {
		gap: 0 !important;
	}
	
	.gap-xl-1 {
		gap: var(--st-spacer-1) !important;
	}
	
	.gap-xl-2 {
		gap: var(--st-spacer-2) !important;
	}
	
	.gap-xl-3 {
		gap: var(--st-spacer-3) !important;
	}
	
	.gap-xl-4 {
		gap: var(--st-spacer-4) !important;
	}
	
	.gap-xl-5 {
		gap: var(--st-spacer-5) !important;
	}

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

	.row-gap-xl-1 {
		row-gap: var(--st-spacer-1) !important;
	}

	.row-gap-xl-2 {
		row-gap: var(--st-spacer-2) !important;
	}

	.row-gap-xl-3 {
		row-gap: var(--st-spacer-3) !important;
	}

	.row-gap-xl-4 {
		row-gap: var(--st-spacer-4) !important;
	}

	.row-gap-xl-5 {
		row-gap: var(--st-spacer-5) !important;
	}

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

	.column-gap-xl-1 {
		-moz-column-gap: var(--st-spacer-1) !important;
		column-gap: var(--st-spacer-1) !important;
	}

	.column-gap-xl-2 {
		-moz-column-gap: var(--st-spacer-2) !important;
		column-gap: var(--st-spacer-2) !important;
	}

	.column-gap-xl-3 {
		-moz-column-gap: var(--st-spacer-3) !important;
		column-gap: var(--st-spacer-3) !important;
	}

	.column-gap-xl-4 {
		-moz-column-gap: var(--st-spacer-4) !important;
		column-gap: var(--st-spacer-4) !important;
	}

	.column-gap-xl-5 {
		-moz-column-gap: var(--st-spacer-5) !important;
		column-gap: var(--st-spacer-5) !important;
	}
}

@media (min-width: 1400px) {
	.m-xxl-0 {
		margin: 0 !important;
	}
	
	.m-xxl-1 {
		margin: var(--st-spacer-1) !important;
	}
	
	.m-xxl-2 {
		margin: var(--st-spacer-2) !important;
	}
	
	.m-xxl-3 {
		margin: var(--st-spacer-3) !important;
	}
	
	.m-xxl-4 {
		margin: var(--st-spacer-4) !important;
	}
	
	.m-xxl-5 {
		margin: var(--st-spacer-5) !important;
	}
	
	.m-xxl-auto {
		margin: auto !important;
	}

	.m-xxl-n1 {
		margin: calc(-1 * var(--st-spacer-1)) !important;
	}

	.m-xxl-n2 {
		margin: calc(-1 * var(--st-spacer-2)) !important;
	}

	.m-xxl-n3 {
		margin: calc(-1 * var(--st-spacer-3)) !important;
	}

	.m-xxl-n4 {
		margin: calc(-1 * var(--st-spacer-4)) !important;
	}

	.m-xxl-n5 {
		margin: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mx-xxl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	
	.mx-xxl-1 {
		margin-right: var(--st-spacer-1) !important;
		margin-left: var(--st-spacer-1) !important;
	}
	
	.mx-xxl-2 {
		margin-right: var(--st-spacer-2) !important;
		margin-left: var(--st-spacer-2) !important;
	}
	
	.mx-xxl-3 {
		margin-right: var(--st-spacer-3) !important;
		margin-left: var(--st-spacer-3) !important;
	}
	
	.mx-xxl-4 {
		margin-right: var(--st-spacer-4) !important;
		margin-left: var(--st-spacer-4) !important;
	}
	
	.mx-xxl-5 {
		margin-right: var(--st-spacer-5) !important;
		margin-left: var(--st-spacer-5) !important;
	}
	
	.mx-xxl-auto {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.mx-xxl-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mx-xxl-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mx-xxl-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mx-xxl-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mx-xxl-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.my-xxl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	.my-xxl-1 {
		margin-top: var(--st-spacer-1) !important;
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.my-xxl-2 {
		margin-top: var(--st-spacer-2) !important;
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.my-xxl-3 {
		margin-top: var(--st-spacer-3) !important;
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.my-xxl-4 {
		margin-top: var(--st-spacer-4) !important;
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.my-xxl-5 {
		margin-top: var(--st-spacer-5) !important;
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.my-xxl-auto {
		margin-top: auto !important;
		margin-bottom: auto !important;
	}

	.my-xxl-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.my-xxl-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.my-xxl-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.my-xxl-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.my-xxl-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mt-xxl-0 {
		margin-top: 0 !important;
	}
	
	.mt-xxl-1 {
		margin-top: var(--st-spacer-1) !important;
	}
	
	.mt-xxl-2 {
		margin-top: var(--st-spacer-2) !important;
	}
	
	.mt-xxl-3 {
		margin-top: var(--st-spacer-3) !important;
	}
	
	.mt-xxl-4 {
		margin-top: var(--st-spacer-4) !important;
	}
	
	.mt-xxl-5 {
		margin-top: var(--st-spacer-5) !important;
	}
	
	.mt-xxl-auto {
		margin-top: auto !important;
	}

	.mt-xxl-n1 {
		margin-top: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mt-xxl-n2 {
		margin-top: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mt-xxl-n3 {
		margin-top: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mt-xxl-n4 {
		margin-top: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mt-xxl-n5 {
		margin-top: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.me-xxl-0 {
		margin-right: 0 !important;
	}
	
	.me-xxl-1 {
		margin-right: var(--st-spacer-1) !important;
	}
	
	.me-xxl-2 {
		margin-right: var(--st-spacer-2) !important;
	}
	
	.me-xxl-3 {
		margin-right: var(--st-spacer-3) !important;
	}
	
	.me-xxl-4 {
		margin-right: var(--st-spacer-4) !important;
	}
	
	.me-xxl-5 {
		margin-right: var(--st-spacer-5) !important;
	}
	
	.me-xxl-auto {
		margin-right: auto !important;
	}

	.me-xxl-n1 {
		margin-right: calc(-1 * var(--st-spacer-1)) !important;
	}

	.me-xxl-n2 {
		margin-right: calc(-1 * var(--st-spacer-2)) !important;
	}

	.me-xxl-n3 {
		margin-right: calc(-1 * var(--st-spacer-3)) !important;
	}

	.me-xxl-n4 {
		margin-right: calc(-1 * var(--st-spacer-4)) !important;
	}

	.me-xxl-n5 {
		margin-right: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.mb-xxl-0 {
		margin-bottom: 0 !important;
	}
	
	.mb-xxl-1 {
		margin-bottom: var(--st-spacer-1) !important;
	}
	
	.mb-xxl-2 {
		margin-bottom: var(--st-spacer-2) !important;
	}
	
	.mb-xxl-3 {
		margin-bottom: var(--st-spacer-3) !important;
	}
	
	.mb-xxl-4 {
		margin-bottom: var(--st-spacer-4) !important;
	}
	
	.mb-xxl-5 {
		margin-bottom: var(--st-spacer-5) !important;
	}
	
	.mb-xxl-auto {
		margin-bottom: auto !important;
	}

	.mb-xxl-n1 {
		margin-bottom: calc(-1 * var(--st-spacer-1)) !important;
	}

	.mb-xxl-n2 {
		margin-bottom: calc(-1 * var(--st-spacer-2)) !important;
	}

	.mb-xxl-n3 {
		margin-bottom: calc(-1 * var(--st-spacer-3)) !important;
	}

	.mb-xxl-n4 {
		margin-bottom: calc(-1 * var(--st-spacer-4)) !important;
	}

	.mb-xxl-n5 {
		margin-bottom: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.ms-xxl-0 {
		margin-left: 0 !important;
	}
	
	.ms-xxl-1 {
		margin-left: var(--st-spacer-1) !important;
	}
	
	.ms-xxl-2 {
		margin-left: var(--st-spacer-2) !important;
	}
	
	.ms-xxl-3 {
		margin-left: var(--st-spacer-3) !important;
	}
	
	.ms-xxl-4 {
		margin-left: var(--st-spacer-4) !important;
	}
	
	.ms-xxl-5 {
		margin-left: var(--st-spacer-5) !important;
	}
	
	.ms-xxl-auto {
		margin-left: auto !important;
	}

	.ms-xxl-n1 {
		margin-left: calc(-1 * var(--st-spacer-1)) !important;
	}

	.ms-xxl-n2 {
		margin-left: calc(-1 * var(--st-spacer-2)) !important;
	}

	.ms-xxl-n3 {
		margin-left: calc(-1 * var(--st-spacer-3)) !important;
	}

	.ms-xxl-n4 {
		margin-left: calc(-1 * var(--st-spacer-4)) !important;
	}

	.ms-xxl-n5 {
		margin-left: calc(-1 * var(--st-spacer-5)) !important;
	}
	
	.p-xxl-0 {
		padding: 0 !important;
	}
	
	.p-xxl-1 {
		padding: var(--st-spacer-1) !important;
	}
	
	.p-xxl-2 {
		padding: var(--st-spacer-2) !important;
	}
	
	.p-xxl-3 {
		padding: var(--st-spacer-3) !important;
	}
	
	.p-xxl-4 {
		padding: var(--st-spacer-4) !important;
	}
	
	.p-xxl-5 {
		padding: var(--st-spacer-5) !important;
	}
	
	.px-xxl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	
	.px-xxl-1 {
		padding-right: var(--st-spacer-1) !important;
		padding-left: var(--st-spacer-1) !important;
	}
	
	.px-xxl-2 {
		padding-right: var(--st-spacer-2) !important;
		padding-left: var(--st-spacer-2) !important;
	}
	
	.px-xxl-3 {
		padding-right: var(--st-spacer-3) !important;
		padding-left: var(--st-spacer-3) !important;
	}
	
	.px-xxl-4 {
		padding-right: var(--st-spacer-4) !important;
		padding-left: var(--st-spacer-4) !important;
	}
	
	.px-xxl-5 {
		padding-right: var(--st-spacer-5) !important;
		padding-left: var(--st-spacer-5) !important;
	}
	
	.py-xxl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	.py-xxl-1 {
		padding-top: var(--st-spacer-1) !important;
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.py-xxl-2 {
		padding-top: var(--st-spacer-2) !important;
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.py-xxl-3 {
		padding-top: var(--st-spacer-3) !important;
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.py-xxl-4 {
		padding-top: var(--st-spacer-4) !important;
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.py-xxl-5 {
		padding-top: var(--st-spacer-5) !important;
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.pt-xxl-0 {
		padding-top: 0 !important;
	}
	
	.pt-xxl-1 {
		padding-top: var(--st-spacer-1) !important;
	}
	
	.pt-xxl-2 {
		padding-top: var(--st-spacer-2) !important;
	}
	
	.pt-xxl-3 {
		padding-top: var(--st-spacer-3) !important;
	}
	
	.pt-xxl-4 {
		padding-top: var(--st-spacer-4) !important;
	}
	
	.pt-xxl-5 {
		padding-top: var(--st-spacer-5) !important;
	}
	
	.pe-xxl-0 {
		padding-right: 0 !important;
	}
	
	.pe-xxl-1 {
		padding-right: var(--st-spacer-1) !important;
	}
	
	.pe-xxl-2 {
		padding-right: var(--st-spacer-2) !important;
	}
	
	.pe-xxl-3 {
		padding-right: var(--st-spacer-3) !important;
	}
	
	.pe-xxl-4 {
		padding-right: var(--st-spacer-4) !important;
	}
	
	.pe-xxl-5 {
		padding-right: var(--st-spacer-5) !important;
	}
	
	.pb-xxl-0 {
		padding-bottom: 0 !important;
	}
	
	.pb-xxl-1 {
		padding-bottom: var(--st-spacer-1) !important;
	}
	
	.pb-xxl-2 {
		padding-bottom: var(--st-spacer-2) !important;
	}
	
	.pb-xxl-3 {
		padding-bottom: var(--st-spacer-3) !important;
	}
	
	.pb-xxl-4 {
		padding-bottom: var(--st-spacer-4) !important;
	}
	
	.pb-xxl-5 {
		padding-bottom: var(--st-spacer-5) !important;
	}
	
	.ps-xxl-0 {
		padding-left: 0 !important;
	}
	
	.ps-xxl-1 {
		padding-left: var(--st-spacer-1) !important;
	}
	
	.ps-xxl-2 {
		padding-left: var(--st-spacer-2) !important;
	}
	
	.ps-xxl-3 {
		padding-left: var(--st-spacer-3) !important;
	}
	
	.ps-xxl-4 {
		padding-left: var(--st-spacer-4) !important;
	}
	
	.ps-xxl-5 {
		padding-left: var(--st-spacer-5) !important;
	}
	
	.gap-xxl-0 {
		gap: 0 !important;
	}
	
	.gap-xxl-1 {
		gap: var(--st-spacer-1) !important;
	}
	
	.gap-xxl-2 {
		gap: var(--st-spacer-2) !important;
	}
	
	.gap-xxl-3 {
		gap: var(--st-spacer-3) !important;
	}
	
	.gap-xxl-4 {
		gap: var(--st-spacer-4) !important;
	}
	
	.gap-xxl-5 {
		gap: var(--st-spacer-5) !important;
	}

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

	.row-gap-xxl-1 {
		row-gap: var(--st-spacer-1) !important;
	}

	.row-gap-xxl-2 {
		row-gap: var(--st-spacer-2) !important;
	}

	.row-gap-xxl-3 {
		row-gap: var(--st-spacer-3) !important;
	}

	.row-gap-xxl-4 {
		row-gap: var(--st-spacer-4) !important;
	}

	.row-gap-xxl-5 {
		row-gap: var(--st-spacer-5) !important;
	}

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

	.column-gap-xxl-1 {
		-moz-column-gap: var(--st-spacer-1) !important;
		column-gap: var(--st-spacer-1) !important;
	}

	.column-gap-xxl-2 {
		-moz-column-gap: var(--st-spacer-2) !important;
		column-gap: var(--st-spacer-2) !important;
	}

	.column-gap-xxl-3 {
		-moz-column-gap: var(--st-spacer-3) !important;
		column-gap: var(--st-spacer-3) !important;
	}

	.column-gap-xxl-4 {
		-moz-column-gap: var(--st-spacer-4) !important;
		column-gap: var(--st-spacer-4) !important;
	}

	.column-gap-xxl-5 {
		-moz-column-gap: var(--st-spacer-5) !important;
		column-gap: var(--st-spacer-5) !important;
	}
}

/**
 * ----------------------------------------------------------------------------
 * [ Text utilities ]
 * ----------------------------------------------------------------------------
 */

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

.fs-1 {
	font-size: calc((var(--st-font-size-base) + 0.4875rem) + 1.5vw) !important;
}

.fs-2 {
	font-size: calc((var(--st-font-size-base) + 0.4375rem) + 0.9vw) !important;
}

.fs-3 {
	font-size: calc((var(--st-font-size-base) + 0.4rem) + 0.6vw) !important;
}

.fs-4 {
	font-size: calc((var(--st-font-size-base) + 0.375rem) + 0.3vw) !important;
}

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

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

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

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

.fw-lighter {
	font-weight: var(--st-font-weight-lighter) !important;
}

.fw-light {
	font-weight: var(--st-font-weight-light) !important;
}

.fw-normal {
	font-weight: var(--st-font-weight-normal) !important;
}

.fw-medium {
	font-weight: var(--st-font-weight-medium) !important;
}

.fw-semibold {
	font-weight: var(--st-font-weight-semibold) !important;
}

.fw-bold {
	font-weight: var(--st-font-weight-bold) !important;
}

.fw-bolder {
	font-weight: var(--st-font-weight-bolder) !important;
}

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

.lh-sm {
	line-height: var(--st-line-height-sm) !important;
}

.lh-base {
	line-height: var(--st-line-height-base) !important;
}

.lh-lg {
	line-height: var(--st-line-height-lg) !important;
}

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

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

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

@media (min-width: 576px) {
	.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) {
	.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) {
	.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) {
	.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) {
	.text-xxl-start {
		text-align: left !important;
	}

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

	.text-xxl-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 */

.antialiased {
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
}

.subpixel-antialiased {
	-webkit-font-smoothing: auto !important;
	-moz-osx-font-smoothing: auto !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Vertical alignment utilities ]
 * ----------------------------------------------------------------------------
 */

.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;
}

/**
 * ----------------------------------------------------------------------------
 * [ Visibility utilities ]
 * ----------------------------------------------------------------------------
 */

.visible {
	visibility: visible !important;
}

.invisible {
	visibility: hidden !important;
}

/**
 * ----------------------------------------------------------------------------
 * [ Z-index utilities ]
 * ----------------------------------------------------------------------------
 */

.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) {
	.z-sm-n1 {
		z-index: -1 !important;
	}

	.z-sm-0 {
		z-index: 0 !important;
	}

	.z-sm-1 {
		z-index: 1 !important;
	}

	.z-sm-2 {
		z-index: 2 !important;
	}

	.z-sm-3 {
		z-index: 3 !important;
	}
}

@media (min-width: 768px) {
	.z-md-n1 {
		z-index: -1 !important;
	}

	.z-md-0 {
		z-index: 0 !important;
	}

	.z-md-1 {
		z-index: 1 !important;
	}

	.z-md-2 {
		z-index: 2 !important;
	}

	.z-md-3 {
		z-index: 3 !important;
	}
}

@media (min-width: 992px) {
	.z-lg-n1 {
		z-index: -1 !important;
	}

	.z-lg-0 {
		z-index: 0 !important;
	}

	.z-lg-1 {
		z-index: 1 !important;
	}

	.z-lg-2 {
		z-index: 2 !important;
	}

	.z-lg-3 {
		z-index: 3 !important;
	}
}

@media (min-width: 1200px) {
	.z-xl-n1 {
		z-index: -1 !important;
	}

	.z-xl-0 {
		z-index: 0 !important;
	}

	.z-xl-1 {
		z-index: 1 !important;
	}

	.z-xl-2 {
		z-index: 2 !important;
	}

	.z-xl-3 {
		z-index: 3 !important;
	}
}

@media (min-width: 1400px) {
	.z-xxl-n1 {
		z-index: -1 !important;
	}

	.z-xxl-0 {
		z-index: 0 !important;
	}

	.z-xxl-1 {
		z-index: 1 !important;
	}

	.z-xxl-2 {
		z-index: 2 !important;
	}

	.z-xxl-3 {
		z-index: 3 !important;
	}
}
