@use "sass:map";
@use "../core/_index.scss" as *;

/// The border width of the Wizard.
/// @group wizard
$kendo-wizard-border-width: 0px !default;
/// The horizontal padding of the Wizard.
/// @group wizard
$kendo-wizard-padding-x: k-spacing(6) !default;
/// The vertical padding of the Wizard.
/// @group wizard
$kendo-wizard-padding-y: k-spacing(6) !default;
/// The font size of the Wizard.
/// @group wizard
$kendo-wizard-font-size: var( --kendo-font-size, inherit ) !default;
/// The line height of the Wizard.
/// @group wizard
$kendo-wizard-line-height: var( --kendo-line-height, normal ) !default;
/// The font family of the Wizard.
/// @group wizard
$kendo-wizard-font-family: var( --kendo-font-family, inherit ) !default;


/// The horizontal padding of the Wizard steps.
/// @group wizard
$kendo-wizard-steps-padding-x: k-spacing(3) !default;
/// The vertical padding of the Wizard steps.
/// @group wizard
$kendo-wizard-steps-padding-y: k-spacing(3) !default;

/// The horizontal padding of the Wizard content.
/// @group wizard
$kendo-wizard-content-padding-x: k-spacing(0) !default;
/// The vertical padding of the Wizard content.
/// @group wizard
$kendo-wizard-content-padding-y: k-spacing(0) !default;
/// The text color of the Wizard content.
/// @group wizard
$kendo-wizard-content-text: var( --kendo-component-text, initial ) !default;
/// The background color of the Wizard content.
/// @group wizard
$kendo-wizard-content-bg: var( --kendo-component-bg, initial ) !default;

/// The horizontal margin of the Wizard's Button container.
/// @group wizard
$kendo-wizard-buttons-margin-x: k-spacing(7) !default;
/// The vertical margin of the Wizard Button container.
/// @group wizard
$kendo-wizard-buttons-margin-y: k-spacing(6) !default;

/// The outline of the focused Wizard step.
/// @group wizard
$kendo-wizard-step-focus-border: if($kendo-enable-color-system, k-color( base-emphasis ), k-get-theme-color-var( neutral-130 )) !default;
