/**
 * Variables
 */

.tabs {
    ////
    /// The background of the tabs component
    /// @name background
    /// @type color
    ////
    ----background: #{color('white')};
    ////
    /// The border top color of the tabs component
    /// @name border-top-color
    /// @type color
    ////
    ----border-top-color: #{color('light')};
    ////
    /// The border right color of the tabs component
    /// @name border-right-color
    /// @type color
    ////
    ----border-right-color: #{color('light')};
    ////
    /// The border bottom color of the tabs component
    /// @name border-bottom-color
    /// @type color
    ////
    ----border-bottom-color: #{color('light')};
    ////
    /// The border left color of the tabs component
    /// @name border-left-color
    /// @type color
    ////
    ----border-left-color: #{color('light')};
    ////
    /// The border color of the tabs 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 tabs component
    /// @name border-style
    ////
    ----border-style: #{var(--border-style)};
    ////
    /// The border top width of the tabs component
    /// @name border-top-width
    ////
    ----border-top-width: #{var(--border-top-width)};
    ////
    /// The border right width of the tabs component
    /// @name border-right-width
    ////
    ----border-right-width: #{var(--border-right-width)};
    ////
    /// The border bottom width of the tabs component
    /// @name border-bottom-width
    ////
    ----border-bottom-width: #{var(--border-bottom-width)};
    ////
    /// The border left width of the tabs component
    /// @name border-left-width
    ////
    ----border-left-width: #{var(--border-left-width)};
    ////
    /// The border width of the tabs 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 tabs component
    /// @name border-top-left-radius
    /// @type size
    ////
    ----border-top-left-radius: #{var(--border-top-left-radius)};
    ////
    /// The border top right radius of the tabs component
    /// @name border-top-right-radius
    /// @type size
    ////
    ----border-top-right-radius: #{var(--border-top-right-radius)};
    ////
    /// The border bottom right radius of the tabs component
    /// @name border-bottom-right-radius
    /// @type size
    ////
    ----border-bottom-right-radius: #{var(--border-bottom-right-radius)};
    ////
    /// The border bottom left radius of the tabs component
    /// @name border-bottom-left-radius
    /// @type size
    ////
    ----border-bottom-left-radius: #{var(--border-bottom-left-radius)};
    ////
    /// The border radius of the tabs 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 tabs component
    /// @name box-shadow-offset-x
    ////
    ----box-shadow-offset-x: #{var(--box-shadow-offset-x)};
    ////
    /// The box shadow vertical offset of the tabs component
    /// @name box-shadow-offset-y
    ////
    ----box-shadow-offset-y: #{var(--box-shadow-offset-y)};
    ////
    /// The box shadow blur radius of the tabs component
    /// @name box-shadow-blur-radius
    ////
    ----box-shadow-blur-radius: #{var(--box-shadow-blur-radius)};
    ////
    /// The box shadow spread radius of the tabs component
    /// @name box-shadow-spread-radius
    ////
    ----box-shadow-spread-radius: #{var(--box-shadow-spread-radius)};
    ////
    /// The box shadow spread radius of the tabs component
    /// @name box-shadow-color
    ////
    ----box-shadow-color: #{var(--box-shadow-color)};
    ////
    /// The box shadow of the tabs 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 tabs component item
    /// @name color
    /// @type color
    ////
    ----color: #{contrast-color($color-white)};
    ////
    /// The font size of the tabs component
    /// @name font-size
    /// @type size
    ////
    ----font-size: #{font-size()};
    ////
    /// The padding top of the tabs component
    /// @name padding-top
    /// @type size
    ////
    ----padding-top: #{var(--padding-top)};
    ////
    /// The padding right of the tabs component
    /// @name padding-right
    /// @type size
    ////
    ----padding-right: #{var(--padding-right)};
    ////
    /// The padding bottom of the tabs component
    /// @name padding-bottom
    /// @type size
    ////
    ----padding-bottom: #{var(--padding-bottom)};
    ////
    /// The padding left of the tabs component
    /// @name padding-left
    /// @type size
    ////
    ----padding-left: #{var(--padding-left)};
    ////
    /// The padding of the tabs component
    /// @name padding
    ////
    ----padding: #{var(----padding-top) var(----padding-right) var(----padding-bottom) var(----padding-left)};
    ////
    /// The background of the tabs component header
    /// @name header--background
    /// @type color
    ////
    ----header--background: #{color('white')};
    ////
    /// The background of the tabs component header when active
    /// @name header--background--active
    /// @type color
    ////
    ----header--background--active: #{color('white')};
    ////
    /// The background of the tabs component header when hovered or focused
    /// @name header--background--hover
    /// @type color
    ////
    ----header--background--hover: #{color('gray-05')};
    ////
    /// The border color of the tabs component header
    /// @name header--border-color
    /// @type color
    ////
    ----header--border-color: #{transparent};
    ////
    /// The border color of the tabs component header when active
    /// @name header--border-color--active
    ////
    ----header--border-color--active: #{color('primary')};
    ////
    /// The color of the tabs component header when active
    /// @name header--color--active
    ////
    ----header--color--active: #{var(----color)};
    ////
    /// The border style of the tabs component header
    /// @name header--border-style
    ////
    ----header--border-style: #{var(--border-style)};
    ////
    /// The border top width of the tabs component header
    /// @name header--border-top-width
    ////
    ----header--border-top-width: #{0};
    ////
    /// The border right width of the tabs component header
    /// @name header--border-right-width
    ////
    ----header--border-right-width: #{0};
    ////
    /// The border bottom width of the tabs component header
    /// @name header--border-bottom-width
    ////
    ----header--border-bottom-width: #{2px};
    ////
    /// The border left width of the tabs component header
    /// @name header--border-left-width
    ////
    ----header--border-left-width: #{0};
    ////
    /// The border width of the tabs component header
    /// @name header--border-width
    ////
    ----header--border-width: #{var(----header--border-top-width) var(----header--border-right-width) var(----header--border-bottom-width) var(----header--border-left-width)};
    ////
    /// The bottom margin of the tabs component header
    /// @name header--margin-bottom
    ////
    ----header--margin-bottom: #{-1px};
    ////
    /// The padding top of the tabs component header
    /// @name header--padding-top
    ////
    ----header--padding-top: #{var(----padding-top)};
    ////
    /// The padding right of the tabs component header
    /// @name header--padding-right
    ////
    ----header--padding-right: #{var(----padding-right)};
    ////
    /// The padding bottom of the tabs component header
    /// @name header--padding-bottom
    /// @type size
    ////
    ----header--padding-bottom: #{var(----padding-bottom)};
    ////
    /// The padding left of the tabs component header
    /// @name header--padding-left
    /// @type size
    ////
    ----header--padding-left: #{var(----padding-left)};
    ////
    /// The padding of the tabs component header
    /// @name header--padding
    ////
    ----header--padding: #{var(----header--padding-top) var(----header--padding-right) var(----header--padding-bottom) var(----header--padding-left)};
}
