/*
* This is the core file of the library. However, it just outputs stuff existing in other files as CSS.
*/
/**
 * Flexlay Mixins
 *
 * These simple mixins are provided to be used inside SCSS files, 
 * if for some reason, html selectors are not desired.
 */
/**
 * Flexlay Media Queries
 *
 * This files uses the different flexlay modules and 'assigns' them to the media queries
 * depending on Material Layout Breakpoints
 * https://material.io/guidelines/layout/responsive-ui.html
 */
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/**
 * Flexlay Child Alignment
 * https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
 * https://developer.mozilla.org/en-US/docs/Web/CSS/align-items
 * https://developer.mozilla.org/en-US/docs/Web/CSS/align-content
 */
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/** Given a breakpoint name, generate alignment selectors applicable to parent elements */
/**
* Flexlay Parent Layout
*
* https://developer.mozilla.org/en-US/docs/Web/CSS/flex-direction
*/
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/** Given a breakpoint name, generate parent layout selectors */
/**
* Flexlay Flex Property
*
* https://developer.mozilla.org/en-US/docs/Web/CSS/flex
*/
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/** Given a breakpoint name, generate selectors for CSS flex property */
/**
 * Flexlay Visibility
 *
 * These classes allow to show or hide elements between layout breakpoints.
 * Note: show is prioritized over hide.
 */
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/** Given a specified breakpoint, provide all hide rules that target it */
/** Given a breakpoint name (to be used as suffix), generate the CSS for flexlay modules **/
/** Limits content to given breakpoint bounds **/
/**
* Flexlay Fill
*
* This simple class allows a flex element to try and fill its parent in both axes
*/
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/**
* Flexlay Wrap
*
* These simple classes allows to set/unset flex wrapping behavior through the CSS flex-wrap property.
* https://developer.mozilla.org/en-US/docs/Web/CSS/flex-wrap
*/
/**
* Flexlay Layout Variables
*
* Variables of shared use through the modules
*/
/** Use this mixin to define a layout container and its direction */
/** Use this mixin to provide layout container alignment options */
/** Use this mixin to include the flexlay complete library */
[fl-layout-align^="start"] {
  justify-content: flex-start; }

[fl-layout-align^="center"] {
  justify-content: center; }

[fl-layout-align^="end"] {
  justify-content: flex-end; }

[fl-layout-align^="space-around"] {
  justify-content: space-around; }

[fl-layout-align^="space-between"] {
  justify-content: space-between; }

[fl-layout-align$=" start"] {
  align-items: flex-start;
  align-content: flex-start; }

[fl-layout-align$=" center"] {
  align-items: center;
  align-content: center;
  max-width: 100%;
  box-sizing: border-box; }

[fl-layout-align$=" end"] {
  align-items: flex-end;
  align-content: flex-end; }

[fl-layout-align$=" stretch"] {
  align-items: stretch;
  align-content: stretch; }

[fl-layout], [fl-layout="row"], [fl-layout="column"] {
  box-sizing: border-box;
  display: flex; }

[fl-layout="row"] {
  flex-direction: row; }

[fl-layout="column"] {
  flex-direction: column;
  /* IE10-IE11 column-flex bug fix (set proper default value) */ }
  [fl-layout="column"] > [fl-flex] {
    -ms-flex-basis: auto;
    flex-basis: auto; }

[fl-flex] {
  flex: 1;
  box-sizing: border-box; }

[fl-flex-grow] {
  flex: 1 1 100%;
  box-sizing: border-box; }

[fl-flex-initial] {
  flex: 0 1 auto;
  box-sizing: border-box; }

[fl-flex-auto] {
  flex: 1 1 auto;
  box-sizing: border-box; }

[fl-flex-none] {
  flex: 0 0 auto;
  box-sizing: border-box; }

[fl-flex-noshrink] {
  flex: 1 0 auto;
  box-sizing: border-box; }

[fl-flex-nogrow] {
  flex: 0 1 auto;
  box-sizing: border-box; }

[fl-flex="0"] {
  flex: 1 1 0;
  max-width: 0;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="0"],
[fl-layout="row"] > [fl-flex="0"] {
  flex: 1 1 0;
  max-width: 0;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="0"],
[fl-layout="column"] > [fl-flex="0"] {
  flex: 1 1 0;
  max-width: 100%;
  max-height: 0;
  box-sizing: border-box; }

[fl-flex="5"] {
  flex: 1 1 5%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="5"],
[fl-layout="row"] > [fl-flex="5"] {
  flex: 1 1 5%;
  max-width: 5%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="5"],
[fl-layout="column"] > [fl-flex="5"] {
  flex: 1 1 5%;
  max-width: 100%;
  max-height: 5%;
  box-sizing: border-box; }

[fl-flex="10"] {
  flex: 1 1 10%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="10"],
[fl-layout="row"] > [fl-flex="10"] {
  flex: 1 1 10%;
  max-width: 10%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="10"],
[fl-layout="column"] > [fl-flex="10"] {
  flex: 1 1 10%;
  max-width: 100%;
  max-height: 10%;
  box-sizing: border-box; }

[fl-flex="15"] {
  flex: 1 1 15%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="15"],
[fl-layout="row"] > [fl-flex="15"] {
  flex: 1 1 15%;
  max-width: 15%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="15"],
[fl-layout="column"] > [fl-flex="15"] {
  flex: 1 1 15%;
  max-width: 100%;
  max-height: 15%;
  box-sizing: border-box; }

[fl-flex="20"] {
  flex: 1 1 20%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="20"],
[fl-layout="row"] > [fl-flex="20"] {
  flex: 1 1 20%;
  max-width: 20%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="20"],
[fl-layout="column"] > [fl-flex="20"] {
  flex: 1 1 20%;
  max-width: 100%;
  max-height: 20%;
  box-sizing: border-box; }

[fl-flex="25"] {
  flex: 1 1 25%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="25"],
[fl-layout="row"] > [fl-flex="25"] {
  flex: 1 1 25%;
  max-width: 25%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="25"],
[fl-layout="column"] > [fl-flex="25"] {
  flex: 1 1 25%;
  max-width: 100%;
  max-height: 25%;
  box-sizing: border-box; }

[fl-flex="30"] {
  flex: 1 1 30%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="30"],
[fl-layout="row"] > [fl-flex="30"] {
  flex: 1 1 30%;
  max-width: 30%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="30"],
[fl-layout="column"] > [fl-flex="30"] {
  flex: 1 1 30%;
  max-width: 100%;
  max-height: 30%;
  box-sizing: border-box; }

[fl-flex="35"] {
  flex: 1 1 35%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="35"],
[fl-layout="row"] > [fl-flex="35"] {
  flex: 1 1 35%;
  max-width: 35%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="35"],
[fl-layout="column"] > [fl-flex="35"] {
  flex: 1 1 35%;
  max-width: 100%;
  max-height: 35%;
  box-sizing: border-box; }

[fl-flex="40"] {
  flex: 1 1 40%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="40"],
[fl-layout="row"] > [fl-flex="40"] {
  flex: 1 1 40%;
  max-width: 40%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="40"],
[fl-layout="column"] > [fl-flex="40"] {
  flex: 1 1 40%;
  max-width: 100%;
  max-height: 40%;
  box-sizing: border-box; }

[fl-flex="45"] {
  flex: 1 1 45%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="45"],
[fl-layout="row"] > [fl-flex="45"] {
  flex: 1 1 45%;
  max-width: 45%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="45"],
[fl-layout="column"] > [fl-flex="45"] {
  flex: 1 1 45%;
  max-width: 100%;
  max-height: 45%;
  box-sizing: border-box; }

[fl-flex="50"] {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="50"],
[fl-layout="row"] > [fl-flex="50"] {
  flex: 1 1 50%;
  max-width: 50%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="50"],
[fl-layout="column"] > [fl-flex="50"] {
  flex: 1 1 50%;
  max-width: 100%;
  max-height: 50%;
  box-sizing: border-box; }

[fl-flex="55"] {
  flex: 1 1 55%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="55"],
[fl-layout="row"] > [fl-flex="55"] {
  flex: 1 1 55%;
  max-width: 55%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="55"],
[fl-layout="column"] > [fl-flex="55"] {
  flex: 1 1 55%;
  max-width: 100%;
  max-height: 55%;
  box-sizing: border-box; }

[fl-flex="60"] {
  flex: 1 1 60%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="60"],
[fl-layout="row"] > [fl-flex="60"] {
  flex: 1 1 60%;
  max-width: 60%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="60"],
[fl-layout="column"] > [fl-flex="60"] {
  flex: 1 1 60%;
  max-width: 100%;
  max-height: 60%;
  box-sizing: border-box; }

[fl-flex="65"] {
  flex: 1 1 65%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="65"],
[fl-layout="row"] > [fl-flex="65"] {
  flex: 1 1 65%;
  max-width: 65%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="65"],
[fl-layout="column"] > [fl-flex="65"] {
  flex: 1 1 65%;
  max-width: 100%;
  max-height: 65%;
  box-sizing: border-box; }

[fl-flex="70"] {
  flex: 1 1 70%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="70"],
[fl-layout="row"] > [fl-flex="70"] {
  flex: 1 1 70%;
  max-width: 70%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="70"],
[fl-layout="column"] > [fl-flex="70"] {
  flex: 1 1 70%;
  max-width: 100%;
  max-height: 70%;
  box-sizing: border-box; }

[fl-flex="75"] {
  flex: 1 1 75%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="75"],
[fl-layout="row"] > [fl-flex="75"] {
  flex: 1 1 75%;
  max-width: 75%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="75"],
[fl-layout="column"] > [fl-flex="75"] {
  flex: 1 1 75%;
  max-width: 100%;
  max-height: 75%;
  box-sizing: border-box; }

[fl-flex="80"] {
  flex: 1 1 80%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="80"],
[fl-layout="row"] > [fl-flex="80"] {
  flex: 1 1 80%;
  max-width: 80%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="80"],
[fl-layout="column"] > [fl-flex="80"] {
  flex: 1 1 80%;
  max-width: 100%;
  max-height: 80%;
  box-sizing: border-box; }

[fl-flex="85"] {
  flex: 1 1 85%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="85"],
[fl-layout="row"] > [fl-flex="85"] {
  flex: 1 1 85%;
  max-width: 85%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="85"],
[fl-layout="column"] > [fl-flex="85"] {
  flex: 1 1 85%;
  max-width: 100%;
  max-height: 85%;
  box-sizing: border-box; }

[fl-flex="90"] {
  flex: 1 1 90%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="90"],
[fl-layout="row"] > [fl-flex="90"] {
  flex: 1 1 90%;
  max-width: 90%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="90"],
[fl-layout="column"] > [fl-flex="90"] {
  flex: 1 1 90%;
  max-width: 100%;
  max-height: 90%;
  box-sizing: border-box; }

[fl-flex="95"] {
  flex: 1 1 95%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="95"],
[fl-layout="row"] > [fl-flex="95"] {
  flex: 1 1 95%;
  max-width: 95%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="95"],
[fl-layout="column"] > [fl-flex="95"] {
  flex: 1 1 95%;
  max-width: 100%;
  max-height: 95%;
  box-sizing: border-box; }

[fl-flex="100"] {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="100"],
[fl-layout="row"] > [fl-flex="100"] {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="100"],
[fl-layout="column"] > [fl-flex="100"] {
  flex: 1 1 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-flex="33"] {
  flex: 1 1 33%;
  max-width: 33%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="33"],
[fl-layout="row"] > [fl-flex="33"] {
  flex: 1 1 33%;
  max-width: 33%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="33"],
[fl-layout="column"] > [fl-flex="33"] {
  flex: 1 1 33%;
  max-width: 100%;
  max-height: 33%;
  box-sizing: border-box; }

[fl-flex="66"] {
  flex: 1 1 66%;
  max-width: 66%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="row"] > [fl-flex="66"],
[fl-layout="row"] > [fl-flex="66"] {
  flex: 1 1 66%;
  max-width: 66%;
  max-height: 100%;
  box-sizing: border-box; }

[fl-layout="column"] > [fl-flex="66"],
[fl-layout="column"] > [fl-flex="66"] {
  flex: 1 1 66%;
  max-width: 100%;
  max-height: 66%;
  box-sizing: border-box; }

@media (max-width: 599px) {
  [fl-layout-align-xs^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-xs^="center"] {
    justify-content: center; }
  [fl-layout-align-xs^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-xs^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-xs^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-xs$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-xs$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-xs$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-xs$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-xs], [fl-layout-xs="row"], [fl-layout-xs="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-xs="row"] {
    flex-direction: row; }
  [fl-layout-xs="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-xs="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-xs] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-xs] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-xs] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-xs] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-xs] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-xs] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-xs] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-xs="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="0"],
  [fl-layout-xs="row"] > [fl-flex-xs="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="0"],
  [fl-layout-xs="column"] > [fl-flex-xs="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-xs="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="5"],
  [fl-layout-xs="row"] > [fl-flex-xs="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="5"],
  [fl-layout-xs="column"] > [fl-flex-xs="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-xs="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="10"],
  [fl-layout-xs="row"] > [fl-flex-xs="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="10"],
  [fl-layout-xs="column"] > [fl-flex-xs="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-xs="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="15"],
  [fl-layout-xs="row"] > [fl-flex-xs="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="15"],
  [fl-layout-xs="column"] > [fl-flex-xs="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-xs="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="20"],
  [fl-layout-xs="row"] > [fl-flex-xs="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="20"],
  [fl-layout-xs="column"] > [fl-flex-xs="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-xs="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="25"],
  [fl-layout-xs="row"] > [fl-flex-xs="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="25"],
  [fl-layout-xs="column"] > [fl-flex-xs="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-xs="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="30"],
  [fl-layout-xs="row"] > [fl-flex-xs="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="30"],
  [fl-layout-xs="column"] > [fl-flex-xs="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-xs="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="35"],
  [fl-layout-xs="row"] > [fl-flex-xs="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="35"],
  [fl-layout-xs="column"] > [fl-flex-xs="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-xs="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="40"],
  [fl-layout-xs="row"] > [fl-flex-xs="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="40"],
  [fl-layout-xs="column"] > [fl-flex-xs="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-xs="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="45"],
  [fl-layout-xs="row"] > [fl-flex-xs="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="45"],
  [fl-layout-xs="column"] > [fl-flex-xs="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-xs="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="50"],
  [fl-layout-xs="row"] > [fl-flex-xs="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="50"],
  [fl-layout-xs="column"] > [fl-flex-xs="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-xs="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="55"],
  [fl-layout-xs="row"] > [fl-flex-xs="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="55"],
  [fl-layout-xs="column"] > [fl-flex-xs="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-xs="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="60"],
  [fl-layout-xs="row"] > [fl-flex-xs="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="60"],
  [fl-layout-xs="column"] > [fl-flex-xs="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-xs="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="65"],
  [fl-layout-xs="row"] > [fl-flex-xs="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="65"],
  [fl-layout-xs="column"] > [fl-flex-xs="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-xs="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="70"],
  [fl-layout-xs="row"] > [fl-flex-xs="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="70"],
  [fl-layout-xs="column"] > [fl-flex-xs="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-xs="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="75"],
  [fl-layout-xs="row"] > [fl-flex-xs="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="75"],
  [fl-layout-xs="column"] > [fl-flex-xs="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-xs="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="80"],
  [fl-layout-xs="row"] > [fl-flex-xs="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="80"],
  [fl-layout-xs="column"] > [fl-flex-xs="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-xs="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="85"],
  [fl-layout-xs="row"] > [fl-flex-xs="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="85"],
  [fl-layout-xs="column"] > [fl-flex-xs="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-xs="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="90"],
  [fl-layout-xs="row"] > [fl-flex-xs="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="90"],
  [fl-layout-xs="column"] > [fl-flex-xs="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-xs="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="95"],
  [fl-layout-xs="row"] > [fl-flex-xs="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="95"],
  [fl-layout-xs="column"] > [fl-flex-xs="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="100"],
  [fl-layout-xs="row"] > [fl-flex-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="100"],
  [fl-layout-xs="column"] > [fl-flex-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-xs="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="33"],
  [fl-layout-xs="row"] > [fl-flex-xs="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="33"],
  [fl-layout-xs="column"] > [fl-flex-xs="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-xs="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xs="66"],
  [fl-layout-xs="row"] > [fl-flex-xs="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xs="66"],
  [fl-layout-xs="column"] > [fl-flex-xs="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; }
  [fl-hide]:not([fl-show]):not([fl-show-xs]) {
    display: none; }
  [fl-hide-xs]:not([fl-show]):not([fl-show-xs]) {
    display: none; } }

@media (min-width: 600px) {
  [fl-layout-align-gt-xs^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-gt-xs^="center"] {
    justify-content: center; }
  [fl-layout-align-gt-xs^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-gt-xs^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-gt-xs^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-gt-xs$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-gt-xs$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-gt-xs$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-gt-xs$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-gt-xs], [fl-layout-gt-xs="row"], [fl-layout-gt-xs="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-gt-xs="row"] {
    flex-direction: row; }
  [fl-layout-gt-xs="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-gt-xs="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-gt-xs] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-gt-xs] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-gt-xs] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-gt-xs] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-gt-xs] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-gt-xs] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-gt-xs] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-gt-xs="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="0"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="0"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-gt-xs="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="5"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="5"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="10"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="10"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="15"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="15"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="20"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="20"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="25"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="25"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="30"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="30"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="35"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="35"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="40"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="40"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="45"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="45"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="50"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="50"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="55"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="55"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="60"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="60"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="65"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="65"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="70"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="70"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="75"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="75"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="80"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="80"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="85"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="85"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="90"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="90"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="95"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="95"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="100"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="100"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="33"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="33"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-gt-xs="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-xs="66"],
  [fl-layout-gt-xs="row"] > [fl-flex-gt-xs="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-xs="66"],
  [fl-layout-gt-xs="column"] > [fl-flex-gt-xs="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; } }

@media (min-width: 600px) and (max-width: 959px) {
  [fl-layout-align-sm^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-sm^="center"] {
    justify-content: center; }
  [fl-layout-align-sm^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-sm^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-sm^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-sm$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-sm$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-sm$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-sm$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-sm], [fl-layout-sm="row"], [fl-layout-sm="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-sm="row"] {
    flex-direction: row; }
  [fl-layout-sm="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-sm="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-sm] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-sm] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-sm] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-sm] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-sm] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-sm] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-sm] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-sm="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="0"],
  [fl-layout-sm="row"] > [fl-flex-sm="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="0"],
  [fl-layout-sm="column"] > [fl-flex-sm="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-sm="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="5"],
  [fl-layout-sm="row"] > [fl-flex-sm="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="5"],
  [fl-layout-sm="column"] > [fl-flex-sm="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-sm="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="10"],
  [fl-layout-sm="row"] > [fl-flex-sm="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="10"],
  [fl-layout-sm="column"] > [fl-flex-sm="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-sm="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="15"],
  [fl-layout-sm="row"] > [fl-flex-sm="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="15"],
  [fl-layout-sm="column"] > [fl-flex-sm="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-sm="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="20"],
  [fl-layout-sm="row"] > [fl-flex-sm="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="20"],
  [fl-layout-sm="column"] > [fl-flex-sm="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-sm="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="25"],
  [fl-layout-sm="row"] > [fl-flex-sm="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="25"],
  [fl-layout-sm="column"] > [fl-flex-sm="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-sm="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="30"],
  [fl-layout-sm="row"] > [fl-flex-sm="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="30"],
  [fl-layout-sm="column"] > [fl-flex-sm="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-sm="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="35"],
  [fl-layout-sm="row"] > [fl-flex-sm="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="35"],
  [fl-layout-sm="column"] > [fl-flex-sm="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-sm="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="40"],
  [fl-layout-sm="row"] > [fl-flex-sm="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="40"],
  [fl-layout-sm="column"] > [fl-flex-sm="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-sm="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="45"],
  [fl-layout-sm="row"] > [fl-flex-sm="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="45"],
  [fl-layout-sm="column"] > [fl-flex-sm="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-sm="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="50"],
  [fl-layout-sm="row"] > [fl-flex-sm="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="50"],
  [fl-layout-sm="column"] > [fl-flex-sm="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-sm="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="55"],
  [fl-layout-sm="row"] > [fl-flex-sm="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="55"],
  [fl-layout-sm="column"] > [fl-flex-sm="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-sm="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="60"],
  [fl-layout-sm="row"] > [fl-flex-sm="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="60"],
  [fl-layout-sm="column"] > [fl-flex-sm="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-sm="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="65"],
  [fl-layout-sm="row"] > [fl-flex-sm="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="65"],
  [fl-layout-sm="column"] > [fl-flex-sm="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-sm="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="70"],
  [fl-layout-sm="row"] > [fl-flex-sm="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="70"],
  [fl-layout-sm="column"] > [fl-flex-sm="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-sm="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="75"],
  [fl-layout-sm="row"] > [fl-flex-sm="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="75"],
  [fl-layout-sm="column"] > [fl-flex-sm="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-sm="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="80"],
  [fl-layout-sm="row"] > [fl-flex-sm="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="80"],
  [fl-layout-sm="column"] > [fl-flex-sm="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-sm="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="85"],
  [fl-layout-sm="row"] > [fl-flex-sm="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="85"],
  [fl-layout-sm="column"] > [fl-flex-sm="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-sm="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="90"],
  [fl-layout-sm="row"] > [fl-flex-sm="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="90"],
  [fl-layout-sm="column"] > [fl-flex-sm="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-sm="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="95"],
  [fl-layout-sm="row"] > [fl-flex-sm="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="95"],
  [fl-layout-sm="column"] > [fl-flex-sm="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="100"],
  [fl-layout-sm="row"] > [fl-flex-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="100"],
  [fl-layout-sm="column"] > [fl-flex-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-sm="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="33"],
  [fl-layout-sm="row"] > [fl-flex-sm="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="33"],
  [fl-layout-sm="column"] > [fl-flex-sm="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-sm="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-sm="66"],
  [fl-layout-sm="row"] > [fl-flex-sm="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-sm="66"],
  [fl-layout-sm="column"] > [fl-flex-sm="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; }
  [fl-hide]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-sm]) {
    display: none; }
  [fl-hide-gt-xs]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-sm]) {
    display: none; }
  [fl-hide-sm]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-sm]) {
    display: none; } }

@media (min-width: 960px) {
  [fl-layout-align-gt-sm^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-gt-sm^="center"] {
    justify-content: center; }
  [fl-layout-align-gt-sm^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-gt-sm^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-gt-sm^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-gt-sm$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-gt-sm$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-gt-sm$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-gt-sm$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-gt-sm], [fl-layout-gt-sm="row"], [fl-layout-gt-sm="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-gt-sm="row"] {
    flex-direction: row; }
  [fl-layout-gt-sm="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-gt-sm="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-gt-sm] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-gt-sm] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-gt-sm] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-gt-sm] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-gt-sm] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-gt-sm] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-gt-sm] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-gt-sm="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="0"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="0"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-gt-sm="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="5"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="5"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="10"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="10"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="15"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="15"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="20"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="20"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="25"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="25"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="30"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="30"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="35"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="35"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="40"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="40"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="45"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="45"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="50"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="50"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="55"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="55"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="60"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="60"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="65"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="65"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="70"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="70"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="75"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="75"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="80"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="80"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="85"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="85"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="90"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="90"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="95"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="95"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="100"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="100"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="33"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="33"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-gt-sm="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-sm="66"],
  [fl-layout-gt-sm="row"] > [fl-flex-gt-sm="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-sm="66"],
  [fl-layout-gt-sm="column"] > [fl-flex-gt-sm="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; } }

@media (min-width: 960px) and (max-width: 1279px) {
  [fl-layout-align-md^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-md^="center"] {
    justify-content: center; }
  [fl-layout-align-md^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-md^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-md^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-md$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-md$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-md$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-md$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-md], [fl-layout-md="row"], [fl-layout-md="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-md="row"] {
    flex-direction: row; }
  [fl-layout-md="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-md="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-md] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-md] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-md] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-md] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-md] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-md] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-md] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-md="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="0"],
  [fl-layout-md="row"] > [fl-flex-md="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="0"],
  [fl-layout-md="column"] > [fl-flex-md="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-md="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="5"],
  [fl-layout-md="row"] > [fl-flex-md="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="5"],
  [fl-layout-md="column"] > [fl-flex-md="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-md="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="10"],
  [fl-layout-md="row"] > [fl-flex-md="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="10"],
  [fl-layout-md="column"] > [fl-flex-md="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-md="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="15"],
  [fl-layout-md="row"] > [fl-flex-md="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="15"],
  [fl-layout-md="column"] > [fl-flex-md="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-md="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="20"],
  [fl-layout-md="row"] > [fl-flex-md="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="20"],
  [fl-layout-md="column"] > [fl-flex-md="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-md="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="25"],
  [fl-layout-md="row"] > [fl-flex-md="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="25"],
  [fl-layout-md="column"] > [fl-flex-md="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-md="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="30"],
  [fl-layout-md="row"] > [fl-flex-md="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="30"],
  [fl-layout-md="column"] > [fl-flex-md="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-md="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="35"],
  [fl-layout-md="row"] > [fl-flex-md="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="35"],
  [fl-layout-md="column"] > [fl-flex-md="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-md="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="40"],
  [fl-layout-md="row"] > [fl-flex-md="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="40"],
  [fl-layout-md="column"] > [fl-flex-md="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-md="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="45"],
  [fl-layout-md="row"] > [fl-flex-md="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="45"],
  [fl-layout-md="column"] > [fl-flex-md="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-md="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="50"],
  [fl-layout-md="row"] > [fl-flex-md="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="50"],
  [fl-layout-md="column"] > [fl-flex-md="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-md="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="55"],
  [fl-layout-md="row"] > [fl-flex-md="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="55"],
  [fl-layout-md="column"] > [fl-flex-md="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-md="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="60"],
  [fl-layout-md="row"] > [fl-flex-md="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="60"],
  [fl-layout-md="column"] > [fl-flex-md="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-md="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="65"],
  [fl-layout-md="row"] > [fl-flex-md="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="65"],
  [fl-layout-md="column"] > [fl-flex-md="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-md="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="70"],
  [fl-layout-md="row"] > [fl-flex-md="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="70"],
  [fl-layout-md="column"] > [fl-flex-md="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-md="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="75"],
  [fl-layout-md="row"] > [fl-flex-md="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="75"],
  [fl-layout-md="column"] > [fl-flex-md="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-md="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="80"],
  [fl-layout-md="row"] > [fl-flex-md="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="80"],
  [fl-layout-md="column"] > [fl-flex-md="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-md="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="85"],
  [fl-layout-md="row"] > [fl-flex-md="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="85"],
  [fl-layout-md="column"] > [fl-flex-md="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-md="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="90"],
  [fl-layout-md="row"] > [fl-flex-md="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="90"],
  [fl-layout-md="column"] > [fl-flex-md="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-md="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="95"],
  [fl-layout-md="row"] > [fl-flex-md="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="95"],
  [fl-layout-md="column"] > [fl-flex-md="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="100"],
  [fl-layout-md="row"] > [fl-flex-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="100"],
  [fl-layout-md="column"] > [fl-flex-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-md="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="33"],
  [fl-layout-md="row"] > [fl-flex-md="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="33"],
  [fl-layout-md="column"] > [fl-flex-md="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-md="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-md="66"],
  [fl-layout-md="row"] > [fl-flex-md="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-md="66"],
  [fl-layout-md="column"] > [fl-flex-md="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; }
  [fl-hide]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-md]) {
    display: none; }
  [fl-hide-gt-xs]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-md]) {
    display: none; }
  [fl-hide-gt-sm]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-md]) {
    display: none; }
  [fl-hide-md]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-md]) {
    display: none; } }

@media (min-width: 1280px) {
  [fl-layout-align-gt-md^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-gt-md^="center"] {
    justify-content: center; }
  [fl-layout-align-gt-md^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-gt-md^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-gt-md^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-gt-md$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-gt-md$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-gt-md$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-gt-md$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-gt-md], [fl-layout-gt-md="row"], [fl-layout-gt-md="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-gt-md="row"] {
    flex-direction: row; }
  [fl-layout-gt-md="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-gt-md="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-gt-md] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-gt-md] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-gt-md] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-gt-md] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-gt-md] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-gt-md] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-gt-md] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-gt-md="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="0"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="0"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-gt-md="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="5"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="5"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-gt-md="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="10"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="10"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-gt-md="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="15"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="15"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-gt-md="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="20"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="20"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-gt-md="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="25"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="25"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-gt-md="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="30"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="30"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-gt-md="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="35"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="35"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-gt-md="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="40"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="40"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-gt-md="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="45"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="45"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-gt-md="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="50"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="50"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-gt-md="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="55"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="55"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-gt-md="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="60"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="60"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-gt-md="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="65"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="65"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-gt-md="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="70"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="70"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-gt-md="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="75"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="75"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-gt-md="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="80"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="80"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-gt-md="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="85"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="85"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-gt-md="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="90"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="90"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-gt-md="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="95"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="95"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-gt-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="100"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="100"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-gt-md="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="33"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="33"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-gt-md="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-md="66"],
  [fl-layout-gt-md="row"] > [fl-flex-gt-md="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-md="66"],
  [fl-layout-gt-md="column"] > [fl-flex-gt-md="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; } }

@media (min-width: 1280px) and (max-width: 1919px) {
  [fl-layout-align-lg^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-lg^="center"] {
    justify-content: center; }
  [fl-layout-align-lg^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-lg^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-lg^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-lg$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-lg$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-lg$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-lg$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-lg], [fl-layout-lg="row"], [fl-layout-lg="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-lg="row"] {
    flex-direction: row; }
  [fl-layout-lg="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-lg="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-lg] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-lg] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-lg] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-lg] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-lg] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-lg] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-lg] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-lg="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="0"],
  [fl-layout-lg="row"] > [fl-flex-lg="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="0"],
  [fl-layout-lg="column"] > [fl-flex-lg="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-lg="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="5"],
  [fl-layout-lg="row"] > [fl-flex-lg="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="5"],
  [fl-layout-lg="column"] > [fl-flex-lg="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-lg="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="10"],
  [fl-layout-lg="row"] > [fl-flex-lg="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="10"],
  [fl-layout-lg="column"] > [fl-flex-lg="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-lg="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="15"],
  [fl-layout-lg="row"] > [fl-flex-lg="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="15"],
  [fl-layout-lg="column"] > [fl-flex-lg="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-lg="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="20"],
  [fl-layout-lg="row"] > [fl-flex-lg="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="20"],
  [fl-layout-lg="column"] > [fl-flex-lg="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-lg="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="25"],
  [fl-layout-lg="row"] > [fl-flex-lg="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="25"],
  [fl-layout-lg="column"] > [fl-flex-lg="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-lg="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="30"],
  [fl-layout-lg="row"] > [fl-flex-lg="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="30"],
  [fl-layout-lg="column"] > [fl-flex-lg="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-lg="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="35"],
  [fl-layout-lg="row"] > [fl-flex-lg="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="35"],
  [fl-layout-lg="column"] > [fl-flex-lg="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-lg="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="40"],
  [fl-layout-lg="row"] > [fl-flex-lg="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="40"],
  [fl-layout-lg="column"] > [fl-flex-lg="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-lg="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="45"],
  [fl-layout-lg="row"] > [fl-flex-lg="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="45"],
  [fl-layout-lg="column"] > [fl-flex-lg="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-lg="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="50"],
  [fl-layout-lg="row"] > [fl-flex-lg="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="50"],
  [fl-layout-lg="column"] > [fl-flex-lg="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-lg="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="55"],
  [fl-layout-lg="row"] > [fl-flex-lg="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="55"],
  [fl-layout-lg="column"] > [fl-flex-lg="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-lg="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="60"],
  [fl-layout-lg="row"] > [fl-flex-lg="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="60"],
  [fl-layout-lg="column"] > [fl-flex-lg="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-lg="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="65"],
  [fl-layout-lg="row"] > [fl-flex-lg="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="65"],
  [fl-layout-lg="column"] > [fl-flex-lg="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-lg="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="70"],
  [fl-layout-lg="row"] > [fl-flex-lg="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="70"],
  [fl-layout-lg="column"] > [fl-flex-lg="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-lg="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="75"],
  [fl-layout-lg="row"] > [fl-flex-lg="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="75"],
  [fl-layout-lg="column"] > [fl-flex-lg="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-lg="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="80"],
  [fl-layout-lg="row"] > [fl-flex-lg="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="80"],
  [fl-layout-lg="column"] > [fl-flex-lg="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-lg="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="85"],
  [fl-layout-lg="row"] > [fl-flex-lg="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="85"],
  [fl-layout-lg="column"] > [fl-flex-lg="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-lg="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="90"],
  [fl-layout-lg="row"] > [fl-flex-lg="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="90"],
  [fl-layout-lg="column"] > [fl-flex-lg="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-lg="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="95"],
  [fl-layout-lg="row"] > [fl-flex-lg="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="95"],
  [fl-layout-lg="column"] > [fl-flex-lg="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="100"],
  [fl-layout-lg="row"] > [fl-flex-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="100"],
  [fl-layout-lg="column"] > [fl-flex-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-lg="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="33"],
  [fl-layout-lg="row"] > [fl-flex-lg="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="33"],
  [fl-layout-lg="column"] > [fl-flex-lg="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-lg="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-lg="66"],
  [fl-layout-lg="row"] > [fl-flex-lg="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-lg="66"],
  [fl-layout-lg="column"] > [fl-flex-lg="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; }
  [fl-hide]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-lg]) {
    display: none; }
  [fl-hide-gt-xs]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-lg]) {
    display: none; }
  [fl-hide-gt-sm]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-lg]) {
    display: none; }
  [fl-hide-gt-md]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-lg]) {
    display: none; }
  [fl-hide-lg]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-lg]) {
    display: none; } }

@media (min-width: 1920px) {
  [fl-layout-align-gt-lg^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-gt-lg^="center"] {
    justify-content: center; }
  [fl-layout-align-gt-lg^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-gt-lg^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-gt-lg^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-gt-lg$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-gt-lg$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-gt-lg$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-gt-lg$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-gt-lg], [fl-layout-gt-lg="row"], [fl-layout-gt-lg="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-gt-lg="row"] {
    flex-direction: row; }
  [fl-layout-gt-lg="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-gt-lg="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-gt-lg] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-gt-lg] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-gt-lg] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-gt-lg] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-gt-lg] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-gt-lg] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-gt-lg] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-gt-lg="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="0"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="0"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-gt-lg="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="5"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="5"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="10"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="10"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="15"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="15"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="20"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="20"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="25"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="25"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="30"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="30"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="35"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="35"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="40"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="40"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="45"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="45"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="50"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="50"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="55"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="55"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="60"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="60"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="65"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="65"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="70"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="70"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="75"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="75"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="80"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="80"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="85"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="85"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="90"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="90"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="95"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="95"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="100"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="100"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="33"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="33"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-gt-lg="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-gt-lg="66"],
  [fl-layout-gt-lg="row"] > [fl-flex-gt-lg="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-gt-lg="66"],
  [fl-layout-gt-lg="column"] > [fl-flex-gt-lg="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; } }

@media (min-width: 1920px) {
  [fl-layout-align-xl^="start"] {
    justify-content: flex-start; }
  [fl-layout-align-xl^="center"] {
    justify-content: center; }
  [fl-layout-align-xl^="end"] {
    justify-content: flex-end; }
  [fl-layout-align-xl^="space-around"] {
    justify-content: space-around; }
  [fl-layout-align-xl^="space-between"] {
    justify-content: space-between; }
  [fl-layout-align-xl$=" start"] {
    align-items: flex-start;
    align-content: flex-start; }
  [fl-layout-align-xl$=" center"] {
    align-items: center;
    align-content: center;
    max-width: 100%;
    box-sizing: border-box; }
  [fl-layout-align-xl$=" end"] {
    align-items: flex-end;
    align-content: flex-end; }
  [fl-layout-align-xl$=" stretch"] {
    align-items: stretch;
    align-content: stretch; }
  [fl-layout-xl], [fl-layout-xl="row"], [fl-layout-xl="column"] {
    box-sizing: border-box;
    display: flex; }
  [fl-layout-xl="row"] {
    flex-direction: row; }
  [fl-layout-xl="column"] {
    flex-direction: column;
    /* IE10-IE11 column-flex bug fix (set proper default value) */ }
    [fl-layout-xl="column"] > [fl-flex] {
      -ms-flex-basis: auto;
      flex-basis: auto; }
  [fl-flex-xl] {
    flex: 1;
    box-sizing: border-box; }
  [fl-flex-grow-xl] {
    flex: 1 1 100%;
    box-sizing: border-box; }
  [fl-flex-initial-xl] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-auto-xl] {
    flex: 1 1 auto;
    box-sizing: border-box; }
  [fl-flex-none-xl] {
    flex: 0 0 auto;
    box-sizing: border-box; }
  [fl-flex-noshrink-xl] {
    flex: 1 0 auto;
    box-sizing: border-box; }
  [fl-flex-nogrow-xl] {
    flex: 0 1 auto;
    box-sizing: border-box; }
  [fl-flex-xl="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="0"],
  [fl-layout-xl="row"] > [fl-flex-xl="0"] {
    flex: 1 1 0;
    max-width: 0;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="0"],
  [fl-layout-xl="column"] > [fl-flex-xl="0"] {
    flex: 1 1 0;
    max-width: 100%;
    max-height: 0;
    box-sizing: border-box; }
  [fl-flex-xl="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="5"],
  [fl-layout-xl="row"] > [fl-flex-xl="5"] {
    flex: 1 1 5%;
    max-width: 5%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="5"],
  [fl-layout-xl="column"] > [fl-flex-xl="5"] {
    flex: 1 1 5%;
    max-width: 100%;
    max-height: 5%;
    box-sizing: border-box; }
  [fl-flex-xl="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="10"],
  [fl-layout-xl="row"] > [fl-flex-xl="10"] {
    flex: 1 1 10%;
    max-width: 10%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="10"],
  [fl-layout-xl="column"] > [fl-flex-xl="10"] {
    flex: 1 1 10%;
    max-width: 100%;
    max-height: 10%;
    box-sizing: border-box; }
  [fl-flex-xl="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="15"],
  [fl-layout-xl="row"] > [fl-flex-xl="15"] {
    flex: 1 1 15%;
    max-width: 15%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="15"],
  [fl-layout-xl="column"] > [fl-flex-xl="15"] {
    flex: 1 1 15%;
    max-width: 100%;
    max-height: 15%;
    box-sizing: border-box; }
  [fl-flex-xl="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="20"],
  [fl-layout-xl="row"] > [fl-flex-xl="20"] {
    flex: 1 1 20%;
    max-width: 20%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="20"],
  [fl-layout-xl="column"] > [fl-flex-xl="20"] {
    flex: 1 1 20%;
    max-width: 100%;
    max-height: 20%;
    box-sizing: border-box; }
  [fl-flex-xl="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="25"],
  [fl-layout-xl="row"] > [fl-flex-xl="25"] {
    flex: 1 1 25%;
    max-width: 25%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="25"],
  [fl-layout-xl="column"] > [fl-flex-xl="25"] {
    flex: 1 1 25%;
    max-width: 100%;
    max-height: 25%;
    box-sizing: border-box; }
  [fl-flex-xl="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="30"],
  [fl-layout-xl="row"] > [fl-flex-xl="30"] {
    flex: 1 1 30%;
    max-width: 30%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="30"],
  [fl-layout-xl="column"] > [fl-flex-xl="30"] {
    flex: 1 1 30%;
    max-width: 100%;
    max-height: 30%;
    box-sizing: border-box; }
  [fl-flex-xl="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="35"],
  [fl-layout-xl="row"] > [fl-flex-xl="35"] {
    flex: 1 1 35%;
    max-width: 35%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="35"],
  [fl-layout-xl="column"] > [fl-flex-xl="35"] {
    flex: 1 1 35%;
    max-width: 100%;
    max-height: 35%;
    box-sizing: border-box; }
  [fl-flex-xl="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="40"],
  [fl-layout-xl="row"] > [fl-flex-xl="40"] {
    flex: 1 1 40%;
    max-width: 40%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="40"],
  [fl-layout-xl="column"] > [fl-flex-xl="40"] {
    flex: 1 1 40%;
    max-width: 100%;
    max-height: 40%;
    box-sizing: border-box; }
  [fl-flex-xl="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="45"],
  [fl-layout-xl="row"] > [fl-flex-xl="45"] {
    flex: 1 1 45%;
    max-width: 45%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="45"],
  [fl-layout-xl="column"] > [fl-flex-xl="45"] {
    flex: 1 1 45%;
    max-width: 100%;
    max-height: 45%;
    box-sizing: border-box; }
  [fl-flex-xl="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="50"],
  [fl-layout-xl="row"] > [fl-flex-xl="50"] {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="50"],
  [fl-layout-xl="column"] > [fl-flex-xl="50"] {
    flex: 1 1 50%;
    max-width: 100%;
    max-height: 50%;
    box-sizing: border-box; }
  [fl-flex-xl="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="55"],
  [fl-layout-xl="row"] > [fl-flex-xl="55"] {
    flex: 1 1 55%;
    max-width: 55%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="55"],
  [fl-layout-xl="column"] > [fl-flex-xl="55"] {
    flex: 1 1 55%;
    max-width: 100%;
    max-height: 55%;
    box-sizing: border-box; }
  [fl-flex-xl="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="60"],
  [fl-layout-xl="row"] > [fl-flex-xl="60"] {
    flex: 1 1 60%;
    max-width: 60%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="60"],
  [fl-layout-xl="column"] > [fl-flex-xl="60"] {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 60%;
    box-sizing: border-box; }
  [fl-flex-xl="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="65"],
  [fl-layout-xl="row"] > [fl-flex-xl="65"] {
    flex: 1 1 65%;
    max-width: 65%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="65"],
  [fl-layout-xl="column"] > [fl-flex-xl="65"] {
    flex: 1 1 65%;
    max-width: 100%;
    max-height: 65%;
    box-sizing: border-box; }
  [fl-flex-xl="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="70"],
  [fl-layout-xl="row"] > [fl-flex-xl="70"] {
    flex: 1 1 70%;
    max-width: 70%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="70"],
  [fl-layout-xl="column"] > [fl-flex-xl="70"] {
    flex: 1 1 70%;
    max-width: 100%;
    max-height: 70%;
    box-sizing: border-box; }
  [fl-flex-xl="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="75"],
  [fl-layout-xl="row"] > [fl-flex-xl="75"] {
    flex: 1 1 75%;
    max-width: 75%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="75"],
  [fl-layout-xl="column"] > [fl-flex-xl="75"] {
    flex: 1 1 75%;
    max-width: 100%;
    max-height: 75%;
    box-sizing: border-box; }
  [fl-flex-xl="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="80"],
  [fl-layout-xl="row"] > [fl-flex-xl="80"] {
    flex: 1 1 80%;
    max-width: 80%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="80"],
  [fl-layout-xl="column"] > [fl-flex-xl="80"] {
    flex: 1 1 80%;
    max-width: 100%;
    max-height: 80%;
    box-sizing: border-box; }
  [fl-flex-xl="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="85"],
  [fl-layout-xl="row"] > [fl-flex-xl="85"] {
    flex: 1 1 85%;
    max-width: 85%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="85"],
  [fl-layout-xl="column"] > [fl-flex-xl="85"] {
    flex: 1 1 85%;
    max-width: 100%;
    max-height: 85%;
    box-sizing: border-box; }
  [fl-flex-xl="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="90"],
  [fl-layout-xl="row"] > [fl-flex-xl="90"] {
    flex: 1 1 90%;
    max-width: 90%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="90"],
  [fl-layout-xl="column"] > [fl-flex-xl="90"] {
    flex: 1 1 90%;
    max-width: 100%;
    max-height: 90%;
    box-sizing: border-box; }
  [fl-flex-xl="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="95"],
  [fl-layout-xl="row"] > [fl-flex-xl="95"] {
    flex: 1 1 95%;
    max-width: 95%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="95"],
  [fl-layout-xl="column"] > [fl-flex-xl="95"] {
    flex: 1 1 95%;
    max-width: 100%;
    max-height: 95%;
    box-sizing: border-box; }
  [fl-flex-xl="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="100"],
  [fl-layout-xl="row"] > [fl-flex-xl="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="100"],
  [fl-layout-xl="column"] > [fl-flex-xl="100"] {
    flex: 1 1 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-flex-xl="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="33"],
  [fl-layout-xl="row"] > [fl-flex-xl="33"] {
    flex: 1 1 33%;
    max-width: 33%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="33"],
  [fl-layout-xl="column"] > [fl-flex-xl="33"] {
    flex: 1 1 33%;
    max-width: 100%;
    max-height: 33%;
    box-sizing: border-box; }
  [fl-flex-xl="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="row"] > [fl-flex-xl="66"],
  [fl-layout-xl="row"] > [fl-flex-xl="66"] {
    flex: 1 1 66%;
    max-width: 66%;
    max-height: 100%;
    box-sizing: border-box; }
  [fl-layout="column"] > [fl-flex-xl="66"],
  [fl-layout-xl="column"] > [fl-flex-xl="66"] {
    flex: 1 1 66%;
    max-width: 100%;
    max-height: 66%;
    box-sizing: border-box; }
  [fl-hide]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; }
  [fl-hide-gt-xs]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; }
  [fl-hide-gt-sm]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; }
  [fl-hide-gt-md]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; }
  [fl-hide-gt-lg]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; }
  [fl-hide-xl]:not([fl-show]):not([fl-show-gt-xs]):not([fl-show-gt-sm]):not([fl-show-gt-md]):not([fl-show-gt-lg]):not([fl-show-xl]) {
    display: none; } }

[fl-layout-fill] {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%; }

[fl-layout-wrap] {
  flex-wrap: wrap; }

[fl-layout-nowrap] {
  flex-wrap: nowrap; }
