//
// Variables
// --------------------------------------------------

//-- Z-index master list
//
// Warning: Avoid customizing these values. They're used for a bird's eye view
// of components dependent on the z-axis and are designed to all work together.
//
// Note: These variables are not generated into the Customizer.

$zindex-toast-background:  1080 !default;
$zindex-toast:             1090 !default;


//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.

// Extra small screen / phone
//** Deprecated `$screen-xs` as of v3.0.1
$screen-xs:                  480px !default;
//** Deprecated `$screen-xs-min` as of v3.2.0
$screen-xs-min:              $screen-xs !default;
//** Deprecated `$screen-phone` as of v3.0.1
$screen-phone:               $screen-xs-min !default;

// Small screen / tablet
//** Deprecated `$screen-sm` as of v3.0.1
$screen-sm:                  768px !default;
$screen-sm-min:              $screen-sm !default;
//** Deprecated `$screen-tablet` as of v3.0.1
$screen-tablet:              $screen-sm-min !default;

// Medium screen / desktop
//** Deprecated `$screen-md` as of v3.0.1
$screen-md:                  992px !default;
$screen-md-min:              $screen-md !default;
//** Deprecated `$screen-desktop` as of v3.0.1
$screen-desktop:             $screen-md-min !default;

// Large screen / wide desktop
//** Deprecated `$screen-lg` as of v3.0.1
$screen-lg:                  1200px !default;
$screen-lg-min:              $screen-lg !default;
//** Deprecated `$screen-lg-desktop` as of v3.0.1
$screen-lg-desktop:          $screen-lg-min !default;

// So media queries don't overlap when required, provide a maximum
$screen-xs-max:              ($screen-sm-min - 1) !default;
$screen-sm-max:              ($screen-md-min - 1) !default;
$screen-md-max:              ($screen-lg-min - 1) !default;


//== Toasts
//
//##

//** Padding applied to the toast body
$toast-inner-padding:         15px !default;

//** Background color of toast content area
$toast-content-bg:                             rgba(0,0,0,.75) !default;
//** Toast content border color
$toast-content-border-color:                   rgba(0,0,0,.8) !default;
//** Toast content border color **for IE8**
$toast-content-fallback-border-color:          #999 !default;

//** Toast backdrop background color
$toast-backdrop-bg:           transparent !default;
//** Toast backdrop opacity
$toast-backdrop-opacity:      .5 !default;

//** Toast border radius
$toast-border-radius-base:	  6px !default;

//** Toast rounded border radius
$toast-border-radius-round-base:	  25.5px !default;


$toast-lg:                    600px !default;
$toast-md:                    300px !default;
$toast-sm:                    150px !default;