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

/// The spacer of the Captcha.
/// @group captcha
$kendo-captcha-spacer: k-spacing(2) !default;

/// The width of the Captcha.
/// @group captcha
$kendo-captcha-width: 280px !default;
/// The font family of the Captcha.
/// @group captcha
$kendo-captcha-font-family: var( --kendo-font-family, inherit ) !default;
/// The font size of the Captcha.
/// @group captcha
$kendo-captcha-font-size: var( --kendo-font-size, inherit ) !default;
/// The line height of the Captcha.
/// @group captcha
$kendo-captcha-line-height: var( --kendo-line-height, normal ) !default;
/// The spacing of the Captcha.
/// @group captcha
$kendo-captcha-spacing: $kendo-captcha-spacer !default;
/// The background color of the Captcha.
/// @group captcha
$kendo-captcha-bg: var( --kendo-component-bg, initial ) !default;
/// The text color of the Captcha.
/// @group captcha
$kendo-captcha-text: var( --kendo-component-text, initial ) !default;
/// The border color of the Captcha.
/// @group captcha
$kendo-captcha-border: var( --kendo-component-border, initial ) !default;

/// The spacing of the Captcha image wrapper.
/// @group captcha
$kendo-captcha-image-wrap-spacing: $kendo-captcha-spacer !default;
/// The spacing of the Captcha image controls.
/// @group captcha
$kendo-captcha-image-controls-spacing: calc( #{$kendo-captcha-spacer} / 2 ) !default;

/// The offset of the Captcha validation message.
/// @group captcha
$kendo-captcha-validation-offset-y: calc( #{$kendo-captcha-spacer} / 2 ) !default;
/// The font size of the Captcha validation message.
/// @group captcha
$kendo-captcha-validation-font-size: var( --kendo-font-size-sm, inherit ) !default;
