/**
 * Variables
 */

.tooltip-wrapper {
    ////
    /// The background of the tooltip component
    /// @name background
    /// @type color
    ////
    ----background: #{color('white')};
    ////
    /// The border top color of the tooltip component
    /// @name border-top-color
    /// @type color
    ////
    ----border-top-color: #{color('light')};
    ////
    /// The border right color of the tooltip component
    /// @name border-right-color
    /// @type color
    ////
    ----border-right-color: #{color('light')};
    ////
    /// The border bottom color of the tooltip component
    /// @name border-bottom-color
    /// @type color
    ////
    ----border-bottom-color: #{color('light')};
    ////
    /// The border left color of the tooltip component
    /// @name border-left-color
    /// @type color
    ////
    ----border-left-color: #{color('light')};
    ////
    /// The border color of the tooltip component
    /// @name border-color
    ////
    ----border-color: #{var(----border-top-color) var(----border-right-color) var(----border-bottom-color) var(----border-left-color)};
    ////
    /// The border style of the tooltip component
    /// @name border-style
    ////
    ----border-style: #{var(--border-style)};
    ////
    /// The border top width of the tooltip component
    /// @name border-top-width
    ////
    ----border-top-width: #{var(--border-top-width)};
    ////
    /// The border right width of the tooltip component
    /// @name border-right-width
    ////
    ----border-right-width: #{var(--border-right-width)};
    ////
    /// The border bottom width of the tooltip component
    /// @name border-bottom-width
    ////
    ----border-bottom-width: #{var(--border-bottom-width)};
    ////
    /// The border left width of the tooltip component
    /// @name border-left-width
    ////
    ----border-left-width: #{var(--border-left-width)};
    ////
    /// The border width of the tooltip component
    /// @name border-width
    ////
    ----border-width: #{var(----border-top-width) var(----border-right-width) var(----border-bottom-width) var(----border-left-width)};
    ////
    /// The border top left radius of the tooltip component
    /// @name border-top-left-radius
    /// @type size
    ////
    ----border-top-left-radius: #{var(--border-top-left-radius)};
    ////
    /// The border top right radius of the tooltip component
    /// @name border-top-right-radius
    /// @type size
    ////
    ----border-top-right-radius: #{var(--border-top-right-radius)};
    ////
    /// The border bottom right radius of the tooltip component
    /// @name border-bottom-right-radius
    /// @type size
    ////
    ----border-bottom-right-radius: #{var(--border-bottom-right-radius)};
    ////
    /// The border bottom left radius of the tooltip component
    /// @name border-bottom-left-radius
    /// @type size
    ////
    ----border-bottom-left-radius: #{var(--border-bottom-left-radius)};
    ////
    /// The border radius of the tooltip component
    /// @name border-radius
    ////
    ----border-radius: #{var(----border-top-left-radius) var(----border-top-right-radius) var(----border-bottom-right-radius) var(----border-bottom-left-radius)};
    ////
    /// The box shadow horizontal offset of the tooltip component
    /// @name box-shadow-offset-x
    ////
    ----box-shadow-offset-x: #{var(--box-shadow-offset-x)};
    ////
    /// The box shadow vertical offset of the tooltip component
    /// @name box-shadow-offset-y
    ////
    ----box-shadow-offset-y: #{var(--box-shadow-offset-y)};
    ////
    /// The box shadow blur radius of the tooltip component
    /// @name box-shadow-blur-radius
    ////
    ----box-shadow-blur-radius: #{var(--box-shadow-blur-radius)};
    ////
    /// The box shadow spread radius of the tooltip component
    /// @name box-shadow-spread-radius
    ////
    ----box-shadow-spread-radius: #{var(--box-shadow-spread-radius)};
    ////
    /// The box shadow spread radius of the tooltip component
    /// @name box-shadow-color
    ////
    ----box-shadow-color: #{var(--box-shadow-color)};
    ////
    /// The box shadow of the tooltip component
    /// @name box-shadow
    ////
    ----box-shadow: #{var(----box-shadow-offset-x) var(----box-shadow-offset-y) var(----box-shadow-blur-radius) var(----box-shadow-spread-radius) var(----box-shadow-color)};
    ////
    /// The color of the tooltip component item
    /// @name color
    /// @type color
    ////
    ----color: #{contrast-color($color-white)};
    ////
    /// The font size of the tooltip component
    /// @name font-size
    /// @type size
    ////
    ----font-size: #{font-size()};
    ////
    /// The font weight of the tooltip component
    /// @name font-weight
    ////
    ----font-weight: #{font-weight('normal')};
    ////
    /// The line height of the tooltip component
    /// @name line-height
    ////
    ----line-height: #{var(--line-height)};
    ////
    /// The margin top of the tooltip component
    /// @name margin-top
    /// @type size
    ////
    ----margin-top: #{calc(var(--margin-top) / 2)};
    ////
    /// The margin right of the tooltip component
    /// @name margin-right
    /// @type size
    ////
    ----margin-right: #{calc(var(--margin-right) / 2)};
    ////
    /// The margin bottom of the tooltip component
    /// @name margin-bottom
    /// @type size
    ////
    ----margin-bottom: #{calc(var(--margin-bottom) / 2)};
    ////
    /// The margin left of the tooltip component
    /// @name margin-left
    /// @type size
    ////
    ----margin-left: #{calc(var(--margin-left) / 2)};
    ////
    /// The margin of the tooltip component
    /// @name margin
    ////
    ----margin: #{var(----margin-top) var(----margin-right) var(----margin-bottom) var(----margin-left)};
    ////
    /// The padding top of the tooltip component
    /// @name padding-top
    /// @type size
    ////
    ----padding-top: #{calc(var(--padding-top) * 3 / 4)};
    ////
    /// The padding right of the tooltip component
    /// @name padding-right
    /// @type size
    ////
    ----padding-right: #{var(--padding-right)};
    ////
    /// The padding bottom of the tooltip component
    /// @name padding-bottom
    /// @type size
    ////
    ----padding-bottom: #{calc(var(--padding-bottom) * 3 / 4)};
    ////
    /// The padding left of the tooltip component
    /// @name padding-left
    /// @type size
    ////
    ----padding-left: #{var(--padding-left)};
    ////
    /// The padding of the tooltip component
    /// @name padding
    ////
    ----padding: #{var(----padding-top) var(----padding-right) var(----padding-bottom) var(----padding-left)};
    ////
    /// The width of the tooltip component
    /// @name width
    ////
    ----width: #{280px};
    ////
    /// The z-index of the tooltip component
    /// @name z-index
    ////
    ----z-index: #{2000};
}
