@charset "UTF-8";
/* $logo-icon-url: 'images//logo.nucleus_icon_white.svg' !default;  */
/* $listing-background: #F2F5F8; */
/* $login-image: 'images/bg6.png' !default; 
$splashpage-image: 'images/bg6.png' !default; */
.button {
  font-family: "proxima-nova", sans-serif !important; }

.button-nucleus,
.button-nucleus-flat {
  padding-left: 25px;
  padding-right: 25px;
  margin-right: 15px !important;
  margin-left: 15px !important;
  color: #fff; }

.shadow {
  box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.29); }

.button-block {
  width: 100%; }

.button + .button {
  margin-right: 5px; }

.button-group {
  top: 50%;
  transform: translateY(-37%);
  display: flex; }
  .button-group .button + .button {
    margin-right: 0px; }

/* focus styles are customized for each component */
:focus {
  outline: 0; }

/*
* $ubtn prefix (reserved)
*
* This prefix stands for Unicorn Button - ubtn
* We provide a prefix to the Sass Variables to
* prevent namespace collisions that could occur if
* you import buttons as part of your Sass build process.
* We kindly ask you not to use the prefix $ubtn in your project
* in order to avoid possilbe name conflicts. Thanks!
*/
/*
* Button Namespace (ex .button or .btn)
*
*/
/*
* Button Defaults
*
* Some default settings that are used throughout the button library.
* Changes to these settings will be picked up by all of the other modules.
* The colors used here are the default colors for the base button (gray).
* The font size and height are used to set the base size for the buttons.
* The size values will be used to calculate the larger and smaller button sizes.
*/
/*
* Button Colors
*
* $ubtn-colors is used to generate the different button colors.
* Edit or add colors to the list below and recompile.
* Each block contains the (name, background, color)
* The class is generated using the name: (ex .button-primary)
*/
/*
* Button Shapes
*
* $ubtn-shapes is used to generate the different button shapes.
* Edit or add shapes to the list below and recompile.
* Each block contains the (name, border-radius).
* The class is generated using the name: (ex .button-square).
*/
/*
* Button Sizes
*
* $ubtn-sizes is used to generate the different button sizes.
* Edit or add colors to the list below and recompile.
* Each block contains the (name, size multiplier).
* The class is generated using the name: (ex .button-giant).
*/
/*
* Color Mixin
*
* Iterates through the list of colors and creates
*
*/
/*
* No Animation
*
* Sets animation property to none
*/
/*
* Clearfix
*
* Clears floats inside the container
*/
/*
* Base Button Style
*
* The default values for the .button class
*/
.button {
  color: #666;
  background-color: #EEE;
  border-color: #EEE;
  font-weight: 300;
  font-size: 16px;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-decoration: none;
  text-align: center;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  display: inline-block;
  appearance: none;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  transition-property: all;
  transition-duration: .3s;
  /*
  * Disabled State
  *
  * The disabled state uses the class .disabled, is-disabled,
  * and the form attribute disabled="disabled".
  * The use of !important is only added because this is a state
  * that must be applied to all buttons when in a disabled state.
  */ }
  .button:visited {
    color: #666; }
  .button:hover, .button:focus {
    background-color: #f6f6f6;
    text-decoration: none;
    outline: none; }
  .button:active, .button.active, .button.is-active {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    background-color: #eeeeee;
    border-color: #cfcfcf;
    color: #d5d5d5;
    transition-duration: 0s;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2); }
  .button.disabled, .button.is-disabled, .button:disabled {
    top: 0 !important;
    background: #EEE !important;
    border: 1px solid #DDD !important;
    text-shadow: 0 1px 1px white !important;
    color: #CCC !important;
    cursor: default !important;
    appearance: none !important; }
    .button.disabled else, .button.is-disabled else, .button:disabled else {
      box-shadow: none !important;
      opacity: .8 !important; }

/*
* Base Button Tyography
*
*/
.button-uppercase {
  text-transform: uppercase; }

.button-lowercase {
  text-transform: lowercase; }

.button-capitalize {
  text-transform: capitalize; }

.button-small-caps {
  font-variant: small-caps; }

.button-icon-txt-large {
  font-size: 36px !important; }

/*
* Base padding
*
*/
.button-width-small {
  padding: 0 10px !important; }

/*
* Base Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.button-primary,
.button-primary-flat {
  background-color: #76B74B;
  border-color: #76B74B;
  color: #FFF; }
  .button-primary:visited,
  .button-primary-flat:visited {
    color: #FFF; }
  .button-primary:hover, .button-primary:focus,
  .button-primary-flat:hover,
  .button-primary-flat:focus {
    background-color: #92c66f;
    border-color: #92c66f;
    color: #FFF; }
  .button-primary:active, .button-primary.active, .button-primary.is-active,
  .button-primary-flat:active,
  .button-primary-flat.active,
  .button-primary-flat.is-active {
    background-color: #79aa58;
    border-color: #79aa58;
    color: #5e943b; }

.button-plain,
.button-plain-flat {
  background-color: #FFF;
  border-color: #FFF;
  color: #1B9AF7; }
  .button-plain:visited,
  .button-plain-flat:visited {
    color: #1B9AF7; }
  .button-plain:hover, .button-plain:focus,
  .button-plain-flat:hover,
  .button-plain-flat:focus {
    background-color: white;
    border-color: white;
    color: #1B9AF7; }
  .button-plain:active, .button-plain.active, .button-plain.is-active,
  .button-plain-flat:active,
  .button-plain-flat.active,
  .button-plain-flat.is-active {
    background-color: white;
    border-color: white;
    color: #e6e6e6; }

.button-inverse,
.button-inverse-flat {
  background-color: #5b5b5b;
  border-color: #5b5b5b;
  color: #fff; }
  .button-inverse:visited,
  .button-inverse-flat:visited {
    color: #fff; }
  .button-inverse:hover, .button-inverse:focus,
  .button-inverse-flat:hover,
  .button-inverse-flat:focus {
    background-color: #757575;
    border-color: #757575;
    color: #fff; }
  .button-inverse:active, .button-inverse.active, .button-inverse.is-active,
  .button-inverse-flat:active,
  .button-inverse-flat.active,
  .button-inverse-flat.is-active {
    background-color: #5b5b5b;
    border-color: #5b5b5b;
    color: #424242; }

.button-action,
.button-action-flat {
  background-color: #A5DE37;
  border-color: #A5DE37;
  color: #FFF; }
  .button-action:visited,
  .button-action-flat:visited {
    color: #FFF; }
  .button-action:hover, .button-action:focus,
  .button-action-flat:hover,
  .button-action-flat:focus {
    background-color: #b9e563;
    border-color: #b9e563;
    color: #FFF; }
  .button-action:active, .button-action.active, .button-action.is-active,
  .button-action-flat:active,
  .button-action-flat.active,
  .button-action-flat.is-active {
    background-color: #a1d243;
    border-color: #a1d243;
    color: #8bc220; }

.button-highlight,
.button-highlight-flat {
  background-color: #FEAE1B;
  border-color: #FEAE1B;
  color: #FFF; }
  .button-highlight:visited,
  .button-highlight-flat:visited {
    color: #FFF; }
  .button-highlight:hover, .button-highlight:focus,
  .button-highlight-flat:hover,
  .button-highlight-flat:focus {
    background-color: #fec04e;
    border-color: #fec04e;
    color: #FFF; }
  .button-highlight:active, .button-highlight.active, .button-highlight.is-active,
  .button-highlight-flat:active,
  .button-highlight-flat.active,
  .button-highlight-flat.is-active {
    background-color: #f3ab26;
    border-color: #f3ab26;
    color: #e59501; }

.button-caution,
.button-caution-flat {
  background-color: #FF4351;
  border-color: #FF4351;
  color: #FFF; }
  .button-caution:visited,
  .button-caution-flat:visited {
    color: #FFF; }
  .button-caution:hover, .button-caution:focus,
  .button-caution-flat:hover,
  .button-caution-flat:focus {
    background-color: #ff7680;
    border-color: #ff7680;
    color: #FFF; }
  .button-caution:active, .button-caution.active, .button-caution.is-active,
  .button-caution-flat:active,
  .button-caution-flat.active,
  .button-caution-flat.is-active {
    background-color: #f64c59;
    border-color: #f64c59;
    color: #ff1022; }

.button-royal,
.button-royal-flat {
  background-color: #7B72E9;
  border-color: #7B72E9;
  color: #FFF; }
  .button-royal:visited,
  .button-royal-flat:visited {
    color: #FFF; }
  .button-royal:hover, .button-royal:focus,
  .button-royal-flat:hover,
  .button-royal-flat:focus {
    background-color: #a49ef0;
    border-color: #a49ef0;
    color: #FFF; }
  .button-royal:active, .button-royal.active, .button-royal.is-active,
  .button-royal-flat:active,
  .button-royal-flat.active,
  .button-royal-flat.is-active {
    background-color: #827ae1;
    border-color: #827ae1;
    color: #5246e2; }

.button-default,
.button-default-flat {
  background-color: #F95355;
  border-color: #F95355;
  color: #FFF; }
  .button-default:visited,
  .button-default-flat:visited {
    color: #FFF; }
  .button-default:hover, .button-default:focus,
  .button-default-flat:hover,
  .button-default-flat:focus {
    background-color: #fb8486;
    border-color: #fb8486;
    color: #FFF; }
  .button-default:active, .button-default.active, .button-default.is-active,
  .button-default-flat:active,
  .button-default-flat.active,
  .button-default-flat.is-active {
    background-color: #f05c5e;
    border-color: #f05c5e;
    color: #f72224; }

.button-measure,
.button-measure-flat {
  background-color: #638696;
  border-color: #638696;
  color: #fff; }
  .button-measure:visited,
  .button-measure-flat:visited {
    color: #fff; }
  .button-measure:hover, .button-measure:focus,
  .button-measure-flat:hover,
  .button-measure-flat:focus {
    background-color: #809eac;
    border-color: #809eac;
    color: #fff; }
  .button-measure:active, .button-measure.active, .button-measure.is-active,
  .button-measure-flat:active,
  .button-measure-flat.active,
  .button-measure-flat.is-active {
    background-color: #6f818a;
    border-color: #6f818a;
    color: #4f6b77; }

.button-group,
.button-group-flat {
  background-color: #638696;
  border-color: #638696;
  color: #fff; }
  .button-group:visited,
  .button-group-flat:visited {
    color: #fff; }
  .button-group:hover, .button-group:focus,
  .button-group-flat:hover,
  .button-group-flat:focus {
    background-color: #809eac;
    border-color: #809eac;
    color: #fff; }
  .button-group:active, .button-group.active, .button-group.is-active,
  .button-group-flat:active,
  .button-group-flat.active,
  .button-group-flat.is-active {
    background-color: #6f818a;
    border-color: #6f818a;
    color: #4f6b77; }

.button-filter,
.button-filter-flat {
  background-color: #638696;
  border-color: #638696;
  color: #fff; }
  .button-filter:visited,
  .button-filter-flat:visited {
    color: #fff; }
  .button-filter:hover, .button-filter:focus,
  .button-filter-flat:hover,
  .button-filter-flat:focus {
    background-color: #809eac;
    border-color: #809eac;
    color: #fff; }
  .button-filter:active, .button-filter.active, .button-filter.is-active,
  .button-filter-flat:active,
  .button-filter-flat.active,
  .button-filter-flat.is-active {
    background-color: #6f818a;
    border-color: #6f818a;
    color: #4f6b77; }

/*
* Base Layout Styles
*
* Very Miminal Layout Styles
*/
.button-block,
.button-stacked {
  display: block; }

/*
* Button Shapes
*
* This file creates the various button shapes
* (ex. Circle, Rounded, Pill)
*/
.button-square {
  border-radius: 0; }

.button-box {
  border-radius: 10px; }

.button-rounded {
  border-radius: 4px; }

.button-pill {
  border-radius: 200px; }

.button-circle {
  border-radius: 100%; }

/*
* Size Adjustment for equal height & widht buttons
*
* Remove padding and set a fixed width.
*/
.button-circle,
.button-box,
.button-square {
  padding: 0 !important;
  width: 40px; }
  .button-circle.button-giant,
  .button-box.button-giant,
  .button-square.button-giant {
    width: 70px; }
  .button-circle.button-jumbo,
  .button-box.button-jumbo,
  .button-square.button-jumbo {
    width: 60px; }
  .button-circle.button-large,
  .button-box.button-large,
  .button-square.button-large {
    width: 50px; }
  .button-circle.button-normal,
  .button-box.button-normal,
  .button-square.button-normal {
    width: 40px; }
  .button-circle.button-small,
  .button-box.button-small,
  .button-square.button-small {
    width: 30px; }
  .button-circle.button-tiny,
  .button-box.button-tiny,
  .button-square.button-tiny {
    width: 24px; }

/*
* Border Buttons
*
* These buttons have no fill they only have a
* border to define their hit target.
*/
.button-border, .button-border-thin, .button-border-thick {
  background: none;
  border-width: 1px;
  border-style: solid;
  line-height: 36px; }
  .button-border:hover, .button-border-thin:hover, .button-border-thick:hover {
    background-color: rgba(255, 255, 255, 0.9); }
  .button-border:active, .button-border-thin:active, .button-border-thick:active, .button-border.active, .active.button-border-thin, .active.button-border-thick, .button-border.is-active, .is-active.button-border-thin, .is-active.button-border-thick {
    box-shadow: none;
    text-shadow: none;
    transition-property: all;
    transition-duration: .3s; }

/*
* Border Optional Sizes
*
* A slight variation in border thickness
*/
.button-border-thin {
  border-width: 1px; }

.button-border-thick {
  border-width: 3px; }

/*
* Border Button Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.button-border, .button-border-thin, .button-border-thick,
.button-border-thin,
.button-border-thick {
  /*
  * Border Button Size Adjustment
  *
  * The line-height must be adjusted to compinsate for
  * the width of the border.
  */ }
  .button-border.button-primary, .button-primary.button-border-thin, .button-primary.button-border-thick,
  .button-border-thin.button-primary,
  .button-border-thick.button-primary {
    color: #76B74B; }
    .button-border.button-primary:hover, .button-primary.button-border-thin:hover, .button-primary.button-border-thick:hover, .button-border.button-primary:focus, .button-primary.button-border-thin:focus, .button-primary.button-border-thick:focus,
    .button-border-thin.button-primary:hover,
    .button-border-thin.button-primary:focus,
    .button-border-thick.button-primary:hover,
    .button-border-thick.button-primary:focus {
      background-color: rgba(146, 198, 111, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-primary:active, .button-primary.button-border-thin:active, .button-primary.button-border-thick:active, .button-border.button-primary.active, .button-primary.active.button-border-thin, .button-primary.active.button-border-thick, .button-border.button-primary.is-active, .button-primary.is-active.button-border-thin, .button-primary.is-active.button-border-thick,
    .button-border-thin.button-primary:active,
    .button-border-thin.button-primary.active,
    .button-border-thin.button-primary.is-active,
    .button-border-thick.button-primary:active,
    .button-border-thick.button-primary.active,
    .button-border-thick.button-primary.is-active {
      background-color: #79aa58;
      color: white;
      opacity: 1; }
  .button-border.button-plain, .button-plain.button-border-thin, .button-plain.button-border-thick,
  .button-border-thin.button-plain,
  .button-border-thick.button-plain {
    color: #FFF; }
    .button-border.button-plain:hover, .button-plain.button-border-thin:hover, .button-plain.button-border-thick:hover, .button-border.button-plain:focus, .button-plain.button-border-thin:focus, .button-plain.button-border-thick:focus,
    .button-border-thin.button-plain:hover,
    .button-border-thin.button-plain:focus,
    .button-border-thick.button-plain:hover,
    .button-border-thick.button-plain:focus {
      background-color: rgba(255, 255, 255, 0.9);
      color: rgba(27, 154, 247, 0.9); }
    .button-border.button-plain:active, .button-plain.button-border-thin:active, .button-plain.button-border-thick:active, .button-border.button-plain.active, .button-plain.active.button-border-thin, .button-plain.active.button-border-thick, .button-border.button-plain.is-active, .button-plain.is-active.button-border-thin, .button-plain.is-active.button-border-thick,
    .button-border-thin.button-plain:active,
    .button-border-thin.button-plain.active,
    .button-border-thin.button-plain.is-active,
    .button-border-thick.button-plain:active,
    .button-border-thick.button-plain.active,
    .button-border-thick.button-plain.is-active {
      background-color: white;
      color: #1b9af7;
      opacity: 1; }
  .button-border.button-inverse, .button-inverse.button-border-thin, .button-inverse.button-border-thick,
  .button-border-thin.button-inverse,
  .button-border-thick.button-inverse {
    color: #5b5b5b; }
    .button-border.button-inverse:hover, .button-inverse.button-border-thin:hover, .button-inverse.button-border-thick:hover, .button-border.button-inverse:focus, .button-inverse.button-border-thin:focus, .button-inverse.button-border-thick:focus,
    .button-border-thin.button-inverse:hover,
    .button-border-thin.button-inverse:focus,
    .button-border-thick.button-inverse:hover,
    .button-border-thick.button-inverse:focus {
      background-color: rgba(117, 117, 117, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-inverse:active, .button-inverse.button-border-thin:active, .button-inverse.button-border-thick:active, .button-border.button-inverse.active, .button-inverse.active.button-border-thin, .button-inverse.active.button-border-thick, .button-border.button-inverse.is-active, .button-inverse.is-active.button-border-thin, .button-inverse.is-active.button-border-thick,
    .button-border-thin.button-inverse:active,
    .button-border-thin.button-inverse.active,
    .button-border-thin.button-inverse.is-active,
    .button-border-thick.button-inverse:active,
    .button-border-thick.button-inverse.active,
    .button-border-thick.button-inverse.is-active {
      background-color: #5b5b5b;
      color: white;
      opacity: 1; }
  .button-border.button-action, .button-action.button-border-thin, .button-action.button-border-thick,
  .button-border-thin.button-action,
  .button-border-thick.button-action {
    color: #A5DE37; }
    .button-border.button-action:hover, .button-action.button-border-thin:hover, .button-action.button-border-thick:hover, .button-border.button-action:focus, .button-action.button-border-thin:focus, .button-action.button-border-thick:focus,
    .button-border-thin.button-action:hover,
    .button-border-thin.button-action:focus,
    .button-border-thick.button-action:hover,
    .button-border-thick.button-action:focus {
      background-color: rgba(185, 229, 99, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-action:active, .button-action.button-border-thin:active, .button-action.button-border-thick:active, .button-border.button-action.active, .button-action.active.button-border-thin, .button-action.active.button-border-thick, .button-border.button-action.is-active, .button-action.is-active.button-border-thin, .button-action.is-active.button-border-thick,
    .button-border-thin.button-action:active,
    .button-border-thin.button-action.active,
    .button-border-thin.button-action.is-active,
    .button-border-thick.button-action:active,
    .button-border-thick.button-action.active,
    .button-border-thick.button-action.is-active {
      background-color: #a1d243;
      color: white;
      opacity: 1; }
  .button-border.button-highlight, .button-highlight.button-border-thin, .button-highlight.button-border-thick,
  .button-border-thin.button-highlight,
  .button-border-thick.button-highlight {
    color: #FEAE1B; }
    .button-border.button-highlight:hover, .button-highlight.button-border-thin:hover, .button-highlight.button-border-thick:hover, .button-border.button-highlight:focus, .button-highlight.button-border-thin:focus, .button-highlight.button-border-thick:focus,
    .button-border-thin.button-highlight:hover,
    .button-border-thin.button-highlight:focus,
    .button-border-thick.button-highlight:hover,
    .button-border-thick.button-highlight:focus {
      background-color: rgba(254, 192, 78, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-highlight:active, .button-highlight.button-border-thin:active, .button-highlight.button-border-thick:active, .button-border.button-highlight.active, .button-highlight.active.button-border-thin, .button-highlight.active.button-border-thick, .button-border.button-highlight.is-active, .button-highlight.is-active.button-border-thin, .button-highlight.is-active.button-border-thick,
    .button-border-thin.button-highlight:active,
    .button-border-thin.button-highlight.active,
    .button-border-thin.button-highlight.is-active,
    .button-border-thick.button-highlight:active,
    .button-border-thick.button-highlight.active,
    .button-border-thick.button-highlight.is-active {
      background-color: #f3ab26;
      color: white;
      opacity: 1; }
  .button-border.button-caution, .button-caution.button-border-thin, .button-caution.button-border-thick,
  .button-border-thin.button-caution,
  .button-border-thick.button-caution {
    color: #FF4351; }
    .button-border.button-caution:hover, .button-caution.button-border-thin:hover, .button-caution.button-border-thick:hover, .button-border.button-caution:focus, .button-caution.button-border-thin:focus, .button-caution.button-border-thick:focus,
    .button-border-thin.button-caution:hover,
    .button-border-thin.button-caution:focus,
    .button-border-thick.button-caution:hover,
    .button-border-thick.button-caution:focus {
      background-color: rgba(255, 118, 128, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-caution:active, .button-caution.button-border-thin:active, .button-caution.button-border-thick:active, .button-border.button-caution.active, .button-caution.active.button-border-thin, .button-caution.active.button-border-thick, .button-border.button-caution.is-active, .button-caution.is-active.button-border-thin, .button-caution.is-active.button-border-thick,
    .button-border-thin.button-caution:active,
    .button-border-thin.button-caution.active,
    .button-border-thin.button-caution.is-active,
    .button-border-thick.button-caution:active,
    .button-border-thick.button-caution.active,
    .button-border-thick.button-caution.is-active {
      background-color: #f64c59;
      color: white;
      opacity: 1; }
  .button-border.button-royal, .button-royal.button-border-thin, .button-royal.button-border-thick,
  .button-border-thin.button-royal,
  .button-border-thick.button-royal {
    color: #7B72E9; }
    .button-border.button-royal:hover, .button-royal.button-border-thin:hover, .button-royal.button-border-thick:hover, .button-border.button-royal:focus, .button-royal.button-border-thin:focus, .button-royal.button-border-thick:focus,
    .button-border-thin.button-royal:hover,
    .button-border-thin.button-royal:focus,
    .button-border-thick.button-royal:hover,
    .button-border-thick.button-royal:focus {
      background-color: rgba(164, 158, 240, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-royal:active, .button-royal.button-border-thin:active, .button-royal.button-border-thick:active, .button-border.button-royal.active, .button-royal.active.button-border-thin, .button-royal.active.button-border-thick, .button-border.button-royal.is-active, .button-royal.is-active.button-border-thin, .button-royal.is-active.button-border-thick,
    .button-border-thin.button-royal:active,
    .button-border-thin.button-royal.active,
    .button-border-thin.button-royal.is-active,
    .button-border-thick.button-royal:active,
    .button-border-thick.button-royal.active,
    .button-border-thick.button-royal.is-active {
      background-color: #827ae1;
      color: white;
      opacity: 1; }
  .button-border.button-default, .button-default.button-border-thin, .button-default.button-border-thick,
  .button-border-thin.button-default,
  .button-border-thick.button-default {
    color: #F95355; }
    .button-border.button-default:hover, .button-default.button-border-thin:hover, .button-default.button-border-thick:hover, .button-border.button-default:focus, .button-default.button-border-thin:focus, .button-default.button-border-thick:focus,
    .button-border-thin.button-default:hover,
    .button-border-thin.button-default:focus,
    .button-border-thick.button-default:hover,
    .button-border-thick.button-default:focus {
      background-color: rgba(251, 132, 134, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-default:active, .button-default.button-border-thin:active, .button-default.button-border-thick:active, .button-border.button-default.active, .button-default.active.button-border-thin, .button-default.active.button-border-thick, .button-border.button-default.is-active, .button-default.is-active.button-border-thin, .button-default.is-active.button-border-thick,
    .button-border-thin.button-default:active,
    .button-border-thin.button-default.active,
    .button-border-thin.button-default.is-active,
    .button-border-thick.button-default:active,
    .button-border-thick.button-default.active,
    .button-border-thick.button-default.is-active {
      background-color: #f05c5e;
      color: white;
      opacity: 1; }
  .button-border.button-measure, .button-measure.button-border-thin, .button-measure.button-border-thick,
  .button-border-thin.button-measure,
  .button-border-thick.button-measure {
    color: #638696; }
    .button-border.button-measure:hover, .button-measure.button-border-thin:hover, .button-measure.button-border-thick:hover, .button-border.button-measure:focus, .button-measure.button-border-thin:focus, .button-measure.button-border-thick:focus,
    .button-border-thin.button-measure:hover,
    .button-border-thin.button-measure:focus,
    .button-border-thick.button-measure:hover,
    .button-border-thick.button-measure:focus {
      background-color: rgba(128, 158, 172, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-measure:active, .button-measure.button-border-thin:active, .button-measure.button-border-thick:active, .button-border.button-measure.active, .button-measure.active.button-border-thin, .button-measure.active.button-border-thick, .button-border.button-measure.is-active, .button-measure.is-active.button-border-thin, .button-measure.is-active.button-border-thick,
    .button-border-thin.button-measure:active,
    .button-border-thin.button-measure.active,
    .button-border-thin.button-measure.is-active,
    .button-border-thick.button-measure:active,
    .button-border-thick.button-measure.active,
    .button-border-thick.button-measure.is-active {
      background-color: #6f818a;
      color: white;
      opacity: 1; }
  .button-border.button-group, .button-group.button-border-thin, .button-group.button-border-thick,
  .button-border-thin.button-group,
  .button-border-thick.button-group {
    color: #638696; }
    .button-border.button-group:hover, .button-group.button-border-thin:hover, .button-group.button-border-thick:hover, .button-border.button-group:focus, .button-group.button-border-thin:focus, .button-group.button-border-thick:focus,
    .button-border-thin.button-group:hover,
    .button-border-thin.button-group:focus,
    .button-border-thick.button-group:hover,
    .button-border-thick.button-group:focus {
      background-color: rgba(128, 158, 172, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-group:active, .button-group.button-border-thin:active, .button-group.button-border-thick:active, .button-border.button-group.active, .button-group.active.button-border-thin, .button-group.active.button-border-thick, .button-border.button-group.is-active, .button-group.is-active.button-border-thin, .button-group.is-active.button-border-thick,
    .button-border-thin.button-group:active,
    .button-border-thin.button-group.active,
    .button-border-thin.button-group.is-active,
    .button-border-thick.button-group:active,
    .button-border-thick.button-group.active,
    .button-border-thick.button-group.is-active {
      background-color: #6f818a;
      color: white;
      opacity: 1; }
  .button-border.button-filter, .button-filter.button-border-thin, .button-filter.button-border-thick,
  .button-border-thin.button-filter,
  .button-border-thick.button-filter {
    color: #638696; }
    .button-border.button-filter:hover, .button-filter.button-border-thin:hover, .button-filter.button-border-thick:hover, .button-border.button-filter:focus, .button-filter.button-border-thin:focus, .button-filter.button-border-thick:focus,
    .button-border-thin.button-filter:hover,
    .button-border-thin.button-filter:focus,
    .button-border-thick.button-filter:hover,
    .button-border-thick.button-filter:focus {
      background-color: rgba(128, 158, 172, 0.9);
      color: rgba(255, 255, 255, 0.9); }
    .button-border.button-filter:active, .button-filter.button-border-thin:active, .button-filter.button-border-thick:active, .button-border.button-filter.active, .button-filter.active.button-border-thin, .button-filter.active.button-border-thick, .button-border.button-filter.is-active, .button-filter.is-active.button-border-thin, .button-filter.is-active.button-border-thick,
    .button-border-thin.button-filter:active,
    .button-border-thin.button-filter.active,
    .button-border-thin.button-filter.is-active,
    .button-border-thick.button-filter:active,
    .button-border-thick.button-filter.active,
    .button-border-thick.button-filter.is-active {
      background-color: #6f818a;
      color: white;
      opacity: 1; }
  .button-border.button-giant, .button-giant.button-border-thin, .button-giant.button-border-thick,
  .button-border-thin.button-giant,
  .button-border-thick.button-giant {
    line-height: 66px; }
  .button-border.button-jumbo, .button-jumbo.button-border-thin, .button-jumbo.button-border-thick,
  .button-border-thin.button-jumbo,
  .button-border-thick.button-jumbo {
    line-height: 56px; }
  .button-border.button-large, .button-large.button-border-thin, .button-large.button-border-thick,
  .button-border-thin.button-large,
  .button-border-thick.button-large {
    line-height: 46px; }
  .button-border.button-normal, .button-normal.button-border-thin, .button-normal.button-border-thick,
  .button-border-thin.button-normal,
  .button-border-thick.button-normal {
    line-height: 36px; }
  .button-border.button-small, .button-small.button-border-thin, .button-small.button-border-thick,
  .button-border-thin.button-small,
  .button-border-thick.button-small {
    line-height: 26px; }
  .button-border.button-tiny, .button-tiny.button-border-thin, .button-tiny.button-border-thick,
  .button-border-thin.button-tiny,
  .button-border-thick.button-tiny {
    line-height: 20px; }

/*
* Border Buttons
*
* These buttons have no fill they only have a
* border to define their hit target.
*/
.button-borderless {
  background: none;
  border: none;
  padding: 0 8px !important;
  color: #EEE;
  font-size: 20.8px;
  font-weight: 200;
  /*
  * Borderless Button Colors
  *
  * Create colors for buttons
  * (.button-primary, .button-secondary, etc.)
  */
  /*
  * Borderles Size Adjustment
  *
  * The font-size must be large to compinsate for
  * the lack of a hit target.
  */ }
  .button-borderless:hover, .button-borderless:focus {
    background: none; }
  .button-borderless:active, .button-borderless.active, .button-borderless.is-active {
    box-shadow: none;
    text-shadow: none;
    transition-property: all;
    transition-duration: .3s;
    opacity: .3; }
  .button-borderless.button-primary {
    color: #76B74B; }
  .button-borderless.button-plain {
    color: #FFF; }
  .button-borderless.button-inverse {
    color: #5b5b5b; }
  .button-borderless.button-action {
    color: #A5DE37; }
  .button-borderless.button-highlight {
    color: #FEAE1B; }
  .button-borderless.button-caution {
    color: #FF4351; }
  .button-borderless.button-royal {
    color: #7B72E9; }
  .button-borderless.button-default {
    color: #F95355; }
  .button-borderless.button-measure {
    color: #638696; }
  .button-borderless.button-group {
    color: #638696; }
  .button-borderless.button-filter {
    color: #638696; }
  .button-borderless.button-giant {
    font-size: 36.4px;
    height: 52.4px;
    line-height: 52.4px; }
  .button-borderless.button-jumbo {
    font-size: 31.2px;
    height: 47.2px;
    line-height: 47.2px; }
  .button-borderless.button-large {
    font-size: 26px;
    height: 42px;
    line-height: 42px; }
  .button-borderless.button-normal {
    font-size: 20.8px;
    height: 36.8px;
    line-height: 36.8px; }
  .button-borderless.button-small {
    font-size: 15.6px;
    height: 31.6px;
    line-height: 31.6px; }
  .button-borderless.button-tiny {
    font-size: 12.48px;
    height: 28.48px;
    line-height: 28.48px; }

/*
* Raised Buttons
*
* A classic looking button that offers
* great depth and affordance.
*/
.button-raised {
  border-color: #e1e1e1;
  border-style: solid;
  border-width: 1px;
  line-height: 38px;
  background: linear, false, #f6f6f6, #e1e1e1;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.15); }
  .button-raised:hover, .button-raised:focus {
    background: linear, top, white, gainsboro; }
  .button-raised:active, .button-raised.active, .button-raised.is-active {
    background: #eeeeee;
    box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px white; }

/*
* Raised Button Colors
*
* Create colors for raised buttons
*/
.button-raised.button-primary {
  border-color: #6aa642;
  background: linear, false, #84be5d, #6aa642; }
  .button-raised.button-primary:hover, .button-raised.button-primary:focus {
    background: linear, top, #8cc368, #659f40; }
  .button-raised.button-primary:active, .button-raised.button-primary.active, .button-raised.button-primary.is-active {
    border-color: #5e943b;
    background: #79aa58; }
.button-raised.button-plain {
  border-color: #f2f2f2;
  background: linear, false, white, #f2f2f2; }
  .button-raised.button-plain:hover, .button-raised.button-plain:focus {
    background: linear, top, white, #ededed; }
  .button-raised.button-plain:active, .button-raised.button-plain.active, .button-raised.button-plain.is-active {
    border-color: #e6e6e6;
    background: white; }
.button-raised.button-inverse {
  border-color: #4e4e4e;
  background: linear, false, #686868, #4e4e4e; }
  .button-raised.button-inverse:hover, .button-raised.button-inverse:focus {
    background: linear, top, #6f6f6f, #494949; }
  .button-raised.button-inverse:active, .button-raised.button-inverse.active, .button-raised.button-inverse.is-active {
    border-color: #424242;
    background: #5b5b5b; }
.button-raised.button-action {
  border-color: #9ad824;
  background: linear, false, #afe24d, #9ad824; }
  .button-raised.button-action:hover, .button-raised.button-action:focus {
    background: linear, top, #b5e45a, #94cf22; }
  .button-raised.button-action:active, .button-raised.button-action.active, .button-raised.button-action.is-active {
    border-color: #8bc220;
    background: #a1d243; }
.button-raised.button-highlight {
  border-color: #fea502;
  background: linear, false, #feb734, #fea502; }
  .button-raised.button-highlight:hover, .button-raised.button-highlight:focus {
    background: linear, top, #febc44, #f49f01; }
  .button-raised.button-highlight:active, .button-raised.button-highlight.active, .button-raised.button-highlight.is-active {
    border-color: #e59501;
    background: #f3ab26; }
.button-raised.button-caution {
  border-color: #ff2a39;
  background: linear, false, #ff5d69, #ff2a39; }
  .button-raised.button-caution:hover, .button-raised.button-caution:focus {
    background: linear, top, #ff6c77, #ff1f30; }
  .button-raised.button-caution:active, .button-raised.button-caution.active, .button-raised.button-caution.is-active {
    border-color: #ff1022;
    background: #f64c59; }
.button-raised.button-royal {
  border-color: #665ce6;
  background: linear, false, #9088ec, #665ce6; }
  .button-raised.button-royal:hover, .button-raised.button-royal:focus {
    background: linear, top, #9c95ef, #5e53e4; }
  .button-raised.button-royal:active, .button-raised.button-royal.active, .button-raised.button-royal.is-active {
    border-color: #5246e2;
    background: #827ae1; }
.button-raised.button-default {
  border-color: #f83a3d;
  background: linear, false, #fa6c6d, #f83a3d; }
  .button-raised.button-default:hover, .button-raised.button-default:focus {
    background: linear, top, #fa7a7c, #f83133; }
  .button-raised.button-default:active, .button-raised.button-default.active, .button-raised.button-default.is-active {
    border-color: #f72224;
    background: #f05c5e; }
.button-raised.button-measure {
  border-color: #597887;
  background: linear, false, #7192a1, #597887; }
  .button-raised.button-measure:hover, .button-raised.button-measure:focus {
    background: linear, top, #7a99a7, #557380; }
  .button-raised.button-measure:active, .button-raised.button-measure.active, .button-raised.button-measure.is-active {
    border-color: #4f6b77;
    background: #6f818a; }
.button-raised.button-group {
  border-color: #597887;
  background: linear, false, #7192a1, #597887; }
  .button-raised.button-group:hover, .button-raised.button-group:focus {
    background: linear, top, #7a99a7, #557380; }
  .button-raised.button-group:active, .button-raised.button-group.active, .button-raised.button-group.is-active {
    border-color: #4f6b77;
    background: #6f818a; }
.button-raised.button-filter {
  border-color: #597887;
  background: linear, false, #7192a1, #597887; }
  .button-raised.button-filter:hover, .button-raised.button-filter:focus {
    background: linear, top, #7a99a7, #557380; }
  .button-raised.button-filter:active, .button-raised.button-filter.active, .button-raised.button-filter.is-active {
    border-color: #4f6b77;
    background: #6f818a; }

/*
* 3D Buttons
*
* These buttons have a heavy three dimensional
* style that mimics the visual appearance of a
* real life button.
*/
.button-3d {
  position: relative;
  top: 0;
  box-shadow: 0 7px 0 #bbbbbb, 0 8px 3px rgba(0, 0, 0, 0.2); }
  .button-3d:hover, .button-3d:focus {
    box-shadow: 0 7px 0 #bbbbbb, 0 8px 3px rgba(0, 0, 0, 0.2); }
  .button-3d:active, .button-3d.active, .button-3d.is-active {
    top: 5px;
    transition-property: all;
    transition-duration: .15s;
    box-shadow: 0 2px 0 #bbbbbb, 0 3px 3px rgba(0, 0, 0, 0.2); }

/*
* 3D Button Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.button-3d.button-primary {
  box-shadow: 0 7px 0 #5e943b, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-primary:hover, .button-3d.button-primary:focus {
    box-shadow: 0 7px 0 #5a8d38, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-primary:active, .button-3d.button-primary.active, .button-3d.button-primary.is-active {
    box-shadow: 0 2px 0 #476f2d, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-plain {
  box-shadow: 0 7px 0 #e6e6e6, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-plain:hover, .button-3d.button-plain:focus {
    box-shadow: 0 7px 0 #e0e0e0, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-plain:active, .button-3d.button-plain.active, .button-3d.button-plain.is-active {
    box-shadow: 0 2px 0 #cccccc, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-inverse {
  box-shadow: 0 7px 0 #424242, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-inverse:hover, .button-3d.button-inverse:focus {
    box-shadow: 0 7px 0 #3c3c3c, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-inverse:active, .button-3d.button-inverse.active, .button-3d.button-inverse.is-active {
    box-shadow: 0 2px 0 #282828, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-action {
  box-shadow: 0 7px 0 #8bc220, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-action:hover, .button-3d.button-action:focus {
    box-shadow: 0 7px 0 #84b91f, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-action:active, .button-3d.button-action.active, .button-3d.button-action.is-active {
    box-shadow: 0 2px 0 #6b9619, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-highlight {
  box-shadow: 0 7px 0 #e59501, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-highlight:hover, .button-3d.button-highlight:focus {
    box-shadow: 0 7px 0 #db8e01, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-highlight:active, .button-3d.button-highlight.active, .button-3d.button-highlight.is-active {
    box-shadow: 0 2px 0 #b27401, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-caution {
  box-shadow: 0 7px 0 #ff1022, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-caution:hover, .button-3d.button-caution:focus {
    box-shadow: 0 7px 0 #ff0618, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-caution:active, .button-3d.button-caution.active, .button-3d.button-caution.is-active {
    box-shadow: 0 2px 0 #dc0010, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-royal {
  box-shadow: 0 7px 0 #5246e2, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-royal:hover, .button-3d.button-royal:focus {
    box-shadow: 0 7px 0 #493de1, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-royal:active, .button-3d.button-royal.active, .button-3d.button-royal.is-active {
    box-shadow: 0 2px 0 #2f21d4, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-default {
  box-shadow: 0 7px 0 #f72224, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-default:hover, .button-3d.button-default:focus {
    box-shadow: 0 7px 0 #f7181b, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-default:active, .button-3d.button-default.active, .button-3d.button-default.is-active {
    box-shadow: 0 2px 0 #de080a, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-measure {
  box-shadow: 0 7px 0 #4f6b77, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-measure:hover, .button-3d.button-measure:focus {
    box-shadow: 0 7px 0 #4b6571, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-measure:active, .button-3d.button-measure.active, .button-3d.button-measure.is-active {
    box-shadow: 0 2px 0 #3a4f59, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-group {
  box-shadow: 0 7px 0 #4f6b77, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-group:hover, .button-3d.button-group:focus {
    box-shadow: 0 7px 0 #4b6571, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-group:active, .button-3d.button-group.active, .button-3d.button-group.is-active {
    box-shadow: 0 2px 0 #3a4f59, 0 3px 3px rgba(0, 0, 0, 0.2); }
.button-3d.button-filter {
  box-shadow: 0 7px 0 #4f6b77, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-filter:hover, .button-3d.button-filter:focus {
    box-shadow: 0 7px 0 #4b6571, 0 8px 3px rgba(0, 0, 0, 0.3); }
  .button-3d.button-filter:active, .button-3d.button-filter.active, .button-3d.button-filter.is-active {
    box-shadow: 0 2px 0 #3a4f59, 0 3px 3px rgba(0, 0, 0, 0.2); }

/*
* Glowing Buttons
*
* A pulse like glow that appears
* rythmically around the edges of
* a button.
*/
/*
* Glow animation mixin for Compass users
*
*/
/*
* Glowing Keyframes
*
*/
@keyframes glowing {
  from {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(44, 154, 219, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(44, 154, 219, 0.3); } }
/*
* Glowing Keyframes for various colors
*
*/
@keyframes glowing-primary {
  from {
    box-shadow: 0 0 0 rgba(118, 183, 75, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(118, 183, 75, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(118, 183, 75, 0.3); } }
@keyframes glowing-plain {
  from {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.3); } }
@keyframes glowing-inverse {
  from {
    box-shadow: 0 0 0 rgba(91, 91, 91, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(91, 91, 91, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(91, 91, 91, 0.3); } }
@keyframes glowing-action {
  from {
    box-shadow: 0 0 0 rgba(165, 222, 55, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(165, 222, 55, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(165, 222, 55, 0.3); } }
@keyframes glowing-highlight {
  from {
    box-shadow: 0 0 0 rgba(254, 174, 27, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(254, 174, 27, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(254, 174, 27, 0.3); } }
@keyframes glowing-caution {
  from {
    box-shadow: 0 0 0 rgba(255, 67, 81, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(255, 67, 81, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(255, 67, 81, 0.3); } }
@keyframes glowing-royal {
  from {
    box-shadow: 0 0 0 rgba(123, 114, 233, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(123, 114, 233, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(123, 114, 233, 0.3); } }
@keyframes glowing-default {
  from {
    box-shadow: 0 0 0 rgba(249, 83, 85, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(249, 83, 85, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(249, 83, 85, 0.3); } }
@keyframes glowing-measure {
  from {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(99, 134, 150, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); } }
@keyframes glowing-group {
  from {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(99, 134, 150, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); } }
@keyframes glowing-filter {
  from {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); }
  50% {
    box-shadow: 0 0 20px rgba(99, 134, 150, 0.8); }
  to {
    box-shadow: 0 0 0 rgba(99, 134, 150, 0.3); } }
/*
* Glowing Buttons Base Styes
*
* A pulse like glow that appears
* rythmically around the edges of
* a button.
*/
.button-glow {
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-name: glowing; }
  .button-glow:active, .button-glow.active, .button-glow.is-active {
    animation-name: none; }

/*
* Glowing Button Colors
*
* Create colors for glowing buttons
*/
.button-glow.button-primary {
  animation-name: glowing-primary; }
.button-glow.button-plain {
  animation-name: glowing-plain; }
.button-glow.button-inverse {
  animation-name: glowing-inverse; }
.button-glow.button-action {
  animation-name: glowing-action; }
.button-glow.button-highlight {
  animation-name: glowing-highlight; }
.button-glow.button-caution {
  animation-name: glowing-caution; }
.button-glow.button-royal {
  animation-name: glowing-royal; }
.button-glow.button-default {
  animation-name: glowing-default; }
.button-glow.button-measure {
  animation-name: glowing-measure; }
.button-glow.button-group {
  animation-name: glowing-group; }
.button-glow.button-filter {
  animation-name: glowing-filter; }

/*
* Dropdown menu buttons
*
* A dropdown menu appears
* when a button is pressed
*/
/*
* Dropdown Container
*
*/
.button-dropdown {
  position: relative;
  overflow: visible;
  display: inline-block; }

/*
* Dropdown List Style
*
*/
.button-dropdown-list {
  display: none;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  min-width: 100%;
  list-style-type: none;
  background: rgba(255, 255, 255, 0.95);
  border-style: solid;
  border-width: 1px;
  border-color: #d5d5d5;
  font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  /*
  * Dropdown Below
  *
  */
  /*
  * Dropdown Above
  *
  */ }
  .button-dropdown-list.is-below {
    top: 100%;
    border-top: none;
    border-radius: 0 0 3px 3px; }
  .button-dropdown-list.is-above {
    bottom: 100%;
    top: auto;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.2); }

/*
* Dropdown Buttons
*
*/
.button-dropdown-list > li {
  padding: 0;
  margin: 0;
  display: block; }
  .button-dropdown-list > li > a {
    display: block;
    line-height: 40px;
    font-size: 12.8px;
    padding: 5px 10px;
    float: none;
    color: #666;
    text-decoration: none; }
    .button-dropdown-list > li > a:hover {
      color: #5e5e5e;
      background: #f6f6f6;
      text-decoration: none; }

.button-dropdown-divider {
  border-top: 1px solid #e6e6e6; }

/*
* Dropdown Colors
*
* Create colors for buttons
* (.button-primary, .button-secondary, etc.)
*/
.button-dropdown.button-dropdown-primary .button-dropdown-list {
  background: rgba(118, 183, 75, 0.95);
  border-color: #5e943b; }
  .button-dropdown.button-dropdown-primary .button-dropdown-list .button-dropdown-divider {
    border-color: #659f40; }
  .button-dropdown.button-dropdown-primary .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-primary .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #6aa642; }
.button-dropdown.button-dropdown-plain .button-dropdown-list {
  background: rgba(255, 255, 255, 0.95);
  border-color: #e6e6e6; }
  .button-dropdown.button-dropdown-plain .button-dropdown-list .button-dropdown-divider {
    border-color: #ededed; }
  .button-dropdown.button-dropdown-plain .button-dropdown-list > li > a {
    color: #1B9AF7; }
    .button-dropdown.button-dropdown-plain .button-dropdown-list > li > a:hover {
      color: #088ef0;
      background: #f2f2f2; }
.button-dropdown.button-dropdown-inverse .button-dropdown-list {
  background: rgba(91, 91, 91, 0.95);
  border-color: #424242; }
  .button-dropdown.button-dropdown-inverse .button-dropdown-list .button-dropdown-divider {
    border-color: #494949; }
  .button-dropdown.button-dropdown-inverse .button-dropdown-list > li > a {
    color: #fff; }
    .button-dropdown.button-dropdown-inverse .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #4e4e4e; }
.button-dropdown.button-dropdown-action .button-dropdown-list {
  background: rgba(165, 222, 55, 0.95);
  border-color: #8bc220; }
  .button-dropdown.button-dropdown-action .button-dropdown-list .button-dropdown-divider {
    border-color: #94cf22; }
  .button-dropdown.button-dropdown-action .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-action .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #9ad824; }
.button-dropdown.button-dropdown-highlight .button-dropdown-list {
  background: rgba(254, 174, 27, 0.95);
  border-color: #e59501; }
  .button-dropdown.button-dropdown-highlight .button-dropdown-list .button-dropdown-divider {
    border-color: #f49f01; }
  .button-dropdown.button-dropdown-highlight .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-highlight .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #fea502; }
.button-dropdown.button-dropdown-caution .button-dropdown-list {
  background: rgba(255, 67, 81, 0.95);
  border-color: #ff1022; }
  .button-dropdown.button-dropdown-caution .button-dropdown-list .button-dropdown-divider {
    border-color: #ff1f30; }
  .button-dropdown.button-dropdown-caution .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-caution .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #ff2a39; }
.button-dropdown.button-dropdown-royal .button-dropdown-list {
  background: rgba(123, 114, 233, 0.95);
  border-color: #5246e2; }
  .button-dropdown.button-dropdown-royal .button-dropdown-list .button-dropdown-divider {
    border-color: #5e53e4; }
  .button-dropdown.button-dropdown-royal .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-royal .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #665ce6; }
.button-dropdown.button-dropdown-default .button-dropdown-list {
  background: rgba(249, 83, 85, 0.95);
  border-color: #f72224; }
  .button-dropdown.button-dropdown-default .button-dropdown-list .button-dropdown-divider {
    border-color: #f83133; }
  .button-dropdown.button-dropdown-default .button-dropdown-list > li > a {
    color: #FFF; }
    .button-dropdown.button-dropdown-default .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #f83a3d; }
.button-dropdown.button-dropdown-measure .button-dropdown-list {
  background: rgba(99, 134, 150, 0.95);
  border-color: #4f6b77; }
  .button-dropdown.button-dropdown-measure .button-dropdown-list .button-dropdown-divider {
    border-color: #557380; }
  .button-dropdown.button-dropdown-measure .button-dropdown-list > li > a {
    color: #fff; }
    .button-dropdown.button-dropdown-measure .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #597887; }
.button-dropdown.button-dropdown-group .button-dropdown-list {
  background: rgba(99, 134, 150, 0.95);
  border-color: #4f6b77; }
  .button-dropdown.button-dropdown-group .button-dropdown-list .button-dropdown-divider {
    border-color: #557380; }
  .button-dropdown.button-dropdown-group .button-dropdown-list > li > a {
    color: #fff; }
    .button-dropdown.button-dropdown-group .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #597887; }
.button-dropdown.button-dropdown-filter .button-dropdown-list {
  background: rgba(99, 134, 150, 0.95);
  border-color: #4f6b77; }
  .button-dropdown.button-dropdown-filter .button-dropdown-list .button-dropdown-divider {
    border-color: #557380; }
  .button-dropdown.button-dropdown-filter .button-dropdown-list > li > a {
    color: #fff; }
    .button-dropdown.button-dropdown-filter .button-dropdown-list > li > a:hover {
      color: #f2f2f2;
      background: #597887; }

/*
* Buton Groups
*
* A group of related buttons
* displayed edge to edge
*/
.button-group {
  *zoom: 1;
  position: relative;
  display: inline-block; }
  .button-group:after, .button-group:before {
    content: '.';
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0; }
  .button-group .button,
  .button-group .button-dropdown {
    float: left; }
    .button-group .button:not(:first-child):not(:last-child),
    .button-group .button-dropdown:not(:first-child):not(:last-child) {
      border-radius: 0;
      border-right: none; }
    .button-group .button:first-child,
    .button-group .button-dropdown:first-child {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-right: none; }
    .button-group .button:last-child,
    .button-group .button-dropdown:last-child {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

/*
* Button Wrapper
*
* A wrap around effect to highlight
* the shape of the button and offer
* a subtle visual effect.
*/
.button-wrap {
  border: 1px solid #e3e3e3;
  display: inline-block;
  padding: 9px;
  background: linear, false, #f2f2f2, #FFF;
  border-radius: 200px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04); }

/*
* Long Shadow Buttons
*
* A visual effect adding a flat shadow to the text of a button
*/
/*
* Long Shadow Function
*
* Loops $length times building a long shadow. Defaults downward right
*/
/*
* LONG SHADOW MIXIN
*
*/
/*
* Shadow Right
*
*/
.button-longshadow,
.button-longshadow-right {
  overflow: hidden; }
  .button-longshadow.button-primary,
  .button-longshadow-right.button-primary {
    text-shadow: 0px 0px #5e943b, 1px 1px #5e943b, 2px 2px #5e943b, 3px 3px #5e943b, 4px 4px #5e943b, 5px 5px #5e943b, 6px 6px #5e943b, 7px 7px #5e943b, 8px 8px #5e943b, 9px 9px #5e943b, 10px 10px #5e943b, 11px 11px #5e943b, 12px 12px #5e943b, 13px 13px #5e943b, 14px 14px #5e943b, 15px 15px #5e943b, 16px 16px #5e943b, 17px 17px #5e943b, 18px 18px #5e943b, 19px 19px #5e943b, 20px 20px #5e943b, 21px 21px #5e943b, 22px 22px #5e943b, 23px 23px #5e943b, 24px 24px #5e943b, 25px 25px #5e943b, 26px 26px #5e943b, 27px 27px #5e943b, 28px 28px #5e943b, 29px 29px #5e943b, 30px 30px #5e943b, 31px 31px #5e943b, 32px 32px #5e943b, 33px 33px #5e943b, 34px 34px #5e943b, 35px 35px #5e943b, 36px 36px #5e943b, 37px 37px #5e943b, 38px 38px #5e943b, 39px 39px #5e943b, 40px 40px #5e943b, 41px 41px #5e943b, 42px 42px #5e943b, 43px 43px #5e943b, 44px 44px #5e943b, 45px 45px #5e943b, 46px 46px #5e943b, 47px 47px #5e943b, 48px 48px #5e943b, 49px 49px #5e943b, 50px 50px #5e943b, 51px 51px #5e943b, 52px 52px #5e943b, 53px 53px #5e943b, 54px 54px #5e943b, 55px 55px #5e943b, 56px 56px #5e943b, 57px 57px #5e943b, 58px 58px #5e943b, 59px 59px #5e943b, 60px 60px #5e943b, 61px 61px #5e943b, 62px 62px #5e943b, 63px 63px #5e943b, 64px 64px #5e943b, 65px 65px #5e943b, 66px 66px #5e943b, 67px 67px #5e943b, 68px 68px #5e943b, 69px 69px #5e943b, 70px 70px #5e943b, 71px 71px #5e943b, 72px 72px #5e943b, 73px 73px #5e943b, 74px 74px #5e943b, 75px 75px #5e943b, 76px 76px #5e943b, 77px 77px #5e943b, 78px 78px #5e943b, 79px 79px #5e943b, 80px 80px #5e943b, 81px 81px #5e943b, 82px 82px #5e943b, 83px 83px #5e943b, 84px 84px #5e943b, 85px 85px #5e943b; }
    .button-longshadow.button-primary:active, .button-longshadow.button-primary.active, .button-longshadow.button-primary.is-active,
    .button-longshadow-right.button-primary:active,
    .button-longshadow-right.button-primary.active,
    .button-longshadow-right.button-primary.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-plain,
  .button-longshadow-right.button-plain {
    text-shadow: 0px 0px #e6e6e6, 1px 1px #e6e6e6, 2px 2px #e6e6e6, 3px 3px #e6e6e6, 4px 4px #e6e6e6, 5px 5px #e6e6e6, 6px 6px #e6e6e6, 7px 7px #e6e6e6, 8px 8px #e6e6e6, 9px 9px #e6e6e6, 10px 10px #e6e6e6, 11px 11px #e6e6e6, 12px 12px #e6e6e6, 13px 13px #e6e6e6, 14px 14px #e6e6e6, 15px 15px #e6e6e6, 16px 16px #e6e6e6, 17px 17px #e6e6e6, 18px 18px #e6e6e6, 19px 19px #e6e6e6, 20px 20px #e6e6e6, 21px 21px #e6e6e6, 22px 22px #e6e6e6, 23px 23px #e6e6e6, 24px 24px #e6e6e6, 25px 25px #e6e6e6, 26px 26px #e6e6e6, 27px 27px #e6e6e6, 28px 28px #e6e6e6, 29px 29px #e6e6e6, 30px 30px #e6e6e6, 31px 31px #e6e6e6, 32px 32px #e6e6e6, 33px 33px #e6e6e6, 34px 34px #e6e6e6, 35px 35px #e6e6e6, 36px 36px #e6e6e6, 37px 37px #e6e6e6, 38px 38px #e6e6e6, 39px 39px #e6e6e6, 40px 40px #e6e6e6, 41px 41px #e6e6e6, 42px 42px #e6e6e6, 43px 43px #e6e6e6, 44px 44px #e6e6e6, 45px 45px #e6e6e6, 46px 46px #e6e6e6, 47px 47px #e6e6e6, 48px 48px #e6e6e6, 49px 49px #e6e6e6, 50px 50px #e6e6e6, 51px 51px #e6e6e6, 52px 52px #e6e6e6, 53px 53px #e6e6e6, 54px 54px #e6e6e6, 55px 55px #e6e6e6, 56px 56px #e6e6e6, 57px 57px #e6e6e6, 58px 58px #e6e6e6, 59px 59px #e6e6e6, 60px 60px #e6e6e6, 61px 61px #e6e6e6, 62px 62px #e6e6e6, 63px 63px #e6e6e6, 64px 64px #e6e6e6, 65px 65px #e6e6e6, 66px 66px #e6e6e6, 67px 67px #e6e6e6, 68px 68px #e6e6e6, 69px 69px #e6e6e6, 70px 70px #e6e6e6, 71px 71px #e6e6e6, 72px 72px #e6e6e6, 73px 73px #e6e6e6, 74px 74px #e6e6e6, 75px 75px #e6e6e6, 76px 76px #e6e6e6, 77px 77px #e6e6e6, 78px 78px #e6e6e6, 79px 79px #e6e6e6, 80px 80px #e6e6e6, 81px 81px #e6e6e6, 82px 82px #e6e6e6, 83px 83px #e6e6e6, 84px 84px #e6e6e6, 85px 85px #e6e6e6; }
    .button-longshadow.button-plain:active, .button-longshadow.button-plain.active, .button-longshadow.button-plain.is-active,
    .button-longshadow-right.button-plain:active,
    .button-longshadow-right.button-plain.active,
    .button-longshadow-right.button-plain.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-inverse,
  .button-longshadow-right.button-inverse {
    text-shadow: 0px 0px #424242, 1px 1px #424242, 2px 2px #424242, 3px 3px #424242, 4px 4px #424242, 5px 5px #424242, 6px 6px #424242, 7px 7px #424242, 8px 8px #424242, 9px 9px #424242, 10px 10px #424242, 11px 11px #424242, 12px 12px #424242, 13px 13px #424242, 14px 14px #424242, 15px 15px #424242, 16px 16px #424242, 17px 17px #424242, 18px 18px #424242, 19px 19px #424242, 20px 20px #424242, 21px 21px #424242, 22px 22px #424242, 23px 23px #424242, 24px 24px #424242, 25px 25px #424242, 26px 26px #424242, 27px 27px #424242, 28px 28px #424242, 29px 29px #424242, 30px 30px #424242, 31px 31px #424242, 32px 32px #424242, 33px 33px #424242, 34px 34px #424242, 35px 35px #424242, 36px 36px #424242, 37px 37px #424242, 38px 38px #424242, 39px 39px #424242, 40px 40px #424242, 41px 41px #424242, 42px 42px #424242, 43px 43px #424242, 44px 44px #424242, 45px 45px #424242, 46px 46px #424242, 47px 47px #424242, 48px 48px #424242, 49px 49px #424242, 50px 50px #424242, 51px 51px #424242, 52px 52px #424242, 53px 53px #424242, 54px 54px #424242, 55px 55px #424242, 56px 56px #424242, 57px 57px #424242, 58px 58px #424242, 59px 59px #424242, 60px 60px #424242, 61px 61px #424242, 62px 62px #424242, 63px 63px #424242, 64px 64px #424242, 65px 65px #424242, 66px 66px #424242, 67px 67px #424242, 68px 68px #424242, 69px 69px #424242, 70px 70px #424242, 71px 71px #424242, 72px 72px #424242, 73px 73px #424242, 74px 74px #424242, 75px 75px #424242, 76px 76px #424242, 77px 77px #424242, 78px 78px #424242, 79px 79px #424242, 80px 80px #424242, 81px 81px #424242, 82px 82px #424242, 83px 83px #424242, 84px 84px #424242, 85px 85px #424242; }
    .button-longshadow.button-inverse:active, .button-longshadow.button-inverse.active, .button-longshadow.button-inverse.is-active,
    .button-longshadow-right.button-inverse:active,
    .button-longshadow-right.button-inverse.active,
    .button-longshadow-right.button-inverse.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-action,
  .button-longshadow-right.button-action {
    text-shadow: 0px 0px #8bc220, 1px 1px #8bc220, 2px 2px #8bc220, 3px 3px #8bc220, 4px 4px #8bc220, 5px 5px #8bc220, 6px 6px #8bc220, 7px 7px #8bc220, 8px 8px #8bc220, 9px 9px #8bc220, 10px 10px #8bc220, 11px 11px #8bc220, 12px 12px #8bc220, 13px 13px #8bc220, 14px 14px #8bc220, 15px 15px #8bc220, 16px 16px #8bc220, 17px 17px #8bc220, 18px 18px #8bc220, 19px 19px #8bc220, 20px 20px #8bc220, 21px 21px #8bc220, 22px 22px #8bc220, 23px 23px #8bc220, 24px 24px #8bc220, 25px 25px #8bc220, 26px 26px #8bc220, 27px 27px #8bc220, 28px 28px #8bc220, 29px 29px #8bc220, 30px 30px #8bc220, 31px 31px #8bc220, 32px 32px #8bc220, 33px 33px #8bc220, 34px 34px #8bc220, 35px 35px #8bc220, 36px 36px #8bc220, 37px 37px #8bc220, 38px 38px #8bc220, 39px 39px #8bc220, 40px 40px #8bc220, 41px 41px #8bc220, 42px 42px #8bc220, 43px 43px #8bc220, 44px 44px #8bc220, 45px 45px #8bc220, 46px 46px #8bc220, 47px 47px #8bc220, 48px 48px #8bc220, 49px 49px #8bc220, 50px 50px #8bc220, 51px 51px #8bc220, 52px 52px #8bc220, 53px 53px #8bc220, 54px 54px #8bc220, 55px 55px #8bc220, 56px 56px #8bc220, 57px 57px #8bc220, 58px 58px #8bc220, 59px 59px #8bc220, 60px 60px #8bc220, 61px 61px #8bc220, 62px 62px #8bc220, 63px 63px #8bc220, 64px 64px #8bc220, 65px 65px #8bc220, 66px 66px #8bc220, 67px 67px #8bc220, 68px 68px #8bc220, 69px 69px #8bc220, 70px 70px #8bc220, 71px 71px #8bc220, 72px 72px #8bc220, 73px 73px #8bc220, 74px 74px #8bc220, 75px 75px #8bc220, 76px 76px #8bc220, 77px 77px #8bc220, 78px 78px #8bc220, 79px 79px #8bc220, 80px 80px #8bc220, 81px 81px #8bc220, 82px 82px #8bc220, 83px 83px #8bc220, 84px 84px #8bc220, 85px 85px #8bc220; }
    .button-longshadow.button-action:active, .button-longshadow.button-action.active, .button-longshadow.button-action.is-active,
    .button-longshadow-right.button-action:active,
    .button-longshadow-right.button-action.active,
    .button-longshadow-right.button-action.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-highlight,
  .button-longshadow-right.button-highlight {
    text-shadow: 0px 0px #e59501, 1px 1px #e59501, 2px 2px #e59501, 3px 3px #e59501, 4px 4px #e59501, 5px 5px #e59501, 6px 6px #e59501, 7px 7px #e59501, 8px 8px #e59501, 9px 9px #e59501, 10px 10px #e59501, 11px 11px #e59501, 12px 12px #e59501, 13px 13px #e59501, 14px 14px #e59501, 15px 15px #e59501, 16px 16px #e59501, 17px 17px #e59501, 18px 18px #e59501, 19px 19px #e59501, 20px 20px #e59501, 21px 21px #e59501, 22px 22px #e59501, 23px 23px #e59501, 24px 24px #e59501, 25px 25px #e59501, 26px 26px #e59501, 27px 27px #e59501, 28px 28px #e59501, 29px 29px #e59501, 30px 30px #e59501, 31px 31px #e59501, 32px 32px #e59501, 33px 33px #e59501, 34px 34px #e59501, 35px 35px #e59501, 36px 36px #e59501, 37px 37px #e59501, 38px 38px #e59501, 39px 39px #e59501, 40px 40px #e59501, 41px 41px #e59501, 42px 42px #e59501, 43px 43px #e59501, 44px 44px #e59501, 45px 45px #e59501, 46px 46px #e59501, 47px 47px #e59501, 48px 48px #e59501, 49px 49px #e59501, 50px 50px #e59501, 51px 51px #e59501, 52px 52px #e59501, 53px 53px #e59501, 54px 54px #e59501, 55px 55px #e59501, 56px 56px #e59501, 57px 57px #e59501, 58px 58px #e59501, 59px 59px #e59501, 60px 60px #e59501, 61px 61px #e59501, 62px 62px #e59501, 63px 63px #e59501, 64px 64px #e59501, 65px 65px #e59501, 66px 66px #e59501, 67px 67px #e59501, 68px 68px #e59501, 69px 69px #e59501, 70px 70px #e59501, 71px 71px #e59501, 72px 72px #e59501, 73px 73px #e59501, 74px 74px #e59501, 75px 75px #e59501, 76px 76px #e59501, 77px 77px #e59501, 78px 78px #e59501, 79px 79px #e59501, 80px 80px #e59501, 81px 81px #e59501, 82px 82px #e59501, 83px 83px #e59501, 84px 84px #e59501, 85px 85px #e59501; }
    .button-longshadow.button-highlight:active, .button-longshadow.button-highlight.active, .button-longshadow.button-highlight.is-active,
    .button-longshadow-right.button-highlight:active,
    .button-longshadow-right.button-highlight.active,
    .button-longshadow-right.button-highlight.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-caution,
  .button-longshadow-right.button-caution {
    text-shadow: 0px 0px #ff1022, 1px 1px #ff1022, 2px 2px #ff1022, 3px 3px #ff1022, 4px 4px #ff1022, 5px 5px #ff1022, 6px 6px #ff1022, 7px 7px #ff1022, 8px 8px #ff1022, 9px 9px #ff1022, 10px 10px #ff1022, 11px 11px #ff1022, 12px 12px #ff1022, 13px 13px #ff1022, 14px 14px #ff1022, 15px 15px #ff1022, 16px 16px #ff1022, 17px 17px #ff1022, 18px 18px #ff1022, 19px 19px #ff1022, 20px 20px #ff1022, 21px 21px #ff1022, 22px 22px #ff1022, 23px 23px #ff1022, 24px 24px #ff1022, 25px 25px #ff1022, 26px 26px #ff1022, 27px 27px #ff1022, 28px 28px #ff1022, 29px 29px #ff1022, 30px 30px #ff1022, 31px 31px #ff1022, 32px 32px #ff1022, 33px 33px #ff1022, 34px 34px #ff1022, 35px 35px #ff1022, 36px 36px #ff1022, 37px 37px #ff1022, 38px 38px #ff1022, 39px 39px #ff1022, 40px 40px #ff1022, 41px 41px #ff1022, 42px 42px #ff1022, 43px 43px #ff1022, 44px 44px #ff1022, 45px 45px #ff1022, 46px 46px #ff1022, 47px 47px #ff1022, 48px 48px #ff1022, 49px 49px #ff1022, 50px 50px #ff1022, 51px 51px #ff1022, 52px 52px #ff1022, 53px 53px #ff1022, 54px 54px #ff1022, 55px 55px #ff1022, 56px 56px #ff1022, 57px 57px #ff1022, 58px 58px #ff1022, 59px 59px #ff1022, 60px 60px #ff1022, 61px 61px #ff1022, 62px 62px #ff1022, 63px 63px #ff1022, 64px 64px #ff1022, 65px 65px #ff1022, 66px 66px #ff1022, 67px 67px #ff1022, 68px 68px #ff1022, 69px 69px #ff1022, 70px 70px #ff1022, 71px 71px #ff1022, 72px 72px #ff1022, 73px 73px #ff1022, 74px 74px #ff1022, 75px 75px #ff1022, 76px 76px #ff1022, 77px 77px #ff1022, 78px 78px #ff1022, 79px 79px #ff1022, 80px 80px #ff1022, 81px 81px #ff1022, 82px 82px #ff1022, 83px 83px #ff1022, 84px 84px #ff1022, 85px 85px #ff1022; }
    .button-longshadow.button-caution:active, .button-longshadow.button-caution.active, .button-longshadow.button-caution.is-active,
    .button-longshadow-right.button-caution:active,
    .button-longshadow-right.button-caution.active,
    .button-longshadow-right.button-caution.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-royal,
  .button-longshadow-right.button-royal {
    text-shadow: 0px 0px #5246e2, 1px 1px #5246e2, 2px 2px #5246e2, 3px 3px #5246e2, 4px 4px #5246e2, 5px 5px #5246e2, 6px 6px #5246e2, 7px 7px #5246e2, 8px 8px #5246e2, 9px 9px #5246e2, 10px 10px #5246e2, 11px 11px #5246e2, 12px 12px #5246e2, 13px 13px #5246e2, 14px 14px #5246e2, 15px 15px #5246e2, 16px 16px #5246e2, 17px 17px #5246e2, 18px 18px #5246e2, 19px 19px #5246e2, 20px 20px #5246e2, 21px 21px #5246e2, 22px 22px #5246e2, 23px 23px #5246e2, 24px 24px #5246e2, 25px 25px #5246e2, 26px 26px #5246e2, 27px 27px #5246e2, 28px 28px #5246e2, 29px 29px #5246e2, 30px 30px #5246e2, 31px 31px #5246e2, 32px 32px #5246e2, 33px 33px #5246e2, 34px 34px #5246e2, 35px 35px #5246e2, 36px 36px #5246e2, 37px 37px #5246e2, 38px 38px #5246e2, 39px 39px #5246e2, 40px 40px #5246e2, 41px 41px #5246e2, 42px 42px #5246e2, 43px 43px #5246e2, 44px 44px #5246e2, 45px 45px #5246e2, 46px 46px #5246e2, 47px 47px #5246e2, 48px 48px #5246e2, 49px 49px #5246e2, 50px 50px #5246e2, 51px 51px #5246e2, 52px 52px #5246e2, 53px 53px #5246e2, 54px 54px #5246e2, 55px 55px #5246e2, 56px 56px #5246e2, 57px 57px #5246e2, 58px 58px #5246e2, 59px 59px #5246e2, 60px 60px #5246e2, 61px 61px #5246e2, 62px 62px #5246e2, 63px 63px #5246e2, 64px 64px #5246e2, 65px 65px #5246e2, 66px 66px #5246e2, 67px 67px #5246e2, 68px 68px #5246e2, 69px 69px #5246e2, 70px 70px #5246e2, 71px 71px #5246e2, 72px 72px #5246e2, 73px 73px #5246e2, 74px 74px #5246e2, 75px 75px #5246e2, 76px 76px #5246e2, 77px 77px #5246e2, 78px 78px #5246e2, 79px 79px #5246e2, 80px 80px #5246e2, 81px 81px #5246e2, 82px 82px #5246e2, 83px 83px #5246e2, 84px 84px #5246e2, 85px 85px #5246e2; }
    .button-longshadow.button-royal:active, .button-longshadow.button-royal.active, .button-longshadow.button-royal.is-active,
    .button-longshadow-right.button-royal:active,
    .button-longshadow-right.button-royal.active,
    .button-longshadow-right.button-royal.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-default,
  .button-longshadow-right.button-default {
    text-shadow: 0px 0px #f72224, 1px 1px #f72224, 2px 2px #f72224, 3px 3px #f72224, 4px 4px #f72224, 5px 5px #f72224, 6px 6px #f72224, 7px 7px #f72224, 8px 8px #f72224, 9px 9px #f72224, 10px 10px #f72224, 11px 11px #f72224, 12px 12px #f72224, 13px 13px #f72224, 14px 14px #f72224, 15px 15px #f72224, 16px 16px #f72224, 17px 17px #f72224, 18px 18px #f72224, 19px 19px #f72224, 20px 20px #f72224, 21px 21px #f72224, 22px 22px #f72224, 23px 23px #f72224, 24px 24px #f72224, 25px 25px #f72224, 26px 26px #f72224, 27px 27px #f72224, 28px 28px #f72224, 29px 29px #f72224, 30px 30px #f72224, 31px 31px #f72224, 32px 32px #f72224, 33px 33px #f72224, 34px 34px #f72224, 35px 35px #f72224, 36px 36px #f72224, 37px 37px #f72224, 38px 38px #f72224, 39px 39px #f72224, 40px 40px #f72224, 41px 41px #f72224, 42px 42px #f72224, 43px 43px #f72224, 44px 44px #f72224, 45px 45px #f72224, 46px 46px #f72224, 47px 47px #f72224, 48px 48px #f72224, 49px 49px #f72224, 50px 50px #f72224, 51px 51px #f72224, 52px 52px #f72224, 53px 53px #f72224, 54px 54px #f72224, 55px 55px #f72224, 56px 56px #f72224, 57px 57px #f72224, 58px 58px #f72224, 59px 59px #f72224, 60px 60px #f72224, 61px 61px #f72224, 62px 62px #f72224, 63px 63px #f72224, 64px 64px #f72224, 65px 65px #f72224, 66px 66px #f72224, 67px 67px #f72224, 68px 68px #f72224, 69px 69px #f72224, 70px 70px #f72224, 71px 71px #f72224, 72px 72px #f72224, 73px 73px #f72224, 74px 74px #f72224, 75px 75px #f72224, 76px 76px #f72224, 77px 77px #f72224, 78px 78px #f72224, 79px 79px #f72224, 80px 80px #f72224, 81px 81px #f72224, 82px 82px #f72224, 83px 83px #f72224, 84px 84px #f72224, 85px 85px #f72224; }
    .button-longshadow.button-default:active, .button-longshadow.button-default.active, .button-longshadow.button-default.is-active,
    .button-longshadow-right.button-default:active,
    .button-longshadow-right.button-default.active,
    .button-longshadow-right.button-default.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-measure,
  .button-longshadow-right.button-measure {
    text-shadow: 0px 0px #4f6b77, 1px 1px #4f6b77, 2px 2px #4f6b77, 3px 3px #4f6b77, 4px 4px #4f6b77, 5px 5px #4f6b77, 6px 6px #4f6b77, 7px 7px #4f6b77, 8px 8px #4f6b77, 9px 9px #4f6b77, 10px 10px #4f6b77, 11px 11px #4f6b77, 12px 12px #4f6b77, 13px 13px #4f6b77, 14px 14px #4f6b77, 15px 15px #4f6b77, 16px 16px #4f6b77, 17px 17px #4f6b77, 18px 18px #4f6b77, 19px 19px #4f6b77, 20px 20px #4f6b77, 21px 21px #4f6b77, 22px 22px #4f6b77, 23px 23px #4f6b77, 24px 24px #4f6b77, 25px 25px #4f6b77, 26px 26px #4f6b77, 27px 27px #4f6b77, 28px 28px #4f6b77, 29px 29px #4f6b77, 30px 30px #4f6b77, 31px 31px #4f6b77, 32px 32px #4f6b77, 33px 33px #4f6b77, 34px 34px #4f6b77, 35px 35px #4f6b77, 36px 36px #4f6b77, 37px 37px #4f6b77, 38px 38px #4f6b77, 39px 39px #4f6b77, 40px 40px #4f6b77, 41px 41px #4f6b77, 42px 42px #4f6b77, 43px 43px #4f6b77, 44px 44px #4f6b77, 45px 45px #4f6b77, 46px 46px #4f6b77, 47px 47px #4f6b77, 48px 48px #4f6b77, 49px 49px #4f6b77, 50px 50px #4f6b77, 51px 51px #4f6b77, 52px 52px #4f6b77, 53px 53px #4f6b77, 54px 54px #4f6b77, 55px 55px #4f6b77, 56px 56px #4f6b77, 57px 57px #4f6b77, 58px 58px #4f6b77, 59px 59px #4f6b77, 60px 60px #4f6b77, 61px 61px #4f6b77, 62px 62px #4f6b77, 63px 63px #4f6b77, 64px 64px #4f6b77, 65px 65px #4f6b77, 66px 66px #4f6b77, 67px 67px #4f6b77, 68px 68px #4f6b77, 69px 69px #4f6b77, 70px 70px #4f6b77, 71px 71px #4f6b77, 72px 72px #4f6b77, 73px 73px #4f6b77, 74px 74px #4f6b77, 75px 75px #4f6b77, 76px 76px #4f6b77, 77px 77px #4f6b77, 78px 78px #4f6b77, 79px 79px #4f6b77, 80px 80px #4f6b77, 81px 81px #4f6b77, 82px 82px #4f6b77, 83px 83px #4f6b77, 84px 84px #4f6b77, 85px 85px #4f6b77; }
    .button-longshadow.button-measure:active, .button-longshadow.button-measure.active, .button-longshadow.button-measure.is-active,
    .button-longshadow-right.button-measure:active,
    .button-longshadow-right.button-measure.active,
    .button-longshadow-right.button-measure.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-group,
  .button-longshadow-right.button-group {
    text-shadow: 0px 0px #4f6b77, 1px 1px #4f6b77, 2px 2px #4f6b77, 3px 3px #4f6b77, 4px 4px #4f6b77, 5px 5px #4f6b77, 6px 6px #4f6b77, 7px 7px #4f6b77, 8px 8px #4f6b77, 9px 9px #4f6b77, 10px 10px #4f6b77, 11px 11px #4f6b77, 12px 12px #4f6b77, 13px 13px #4f6b77, 14px 14px #4f6b77, 15px 15px #4f6b77, 16px 16px #4f6b77, 17px 17px #4f6b77, 18px 18px #4f6b77, 19px 19px #4f6b77, 20px 20px #4f6b77, 21px 21px #4f6b77, 22px 22px #4f6b77, 23px 23px #4f6b77, 24px 24px #4f6b77, 25px 25px #4f6b77, 26px 26px #4f6b77, 27px 27px #4f6b77, 28px 28px #4f6b77, 29px 29px #4f6b77, 30px 30px #4f6b77, 31px 31px #4f6b77, 32px 32px #4f6b77, 33px 33px #4f6b77, 34px 34px #4f6b77, 35px 35px #4f6b77, 36px 36px #4f6b77, 37px 37px #4f6b77, 38px 38px #4f6b77, 39px 39px #4f6b77, 40px 40px #4f6b77, 41px 41px #4f6b77, 42px 42px #4f6b77, 43px 43px #4f6b77, 44px 44px #4f6b77, 45px 45px #4f6b77, 46px 46px #4f6b77, 47px 47px #4f6b77, 48px 48px #4f6b77, 49px 49px #4f6b77, 50px 50px #4f6b77, 51px 51px #4f6b77, 52px 52px #4f6b77, 53px 53px #4f6b77, 54px 54px #4f6b77, 55px 55px #4f6b77, 56px 56px #4f6b77, 57px 57px #4f6b77, 58px 58px #4f6b77, 59px 59px #4f6b77, 60px 60px #4f6b77, 61px 61px #4f6b77, 62px 62px #4f6b77, 63px 63px #4f6b77, 64px 64px #4f6b77, 65px 65px #4f6b77, 66px 66px #4f6b77, 67px 67px #4f6b77, 68px 68px #4f6b77, 69px 69px #4f6b77, 70px 70px #4f6b77, 71px 71px #4f6b77, 72px 72px #4f6b77, 73px 73px #4f6b77, 74px 74px #4f6b77, 75px 75px #4f6b77, 76px 76px #4f6b77, 77px 77px #4f6b77, 78px 78px #4f6b77, 79px 79px #4f6b77, 80px 80px #4f6b77, 81px 81px #4f6b77, 82px 82px #4f6b77, 83px 83px #4f6b77, 84px 84px #4f6b77, 85px 85px #4f6b77; }
    .button-longshadow.button-group:active, .button-longshadow.button-group.active, .button-longshadow.button-group.is-active,
    .button-longshadow-right.button-group:active,
    .button-longshadow-right.button-group.active,
    .button-longshadow-right.button-group.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow.button-filter,
  .button-longshadow-right.button-filter {
    text-shadow: 0px 0px #4f6b77, 1px 1px #4f6b77, 2px 2px #4f6b77, 3px 3px #4f6b77, 4px 4px #4f6b77, 5px 5px #4f6b77, 6px 6px #4f6b77, 7px 7px #4f6b77, 8px 8px #4f6b77, 9px 9px #4f6b77, 10px 10px #4f6b77, 11px 11px #4f6b77, 12px 12px #4f6b77, 13px 13px #4f6b77, 14px 14px #4f6b77, 15px 15px #4f6b77, 16px 16px #4f6b77, 17px 17px #4f6b77, 18px 18px #4f6b77, 19px 19px #4f6b77, 20px 20px #4f6b77, 21px 21px #4f6b77, 22px 22px #4f6b77, 23px 23px #4f6b77, 24px 24px #4f6b77, 25px 25px #4f6b77, 26px 26px #4f6b77, 27px 27px #4f6b77, 28px 28px #4f6b77, 29px 29px #4f6b77, 30px 30px #4f6b77, 31px 31px #4f6b77, 32px 32px #4f6b77, 33px 33px #4f6b77, 34px 34px #4f6b77, 35px 35px #4f6b77, 36px 36px #4f6b77, 37px 37px #4f6b77, 38px 38px #4f6b77, 39px 39px #4f6b77, 40px 40px #4f6b77, 41px 41px #4f6b77, 42px 42px #4f6b77, 43px 43px #4f6b77, 44px 44px #4f6b77, 45px 45px #4f6b77, 46px 46px #4f6b77, 47px 47px #4f6b77, 48px 48px #4f6b77, 49px 49px #4f6b77, 50px 50px #4f6b77, 51px 51px #4f6b77, 52px 52px #4f6b77, 53px 53px #4f6b77, 54px 54px #4f6b77, 55px 55px #4f6b77, 56px 56px #4f6b77, 57px 57px #4f6b77, 58px 58px #4f6b77, 59px 59px #4f6b77, 60px 60px #4f6b77, 61px 61px #4f6b77, 62px 62px #4f6b77, 63px 63px #4f6b77, 64px 64px #4f6b77, 65px 65px #4f6b77, 66px 66px #4f6b77, 67px 67px #4f6b77, 68px 68px #4f6b77, 69px 69px #4f6b77, 70px 70px #4f6b77, 71px 71px #4f6b77, 72px 72px #4f6b77, 73px 73px #4f6b77, 74px 74px #4f6b77, 75px 75px #4f6b77, 76px 76px #4f6b77, 77px 77px #4f6b77, 78px 78px #4f6b77, 79px 79px #4f6b77, 80px 80px #4f6b77, 81px 81px #4f6b77, 82px 82px #4f6b77, 83px 83px #4f6b77, 84px 84px #4f6b77, 85px 85px #4f6b77; }
    .button-longshadow.button-filter:active, .button-longshadow.button-filter.active, .button-longshadow.button-filter.is-active,
    .button-longshadow-right.button-filter:active,
    .button-longshadow-right.button-filter.active,
    .button-longshadow-right.button-filter.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }

/*
* Shadow Left
*
*/
.button-longshadow-left {
  overflow: hidden; }
  .button-longshadow-left.button-primary {
    text-shadow: 0px 0px #5e943b, -1px 1px #5e943b, -2px 2px #5e943b, -3px 3px #5e943b, -4px 4px #5e943b, -5px 5px #5e943b, -6px 6px #5e943b, -7px 7px #5e943b, -8px 8px #5e943b, -9px 9px #5e943b, -10px 10px #5e943b, -11px 11px #5e943b, -12px 12px #5e943b, -13px 13px #5e943b, -14px 14px #5e943b, -15px 15px #5e943b, -16px 16px #5e943b, -17px 17px #5e943b, -18px 18px #5e943b, -19px 19px #5e943b, -20px 20px #5e943b, -21px 21px #5e943b, -22px 22px #5e943b, -23px 23px #5e943b, -24px 24px #5e943b, -25px 25px #5e943b, -26px 26px #5e943b, -27px 27px #5e943b, -28px 28px #5e943b, -29px 29px #5e943b, -30px 30px #5e943b, -31px 31px #5e943b, -32px 32px #5e943b, -33px 33px #5e943b, -34px 34px #5e943b, -35px 35px #5e943b, -36px 36px #5e943b, -37px 37px #5e943b, -38px 38px #5e943b, -39px 39px #5e943b, -40px 40px #5e943b, -41px 41px #5e943b, -42px 42px #5e943b, -43px 43px #5e943b, -44px 44px #5e943b, -45px 45px #5e943b, -46px 46px #5e943b, -47px 47px #5e943b, -48px 48px #5e943b, -49px 49px #5e943b, -50px 50px #5e943b, -51px 51px #5e943b, -52px 52px #5e943b, -53px 53px #5e943b, -54px 54px #5e943b, -55px 55px #5e943b, -56px 56px #5e943b, -57px 57px #5e943b, -58px 58px #5e943b, -59px 59px #5e943b, -60px 60px #5e943b, -61px 61px #5e943b, -62px 62px #5e943b, -63px 63px #5e943b, -64px 64px #5e943b, -65px 65px #5e943b, -66px 66px #5e943b, -67px 67px #5e943b, -68px 68px #5e943b, -69px 69px #5e943b, -70px 70px #5e943b, -71px 71px #5e943b, -72px 72px #5e943b, -73px 73px #5e943b, -74px 74px #5e943b, -75px 75px #5e943b, -76px 76px #5e943b, -77px 77px #5e943b, -78px 78px #5e943b, -79px 79px #5e943b, -80px 80px #5e943b, -81px 81px #5e943b, -82px 82px #5e943b, -83px 83px #5e943b, -84px 84px #5e943b, -85px 85px #5e943b; }
    .button-longshadow-left.button-primary:active, .button-longshadow-left.button-primary.active, .button-longshadow-left.button-primary.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-plain {
    text-shadow: 0px 0px #e6e6e6, -1px 1px #e6e6e6, -2px 2px #e6e6e6, -3px 3px #e6e6e6, -4px 4px #e6e6e6, -5px 5px #e6e6e6, -6px 6px #e6e6e6, -7px 7px #e6e6e6, -8px 8px #e6e6e6, -9px 9px #e6e6e6, -10px 10px #e6e6e6, -11px 11px #e6e6e6, -12px 12px #e6e6e6, -13px 13px #e6e6e6, -14px 14px #e6e6e6, -15px 15px #e6e6e6, -16px 16px #e6e6e6, -17px 17px #e6e6e6, -18px 18px #e6e6e6, -19px 19px #e6e6e6, -20px 20px #e6e6e6, -21px 21px #e6e6e6, -22px 22px #e6e6e6, -23px 23px #e6e6e6, -24px 24px #e6e6e6, -25px 25px #e6e6e6, -26px 26px #e6e6e6, -27px 27px #e6e6e6, -28px 28px #e6e6e6, -29px 29px #e6e6e6, -30px 30px #e6e6e6, -31px 31px #e6e6e6, -32px 32px #e6e6e6, -33px 33px #e6e6e6, -34px 34px #e6e6e6, -35px 35px #e6e6e6, -36px 36px #e6e6e6, -37px 37px #e6e6e6, -38px 38px #e6e6e6, -39px 39px #e6e6e6, -40px 40px #e6e6e6, -41px 41px #e6e6e6, -42px 42px #e6e6e6, -43px 43px #e6e6e6, -44px 44px #e6e6e6, -45px 45px #e6e6e6, -46px 46px #e6e6e6, -47px 47px #e6e6e6, -48px 48px #e6e6e6, -49px 49px #e6e6e6, -50px 50px #e6e6e6, -51px 51px #e6e6e6, -52px 52px #e6e6e6, -53px 53px #e6e6e6, -54px 54px #e6e6e6, -55px 55px #e6e6e6, -56px 56px #e6e6e6, -57px 57px #e6e6e6, -58px 58px #e6e6e6, -59px 59px #e6e6e6, -60px 60px #e6e6e6, -61px 61px #e6e6e6, -62px 62px #e6e6e6, -63px 63px #e6e6e6, -64px 64px #e6e6e6, -65px 65px #e6e6e6, -66px 66px #e6e6e6, -67px 67px #e6e6e6, -68px 68px #e6e6e6, -69px 69px #e6e6e6, -70px 70px #e6e6e6, -71px 71px #e6e6e6, -72px 72px #e6e6e6, -73px 73px #e6e6e6, -74px 74px #e6e6e6, -75px 75px #e6e6e6, -76px 76px #e6e6e6, -77px 77px #e6e6e6, -78px 78px #e6e6e6, -79px 79px #e6e6e6, -80px 80px #e6e6e6, -81px 81px #e6e6e6, -82px 82px #e6e6e6, -83px 83px #e6e6e6, -84px 84px #e6e6e6, -85px 85px #e6e6e6; }
    .button-longshadow-left.button-plain:active, .button-longshadow-left.button-plain.active, .button-longshadow-left.button-plain.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-inverse {
    text-shadow: 0px 0px #424242, -1px 1px #424242, -2px 2px #424242, -3px 3px #424242, -4px 4px #424242, -5px 5px #424242, -6px 6px #424242, -7px 7px #424242, -8px 8px #424242, -9px 9px #424242, -10px 10px #424242, -11px 11px #424242, -12px 12px #424242, -13px 13px #424242, -14px 14px #424242, -15px 15px #424242, -16px 16px #424242, -17px 17px #424242, -18px 18px #424242, -19px 19px #424242, -20px 20px #424242, -21px 21px #424242, -22px 22px #424242, -23px 23px #424242, -24px 24px #424242, -25px 25px #424242, -26px 26px #424242, -27px 27px #424242, -28px 28px #424242, -29px 29px #424242, -30px 30px #424242, -31px 31px #424242, -32px 32px #424242, -33px 33px #424242, -34px 34px #424242, -35px 35px #424242, -36px 36px #424242, -37px 37px #424242, -38px 38px #424242, -39px 39px #424242, -40px 40px #424242, -41px 41px #424242, -42px 42px #424242, -43px 43px #424242, -44px 44px #424242, -45px 45px #424242, -46px 46px #424242, -47px 47px #424242, -48px 48px #424242, -49px 49px #424242, -50px 50px #424242, -51px 51px #424242, -52px 52px #424242, -53px 53px #424242, -54px 54px #424242, -55px 55px #424242, -56px 56px #424242, -57px 57px #424242, -58px 58px #424242, -59px 59px #424242, -60px 60px #424242, -61px 61px #424242, -62px 62px #424242, -63px 63px #424242, -64px 64px #424242, -65px 65px #424242, -66px 66px #424242, -67px 67px #424242, -68px 68px #424242, -69px 69px #424242, -70px 70px #424242, -71px 71px #424242, -72px 72px #424242, -73px 73px #424242, -74px 74px #424242, -75px 75px #424242, -76px 76px #424242, -77px 77px #424242, -78px 78px #424242, -79px 79px #424242, -80px 80px #424242, -81px 81px #424242, -82px 82px #424242, -83px 83px #424242, -84px 84px #424242, -85px 85px #424242; }
    .button-longshadow-left.button-inverse:active, .button-longshadow-left.button-inverse.active, .button-longshadow-left.button-inverse.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-action {
    text-shadow: 0px 0px #8bc220, -1px 1px #8bc220, -2px 2px #8bc220, -3px 3px #8bc220, -4px 4px #8bc220, -5px 5px #8bc220, -6px 6px #8bc220, -7px 7px #8bc220, -8px 8px #8bc220, -9px 9px #8bc220, -10px 10px #8bc220, -11px 11px #8bc220, -12px 12px #8bc220, -13px 13px #8bc220, -14px 14px #8bc220, -15px 15px #8bc220, -16px 16px #8bc220, -17px 17px #8bc220, -18px 18px #8bc220, -19px 19px #8bc220, -20px 20px #8bc220, -21px 21px #8bc220, -22px 22px #8bc220, -23px 23px #8bc220, -24px 24px #8bc220, -25px 25px #8bc220, -26px 26px #8bc220, -27px 27px #8bc220, -28px 28px #8bc220, -29px 29px #8bc220, -30px 30px #8bc220, -31px 31px #8bc220, -32px 32px #8bc220, -33px 33px #8bc220, -34px 34px #8bc220, -35px 35px #8bc220, -36px 36px #8bc220, -37px 37px #8bc220, -38px 38px #8bc220, -39px 39px #8bc220, -40px 40px #8bc220, -41px 41px #8bc220, -42px 42px #8bc220, -43px 43px #8bc220, -44px 44px #8bc220, -45px 45px #8bc220, -46px 46px #8bc220, -47px 47px #8bc220, -48px 48px #8bc220, -49px 49px #8bc220, -50px 50px #8bc220, -51px 51px #8bc220, -52px 52px #8bc220, -53px 53px #8bc220, -54px 54px #8bc220, -55px 55px #8bc220, -56px 56px #8bc220, -57px 57px #8bc220, -58px 58px #8bc220, -59px 59px #8bc220, -60px 60px #8bc220, -61px 61px #8bc220, -62px 62px #8bc220, -63px 63px #8bc220, -64px 64px #8bc220, -65px 65px #8bc220, -66px 66px #8bc220, -67px 67px #8bc220, -68px 68px #8bc220, -69px 69px #8bc220, -70px 70px #8bc220, -71px 71px #8bc220, -72px 72px #8bc220, -73px 73px #8bc220, -74px 74px #8bc220, -75px 75px #8bc220, -76px 76px #8bc220, -77px 77px #8bc220, -78px 78px #8bc220, -79px 79px #8bc220, -80px 80px #8bc220, -81px 81px #8bc220, -82px 82px #8bc220, -83px 83px #8bc220, -84px 84px #8bc220, -85px 85px #8bc220; }
    .button-longshadow-left.button-action:active, .button-longshadow-left.button-action.active, .button-longshadow-left.button-action.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-highlight {
    text-shadow: 0px 0px #e59501, -1px 1px #e59501, -2px 2px #e59501, -3px 3px #e59501, -4px 4px #e59501, -5px 5px #e59501, -6px 6px #e59501, -7px 7px #e59501, -8px 8px #e59501, -9px 9px #e59501, -10px 10px #e59501, -11px 11px #e59501, -12px 12px #e59501, -13px 13px #e59501, -14px 14px #e59501, -15px 15px #e59501, -16px 16px #e59501, -17px 17px #e59501, -18px 18px #e59501, -19px 19px #e59501, -20px 20px #e59501, -21px 21px #e59501, -22px 22px #e59501, -23px 23px #e59501, -24px 24px #e59501, -25px 25px #e59501, -26px 26px #e59501, -27px 27px #e59501, -28px 28px #e59501, -29px 29px #e59501, -30px 30px #e59501, -31px 31px #e59501, -32px 32px #e59501, -33px 33px #e59501, -34px 34px #e59501, -35px 35px #e59501, -36px 36px #e59501, -37px 37px #e59501, -38px 38px #e59501, -39px 39px #e59501, -40px 40px #e59501, -41px 41px #e59501, -42px 42px #e59501, -43px 43px #e59501, -44px 44px #e59501, -45px 45px #e59501, -46px 46px #e59501, -47px 47px #e59501, -48px 48px #e59501, -49px 49px #e59501, -50px 50px #e59501, -51px 51px #e59501, -52px 52px #e59501, -53px 53px #e59501, -54px 54px #e59501, -55px 55px #e59501, -56px 56px #e59501, -57px 57px #e59501, -58px 58px #e59501, -59px 59px #e59501, -60px 60px #e59501, -61px 61px #e59501, -62px 62px #e59501, -63px 63px #e59501, -64px 64px #e59501, -65px 65px #e59501, -66px 66px #e59501, -67px 67px #e59501, -68px 68px #e59501, -69px 69px #e59501, -70px 70px #e59501, -71px 71px #e59501, -72px 72px #e59501, -73px 73px #e59501, -74px 74px #e59501, -75px 75px #e59501, -76px 76px #e59501, -77px 77px #e59501, -78px 78px #e59501, -79px 79px #e59501, -80px 80px #e59501, -81px 81px #e59501, -82px 82px #e59501, -83px 83px #e59501, -84px 84px #e59501, -85px 85px #e59501; }
    .button-longshadow-left.button-highlight:active, .button-longshadow-left.button-highlight.active, .button-longshadow-left.button-highlight.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-caution {
    text-shadow: 0px 0px #ff1022, -1px 1px #ff1022, -2px 2px #ff1022, -3px 3px #ff1022, -4px 4px #ff1022, -5px 5px #ff1022, -6px 6px #ff1022, -7px 7px #ff1022, -8px 8px #ff1022, -9px 9px #ff1022, -10px 10px #ff1022, -11px 11px #ff1022, -12px 12px #ff1022, -13px 13px #ff1022, -14px 14px #ff1022, -15px 15px #ff1022, -16px 16px #ff1022, -17px 17px #ff1022, -18px 18px #ff1022, -19px 19px #ff1022, -20px 20px #ff1022, -21px 21px #ff1022, -22px 22px #ff1022, -23px 23px #ff1022, -24px 24px #ff1022, -25px 25px #ff1022, -26px 26px #ff1022, -27px 27px #ff1022, -28px 28px #ff1022, -29px 29px #ff1022, -30px 30px #ff1022, -31px 31px #ff1022, -32px 32px #ff1022, -33px 33px #ff1022, -34px 34px #ff1022, -35px 35px #ff1022, -36px 36px #ff1022, -37px 37px #ff1022, -38px 38px #ff1022, -39px 39px #ff1022, -40px 40px #ff1022, -41px 41px #ff1022, -42px 42px #ff1022, -43px 43px #ff1022, -44px 44px #ff1022, -45px 45px #ff1022, -46px 46px #ff1022, -47px 47px #ff1022, -48px 48px #ff1022, -49px 49px #ff1022, -50px 50px #ff1022, -51px 51px #ff1022, -52px 52px #ff1022, -53px 53px #ff1022, -54px 54px #ff1022, -55px 55px #ff1022, -56px 56px #ff1022, -57px 57px #ff1022, -58px 58px #ff1022, -59px 59px #ff1022, -60px 60px #ff1022, -61px 61px #ff1022, -62px 62px #ff1022, -63px 63px #ff1022, -64px 64px #ff1022, -65px 65px #ff1022, -66px 66px #ff1022, -67px 67px #ff1022, -68px 68px #ff1022, -69px 69px #ff1022, -70px 70px #ff1022, -71px 71px #ff1022, -72px 72px #ff1022, -73px 73px #ff1022, -74px 74px #ff1022, -75px 75px #ff1022, -76px 76px #ff1022, -77px 77px #ff1022, -78px 78px #ff1022, -79px 79px #ff1022, -80px 80px #ff1022, -81px 81px #ff1022, -82px 82px #ff1022, -83px 83px #ff1022, -84px 84px #ff1022, -85px 85px #ff1022; }
    .button-longshadow-left.button-caution:active, .button-longshadow-left.button-caution.active, .button-longshadow-left.button-caution.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-royal {
    text-shadow: 0px 0px #5246e2, -1px 1px #5246e2, -2px 2px #5246e2, -3px 3px #5246e2, -4px 4px #5246e2, -5px 5px #5246e2, -6px 6px #5246e2, -7px 7px #5246e2, -8px 8px #5246e2, -9px 9px #5246e2, -10px 10px #5246e2, -11px 11px #5246e2, -12px 12px #5246e2, -13px 13px #5246e2, -14px 14px #5246e2, -15px 15px #5246e2, -16px 16px #5246e2, -17px 17px #5246e2, -18px 18px #5246e2, -19px 19px #5246e2, -20px 20px #5246e2, -21px 21px #5246e2, -22px 22px #5246e2, -23px 23px #5246e2, -24px 24px #5246e2, -25px 25px #5246e2, -26px 26px #5246e2, -27px 27px #5246e2, -28px 28px #5246e2, -29px 29px #5246e2, -30px 30px #5246e2, -31px 31px #5246e2, -32px 32px #5246e2, -33px 33px #5246e2, -34px 34px #5246e2, -35px 35px #5246e2, -36px 36px #5246e2, -37px 37px #5246e2, -38px 38px #5246e2, -39px 39px #5246e2, -40px 40px #5246e2, -41px 41px #5246e2, -42px 42px #5246e2, -43px 43px #5246e2, -44px 44px #5246e2, -45px 45px #5246e2, -46px 46px #5246e2, -47px 47px #5246e2, -48px 48px #5246e2, -49px 49px #5246e2, -50px 50px #5246e2, -51px 51px #5246e2, -52px 52px #5246e2, -53px 53px #5246e2, -54px 54px #5246e2, -55px 55px #5246e2, -56px 56px #5246e2, -57px 57px #5246e2, -58px 58px #5246e2, -59px 59px #5246e2, -60px 60px #5246e2, -61px 61px #5246e2, -62px 62px #5246e2, -63px 63px #5246e2, -64px 64px #5246e2, -65px 65px #5246e2, -66px 66px #5246e2, -67px 67px #5246e2, -68px 68px #5246e2, -69px 69px #5246e2, -70px 70px #5246e2, -71px 71px #5246e2, -72px 72px #5246e2, -73px 73px #5246e2, -74px 74px #5246e2, -75px 75px #5246e2, -76px 76px #5246e2, -77px 77px #5246e2, -78px 78px #5246e2, -79px 79px #5246e2, -80px 80px #5246e2, -81px 81px #5246e2, -82px 82px #5246e2, -83px 83px #5246e2, -84px 84px #5246e2, -85px 85px #5246e2; }
    .button-longshadow-left.button-royal:active, .button-longshadow-left.button-royal.active, .button-longshadow-left.button-royal.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-default {
    text-shadow: 0px 0px #f72224, -1px 1px #f72224, -2px 2px #f72224, -3px 3px #f72224, -4px 4px #f72224, -5px 5px #f72224, -6px 6px #f72224, -7px 7px #f72224, -8px 8px #f72224, -9px 9px #f72224, -10px 10px #f72224, -11px 11px #f72224, -12px 12px #f72224, -13px 13px #f72224, -14px 14px #f72224, -15px 15px #f72224, -16px 16px #f72224, -17px 17px #f72224, -18px 18px #f72224, -19px 19px #f72224, -20px 20px #f72224, -21px 21px #f72224, -22px 22px #f72224, -23px 23px #f72224, -24px 24px #f72224, -25px 25px #f72224, -26px 26px #f72224, -27px 27px #f72224, -28px 28px #f72224, -29px 29px #f72224, -30px 30px #f72224, -31px 31px #f72224, -32px 32px #f72224, -33px 33px #f72224, -34px 34px #f72224, -35px 35px #f72224, -36px 36px #f72224, -37px 37px #f72224, -38px 38px #f72224, -39px 39px #f72224, -40px 40px #f72224, -41px 41px #f72224, -42px 42px #f72224, -43px 43px #f72224, -44px 44px #f72224, -45px 45px #f72224, -46px 46px #f72224, -47px 47px #f72224, -48px 48px #f72224, -49px 49px #f72224, -50px 50px #f72224, -51px 51px #f72224, -52px 52px #f72224, -53px 53px #f72224, -54px 54px #f72224, -55px 55px #f72224, -56px 56px #f72224, -57px 57px #f72224, -58px 58px #f72224, -59px 59px #f72224, -60px 60px #f72224, -61px 61px #f72224, -62px 62px #f72224, -63px 63px #f72224, -64px 64px #f72224, -65px 65px #f72224, -66px 66px #f72224, -67px 67px #f72224, -68px 68px #f72224, -69px 69px #f72224, -70px 70px #f72224, -71px 71px #f72224, -72px 72px #f72224, -73px 73px #f72224, -74px 74px #f72224, -75px 75px #f72224, -76px 76px #f72224, -77px 77px #f72224, -78px 78px #f72224, -79px 79px #f72224, -80px 80px #f72224, -81px 81px #f72224, -82px 82px #f72224, -83px 83px #f72224, -84px 84px #f72224, -85px 85px #f72224; }
    .button-longshadow-left.button-default:active, .button-longshadow-left.button-default.active, .button-longshadow-left.button-default.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-measure {
    text-shadow: 0px 0px #4f6b77, -1px 1px #4f6b77, -2px 2px #4f6b77, -3px 3px #4f6b77, -4px 4px #4f6b77, -5px 5px #4f6b77, -6px 6px #4f6b77, -7px 7px #4f6b77, -8px 8px #4f6b77, -9px 9px #4f6b77, -10px 10px #4f6b77, -11px 11px #4f6b77, -12px 12px #4f6b77, -13px 13px #4f6b77, -14px 14px #4f6b77, -15px 15px #4f6b77, -16px 16px #4f6b77, -17px 17px #4f6b77, -18px 18px #4f6b77, -19px 19px #4f6b77, -20px 20px #4f6b77, -21px 21px #4f6b77, -22px 22px #4f6b77, -23px 23px #4f6b77, -24px 24px #4f6b77, -25px 25px #4f6b77, -26px 26px #4f6b77, -27px 27px #4f6b77, -28px 28px #4f6b77, -29px 29px #4f6b77, -30px 30px #4f6b77, -31px 31px #4f6b77, -32px 32px #4f6b77, -33px 33px #4f6b77, -34px 34px #4f6b77, -35px 35px #4f6b77, -36px 36px #4f6b77, -37px 37px #4f6b77, -38px 38px #4f6b77, -39px 39px #4f6b77, -40px 40px #4f6b77, -41px 41px #4f6b77, -42px 42px #4f6b77, -43px 43px #4f6b77, -44px 44px #4f6b77, -45px 45px #4f6b77, -46px 46px #4f6b77, -47px 47px #4f6b77, -48px 48px #4f6b77, -49px 49px #4f6b77, -50px 50px #4f6b77, -51px 51px #4f6b77, -52px 52px #4f6b77, -53px 53px #4f6b77, -54px 54px #4f6b77, -55px 55px #4f6b77, -56px 56px #4f6b77, -57px 57px #4f6b77, -58px 58px #4f6b77, -59px 59px #4f6b77, -60px 60px #4f6b77, -61px 61px #4f6b77, -62px 62px #4f6b77, -63px 63px #4f6b77, -64px 64px #4f6b77, -65px 65px #4f6b77, -66px 66px #4f6b77, -67px 67px #4f6b77, -68px 68px #4f6b77, -69px 69px #4f6b77, -70px 70px #4f6b77, -71px 71px #4f6b77, -72px 72px #4f6b77, -73px 73px #4f6b77, -74px 74px #4f6b77, -75px 75px #4f6b77, -76px 76px #4f6b77, -77px 77px #4f6b77, -78px 78px #4f6b77, -79px 79px #4f6b77, -80px 80px #4f6b77, -81px 81px #4f6b77, -82px 82px #4f6b77, -83px 83px #4f6b77, -84px 84px #4f6b77, -85px 85px #4f6b77; }
    .button-longshadow-left.button-measure:active, .button-longshadow-left.button-measure.active, .button-longshadow-left.button-measure.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-group {
    text-shadow: 0px 0px #4f6b77, -1px 1px #4f6b77, -2px 2px #4f6b77, -3px 3px #4f6b77, -4px 4px #4f6b77, -5px 5px #4f6b77, -6px 6px #4f6b77, -7px 7px #4f6b77, -8px 8px #4f6b77, -9px 9px #4f6b77, -10px 10px #4f6b77, -11px 11px #4f6b77, -12px 12px #4f6b77, -13px 13px #4f6b77, -14px 14px #4f6b77, -15px 15px #4f6b77, -16px 16px #4f6b77, -17px 17px #4f6b77, -18px 18px #4f6b77, -19px 19px #4f6b77, -20px 20px #4f6b77, -21px 21px #4f6b77, -22px 22px #4f6b77, -23px 23px #4f6b77, -24px 24px #4f6b77, -25px 25px #4f6b77, -26px 26px #4f6b77, -27px 27px #4f6b77, -28px 28px #4f6b77, -29px 29px #4f6b77, -30px 30px #4f6b77, -31px 31px #4f6b77, -32px 32px #4f6b77, -33px 33px #4f6b77, -34px 34px #4f6b77, -35px 35px #4f6b77, -36px 36px #4f6b77, -37px 37px #4f6b77, -38px 38px #4f6b77, -39px 39px #4f6b77, -40px 40px #4f6b77, -41px 41px #4f6b77, -42px 42px #4f6b77, -43px 43px #4f6b77, -44px 44px #4f6b77, -45px 45px #4f6b77, -46px 46px #4f6b77, -47px 47px #4f6b77, -48px 48px #4f6b77, -49px 49px #4f6b77, -50px 50px #4f6b77, -51px 51px #4f6b77, -52px 52px #4f6b77, -53px 53px #4f6b77, -54px 54px #4f6b77, -55px 55px #4f6b77, -56px 56px #4f6b77, -57px 57px #4f6b77, -58px 58px #4f6b77, -59px 59px #4f6b77, -60px 60px #4f6b77, -61px 61px #4f6b77, -62px 62px #4f6b77, -63px 63px #4f6b77, -64px 64px #4f6b77, -65px 65px #4f6b77, -66px 66px #4f6b77, -67px 67px #4f6b77, -68px 68px #4f6b77, -69px 69px #4f6b77, -70px 70px #4f6b77, -71px 71px #4f6b77, -72px 72px #4f6b77, -73px 73px #4f6b77, -74px 74px #4f6b77, -75px 75px #4f6b77, -76px 76px #4f6b77, -77px 77px #4f6b77, -78px 78px #4f6b77, -79px 79px #4f6b77, -80px 80px #4f6b77, -81px 81px #4f6b77, -82px 82px #4f6b77, -83px 83px #4f6b77, -84px 84px #4f6b77, -85px 85px #4f6b77; }
    .button-longshadow-left.button-group:active, .button-longshadow-left.button-group.active, .button-longshadow-left.button-group.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }
  .button-longshadow-left.button-filter {
    text-shadow: 0px 0px #4f6b77, -1px 1px #4f6b77, -2px 2px #4f6b77, -3px 3px #4f6b77, -4px 4px #4f6b77, -5px 5px #4f6b77, -6px 6px #4f6b77, -7px 7px #4f6b77, -8px 8px #4f6b77, -9px 9px #4f6b77, -10px 10px #4f6b77, -11px 11px #4f6b77, -12px 12px #4f6b77, -13px 13px #4f6b77, -14px 14px #4f6b77, -15px 15px #4f6b77, -16px 16px #4f6b77, -17px 17px #4f6b77, -18px 18px #4f6b77, -19px 19px #4f6b77, -20px 20px #4f6b77, -21px 21px #4f6b77, -22px 22px #4f6b77, -23px 23px #4f6b77, -24px 24px #4f6b77, -25px 25px #4f6b77, -26px 26px #4f6b77, -27px 27px #4f6b77, -28px 28px #4f6b77, -29px 29px #4f6b77, -30px 30px #4f6b77, -31px 31px #4f6b77, -32px 32px #4f6b77, -33px 33px #4f6b77, -34px 34px #4f6b77, -35px 35px #4f6b77, -36px 36px #4f6b77, -37px 37px #4f6b77, -38px 38px #4f6b77, -39px 39px #4f6b77, -40px 40px #4f6b77, -41px 41px #4f6b77, -42px 42px #4f6b77, -43px 43px #4f6b77, -44px 44px #4f6b77, -45px 45px #4f6b77, -46px 46px #4f6b77, -47px 47px #4f6b77, -48px 48px #4f6b77, -49px 49px #4f6b77, -50px 50px #4f6b77, -51px 51px #4f6b77, -52px 52px #4f6b77, -53px 53px #4f6b77, -54px 54px #4f6b77, -55px 55px #4f6b77, -56px 56px #4f6b77, -57px 57px #4f6b77, -58px 58px #4f6b77, -59px 59px #4f6b77, -60px 60px #4f6b77, -61px 61px #4f6b77, -62px 62px #4f6b77, -63px 63px #4f6b77, -64px 64px #4f6b77, -65px 65px #4f6b77, -66px 66px #4f6b77, -67px 67px #4f6b77, -68px 68px #4f6b77, -69px 69px #4f6b77, -70px 70px #4f6b77, -71px 71px #4f6b77, -72px 72px #4f6b77, -73px 73px #4f6b77, -74px 74px #4f6b77, -75px 75px #4f6b77, -76px 76px #4f6b77, -77px 77px #4f6b77, -78px 78px #4f6b77, -79px 79px #4f6b77, -80px 80px #4f6b77, -81px 81px #4f6b77, -82px 82px #4f6b77, -83px 83px #4f6b77, -84px 84px #4f6b77, -85px 85px #4f6b77; }
    .button-longshadow-left.button-filter:active, .button-longshadow-left.button-filter.active, .button-longshadow-left.button-filter.is-active {
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4); }

/*
* Button Sizes
*
* This file creates the various button sizes
* (ex. .button-large, .button-small, etc.)
*/
.button-giant {
  font-size: 28px;
  height: 70px;
  line-height: 70px;
  padding: 0 70px; }

.button-jumbo {
  font-size: 24px;
  height: 60px;
  line-height: 60px;
  padding: 0 60px; }

.button-large {
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  padding: 0 50px; }

.button-normal {
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  padding: 0 40px; }

.button-small {
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 30px; }

.button-tiny {
  font-size: 9.6px;
  height: 24px;
  line-height: 24px;
  padding: 0 24px; }

.dataset-row__image img, .dataset-row__image .private, .storyboard-filter-row .viz-container > div, .login-block-container, .onboarding-block-container, .freeform--editor-beta .storyboard-filter-row .viz-container > div, .page-viz-edit .storyboard-filter-row .viz-container > div {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.suggestion-picker .suggested-chart .headline .headline-value span,
.suggestion-picker .suggested-chart .headline .headline-caption span, .chart-panel.sb-filter range-slider-filter, .chart-panel.sb-filter fix-min-slider, .chart-panel .c-filter range-slider-filter, .chart-panel .c-filter fix-min-slider, .chart-panel.sb-filter .filter-dropdown, .chart-panel.sb-filter .filter-search, .chart-panel .c-filter .filter-dropdown, .chart-panel .c-filter .filter-search, .viz-container .chart-adviser .message, .sb-headline.preview .headline .headline-value span, .sb-headline.preview .headline .headline-caption span, .storyboard.standard .sb-headline .headline .headline-value span, .storyboard.standard .grid-stack-item .headline .headline-value span, .storyboard-container.standard .sb-headline .headline .headline-value span, .storyboard-container.standard .grid-stack-item .headline .headline-value span, .storyboard.standard .sb-headline .headline .headline-caption span, .storyboard.standard .grid-stack-item .headline .headline-caption span, .storyboard-container.standard .sb-headline .headline .headline-caption span, .storyboard-container.standard .grid-stack-item .headline .headline-caption span, .storyboard.vibrant .sb-headline .headline .headline-value span,
.storyboard.vibrant .sb-headline .headline .headline-caption span, .storyboard.vibrant .grid-stack-item .headline .headline-value span,
.storyboard.vibrant .grid-stack-item .headline .headline-caption span, .storyboard-container.vibrant .sb-headline .headline .headline-value span,
.storyboard-container.vibrant .sb-headline .headline .headline-caption span, .storyboard-container.vibrant .grid-stack-item .headline .headline-value span,
.storyboard-container.vibrant .grid-stack-item .headline .headline-caption span, .storyboard.spring .sb-headline .headline .headline-value span,
.storyboard.spring .sb-headline .headline .headline-caption span, .storyboard.spring .grid-stack-item .headline .headline-value span,
.storyboard.spring .grid-stack-item .headline .headline-caption span, .storyboard-container.spring .sb-headline .headline .headline-value span,
.storyboard-container.spring .sb-headline .headline .headline-caption span, .storyboard-container.spring .grid-stack-item .headline .headline-value span,
.storyboard-container.spring .grid-stack-item .headline .headline-caption span, .storyboard.summer .sb-headline .headline .headline-value span,
.storyboard.summer .sb-headline .headline .headline-caption span, .storyboard.summer .grid-stack-item .headline .headline-value span,
.storyboard.summer .grid-stack-item .headline .headline-caption span, .storyboard-container.summer .sb-headline .headline .headline-value span,
.storyboard-container.summer .sb-headline .headline .headline-caption span, .storyboard-container.summer .grid-stack-item .headline .headline-value span,
.storyboard-container.summer .grid-stack-item .headline .headline-caption span, .storyboard.autumn .sb-headline .headline .headline-value span, .storyboard.autumn .grid-stack-item .headline .headline-value span, .storyboard-container.autumn .sb-headline .headline .headline-value span, .storyboard-container.autumn .grid-stack-item .headline .headline-value span, .storyboard.autumn .sb-headline .headline .headline-caption span, .storyboard.autumn .grid-stack-item .headline .headline-caption span, .storyboard-container.autumn .sb-headline .headline .headline-caption span, .storyboard-container.autumn .grid-stack-item .headline .headline-caption span, .storyboard.winter .sb-headline .headline .headline-value span,
.storyboard.winter .sb-headline .headline .headline-caption span, .storyboard.winter .grid-stack-item .headline .headline-value span,
.storyboard.winter .grid-stack-item .headline .headline-caption span, .storyboard-container.winter .sb-headline .headline .headline-value span,
.storyboard-container.winter .sb-headline .headline .headline-caption span, .storyboard-container.winter .grid-stack-item .headline .headline-value span,
.storyboard-container.winter .grid-stack-item .headline .headline-caption span, .storyboard.dragon .sb-headline .headline .headline-value span, .storyboard.dragon .grid-stack-item .headline .headline-value span, .storyboard-container.dragon .sb-headline .headline .headline-value span, .storyboard-container.dragon .grid-stack-item .headline .headline-value span, .storyboard.dragon .sb-headline .headline .headline-caption span, .storyboard.dragon .grid-stack-item .headline .headline-caption span, .storyboard-container.dragon .sb-headline .headline .headline-caption span, .storyboard-container.dragon .grid-stack-item .headline .headline-caption span, .storyboard.ocean .sb-headline .headline .headline-value span, .storyboard.ocean .grid-stack-item .headline .headline-value span, .storyboard-container.ocean .sb-headline .headline .headline-value span, .storyboard-container.ocean .grid-stack-item .headline .headline-value span, .storyboard.ocean .sb-headline .headline .headline-caption span, .storyboard.ocean .grid-stack-item .headline .headline-caption span, .storyboard-container.ocean .sb-headline .headline .headline-caption span, .storyboard-container.ocean .grid-stack-item .headline .headline-caption span, .storyboard.mystery .sb-headline .headline .headline-value span, .storyboard.mystery .grid-stack-item .headline .headline-value span, .storyboard-container.mystery .sb-headline .headline .headline-value span, .storyboard-container.mystery .grid-stack-item .headline .headline-value span, .storyboard.mystery .sb-headline .headline .headline-caption span, .storyboard.mystery .grid-stack-item .headline .headline-caption span, .storyboard-container.mystery .sb-headline .headline .headline-caption span, .storyboard-container.mystery .grid-stack-item .headline .headline-caption span, .storyboard.flower .sb-headline .headline .headline-value span, .storyboard.flower .grid-stack-item .headline .headline-value span, .storyboard-container.flower .sb-headline .headline .headline-value span, .storyboard-container.flower .grid-stack-item .headline .headline-value span, .storyboard.flower .sb-headline .headline .headline-caption span, .storyboard.flower .grid-stack-item .headline .headline-caption span, .storyboard-container.flower .sb-headline .headline .headline-caption span, .storyboard-container.flower .grid-stack-item .headline .headline-caption span, .storyboard.rainbow .sb-headline .headline .headline-value span, .storyboard.rainbow .grid-stack-item .headline .headline-value span, .storyboard-container.rainbow .sb-headline .headline .headline-value span, .storyboard-container.rainbow .grid-stack-item .headline .headline-value span, .storyboard.rainbow .sb-headline .headline .headline-caption span, .storyboard.rainbow .grid-stack-item .headline .headline-caption span, .storyboard-container.rainbow .sb-headline .headline .headline-caption span, .storyboard-container.rainbow .grid-stack-item .headline .headline-caption span, .storyboard.modern .sb-headline .headline .headline-value span,
.storyboard.modern .sb-headline .headline .headline-caption span, .storyboard.modern .grid-stack-item .headline .headline-value span,
.storyboard.modern .grid-stack-item .headline .headline-caption span, .storyboard-container.modern .sb-headline .headline .headline-value span,
.storyboard-container.modern .sb-headline .headline .headline-caption span, .storyboard-container.modern .grid-stack-item .headline .headline-value span,
.storyboard-container.modern .grid-stack-item .headline .headline-caption span, .storyboard.metal .sb-headline .headline .headline-value span,
.storyboard.metal .sb-headline .headline .headline-caption span, .storyboard.metal .grid-stack-item .headline .headline-value span,
.storyboard.metal .grid-stack-item .headline .headline-caption span, .storyboard-container.metal .sb-headline .headline .headline-value span,
.storyboard-container.metal .sb-headline .headline .headline-caption span, .storyboard-container.metal .grid-stack-item .headline .headline-value span,
.storyboard-container.metal .grid-stack-item .headline .headline-caption span, .storyboard.antique .sb-headline .headline .headline-value span, .storyboard.antique .grid-stack-item .headline .headline-value span, .storyboard-container.antique .sb-headline .headline .headline-value span, .storyboard-container.antique .grid-stack-item .headline .headline-value span, .storyboard.antique .sb-headline .headline .headline-caption span, .storyboard.antique .grid-stack-item .headline .headline-caption span, .storyboard-container.antique .sb-headline .headline .headline-caption span, .storyboard-container.antique .grid-stack-item .headline .headline-caption span, .storyboard.pos-neg .sb-headline .headline .headline-value span,
.storyboard.pos-neg .sb-headline .headline .headline-caption span, .storyboard.pos-neg .grid-stack-item .headline .headline-value span,
.storyboard.pos-neg .grid-stack-item .headline .headline-caption span, .storyboard-container.pos-neg .sb-headline .headline .headline-value span,
.storyboard-container.pos-neg .sb-headline .headline .headline-caption span, .storyboard-container.pos-neg .grid-stack-item .headline .headline-value span,
.storyboard-container.pos-neg .grid-stack-item .headline .headline-caption span, .gaugeCylinder .chart-container,
.gaugeBulb .chart-container,
.gaugeThermometer .chart-container,
.gaugeBullet .chart-container, .gaugeCylinder .chart-value,
.gaugeBulb .chart-value,
.gaugeThermometer .chart-value,
.gaugeBullet .chart-value, .gauge .chart-container,
.gaugeLinear .chart-container, .viz-trend-headline .compare-icon, .viz-multitab-trend .compare-icon, .freeform--editor-beta .chart-panel.sb-filter range-slider-filter, .freeform--editor-beta .chart-panel.sb-filter fix-min-slider, .freeform--editor-beta .chart-panel .c-filter range-slider-filter, .freeform--editor-beta .chart-panel .c-filter fix-min-slider, .page-viz-edit .chart-panel.sb-filter range-slider-filter, .page-viz-edit .chart-panel.sb-filter fix-min-slider, .page-viz-edit .chart-panel .c-filter range-slider-filter, .page-viz-edit .chart-panel .c-filter fix-min-slider, .freeform--editor-beta .chart-panel.sb-filter .filter-dropdown, .freeform--editor-beta .chart-panel.sb-filter .filter-search, .freeform--editor-beta .chart-panel .c-filter .filter-dropdown, .freeform--editor-beta .chart-panel .c-filter .filter-search, .page-viz-edit .chart-panel.sb-filter .filter-dropdown, .page-viz-edit .chart-panel.sb-filter .filter-search, .page-viz-edit .chart-panel .c-filter .filter-dropdown, .page-viz-edit .chart-panel .c-filter .filter-search, .freeform--editor-beta .viz-container .chart-adviser .message, .page-viz-edit .viz-container .chart-adviser .message {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.element-vertical-align {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

jh-alert {
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  position: relative;
  left: 50%;
  transform: translateX(-50%); }

.full-screen-message .full-screen-message__container, .suggestion-picker, .filter-loading, .menu-tabs .nav > li > a mark span, .circularheadline .chart-value, .viz-trend-headline .compare-icon i, .viz-multitab-trend .compare-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }

.element-screen-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%); }

.freeform--editor-beta .sidebar__header, .page-viz-edit .sidebar__header, .freeform--editor-beta .sidebar__filter-item-header, .page-viz-edit .sidebar__filter-item-header, .sidebar__header, .sidebar__filter-item-header {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px; }

.background-light-grey {
  background-color: #fafafa !important; }

.background-lighter-grey {
  background-color: #fcfcfc !important; }

.background-grey {
  background-color: #f2f3f7 !important; }

.center {
  text-align: center !important; }

.right {
  text-align: right !important; }

.left {
  text-align: left !important; }

.bold {
  font-weight: 700;
  color: #37B3D3; }

.small-text {
  font-size: .7em; }

.large-headline {
  font-size: 3em; }

.white {
  color: #fff; }

.text-link--danger {
  color: #FF4351; }

.text-link--success {
  color: #56CCCC; }

.text-required {
  color: #ff0000;
  font-size: 18px; }

.text-link--warning {
  color: #FEAE1B; }

.text-color-1, .text-primary {
  color: #2e6a9e; }

.text-color-2, .text-secondary {
  color: #0098A0; }

.text-color-3, .text-tertiary {
  color: #F5A623; }

.help-text {
  color: #0098A0;
  border-bottom: dotted 2px #0098A0;
  display: inline-block;
  cursor: pointer; }

.text-hover-color-1:hover {
  color: #2e6a9e !important;
  background-color: rgba(46, 106, 158, 0.05) !important; }

.text-hover-color-2:hover {
  color: #0098A0 !important;
  background-color: rgba(0, 152, 160, 0.05) !important; }

.text-hover-color-3:hover {
  color: #2e6a9e !important;
  background-color: rgba(245, 166, 35, 0.05) !important; }

.ia-hover-color-1:hover {
  color: #F6505D !important;
  background-color: rgba(246, 80, 93, 0.05) !important; }

.ia-hover-color-2:hover {
  color: #225988 !important;
  background-color: rgba(34, 89, 136, 0.05) !important; }

.ia-hover-color-3:hover {
  color: #4C4C4C !important;
  background-color: rgba(76, 76, 76, 0.05) !important; }

.text-gray {
  color: #747474 !important; }

.text-dark-grey {
  color: #5e5e5e !important; }

.text-color-accent {
  color: #56CCCC !important; }

.text-color-danger {
  color: #56CCCC !important; }

.capitalize {
  text-transform: capitalize; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.block {
  display: block; }

.lined-bottom {
  border-bottom: 1px solid #ececec; }

.thin {
  font-weight: 400 !important; }

.thick {
  font-weight: 700 !important; }

.fat {
  font-weight: 900 !important; }

.pointer {
  cursor: pointer; }

.pointer {
  cursor: pointer; }

.rounded-input {
  border-radius: 20px;
  background-color: #F9F9FB;
  height: 40px;
  border: none;
  font-family: Arial, 'Font Awesome 5 Pro'; }

.feature-disabled {
  background: #f3f3f3;
  filter: grayscale(0.8);
  z-index: 1; }
  .feature-disabled > * {
    background: #f3f3f3; }
  .feature-disabled--no-click {
    pointer-events: none; }
  .feature-disabled--blur {
    filter: blur(1px) grayscale(0.8); }

.p-0 {
  padding: 0px !important; }

.p-5 {
  padding: 5px !important; }

.p-10 {
  padding: 10px !important; }

.p-15 {
  padding: 15px !important; }

.p-20 {
  padding: 20px !important; }

.p-30 {
  padding: 30px !important; }

.p-l-0 {
  padding-left: 0px !important; }

.p-r-0 {
  padding-right: 0px !important; }

.p-t-0 {
  padding-top: 0px !important; }

.p-l-10 {
  padding-left: 10px !important; }

.p-l-15 {
  padding-left: 15px !important; }

.p-l-20 {
  padding-left: 20px !important; }

.p-l-30 {
  padding-left: 30px !important; }

.p-r-10 {
  padding-right: 10px !important; }

.p-r-15 {
  padding-right: 15px !important; }

.p-r-20 {
  padding-right: 20px !important; }

.p-r-30 {
  padding-right: 30px !important; }

.p-t-5 {
  padding-top: 5px !important; }

.p-t-10 {
  padding-top: 10px !important; }

.p-t-15 {
  padding-top: 15px !important; }

.p-t-20 {
  padding-top: 20px !important; }

.p-t-20 {
  padding-top: 20px !important; }

.p-t-30 {
  padding-top: 30px !important; }

.p-t-40 {
  padding-top: 40px !important; }

.p-b-0 {
  padding-bottom: 0px !important; }

.p-b-5 {
  padding-bottom: 5px !important; }

.p-b-10 {
  padding-bottom: 10px !important; }

.p-b-20 {
  padding-bottom: 20px !important; }

.p-b-30 {
  padding-bottom: 30px !important; }

.p-b-40 {
  padding-bottom: 40px !important; }

.p-l-r-10 {
  padding-left: 10px;
  padding-right: 10px; }

.p-t-b-10 {
  padding-top: 10px;
  padding-bottom: 10px; }

.m-0 {
  margin: 0px !important; }

.m-r-0 {
  margin-right: 0px !important; }

.m-r-5 {
  margin-right: 5px !important; }

.m-r-10 {
  margin-right: 10px !important; }

.m-r-15 {
  margin-right: 15px !important; }

.m-l-0 {
  margin-left: 0px !important; }

.m-l-5 {
  margin-left: 5px !important; }

.m-l-10 {
  margin-left: 10px !important; }

.m-l-15 {
  margin-left: 15px !important; }

.m-t-5 {
  margin-top: 5px !important; }

.m-t-0 {
  margin-top: 0px !important; }

.m-t-10 {
  margin-top: 10px !important; }

.m-t-15 {
  margin-top: 15px !important; }

.m-t-20 {
  margin-top: 20px !important; }

.m-t-30 {
  margin-top: 30px !important; }

.m-t-40 {
  margin-top: 40px !important; }

.m-b-0 {
  margin-bottom: 0px !important; }

.m-b-5 {
  margin-bottom: 5px !important; }

.m-b-10 {
  margin-bottom: 10px !important; }

.m-b-15 {
  margin-bottom: 15px !important; }

.m-b-20 {
  margin-bottom: 20px !important; }

.m-b-30 {
  margin-bottom: 30px !important; }

.w-xs {
  min-width: 80px; }

.w-sm {
  min-width: 95px; }

.w-md {
  min-width: 110px; }

.w-lg {
  min-width: 140px; }

.m-h-40 {
  min-height: 40px; }

.m-h-50 {
  min-height: 50px; }

.l-h-34 {
  line-height: 34px; }

.font-600 {
  font-weight: 600; }

.font-bold {
  font-weight: 700 !important; }

.font-normal {
  font-weight: normal !important; }

.font-light {
  font-weight: 300 !important; }

.wrapper-md {
  padding: 20px; }

.text-online {
  position: relative;
  width: 100%; }
  .text-online hr {
    margin-top: 40px;
    margin-bottom: 40px;
    visibility: hidden; }
  .text-online p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    width: 100%;
    text-align: center;
    font-weight: 700; }
    .text-online p:before, .text-online p:after {
      content: '';
      position: absolute;
      width: 40%;
      width: calc(50% - 40px);
      top: 50%;
      transform: translateY(-50%);
      height: 1px;
      background: #ccc; }
    .text-online p:before {
      left: 0; }
    .text-online p:after {
      right: 0; }

.inline-block {
  display: inline-block; }

.sticky {
  position: sticky; }

.b-0 {
  border: none !important; }

.b-r-0 {
  border-radius: 0px !important; }

.thumb-sm {
  height: 32px;
  width: 32px; }

.thumb-md {
  height: 48px;
  width: 48px; }

.thumb-lg {
  height: 88px;
  width: 88px; }

.breadcrumb-flex {
  margin-left: -15px;
  margin-right: -15px; }

.pull-in {
  margin-left: -15px;
  margin-right: -15px; }

.pull-in-card {
  margin-left: -20px !important;
  margin-right: -20px !important; }

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .col-xs-15 {
    width: 100%;
    float: left;
    padding-left: 15px;
    padding-right: 15px; } }
.animate-up {
  opacity: 0;
  -webkit-animation: 0.8s ease-in fadeup-top;
  -moz-animation: 0.8s ease-in fadeup-top;
  animation: 0.8s ease-in fadeup-top;
  animation-fill-mode: forwards; }

.vertical-align, .circle-dial__text, .action-container, .btn-main.circle .text, .btn-remove.circle .text, .btn-action.circle .text, .btn-basic.circle .text, .btn-login.circle .text, .btn-default.circle .text, .btn-edit.circle .text, #editor .viz-headline,
.viz-headline, #editor .viz-headline .headline-colorbg,
.viz-headline .headline-colorbg {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.marginless-row {
  margin-right: 0px;
  margin-left: 0px; }

.flex-row {
  display: flex !important;
  flex-direction: row;
  flex-grow: 1;
  flex-wrap: wrap; }

.flex-wrap--none {
  flex-wrap: nowrap; }

.flex-wrap--wrap {
  flex-wrap: wrap; }

.flex-row--grow > * {
  flex-grow: 1; }

.flex-row--valign-middle {
  align-items: center; }

.flex-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1; }

.flex-expand {
  flex-grow: 2; }

.flex-shrink {
  flex-shrink: 1;
  flex-grow: 0; }

.muted {
  color: #a5a5a5; }

.thin {
  font-weight: 300; }

.thick {
  font-weight: 700; }

.fat {
  font-weight: 900; }

.white-background {
  background: #fff !important; }

.fullheight {
  height: 100%;
  min-height: 100%; }

.cursor-pointer {
  cursor: pointer; }

.visually-hidden {
  position: absolute !important;
  display: inline-block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

label.button input {
  height: 1px;
  width: 1px;
  visibility: hidden;
  position: absolute; }

.button-group .button:only-of-type {
  border-radius: 200px; }

.visual-thumbnails__platform {
  background: rgba(255, 255, 255, 0.1);
  background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 1%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 1%, rgba(255, 255, 255, 0.3) 100%);
  background: linear, 135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 1%, rgba(255, 255, 255, 0.3) 100%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33ffffff',endColorstr='#4dffffff',GradientType=1); }

.viz-topbar, .freeform--editor-beta .viz-topbar, .page-viz-edit .viz-topbar {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2b2e33+1,3d4a6b+100 */
  background: black;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, black 1%, #5b5b5b 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, black 1%, #5b5b5b 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear, 45deg, black 1%, #5b5b5b 100%;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='nth($sidebar-gradient, 1)', endColorstr='nth($sidebar-gradient, 2)',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */ }

.horizontalText {
  width: 100%;
  text-align: center;
  background-color: #fff;
  position: relative;
  color: #ababab;
  font-size: 14px;
  font-family: gotham,helvetica,arial,sans-serif;
  font-style: normal;
  font-weight: 400;
  z-index: 1;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px; }
  .horizontalText:before, .horizontalText:after {
    width: 50%;
    top: 51%;
    overflow: hidden;
    height: 1px;
    background-color: #d0d0d0;
    content: '\a0';
    position: absolute; }
  .horizontalText:before {
    margin-left: -52%;
    text-align: right; }
  .horizontalText:after {
    margin-left: 2%; }

.full-screen-message {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 60px;
  background: #fff;
  z-index: 100000; }
  .full-screen-message .full-screen-message__container {
    position: absolute; }
    .full-screen-message .full-screen-message__container h2 {
      font-size: 4rem; }
    .full-screen-message .full-screen-message__container img {
      max-width: 400px;
      width: 100%;
      height: auto; }
  @media only screen and (max-width: 420px) {
    .full-screen-message .full-screen-message__container h2 {
      font-size: 2.5rem; } }

.checkbox {
  padding-left: 20px;
  margin-top: 2px;
  margin-bottom: 2px; }
  .checkbox label {
    display: inline-block;
    padding-left: 5px;
    position: relative; }
    .checkbox label::before {
      -o-transition: 0.3s ease-in-out;
      -webkit-transition: 0.3s ease-in-out;
      background-color: #fff;
      border-radius: 3px;
      border: 1px solid #2e6ba0;
      content: "";
      display: inline-block;
      height: 17px;
      left: 0;
      margin-left: -20px;
      position: absolute;
      transition: 0.3s ease-in-out;
      width: 17px;
      outline: none !important; }
    .checkbox label::after {
      color: #2e6a9e;
      display: inline-block;
      font-size: 11px;
      height: 16px;
      left: 0;
      margin-left: -20px;
      padding-left: 3px;
      padding-top: 1px;
      position: absolute;
      top: 0;
      width: 16px; }
  .checkbox input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: none !important; }
    .checkbox input[type="checkbox"]:disabled + label {
      opacity: 0.65; }
  .checkbox input[type="checkbox"]:focus + label::before {
    outline-offset: -2px;
    outline: none;
    outline: thin dotted; }
  .checkbox input[type="checkbox"]:checked + label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro"; }
  .checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #2e6b9f;
    cursor: not-allowed; }

.checkbox.checkbox-circle label::before {
  border-radius: 50%; }

.checkbox.checkbox-inline {
  margin-top: 0; }

.checkbox.checkbox-single label {
  height: 17px; }

.label-setting {
  font-weight: normal !important;
  color: #9B9B9B !important; }

.theme-item .theme-standard svg .theme-color.theme-color--1 {
  fill: #67539B !important; }
.theme-item .theme-standard svg .theme-color.theme-color--2 {
  fill: #76B74B !important; }
.theme-item .theme-standard svg .theme-color.theme-color--3 {
  fill: #F79320 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--4 {
  fill: #3D4AA5 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--5 {
  fill: #F93858 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--6 {
  fill: #D64646 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--7 {
  fill: #8E468E !important; }
.theme-item .theme-standard svg .theme-color.theme-color--8 {
  fill: #588526 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--9 {
  fill: #B3AA00 !important; }
.theme-item .theme-standard svg .theme-color.theme-color--10 {
  fill: #0024D7 !important; }
.theme-item .theme-standard svg .theme-text-background {
  fill: #ffffff; }
.theme-item .theme-standard svg .theme-text {
  font-family: "Lato";
  fill: #555555; }
.theme-item .theme-true_blue svg .theme-color.theme-color--1 {
  fill: #4A94C1 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--2 {
  fill: #326383 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--3 {
  fill: #45BEF3 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--4 {
  fill: #1989DD !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--5 {
  fill: #88d7f9 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--6 {
  fill: #4C61FC !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--7 {
  fill: #FFEC61 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--8 {
  fill: #DF426F !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--9 {
  fill: #DE5B49 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--10 {
  fill: #A4A4A4 !important; }
.theme-item .theme-true_blue svg .theme-color.theme-color--11 {
  fill: #516D31 !important; }
.theme-item .theme-true_blue svg .theme-text-background {
  fill: #eee; }
.theme-item .theme-true_blue svg .theme-text {
  font-family: "Fjalla One";
  fill: #555555; }
.theme-item .theme-marianas svg .theme-color.theme-color--1 {
  fill: #4A94C1 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--2 {
  fill: #5337C8 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--3 {
  fill: #518AE0 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--4 {
  fill: #1989DD !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--5 {
  fill: #35DAF0 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--6 {
  fill: #4C61FC !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--7 {
  fill: #37C8A5 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--8 {
  fill: #007FBA !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--9 {
  fill: #61E8B5 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--10 {
  fill: #A4A4A4 !important; }
.theme-item .theme-marianas svg .theme-color.theme-color--11 {
  fill: #516D31 !important; }
.theme-item .theme-marianas svg .theme-text-background {
  fill: #eee; }
.theme-item .theme-marianas svg .theme-text {
  font-family: "Fjalla One";
  fill: #555555; }
.theme-item .theme-midnight svg .theme-color.theme-color--1 {
  fill: #ED1E79 !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--2 {
  fill: #A1ACFB !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--3 {
  fill: #E90154 !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--4 {
  fill: #3840AF !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--5 {
  fill: #132144 !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--6 {
  fill: #FFDF01 !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--7 {
  fill: #A642E0 !important; }
.theme-item .theme-midnight svg .theme-color.theme-color--8 {
  fill: #87298A !important; }
.theme-item .theme-midnight svg .theme-text-background {
  fill: #2B244A; }
.theme-item .theme-midnight svg .theme-text {
  font-family: "Work Sans";
  fill: #fff; }
.theme-item .theme-nucleus svg .theme-color.theme-color--1 {
  fill: #5FD3CD !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--2 {
  fill: #AFFF00 !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--3 {
  fill: #FF5777 !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--4 {
  fill: #F4F0A2 !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--5 {
  fill: #2499EE !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--6 {
  fill: #CD6620 !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--7 {
  fill: #FFDD00 !important; }
.theme-item .theme-nucleus svg .theme-color.theme-color--8 {
  fill: #C34B32 !important; }
.theme-item .theme-nucleus svg .theme-text-background {
  fill: #191328; }
.theme-item .theme-nucleus svg .theme-text {
  font-family: "Josefin Sans";
  fill: #555555; }
.theme-item .theme-textured svg .theme-color.theme-color--1 {
  fill: #EA6045 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--2 {
  fill: #F8CA4D !important; }
.theme-item .theme-textured svg .theme-color.theme-color--3 {
  fill: #F2D599 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--4 {
  fill: #3840af !important; }
.theme-item .theme-textured svg .theme-color.theme-color--5 {
  fill: #2F3440 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--6 {
  fill: #740F39 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--7 {
  fill: #568BD8 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--8 {
  fill: #46B29D !important; }
.theme-item .theme-textured svg .theme-color.theme-color--9 {
  fill: #DE5B49 !important; }
.theme-item .theme-textured svg .theme-color.theme-color--10 {
  fill: #939393 !important; }
.theme-item .theme-textured svg .theme-text-background {
  fill: #eee; }
.theme-item .theme-textured svg .theme-text {
  font-family: "Helvetica Neue";
  fill: #555555; }
.theme-item .theme-writevue svg .theme-color.theme-color--1 {
  fill: #41B3D3 !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--2 {
  fill: #61D2DC !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--3 {
  fill: #63AADB !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--4 {
  fill: #439FDD !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--5 {
  fill: #6081F7 !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--6 {
  fill: #13FDDF !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--7 {
  fill: #BD20FF !important; }
.theme-item .theme-writevue svg .theme-color.theme-color--8 {
  fill: #31A784 !important; }
.theme-item .theme-writevue svg .theme-text-background {
  fill: #ffffff; }
.theme-item .theme-writevue svg .theme-text {
  font-family: "Lato";
  fill: #555555; }
.theme-item .theme-correctvue svg .theme-color.theme-color--1 {
  fill: #67539B !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--2 {
  fill: #76B74B !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--3 {
  fill: #F79320 !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--4 {
  fill: #3D4AA5 !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--5 {
  fill: #F93858 !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--6 {
  fill: #FB9C48 !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--7 {
  fill: #49A75F !important; }
.theme-item .theme-correctvue svg .theme-color.theme-color--8 {
  fill: #31A784 !important; }
.theme-item .theme-correctvue svg .theme-text-background {
  fill: #ffffff; }
.theme-item .theme-correctvue svg .theme-text {
  font-family: "Lato";
  fill: #555555; }
.theme-item .theme-smartspend svg .theme-color.theme-color--1 {
  fill: #00CC66 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--2 {
  fill: #157218 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--3 {
  fill: #1CB28F !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--4 {
  fill: #B2FF66 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--5 {
  fill: #118B3E !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--6 {
  fill: #A4B723 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--7 {
  fill: #24F7C6 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--8 {
  fill: #717F17 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--9 {
  fill: #2DF634 !important; }
.theme-item .theme-smartspend svg .theme-color.theme-color--10 {
  fill: #DEF92E !important; }
.theme-item .theme-smartspend svg .theme-text-background {
  fill: #F0F0F0; }
.theme-item .theme-smartspend svg .theme-text {
  font-family: "Lato";
  fill: #555555; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--1 {
  fill: #013959 !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--2 {
  fill: #FFB541 !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--3 {
  fill: #15748D !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--4 {
  fill: #2396A7 !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--5 {
  fill: #E9F7F7 !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--6 {
  fill: #FF7447 !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--7 {
  fill: #49A75F !important; }
.theme-item .theme-woodgrain svg .theme-color.theme-color--8 {
  fill: #31A784 !important; }
.theme-item .theme-woodgrain svg .theme-text-background {
  fill: #F0F0F0; }
.theme-item .theme-woodgrain svg .theme-text {
  font-family: "Lato";
  fill: #555555; }
.theme-item .theme-campaign svg .theme-color.theme-color--1 {
  fill: #56899e !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--2 {
  fill: #FFF0D7 !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--3 {
  fill: #236799 !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--4 {
  fill: #08212B !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--5 {
  fill: #FEFE00 !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--6 {
  fill: #56899e !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--7 {
  fill: #F59212 !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--8 {
  fill: #ED1C24 !important; }
.theme-item .theme-campaign svg .theme-color.theme-color--9 {
  fill: #0062FF !important; }
.theme-item .theme-campaign svg .theme-text-background {
  fill: #235099; }
.theme-item .theme-campaign svg .theme-text {
  font-family: "Lato";
  fill: #08212B; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--1 {
  fill: #364169 !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--2 {
  fill: #ffd305 !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--3 {
  fill: #0e1a33 !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--4 {
  fill: #1b213b !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--5 {
  fill: #eaf80c !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--6 {
  fill: #DF426F !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--7 {
  fill: #FFEC61 !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--8 {
  fill: #ff381d !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--9 {
  fill: #A4A4A4 !important; }
.theme-item .theme-leagueminder svg .theme-color.theme-color--10 {
  fill: #516D31 !important; }
.theme-item .theme-leagueminder svg .theme-text-background {
  fill: #eee; }
.theme-item .theme-leagueminder svg .theme-text {
  font-family: "Fjalla One";
  fill: #555555; }
.theme-item .theme-visitguam svg .theme-color.theme-color--1 {
  fill: #7DD3D3 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--2 {
  fill: #EAB91F !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--3 {
  fill: #4CA944 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--4 {
  fill: #AFE2E2 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--5 {
  fill: #8DA2CD !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--6 {
  fill: #805F2E !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--7 {
  fill: #90DD87 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--8 {
  fill: #EB8104 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--9 {
  fill: #A74A44 !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--10 {
  fill: #44B7BD !important; }
.theme-item .theme-visitguam svg .theme-color.theme-color--11 {
  fill: #A0B4BD !important; }
.theme-item .theme-visitguam svg .theme-text-background {
  fill: #ffffff; }
.theme-item .theme-visitguam svg .theme-text {
  font-family: "Fjalla One";
  fill: #555555; }
.theme-item .theme-amped svg .theme-color.theme-color--1 {
  fill: #50C7E0 !important; }
.theme-item .theme-amped svg .theme-color.theme-color--2 {
  fill: #5D9CEC !important; }
.theme-item .theme-amped svg .theme-color.theme-color--3 {
  fill: #FB6D9D !important; }
.theme-item .theme-amped svg .theme-color.theme-color--4 {
  fill: #7266BA !important; }
.theme-item .theme-amped svg .theme-color.theme-color--5 {
  fill: #F6B37C !important; }
.theme-item .theme-amped svg .theme-color.theme-color--6 {
  fill: #2ECC71 !important; }
.theme-item .theme-amped svg .theme-color.theme-color--7 {
  fill: #3498DB !important; }
.theme-item .theme-amped svg .theme-color.theme-color--8 {
  fill: #E74C3C !important; }
.theme-item .theme-amped svg .theme-color.theme-color--9 {
  fill: #9B59B6 !important; }
.theme-item .theme-amped svg .theme-color.theme-color--10 {
  fill: #95A5A6 !important; }
.theme-item .theme-amped svg .theme-color.theme-color--11 {
  fill: #7F8C8D !important; }
.theme-item .theme-amped svg .theme-color.theme-color--12 {
  fill: #EC87BF !important; }
.theme-item .theme-amped svg .theme-text-background {
  fill: #ebeff2; }
.theme-item .theme-amped svg .theme-text {
  font-family: "Work Sans";
  fill: #555555; }
.theme-item .theme-optix svg .theme-color.theme-color--1 {
  fill: #3624BE !important; }
.theme-item .theme-optix svg .theme-color.theme-color--2 {
  fill: #5B83E5 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--3 {
  fill: #EC4584 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--4 {
  fill: #5B83E5 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--5 {
  fill: #FFAF37 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--6 {
  fill: #29CE6F !important; }
.theme-item .theme-optix svg .theme-color.theme-color--7 {
  fill: #1DA1D9 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--8 {
  fill: #E74C3C !important; }
.theme-item .theme-optix svg .theme-color.theme-color--9 {
  fill: #9B59B6 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--10 {
  fill: #74A6AA !important; }
.theme-item .theme-optix svg .theme-color.theme-color--11 {
  fill: #7F8C8D !important; }
.theme-item .theme-optix svg .theme-color.theme-color--12 {
  fill: #EC87BF !important; }
.theme-item .theme-optix svg .theme-color.theme-color--13 {
  fill: #D870AD !important; }
.theme-item .theme-optix svg .theme-color.theme-color--14 {
  fill: #F69785 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--15 {
  fill: #9BA37E !important; }
.theme-item .theme-optix svg .theme-color.theme-color--16 {
  fill: #B49255 !important; }
.theme-item .theme-optix svg .theme-color.theme-color--17 {
  fill: #A94136 !important; }
.theme-item .theme-optix svg .theme-text-background {
  fill: #ebeff2; }
.theme-item .theme-optix svg .theme-text {
  font-family: "Fjalla One";
  fill: #555555; }

.storyboard-actions--fixed-ratio .button-dropdown {
  position: relative; }
.storyboard-actions--fixed-ratio .button-dropdown, .storyboard-actions--fixed-ratio .button-dropdown div {
  font-size: 18px;
  font-family: "proxima-nova", sans-serif !important;
  color: #929292;
  vertical-align: bottom;
  border: none;
  box-shadow: none;
  background: transparent;
  display: inline-block;
  width: auto;
  position: relative; }
  .storyboard-actions--fixed-ratio .button-dropdown span, .storyboard-actions--fixed-ratio .button-dropdown div span {
    border: none !important;
    box-shadow: none !important;
    font-size: 18px;
    color: #929292;
    font-weight: 500;
    background: transparent;
    width: auto !important;
    height: auto !important;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0; }
  .storyboard-actions--fixed-ratio .button-dropdown .usergroup-view-select, .storyboard-actions--fixed-ratio .button-dropdown div .usergroup-view-select {
    border: none;
    box-shadow: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
    color: #929292;
    appearance: menulist; }
  .storyboard-actions--fixed-ratio .button-dropdown:hover, .storyboard-actions--fixed-ratio .button-dropdown div:hover {
    color: #929292; }
.storyboard-actions--fixed-ratio .dropdown-menu .dropdown-header {
  color: #AEAEAE;
  font-weight: 700;
  padding: 0px 10px 0px 10px; }
.storyboard-actions--fixed-ratio .dropdown-menu .dropdown-item {
  color: #757575;
  font-weight: 500;
  padding: 0px 10px 0px 10px;
  border-top: 1px solid #D1D1D1; }

body {
  background: #fafafa;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333; }

/* ==========================================================================
Hide ng-cloak on page load, https://docs.angularjs.org/api/ng/directive/ngCloak
========================================================================== */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important; }

/* ==========================================================================
Version number in navbar
========================================================================== */
.navbar-version {
  font-size: 10px;
  color: #ccc; }

.no-padding {
  padding: 0px !important; }

/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

.hero-unit {
  margin: 50px auto 0 auto;
  width: 300px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  background-color: #eee;
  border-radius: 6px;
  padding: 60px; }

.hero-unit h1 {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px; }

.error {
  color: white;
  background-color: red; }

.hipster {
  display: inline-block;
  width: 347px;
  height: 497px;
  background: url("../../assets/images/hipster.png") no-repeat center top;
  background-size: contain; }

.pad {
  padding: 10px; }

/* wait autoprefixer update to allow simple generation of high pixel density media query */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .hipster {
    background: url("../../assets/images/hipster2x.png") no-repeat center top;
    background-size: contain; } }
.hand {
  cursor: pointer; }

#threadDump .popover, #healthCheck .popover {
  top: inherit;
  display: block;
  font-size: 10px;
  max-width: 1024px; }

#healthCheck .popover {
  margin-left: -50px; }

.health-details {
  min-width: 400px; }

.alert .popover pre {
  font-size: 10px; }

/*Custom alerts for notification*/
.alerts .alert {
  text-overflow: ellipsis; }

.alert pre {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
  margin: 0; }

.voffset {
  margin-top: 2px; }

.voffset1 {
  margin-top: 5px; }

.voffset2 {
  margin-top: 10px; }

.voffset3 {
  margin-top: 15px; }

.voffset4 {
  margin-top: 30px; }

.voffset5 {
  margin-top: 40px; }

.voffset6 {
  margin-top: 60px; }

.voffset7 {
  margin-top: 80px; }

.voffset8 {
  margin-top: 100px; }

.voffset9 {
  margin-top: 150px; }

/* start Password strength bar style */
ul#strengthBar {
  display: inline;
  list-style: none;
  margin: 0;
  margin-left: 15px;
  padding: 0;
  vertical-align: 2px; }

.point:last {
  margin: 0 !important; }

.point {
  background: #DDD;
  border-radius: 2px;
  display: inline-block;
  height: 5px;
  margin-right: 1px;
  width: 20px; }

/* end Password strength bar style */
.readonly {
  background-color: #eee;
  opacity: 1; }

/* ==========================================================================
Social Buttons
========================================================================== */
.jh-btn-social {
  margin-bottom: 5px; }

.jh-btn-google {
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.jh-btn-google:hover, .jh-btn-google:focus, .jh-btn-google:active, .jh-btn-google.active, .open > .dropdown-toggle.jh-btn-google {
  background-color: #c23321;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.jh-btn-facebook {
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.jh-btn-facebook:hover, .jh-btn-facebook:focus, .jh-btn-facebook:active, .jh-btn-facebook.active, .open > .dropdown-toggle.jh-btn-facebook {
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.jh-btn-twitter {
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.jh-btn-twitter:hover, .jh-btn-twitter:focus, .jh-btn-twitter:active, .jh-btn-twitter.active, .open > .dropdown-toggle.jh-btn-twitter {
  background-color: #2795e9;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.results-table table, .results-table td, .results-table th {
  border-left: 1px solid #ddd !important;
  border-right: 1px solid #ddd !important;
  border-collapse: collapse;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 3px !important; }

.layout-thumbnail,
.theme-thumbnail {
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin: 10px; }

.storyboard-cover {
  position: fixed;
  top: 0;
  left: initial;
  right: -600px;
  width: 588px;
  height: 100%;
  z-index: 100003;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  box-shadow: -4px 0px 5px rgba(0, 0, 0, 0.5); }
  .animated-cover-entry .storyboard-cover {
    left: initial;
    animation-name: cover-menu-slidein;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    animation-fill-mode: forwards;
    pointer-events: all; }
  .animated-cover-leave .storyboard-cover {
    left: initial;
    right: 0px;
    animation-name: cover-menu-slideout;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    animation-fill-mode: forwards;
    pointer-events: all; }
  .storyboard-cover__top {
    height: 275px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover; }
    .storyboard-cover__top:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4); }
  .storyboard-cover__layout {
    width: 210px;
    height: 140px;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6); }
  .storyboard-cover__bottom {
    position: fixed;
    bottom: 10px;
    left: initial;
    width: 75px;
    text-align: center;
    right: 20px; }
  .storyboard-cover .top-actions {
    font-size: 1.2em;
    position: absolute;
    top: 10px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    height: calc(100% - 10px); }
  .storyboard-cover__content-body {
    height: calc(100% - 275px);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: #fff;
    position: absolute;
    overflow-y: auto; }
  .storyboard-cover__button-row {
    display: flex;
    flex-direction: row; }
    .storyboard-cover__button-row .row-button {
      flex-grow: 1;
      font-size: 1em;
      text-align: center;
      padding: 10px 5px;
      border-right: 1px solid rgba(23, 23, 23, 0.23);
      border-bottom: 1px solid rgba(23, 23, 23, 0.23);
      border-top: 1px solid rgba(23, 23, 23, 0.23);
      font-weight: 700; }
      .storyboard-cover__button-row .row-button:last-of-type {
        border-right: 0 solid #000; }
      .storyboard-cover__button-row .row-button--white {
        background: #fff;
        color: #53605f; }
  .storyboard-cover__title {
    text-align: center;
    font-weight: 700;
    font-family: "proxima-nova", sans-serif;
    position: absolute;
    width: 80%;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    font-size: 1.7em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; }
  .storyboard-cover__link {
    position: absolute;
    top: 0;
    width: 12.5%;
    color: inherit;
    text-decoration: none;
    text-align: center;
    color: #fff; }
    .storyboard-cover__link--left {
      left: 0; }
    .storyboard-cover__link--right {
      right: 0; }
  .storyboard-cover__info {
    padding: 8px 15px;
    font-size: 1em;
    color: inherit;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px; }
  .storyboard-cover__heading {
    font-size: 2em;
    color: inherit;
    font-weight: 300;
    font-family: "proxima-nova", sans-serif;
    margin-bottom: 10px; }
  .storyboard-cover .edit-button {
    color: rgba(255, 255, 255, 0.4); }
  .storyboard-cover .page-list {
    height: auto;
    width: 90%;
    overflow-y: hidden;
    overflow-x: auto;
    position: relative; }
  .storyboard-cover__pages {
    display: inline-block;
    border-radius: 0px;
    border-left: 0 solid transparent;
    padding: 8px 10px;
    font-size: .8em;
    margin-right: 5px;
    position: relative;
    color: #373737;
    background: #fff;
    margin-right: 5px;
    margin-bottom: 10px;
    background: transparent;
    text-align: center;
    font-size: 14px;
    font-weight: 700; }
  .storyboard-cover__pages-image {
    height: 100px;
    width: 150px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }
  .storyboard-cover__pages-title {
    margin-top: 5px; }
  .storyboard-cover .tag-color-palette span:nth-of-type(1), .storyboard-cover .tag-color-palette div:nth-of-type(1) {
    background: #8BA7AA;
    left: 0; }
  .storyboard-cover .tag-color-palette span:nth-of-type(2), .storyboard-cover .tag-color-palette div:nth-of-type(2) {
    background: #658999;
    left: 20%; }
  .storyboard-cover .tag-color-palette span:nth-of-type(3), .storyboard-cover .tag-color-palette div:nth-of-type(3) {
    background: #867F75;
    left: 40%; }
  .storyboard-cover .tag-color-palette span:nth-of-type(4), .storyboard-cover .tag-color-palette div:nth-of-type(4) {
    background: #B3DDB9;
    left: 60%; }
  .storyboard-cover .tag-color-palette span:nth-of-type(5), .storyboard-cover .tag-color-palette div:nth-of-type(5) {
    background: #6CC6BA;
    left: 80%; }
  .storyboard-cover--standard .tag-color-palette div:nth-of-type(1) {
    background: #67539B; }
    .storyboard-cover--standard .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #67539B; }
  .storyboard-cover--standard .tag-color-palette div:nth-of-type(2) {
    background: #76B74B; }
    .storyboard-cover--standard .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #76B74B; }
  .storyboard-cover--standard .tag-color-palette div:nth-of-type(3) {
    background: #F79320; }
    .storyboard-cover--standard .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F79320; }
  .storyboard-cover--standard .tag-color-palette div:nth-of-type(4) {
    background: #3D4AA5; }
    .storyboard-cover--standard .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #3D4AA5; }
  .storyboard-cover--standard .tag-color-palette div:nth-of-type(5) {
    background: #F93858; }
    .storyboard-cover--standard .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F93858; }
  .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(1) {
    background: #4A94C1; }
    .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #4A94C1; }
  .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(2) {
    background: #326383; }
    .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #326383; }
  .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(3) {
    background: #45BEF3; }
    .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #45BEF3; }
  .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(4) {
    background: #1989DD; }
    .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #1989DD; }
  .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(5) {
    background: #88d7f9; }
    .storyboard-cover--true_blue .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #88d7f9; }
  .storyboard-cover--marianas .tag-color-palette div:nth-of-type(1) {
    background: #4A94C1; }
    .storyboard-cover--marianas .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #4A94C1; }
  .storyboard-cover--marianas .tag-color-palette div:nth-of-type(2) {
    background: #5337C8; }
    .storyboard-cover--marianas .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #5337C8; }
  .storyboard-cover--marianas .tag-color-palette div:nth-of-type(3) {
    background: #518AE0; }
    .storyboard-cover--marianas .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #518AE0; }
  .storyboard-cover--marianas .tag-color-palette div:nth-of-type(4) {
    background: #1989DD; }
    .storyboard-cover--marianas .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #1989DD; }
  .storyboard-cover--marianas .tag-color-palette div:nth-of-type(5) {
    background: #35DAF0; }
    .storyboard-cover--marianas .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #35DAF0; }
  .storyboard-cover--midnight .tag-color-palette div:nth-of-type(1) {
    background: #ED1E79; }
    .storyboard-cover--midnight .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #ED1E79; }
  .storyboard-cover--midnight .tag-color-palette div:nth-of-type(2) {
    background: #A1ACFB; }
    .storyboard-cover--midnight .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #A1ACFB; }
  .storyboard-cover--midnight .tag-color-palette div:nth-of-type(3) {
    background: #E90154; }
    .storyboard-cover--midnight .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #E90154; }
  .storyboard-cover--midnight .tag-color-palette div:nth-of-type(4) {
    background: #3840AF; }
    .storyboard-cover--midnight .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #3840AF; }
  .storyboard-cover--midnight .tag-color-palette div:nth-of-type(5) {
    background: #132144; }
    .storyboard-cover--midnight .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #132144; }
  .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(1) {
    background: #5FD3CD; }
    .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #5FD3CD; }
  .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(2) {
    background: #AFFF00; }
    .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #AFFF00; }
  .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(3) {
    background: #FF5777; }
    .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FF5777; }
  .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(4) {
    background: #F4F0A2; }
    .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F4F0A2; }
  .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(5) {
    background: #2499EE; }
    .storyboard-cover--nucleus .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #2499EE; }
  .storyboard-cover--textured .tag-color-palette div:nth-of-type(1) {
    background: #EA6045; }
    .storyboard-cover--textured .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #EA6045; }
  .storyboard-cover--textured .tag-color-palette div:nth-of-type(2) {
    background: #F8CA4D; }
    .storyboard-cover--textured .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F8CA4D; }
  .storyboard-cover--textured .tag-color-palette div:nth-of-type(3) {
    background: #F2D599; }
    .storyboard-cover--textured .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F2D599; }
  .storyboard-cover--textured .tag-color-palette div:nth-of-type(4) {
    background: #3840af; }
    .storyboard-cover--textured .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #3840af; }
  .storyboard-cover--textured .tag-color-palette div:nth-of-type(5) {
    background: #2F3440; }
    .storyboard-cover--textured .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #2F3440; }
  .storyboard-cover--writevue .tag-color-palette div:nth-of-type(1) {
    background: #41B3D3; }
    .storyboard-cover--writevue .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #41B3D3; }
  .storyboard-cover--writevue .tag-color-palette div:nth-of-type(2) {
    background: #61D2DC; }
    .storyboard-cover--writevue .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #61D2DC; }
  .storyboard-cover--writevue .tag-color-palette div:nth-of-type(3) {
    background: #63AADB; }
    .storyboard-cover--writevue .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #63AADB; }
  .storyboard-cover--writevue .tag-color-palette div:nth-of-type(4) {
    background: #439FDD; }
    .storyboard-cover--writevue .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #439FDD; }
  .storyboard-cover--writevue .tag-color-palette div:nth-of-type(5) {
    background: #6081F7; }
    .storyboard-cover--writevue .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #6081F7; }
  .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(1) {
    background: #67539B; }
    .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #67539B; }
  .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(2) {
    background: #76B74B; }
    .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #76B74B; }
  .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(3) {
    background: #F79320; }
    .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F79320; }
  .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(4) {
    background: #3D4AA5; }
    .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #3D4AA5; }
  .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(5) {
    background: #F93858; }
    .storyboard-cover--correctvue .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F93858; }
  .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(1) {
    background: #00CC66; }
    .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #00CC66; }
  .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(2) {
    background: #157218; }
    .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #157218; }
  .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(3) {
    background: #1CB28F; }
    .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #1CB28F; }
  .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(4) {
    background: #B2FF66; }
    .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #B2FF66; }
  .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(5) {
    background: #118B3E; }
    .storyboard-cover--smartspend .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #118B3E; }
  .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(1) {
    background: #013959; }
    .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #013959; }
  .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(2) {
    background: #FFB541; }
    .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FFB541; }
  .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(3) {
    background: #15748D; }
    .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #15748D; }
  .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(4) {
    background: #2396A7; }
    .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #2396A7; }
  .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(5) {
    background: #E9F7F7; }
    .storyboard-cover--woodgrain .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #E9F7F7; }
  .storyboard-cover--campaign .tag-color-palette div:nth-of-type(1) {
    background: #56899e; }
    .storyboard-cover--campaign .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #56899e; }
  .storyboard-cover--campaign .tag-color-palette div:nth-of-type(2) {
    background: #FFF0D7; }
    .storyboard-cover--campaign .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FFF0D7; }
  .storyboard-cover--campaign .tag-color-palette div:nth-of-type(3) {
    background: #236799; }
    .storyboard-cover--campaign .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #236799; }
  .storyboard-cover--campaign .tag-color-palette div:nth-of-type(4) {
    background: #08212B; }
    .storyboard-cover--campaign .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #08212B; }
  .storyboard-cover--campaign .tag-color-palette div:nth-of-type(5) {
    background: #FEFE00; }
    .storyboard-cover--campaign .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FEFE00; }
  .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(1) {
    background: #364169; }
    .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #364169; }
  .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(2) {
    background: #ffd305; }
    .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #ffd305; }
  .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(3) {
    background: #0e1a33; }
    .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #0e1a33; }
  .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(4) {
    background: #1b213b; }
    .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #1b213b; }
  .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(5) {
    background: #eaf80c; }
    .storyboard-cover--leagueminder .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #eaf80c; }
  .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(1) {
    background: #7DD3D3; }
    .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #7DD3D3; }
  .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(2) {
    background: #EAB91F; }
    .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #EAB91F; }
  .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(3) {
    background: #4CA944; }
    .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #4CA944; }
  .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(4) {
    background: #AFE2E2; }
    .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #AFE2E2; }
  .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(5) {
    background: #8DA2CD; }
    .storyboard-cover--visitguam .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #8DA2CD; }
  .storyboard-cover--amped .tag-color-palette div:nth-of-type(1) {
    background: #50C7E0; }
    .storyboard-cover--amped .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #50C7E0; }
  .storyboard-cover--amped .tag-color-palette div:nth-of-type(2) {
    background: #5D9CEC; }
    .storyboard-cover--amped .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #5D9CEC; }
  .storyboard-cover--amped .tag-color-palette div:nth-of-type(3) {
    background: #FB6D9D; }
    .storyboard-cover--amped .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FB6D9D; }
  .storyboard-cover--amped .tag-color-palette div:nth-of-type(4) {
    background: #7266BA; }
    .storyboard-cover--amped .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #7266BA; }
  .storyboard-cover--amped .tag-color-palette div:nth-of-type(5) {
    background: #F6B37C; }
    .storyboard-cover--amped .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #F6B37C; }
  .storyboard-cover--optix .tag-color-palette div:nth-of-type(1) {
    background: #3624BE; }
    .storyboard-cover--optix .tag-color-palette div:nth-of-type(1):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #3624BE; }
  .storyboard-cover--optix .tag-color-palette div:nth-of-type(2) {
    background: #5B83E5; }
    .storyboard-cover--optix .tag-color-palette div:nth-of-type(2):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #5B83E5; }
  .storyboard-cover--optix .tag-color-palette div:nth-of-type(3) {
    background: #EC4584; }
    .storyboard-cover--optix .tag-color-palette div:nth-of-type(3):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #EC4584; }
  .storyboard-cover--optix .tag-color-palette div:nth-of-type(4) {
    background: #5B83E5; }
    .storyboard-cover--optix .tag-color-palette div:nth-of-type(4):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #5B83E5; }
  .storyboard-cover--optix .tag-color-palette div:nth-of-type(5) {
    background: #FFAF37; }
    .storyboard-cover--optix .tag-color-palette div:nth-of-type(5):before {
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid #FFAF37; }
  .storyboard-cover__tag {
    display: inline-block;
    border-radius: 2px;
    border-left: 0 solid transparent;
    padding: 7px 10px 7px 5px;
    font-size: .8em;
    margin-right: 5px;
    position: relative;
    color: #53605f;
    background: #fff;
    margin-left: 15px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    color: #fff; }
    .storyboard-cover__tag:before {
      content: '';
      height: 0;
      width: 0;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-right: 10px solid white;
      display: inline-block;
      margin-right: 5px;
      position: absolute;
      position: absolute;
      top: 0px;
      left: -10px; }
    .storyboard-cover__tag:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: -3px;
      background: #fff;
      height: 3px;
      width: 3px;
      border-radius: 100%; }
  @media screen and (max-width: 525px) {
    .storyboard-cover {
      position: fixed;
      top: 0;
      left: 0;
      right: initial;
      width: 100%;
      height: 100%;
      z-index: 100003;
      transform: translateZ(0);
      -webkit-transform: translateZ(0); }
      .animated-cover-entry .storyboard-cover {
        left: 100%;
        animation-name: mobile-cover-menu-slidein;
        animation-duration: .8s;
        animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
        animation-fill-mode: forwards;
        pointer-events: all; }
      .storyboard-cover__top {
        height: 30%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1;
        background-color: #fff;
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: cover; }
        .storyboard-cover__top:after {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.4); }
      .storyboard-cover .top-actions {
        font-size: 1.2em;
        position: absolute;
        top: 10px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3; }
      .storyboard-cover__bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%; }
      .storyboard-cover__layout {
        width: 100%;
        height: 80%;
        position: absolute;
        left: 0;
        bottom: 0;
        top: initial;
        transform: none;
        background-color: transparent;
        background-repeat: no-repeat;
        background-size: 60% auto;
        background-position: center;
        box-shadow: none; }
      .storyboard-cover__button-row {
        display: flex;
        flex-direction: row; }
        .storyboard-cover__button-row .row-button {
          flex-grow: 1;
          font-size: 1em;
          color: #fff;
          text-align: center;
          padding: 10px 5px;
          border-right: 1px solid rgba(23, 23, 23, 0.23);
          border-bottom: 1px solid rgba(23, 23, 23, 0.23);
          border-top: 1px solid rgba(23, 23, 23, 0.23);
          font-weight: 700; }
          .storyboard-cover__button-row .row-button:last-of-type {
            border-right: 0 solid #000; }
          .storyboard-cover__button-row .row-button--white {
            background: #fff;
            color: #53605f; }
      .storyboard-cover__heading {
        font-size: 1.2em;
        color: #fff;
        font-weight: 300;
        font-family: "proxima-nova", sans-serif;
        margin-bottom: 10px; }
      .storyboard-cover__pages {
        display: inline-block;
        border-radius: 8px;
        border-left: 0 solid transparent;
        padding: 8px 10px;
        font-size: .8em;
        margin-right: 5px;
        position: relative;
        color: #fff;
        background: #fff;
        margin-right: 5px;
        margin-bottom: 10px;
        background: rgba(0, 0, 0, 0.2); }
        .storyboard-cover__pages-image {
          display: none; }
        .storyboard-cover__pages-title {
          margin-top: 0; }
      .storyboard-cover__content-body {
        height: 70%;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 2;
        background: #53605f;
        position: absolute;
        box-shadow: -4px 0px 5px rgba(0, 0, 0, 0.5);
        color: #fff; }
      .storyboard-cover__title {
        text-align: center;
        color: #fff;
        font-weight: 700;
        font-family: "proxima-nova", sans-serif;
        position: absolute;
        width: 80%;
        bottom: initial;
        top: -7px;
        left: 50%;
        transform: translateX(-50%);
        padding: none;
        background: transparent;
        border-radius: 10px;
        font-size: 1em;
        text-shadow: none;
        color: #fff; }
      .storyboard-cover .page-list {
        height: auto;
        width: auto;
        overflow-y: hidden;
        overflow-x: auto;
        position: relative; }
      .storyboard-cover__tag {
        display: inline-block;
        border-radius: 2px;
        border-left: 0 solid transparent;
        padding: 3px 5px;
        font-size: .8em;
        margin-right: 5px;
        position: relative;
        color: #53605f;
        background: #fff;
        margin-left: 15px;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        margin-bottom: 10px;
        background: #fff !important; }
        .storyboard-cover__tag:before {
          content: '';
          height: 0;
          width: 0;
          border-top: 10px solid transparent !important;
          border-bottom: 10px solid transparent !important;
          border-right: 10px solid white !important;
          display: inline-block;
          margin-right: 5px;
          position: absolute;
          position: absolute;
          top: 0px;
          left: -10px; }
        .storyboard-cover__tag:after {
          content: '';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: -3px;
          background: #000;
          height: 3px;
          width: 3px;
          border-radius: 100%; } }

/*************************************************************
 *
 * Storyboard Comments and Comment Timeline
 * 
*************************************************************/
/*************************************************************
 *
 * Storybaord events and Visual Events
 * 
*************************************************************/
.storyboard-events, .visual-events {
  background: #fff;
  border: 1px solid #e6e6e6;
  /* box-shadow: 0px 1px 3px rgba(#000, .3);  */
  right: 0px;
  top: 110px;
  z-index: 1000;
  position: fixed;
  width: 400px;
  height: calc(100% - 60px + 50px);
  left: initial;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }

.storyboard-events {
  right: -400px;
  background-color: #fff;
  height: calc(100% - $nav-height + $pagination-height);
  border-radius: 15px;
  padding-top: 60px;
  /* 		&:after{
  			content: '';
  			border-left: 3px solid #cccccc;
  			position: absolute;
  			left: 30px;
  			top: 0;
  			bottom: 0px;
  
  		} */
  		/**.timeline-event{
  			background-color: transparent !important;
  			box-shadow: none !important;	
  			height: 0px;
  			width: 	0px;
  			margin-bottom: 75px !important;
  			transition: all .8s $ease-out-quint;
  
  			&__recent, .visual-image__snapshot{
  				display: 	none; 
  
  			}
  		}**/ }
  .storyboard-events.scrolled {
    top: 0;
    height: calc(100% - 230px); }
    .storyboard-events.scrolled .panel-heading {
      top: 0; }
  .storyboard-events .panel-heading {
    opacity: 1;
    height: 60px;
    padding: 15px 15px;
    /* margin-bottom: 25px; */
    border-bottom: 1px solid #E6E6E6;
    overflow: visible;
    position: fixed;
    width: 400px;
    z-index: 5;
    top: 110px;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    animation-fill-mode: forwards; }
    .storyboard-events .panel-heading:before {
      content: '';
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100;White+to+Transparent */
      background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: linear, to bottom, white 0%, rgba(255, 255, 255, 0) 100%;
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
      /* IE6-9 */
      height: 21px;
      position: absolute;
      bottom: -22px;
      left: 0;
      z-index: 4;
      width: 100%; }
  .storyboard-events .timeline-event {
    display: block;
    background-color: #eeeeee !important;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 25px !important;
    position: relative;
    height: 100%;
    width: auto;
    padding-bottom: 40px;
    text-align: left; }
    .storyboard-events .timeline-event__recent, .storyboard-events .timeline-event .visual-image__snapshot {
      display: inline-block; }
  .storyboard-events.active {
    right: 0px;
    background-color: #fff;
    height: calc(100% - 110px);
    border-radius: 0px;
    			/**.panel-heading {
    				opacity: 1; 
    				height: 86px;
    				padding: 25px;
    				margin-bottom: 25px;
    				border-bottom: 1px solid #E6E6E6;
    			}
    
    			.timeline-event{
    				display: block;
    				background-color: #eeeeee !important;
    				padding: 10px;
    				border-radius: 8px;
    				box-shadow: 1px 1px 5px rgba(#000, .3) !important;
    				margin-bottom: 25px !important; 
    				position: relative;
    				height: 100%;
    				width: 	auto;
    
    				&__recent, .visual-image__snapshot{
    					display: 	inline-block; 
    
    				}
    			}**/ }
    .storyboard-events.active.scrolled {
      height: 100%; }

.visual-events-timeline {
  border-left: 1px solid #ccc;
  top: 0px;
  width: 300px; }
  .visual-events-timeline .timeline-events-container {
    position: absolute;
    top: 170px;
    bottom: 0px;
    overflow-y: scroll; }
  .visual-events-timeline:after {
    content: '';
    border-left: 3px solid #cccccc;
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0px; }

.conversation-comment {
  border-bottom: #D2D2D2 1px solid;
  border-radius: 0px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px; }
  .conversation-comment__date {
    font-size: 10px;
    position: absolute;
    bottom: 5px;
    left: 9px;
    color: #ccc; }

.visual-events {
  right: 0px;
  width: 650px; }
  .visual-events.scrolled {
    top: 0;
    height: 100%; }
  .visual-events .panel-heading {
    background: #416A7B;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    color: #fff;
    font-size: 14px;
    height: 40px;
    height: auto;
    margin-bottom: 10px;
    margin-top: 250px;
    opacity: 1;
    overflow: visible;
    padding-top: 10px;
    padding: 0;
    vertical-align: middle;
    width: calc(100% -  60px);
    font-weight: 500; }
    .visual-events .panel-heading__info {
      height: 40px;
      overflow: hidden;
      padding: 10px;
      background: #416A7B;
      width: 100%;
      position: absolute;
      transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
      .visual-events .panel-heading__info.active {
        position: fixed;
        height: calc(100% - 250px);
        width: 100%; }
    .visual-events .panel-heading__action {
      position: absolute;
      top: 0px;
      left: 10px;
      z-index: 100;
      color: #fff; }
  .visual-events .timeline-events-container {
    width: 40%;
    float: right; }
  .visual-events .conversation-details {
    width: calc(100% -  60px);
    float: left;
    padding-left: 10px;
    padding-right: 10px; }
  .visual-events .visual-comment-list {
    padding: 0px 10px;
    position: absolute;
    bottom: 0px;
    top: 371px;
    overflow-x: hidden;
    left: 0px;
    width: calc(100% -  60px); }
  .visual-events .timeline-event {
    margin-bottom: 100px;
    height: 1px; }
    .visual-events .timeline-event-container:after {
      left: 26px; }
    .timeline-event--chart:hover .visual-events .timeline-event__action-bubble, .timeline-event--chart:focus .visual-events .timeline-event__action-bubble, .timeline-event--chart:active .visual-events .timeline-event__action-bubble {
      position: absolute;
      left: -385px;
      height: 200px;
      width: 300px;
      background: #f4f4f4; }
  .visual-events .timeline-event--chart {
    padding: 0px;
    display: block; }
    .visual-events .timeline-event--chart .timeline-event__action-bubble {
      transition: opacity 0.5s cubic-bezier(0.86, 0, 0.07, 1);
      opacity: 0;
      padding: 15px;
      border-radius: 15px;
      padding-bottom: 40px;
      position: absolute;
      width: 300px; }
      .visual-events .timeline-event--chart .timeline-event__action-bubble .visual-image__snapshot, .visual-events .timeline-event--chart .timeline-event__action-bubble .visual-image__snapshot--dynamic {
        display: none; }
  .visual-events .timeline-event__element {
    display: block; }
    .visual-events .timeline-event__element:after {
      content: '';
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 15px;
      border-left-color: #F4F4F4;
      top: 10px;
      left: -67px;
      position: absolute;
      transition: opacity 0.5s cubic-bezier(0.86, 0, 0.07, 1);
      opacity: 0; }
  .visual-events .timeline-event--chart:hover .timeline-event__element, .visual-events .timeline-event--chart:focus .timeline-event__element, .visual-events .timeline-event--chart:active .timeline-event__element {
    display: block; }
    .visual-events .timeline-event--chart:hover .timeline-event__element:after, .visual-events .timeline-event--chart:focus .timeline-event__element:after, .visual-events .timeline-event--chart:active .timeline-event__element:after {
      opacity: 1; }
  .visual-events .timeline-event--chart:hover .timeline-event__action-bubble, .visual-events .timeline-event--chart:focus .timeline-event__action-bubble, .visual-events .timeline-event--chart:active .timeline-event__action-bubble {
    position: absolute;
    left: -365px;
    top: 0;
    height: auto;
    width: 300px;
    background: #f4f4f4;
    opacity: 1;
    overflow: hidden; }
  .visual-events .chart-detail__row {
    display: block;
    margin-top: 14px; }
  .visual-events .chart-detail__heading {
    display: block;
    font-size: 18px; }
  .visual-events .chart-detail__info {
    font-weight: 500;
    font-size: 15px; }
  .visual-events .conversation-comments-container .new-conversation-comment, .visual-events .initial-comment {
    position: absolute;
    top: 291px;
    left: 0;
    height: auto;
    width: calc(100% -  60px); }
  .visual-events .conversation-comments-container .new-conversation-comment textarea, .visual-events .initial-comment textarea {
    background-color: #E2E2E2;
    border: none;
    height: 80px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0px;
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
    .visual-events .conversation-comments-container .new-conversation-comment textarea:focus, .visual-events .conversation-comments-container .new-conversation-comment textarea:active, .visual-events .initial-comment textarea:focus, .visual-events .initial-comment textarea:active {
      background: #fff; }
  .visual-events .conversation-comments-container .new-conversation-comment button, .visual-events .initial-comment button {
    position: absolute;
    right: 5px;
    top: initial;
    bottom: -18px;
    right: 0; }
  .visual-events .initial-comment button {
    bottom: 0 !important;
    position: relative !important; }
  .visual-events-timeline {
    top: 0;
    overflow-x: visible;
    background: #f4f4f4;
    z-index: 10;
    right: -240px; }
    .visual-events-timeline:after {
      left: 30px; }

.panel-heading {
  padding: 0;
  z-index: 4;
  position: relative;
  background: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  color: #747474;
  text-transform: uppercase;
  font-size: 25px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  height: 0;
  width: 100%; }
  .panel-heading__title {
    /* text-shadow: 2px 2px 5px rgba(#000000, 0.2); */
    font-size: 15px;
    color: #747474; }
  .panel-heading__action {
    text-shadow: none;
    color: #919191;
    font-size: 20px; }

.timeline-events-container {
  padding: 0px 10px;
  padding-left: 60px;
  display: inline-block;
  height: auto;
  width: 100%;
  position: relative; }
  .timeline-events-container:after {
    content: '';
    border-left: 3px solid #cccccc;
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0px; }

.timeline-event, .new-timeline-event {
  display: block;
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 65px;
  position: relative; }
  .timeline-event:before, .new-timeline-event:before {
    content: '';
    height: 45px;
    width: 45px;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -50px;
    background: #00b8c2;
    z-index: 2;
    border-radius: 100%; }
  .timeline-event:after, .new-timeline-event:after {
    content: '';
    height: 45px;
    width: 45px;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -50px;
    z-index: 3;
    background: transparent url("../../assets/images/icons/icon.timeline-chart.svg") no-repeat center center;
    background-size: 30px auto; }

.timeline-event.active,
.new-timeline-event.active {
  background-color: #f4f4f4;
  color: #242424;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }

.timeline-event:hover,
.new-timeline-event:hover {
  background-color: #dbdbdb;
  cursor: pointer; }

/********************************************************************
*
* New Timeline Event
*
********************************************************************/
.new-timeline-event {
  margin-left: 60px;
  box-shadow: none;
  background-color: transparent;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
  .new-timeline-event:hover {
    color: #fff;
    background-color: transparent; }
  .new-timeline-event:before {
    background-color: #fff;
    border: 1px solid #51b6be; }
  .new-timeline-event:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f067";
    left: -35px !important;
    top: 14px !important;
    color: #51b6be;
    font-size: 18px;
    background: none; }

.new-timeline-event--start {
  margin-top: 45px;
  margin-bottom: 30px; }
  .new-timeline-event--start .timeline-event__date {
    top: -45px;
    background: #f4f4f4;
    font-size: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
    color: #909090; }
  .new-timeline-event--start:before {
    background-color: #416A7B;
    border: 1px solid #416A7B;
    height: 25px;
    width: 25px;
    left: -40px;
    top: 7px; }
  .new-timeline-event--start:after {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f017";
    left: -35px !important;
    top: 11px !important;
    color: #fff;
    font-size: 16px;
    background: none; }

/********************************************************************
*
* Timeline Event
*
********************************************************************/
.timeline-event__link {
  position: absolute;
  display: inline-block;
  top: 10px;
  right: 10px;
  color: #fff;
  z-index: 2; }
  .timeline-event__link a {
    color: #fff; }
.timeline-event.active:after {
  background-image: url("../../assets/images/icons/icon.timeline-chart-active.svg"); }
.timeline-event.active:before {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  background-color: #fff !important; }

.conversation-comments-container .conversation-comment {
  background-color: white;
  margin: 10px 0;
  padding: 0px 10px 25px 10px; }

.conversation-comments-container .new-conversation-comment, .initial-comment {
  height: 120px; }

.conversation-comments-container .new-conversation-comment textarea, .initial-comment textarea {
  height: 140px; }

.timeline-event:first-of-type, .timeline-event .new-timeline-event:first-of-type {
  margin-top: 15px; }
.timeline-event:first-of-type {
  margin-top: 15px; }
.timeline-event__date {
  font-size: 9px;
  position: absolute;
  top: 50px;
  text-align: center;
  width: 55px;
  left: -57px;
  background: #F4F4F4;
  z-index: 3;
  padding: 5px 0;
  color: #686868;
  border-radius: 10px; }
.timeline-event__replay {
  display: block;
  width: 100%;
  text-align: center;
  border-top: #dedede 1px solid;
  font-size: 12px;
  color: #a5a5a5;
  padding: 7px 0;
  position: absolute;
  left: 0;
  bottom: 0;
  font-weight: 700;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }

.visual-image {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  position: absolute;
  top: -250px;
  left: 0;
  right: 0;
  height: 250px;
  border-bottom: 1px solid #ccc;
  background-repeat: no-repeat;
  background-position: center center; }
  .visual-image .snapshot-tmp {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0; }
  .visual-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; }
  .visual-image__title {
    position: absolute;
    top: 0;
    color: #fff;
    font-weight: 900;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    z-index: 4; }
    .visual-image__title--bottom {
      top: initial;
      bottom: 10px;
      left: 10px;
      font-size: 1.2em; }
  .visual-image__info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: #fff;
    font-size: 14px;
    z-index: 4; }
  .visual-image__time {
    font-size: 11px;
    font-weight: 300; }
  .visual-image__name {
    font-size: 14px;
    color: #4C585D;
    font-weight: 700; }
  .visual-image__snapshot {
    height: 120px;
    width: calc(100% + 20px);
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -10px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 8px 8px 0px 0px; }
    .visual-image__snapshot--dynamic {
      height: 100%;
      width: 100%;
      position: relative;
      display: inline-block;
      background-size: cover;
      position: absolute;
      top: 0;
      left: 0; }
    .visual-image__snapshot:after {
      background: rgba(0, 0, 0, 0.2);
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      border-radius: 8px 8px 0px 0px; }

.visual-stats--followers {
  position: absolute;
  bottom: 0px;
  right: 0px;
  text-align: center;
  display: inline-block;
  padding: 20px;
  color: #fff;
  z-index: 5;
  font-size: 20px;
  line-height: 1em; }
  .visual-stats--followers span {
    font-size: 14px; }

.snapshot-tmp {
  height: 120px;
  width: 250px;
  background-size: 100% 100%; }

/*******************************************************************************
** Mobile Styles for Tablet and Phones 
*******************************************************************************/
/* Small Devices, Tablets */
@media only screen and (max-width: 480px) {
  .storyboard-events, .visual-events {
    z-index: 10001; }

  .storyboard-events {
    right: -325px;
    width: 325px;
    padding-top: 50px; }
    .storyboard-events.scrolled {
      top: 52px; }
      .storyboard-events.scrolled .panel-heading {
        top: 52px; }
    .storyboard-events.active {
      right: 0px;
      background-color: #fff;
      height: calc(100% - 60px);
      border-radius: 0px; }
    .storyboard-events .panel-heading {
      top: 50px;
      height: 50px;
      padding: 5px 10px;
      background: #416A7B;
      color: #fff;
      text-align: left; }
      .storyboard-events .panel-heading__title {
        color: #fff;
        font-size: 25px; }

  .visual-events {
    width: 100%; }
    .visual-events.scrolled {
      top: 52px; }
    .visual-events .panel-heading, .visual-events .conversation-details {
      width: calc(100% -  50px); }
    .visual-events .panel-heading {
      background: #416A7B;
      color: #fff;
      height: 40px;
      border-radius: 0px;
      padding: 0 !important; }
      .visual-events .panel-heading__info {
        height: 40px;
        overflow: hidden;
        padding: 10px;
        background: #416A7B;
        width: 100%;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
        .visual-events .panel-heading__info.active {
          height: 100%; }
      .visual-events .panel-heading__action {
        position: absolute;
        top: 0px;
        left: 10px;
        z-index: 100;
        color: #fff; }
    .visual-events-timeline {
      top: 0;
      background: #f4f4f4;
      z-index: 10;
      right: -250px; }
      .visual-events-timeline:after {
        left: 26px; }
    .visual-events .timeline-events-container:after {
      left: 26px; }
    .visual-events .timeline-event--chart, .visual-events .new-timeline-event--chart {
      margin-bottom: 80px; }
    .visual-events .timeline-event:after, .visual-events .new-timeline-event:after {
      width: 19px;
      height: 19px;
      top: 8px;
      left: -43px;
      background-size: contain;
      z-index: 10; }
    .visual-events .timeline-event:before, .visual-events .new-timeline-event:before {
      width: 35px;
      height: 35px;
      z-index: 9; }
    .visual-events .timeline-event__date, .visual-events .new-timeline-event__date {
      background: #f4f4f4;
      font-size: 8.5px;
      top: 33px;
      left: -58px;
      width: 48px; }
    .visual-events .timeline-event timeline-event, .visual-events .new-timeline-event timeline-event {
      position: absolute; }
    .visual-events .timeline-event:first-of-type {
      margin-bottom: 80px; }
    .visual-events .new-timeline-event {
      margin-bottom: 80px; }
      .visual-events .new-timeline-event:after {
        left: -39px !important;
        top: 10px !important; }
    .visual-events .new-timeline-event--start {
      margin-top: 45px !important;
      margin-bottom: 25px !important; }
      .visual-events .new-timeline-event--start .timeline-event__date {
        top: -45px;
        background: #f4f4f4;
        font-size: 10px;
        padding-top: 9px;
        padding-bottom: 9px;
        padding-left: 0px !important;
        color: #909090;
        left: -60px;
        width: 48px; }
      .visual-events .new-timeline-event--start:before {
        background-color: #416A7B;
        border: 1px solid #416A7B;
        height: 25px;
        width: 25px;
        left: -45px;
        top: 2px; }
      .visual-events .new-timeline-event--start:after {
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f017";
        left: -40px !important;
        top: 6px !important;
        color: #fff;
        font-size: 16px;
        background: none; }
    .visual-events .visual-events-timeline .timeline-events-container {
      top: 155px; }
    .visual-events .conversation-comments-container .new-conversation-comment, .visual-events .initial-comment {
      position: absolute;
      bottom: 32px;
      top: initial !important;
      left: 0;
      height: auto;
      width: calc(100% -  50px); }
    .visual-events .conversation-comments-container .new-conversation-comment textarea, .visual-events .initial-comment textarea {
      background-color: #E2E2E2;
      border: none;
      height: 150px;
      width: 100%;
      border-radius: 0px;
      transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
      resize: none; }
      .visual-events .conversation-comments-container .new-conversation-comment textarea:focus, .visual-events .conversation-comments-container .new-conversation-comment textarea:active, .visual-events .initial-comment textarea:focus, .visual-events .initial-comment textarea:active {
        background: #fff; }
    .visual-events .conversation-comments-container .new-conversation-comment button, .visual-events .initial-comment button {
      position: absolute;
      right: 5px;
      top: 50% !important;
      transform: translateY(-50%); }
    .visual-events .visual-comment-list {
      width: calc(100% -  50px);
      top: 290px;
      bottom: 82px; }
    .visual-events .new-timeline-event {
      margin-bottom: 45px;
      margin-top: 15px; }

  .visual-events .initial-comment {
    top: 0 !important; }
    .visual-events .initial-comment button {
      right: 0px;
      top: initial !important;
      transform: none;
      border-radius: 0px; }
    .visual-events .initial-comment .onboarding-message {
      margin-top: 290px; }
    .visual-events .initial-comment textarea {
      height: calc(100% - 367px) !important; }

  .visual-image {
    padding: 0; }

  .storyboard-actions {
    z-index: 40000; }

  .visual-events .conversation-comments-container .new-conversation-comment textarea {
    height: 80px; }

  .conversation-details .initial-comment h3 {
    padding: 5px 5px 10px 5px;
    font-size: 20px;
    margin: 0px;
    text-align: center;
    font-weight: 500;
    color: #9B9B9B; } }
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

/***********************************************************************
*
* Custom Animations for Nucleus
*
**********************************************************************/
@keyframes bar-chart {
  0% {
    height: 20px;
    background: #DD0048; }
  20% {
    height: 50px;
    background: #05B8CC; }
  40% {
    height: 32px;
    background: #DD0048; }
  60% {
    height: 75px;
    background: #05B8CC; }
  100% {
    height: 20px;
    background: #DD0048; } }
@keyframes bar-chart-white {
  0% {
    height: 20px; }
  20% {
    height: 50px; }
  40% {
    height: 32px; }
  60% {
    height: 75px; }
  100% {
    height: 20px; } }
@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fadeup-top {
  0% {
    top: 10px;
    opacity: 0; }
  100% {
    top: 0;
    opacity: 1; } }
@keyframes fadeup-bottom {
  0% {
    bottom: -10px;
    opacity: 0; }
  100% {
    bottom: 0;
    opacity: 1; } }
@keyframes slideout {
  0% {
    right: -100%; }
  100% {
    right: 0; } }
@keyframes translate-down {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0%); } }
@keyframes translate-up {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0%); } }
@keyframes glowing {
  0% {
    box-shadow: 0px 0 1px #fff; }
  50% {
    box-shadow: 0 0 5px #fff; }
  100% {
    box-shadow: 0 0 2px #fff; } }
@keyframes mobile-menu-slidein {
  0% {
    left: 100%;
    width: 90%; }
  100% {
    left: 10%;
    width: 90%; } }
@keyframes cover-menu-slidein {
  0% {
    right: -588px; }
  100% {
    right: 0px; } }
@keyframes cover-menu-slideout {
  0% {
    right: 0px; }
  100% {
    right: -588px; } }
@keyframes page-slidein {
  0% {
    right: -588px; }
  100% {
    right: 0px; } }
@keyframes mobile-cover-menu-slidein {
  0% {
    left: 100%; }
  100% {
    left: 0%; } }
@keyframes chart-config-slidein {
  0% {
    opacity: 1;
    z-index: 10000;
    right: -300px; }
  50% {
    opacity: 1; }
  100% {
    right: 0;
    opacity: 1;
    z-index: 10000;
    overflow-x: initial; } }
@keyframes ai-slidein {
  0% {
    opacity: 1;
    z-index: 10000;
    right: -500px; }
  50% {
    opacity: 1; }
  100% {
    right: 0;
    opacity: 1;
    z-index: 10000;
    overflow-x: initial; } }
@keyframes visual-editor-slidein {
  0% {
    opacity: 1;
    z-index: 10000;
    left: -300px; }
  50% {
    opacity: 1; }
  100% {
    left: 0;
    opacity: 1;
    z-index: 10000;
    overflow-x: initial; } }
@keyframes slidein {
  0% {
    opacity: 1;
    z-index: 10000;
    left: -300px; }
  50% {
    opacity: 1; }
  100% {
    left: 60px;
    opacity: 1;
    z-index: 10000;
    overflow-x: initial; } }
@keyframes selected-slidein {
  0% {
    opacity: 1;
    left: -300px; }
  50% {
    opacity: 1; }
  100% {
    left: 60px-slideout-width120px;
    opacity: 1;
    overflow-x: initial; } }
@keyframes menu-slideout {
  0% {
    left: 60px; }
  100% {
    left: -300px;
    z-index: 10000; } }
@keyframes slidein--full {
  0% {
    width: 0;
    opacity: 1;
    z-index: 10000; }
  50% {
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 1;
    z-index: 10000; } }
@keyframes raiseup {
  0% {
    box-shadow: 0 0 0 transparent;
    opacity: 0; }
  100% {
    box-shadow: 0 0 6px #BFBFBF;
    opacity: 1; } }
@keyframes revealLane {
  0% {
    height: 0;
    opacity: 0; }
  100% {
    height: 315px;
    opacity: 1; } }
@keyframes revealLane--mobile {
  0% {
    height: 0;
    opacity: 0; }
  100% {
    height: 213px;
    opacity: 1; } }
@keyframes card-scale {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(0.98); }
  100% {
    transform: scale(1); } }
@keyframes fullscreen {
  0% {
    top: 165px;
    bottom: 180px;
    left: 585px;
    right: 85px; }
  100% {
    top: 125px;
    bottom: 140px;
    left: 545px;
    right: 45px; } }
@keyframes highlight-pulse {
  0% {
    box-shadow: 0 0 0 5px rgba(86, 204, 204, 0.3), 0 0 0 0px rgba(86, 204, 204, 0); }
  20% {
    box-shadow: 0 0 0 15px rgba(86, 204, 204, 0), 0 0 0 5px rgba(86, 204, 204, 0.3); }
  60% {
    box-shadow: 0 0 0 0px rgba(86, 204, 204, 0), 0 0 0 5px rgba(86, 204, 204, 0.3); }
  100% {
    box-shadow: 0 0 0 0px rgba(86, 204, 204, 0.3), 0 0 0 5px rgba(86, 204, 204, 0.3); } }
/***************************************************
*
*  General Typography
* 
**************************************************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: "proxima-nova", sans-serif;
  /* text-transform: uppercase; */
  /* font-weight: 700; */ }

.uppercase {
  font-size: 15px;
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.capitalize {
  text-transform: capitalize; }

p,
ul,
ol,
li,
ol,
dd,
dt {
  font-family: "proxima-nova", sans-serif; }

a:hover, a:focus {
  outline: transparent; }

/***************************************************
*
*  Page Title Headings and Descriptions
* 
**************************************************/
.header-title {
  font-weight: 700;
  color: #114d72;
  /* text-transform: uppercase; */
  font-family: "proxima-nova", sans-serif !important; }
  .header-title--small {
    font-size: 1em; }
  .header-title--medium {
    font-size: 1.3em; }

.header-description {
  font-weight: 500;
  color: #747474; }

.panel-header-title {
  font-weight: 500;
  color: #114d72; }

/***************************************************
*
*  Import Fonts in for font switch on Storyboard
* 
**************************************************/
@font-face {
  font-family: 'majesti_bannerbold';
  src: url("../fonts/majesti-banner-bold-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerbold_italic';
  src: url("../fonts/majesti-banner-bolditalic-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-bolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerbook';
  src: url("../fonts/majesti-banner-book-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-book-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerbook_italic';
  src: url("../fonts/majesti-banner-bookitalic-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-bookitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerheavy';
  src: url("../fonts/majesti-banner-heavy-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-heavy-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerheavy_italic';
  src: url("../fonts/majesti-banner-heavyitalic-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-heavyitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerlight';
  src: url("../fonts/majesti-banner-light-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannerlight_italic';
  src: url("../fonts/majesti-banner-lightitalic-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-lightitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannermedium';
  src: url("../fonts/majesti-banner-medium-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'majesti_bannermedium_italic';
  src: url("../fonts/majesti-banner-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/majesti-banner-mediumitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Font Awesome 5 Pro';
  font-style: normal;
  font-weight: 400;
  src: url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.eot");
  src: url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.woff2") format("woff2"), url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.woff") format("woff"), url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.ttf") format("truetype"), url("../../bower_components/Font-Awesome/webfonts/fa-regular-400.svg#fontawesome") format("svg"); }
/*************************************************************
 *
 * Page Heading Styles
 * 
*************************************************************/
.main-content__section-header {
  background: #fff;
  box-shadow: none !important;
  font-family: "proxima-nova", sans-serif !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #e6e6e6 !important; }
  .main-content__section-header .section-header {
    font-size: 25px !important;
    line-height: 1.5;
    color: #2e6a9e !important; }
  .main-content__section-header h2 {
    font-size: 25px !important;
    line-height: 1.5;
    font-family: "proxima-nova", sans-serif !important; }

.main-content__section-header-creation {
  color: #114d72;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: none;
  padding: 20px 20px;
  border-bottom: 1px solid #e6e6e6; }
  .main-content__section-header-creation .section-header-creation {
    margin: 0px !important;
    font-size: 20px !important;
    /* text-transform: uppercase; */
    font-weight: bold;
    font-family: "proxima-nova", sans-serif !important; }

.page-heading {
  background: #fff;
  box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.59);
  color: #fff;
  padding: 8px 0px 3px;
  position: relative;
  z-index: 10;
  min-height: 51px;
  margin-top: 60px; }
  .page-heading--transparent {
    background: #fff !important;
    box-shadow: none !important;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    height: 80px !important; }
    .page-heading--transparent h1, .page-heading--transparent h2, .page-heading--transparent h3, .page-heading--transparent h4 {
      color: #114d72; }
  .page-heading h2 {
    font-size: 25px !important;
    line-height: 1.5;
    font-family: "proxima-nova", sans-serif !important; }
    .page-heading h2 a {
      color: #ddd; }
  .page-heading .h1,
  .page-heading h2,
  .page-heading h3,
  .page-heading h4,
  .page-heading h5 {
    margin: 0; }
  .page-heading a {
    color: #114d72 !important; }
  .page-heading .form-control {
    border: none;
    border-radius: 20px;
    border-box: 0;
    height: 40px;
    border: none; }
  .storyboard-creator-heading .page-heading h2 {
    text-shadow: none; }

.page-header {
  font-size: 25px !important;
  line-height: 1.5;
  font-family: "proxima-nova", sans-serif !important;
  color: #114d72; }
  .page-header--no-padding {
    padding: 0;
    margin: 0;
    border: none; }

.page-section-heading {
  font-size: 15px;
  color: #a8a8a8;
  font-weight: 500; }

/*************************************************************
 *
 * Main Branding 
 * 
*************************************************************/
.brand, .brand--lg, .brand--full, .brand--md, .brand--mobile--lg, .brand--mobile--full, .brand--mobile--md, .navbar-brand {
  background: transparent url("images/logo.correct_vue.png") no-repeat center left;
  background: transparent url("images/logo.correct_vue.svg") no-repeat center left;
  background-size: contain;
  z-index: 3; }
  .brand--lg {
    height: 50%; }
  .brand--full {
    height: 100%; }
  .brand--md {
    height: 30%;
    width: 60%; }

.brand-icon, .brand-icon--lg, .brand-icon--full, .brand-icon--md {
  background: transparent url("images/logo.correct_vue.png") no-repeat center center;
  background: transparent url("images/logo.correct_vue.svg") no-repeat center center;
  background-size: contain;
  z-index: 3; }
  .brand-icon--lg {
    height: 50%; }
  .brand-icon--full {
    height: 100%; }
  .brand-icon--md {
    height: 30%;
    width: 60%; }

.brand--mobile {
  background: transparent url("images/logo.correct_vue.png") no-repeat center left;
  background: transparent url("images/logo.correct_vue.svg") no-repeat center left;
  background-size: contain;
  z-index: 3; }
  .brand--mobile--lg {
    height: 50%; }
  .brand--mobile--full {
    height: 100%; }
  .brand--mobile--md {
    height: 30%;
    width: 60%; }

.org-icon {
  padding-top: 0px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fff; }
  .org-icon--small {
    padding-top: 0px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background: #fff;
    border: 1px solid #fff;
    position: absolute;
    top: 4px;
    left: 0; }
  .org-icon--menu {
    height: 40px !important;
    width: 40px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #fff; }
  .org-icon--active {
    height: 30px !important;
    width: 30px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #fff;
    margin-right: 6px;
    margin-top: -7px;
    float: left; }

.poweredby-icon {
  position: relative;
  bottom: -5px;
  left: 10px;
  display: inline-block;
  width: 100px;
  height: 62px;
  background: url(../../assets/images/logos/nu.powered-by.png) no-repeat center center;
  background-size: contain;
  opacity: .5;
  z-index: 10000000; }

/*************************************************************
 *
 * Navigation Bar and Links
 * 
*************************************************************/
.navbar-nav .open .dropdown-menu {
  border: 1px solid #ccc !important; }

.navbar-default {
  border-radius: 0;
  -ms-border-radius: .navbar-default radius;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #67539B;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #67539B), color-stop(100%, #bcb2d6));
  background-image: -webkit-linear-gradient(left, #67539B, #bcb2d6);
  background-image: linear-gradient(to right,#67539B, #bcb2d6);
  border: none;
  margin-bottom: 0;
  min-height: 0;
  width: 100%;
  z-index: 100002;
  top: 0;
  transition: background 2s; }
  .navbar-default.presentation {
    display: none; }

.navbar-brand {
  display: inline-block !important;
  background-size: auto 75%;
  text-indent: -1000px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin-left: 5px !important;
  margin-top: 10px !important;
  width: 30px;
  height: 40px; }
  .navbar-brand--extended {
    width: 220px; }

.navbar-nav {
  position: relative;
  z-index: 3; }

.organization-name-container {
  width: 60px; }

.dropdown-toggle {
  position: relative; }
  .dropdown-toggle .organization-name {
    font-family: "classico-urw", sans-serif;
    position: absolute;
    vertical-align: middle;
    width: 170px !important;
    height: 60px !important;
    -webkit-transform: translate(65px, -60px);
    transform: translate(65px, -60px);
    padding-top: 5px; }

.navbar-default .navbar-nav > li > a {
  border-left: none;
  color: #fff;
  font-size: 18px;
  font-family: "proxima-nova", sans-serif;
  padding-top: 15px;
  padding-bottom: 15px; }
  .navbar-default .navbar-nav > li > a:hover {
    color: #F69323; }
  @media only screen and (max-width: 420px) {
    .navbar-default .navbar-nav > li > a {
      font-size: 14px; } }

.navbar-default .navbar-nav > li:last-of-type > a {
  border-left: none; }
  .navbar-default .navbar-nav > li:last-of-type > a:hover {
    color: #F69323; }

.bottom-bar {
  display: none; }

.bottom-bar .bottom-bar__content > .open > a,
.bottom-bar .bottom-bar__content > .open > a:hover,
.bottom-bar .bottom-bar__content > .open > a:focus,
.bottom-bar .bottom-bar__content > .active > a,
.bottom-bar .bottom-bar__content > .active > a:hover,
.bottom-bar .bottom-bar__content > .active > a:focus {
  background: #383838;
  color: #56CCCC;
  /*      &:before{
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50%;
          height: 5px;
          background:  $new-color-2;   
          transform: translate(45%,10px);
      } */ }

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: #383838;
  color: #fde7ce; }
  .navbar-default .navbar-nav > .open > a:before,
  .navbar-default .navbar-nav > .open > a:hover:before,
  .navbar-default .navbar-nav > .open > a:focus:before,
  .navbar-default .navbar-nav > .active > a:before,
  .navbar-default .navbar-nav > .active > a:hover:before,
  .navbar-default .navbar-nav > .active > a:focus:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #56CCCC;
    /* transform: translate(50px,-40px); */ }

.navbar-collapse.in, .navbar-collapse .navbar-nav {
  background: #transparent; }

.navbar-org {
  background-color: #EEEEEE; }

.navbar-org .navbar-nav > li > a {
  padding: 5px; }

.navbar-org .navbar-nav {
  background-color: white;
  z-index: 2; }

.navbar-config {
  float: left;
  display: none; }
  .navbar-config ul {
    margin-top: 0;
    margin-bottom: 0; }
  .navbar-config li {
    cursor: pointer;
    height: 100%;
    padding: 15px 20px;
    margin: 0;
    background: #CF3333;
    color: #fff; }
    .navbar-config li:hover {
      background: #7e1e1e; }

.navbar-toggle {
  position: relative;
  float: left;
  padding: 18px 15px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 4px;
  border-right: 1px solid #000;
  border-radius: 0; }

.top-nav-bar {
  background-color: #13334D;
  height: 40px;
  position: relative;
  z-index: 5; }
  .top-nav-bar li > a {
    padding: 9px 15px !important; }

.organization-selector-container {
  margin-left: -15px;
  padding-right: 167px;
  height: 60px; }
  .organization-selector-container .dropdown-toggle {
    position: static; }

.organization-selector .dropdown-menu {
  overflow-y: auto;
  max-height: 80vh; }

.org-name {
  padding-left: 7px; }

.group-display.active {
  color: #F69323;
  font-weight: 500; }

.button-group, .button-group-flat {
  background: transparent;
  border-color: transparent;
  display: flex;
  border-radius: 4px; }
  .button-group .button, .button-group-flat .button {
    flex-grow: 1;
    overflow: hidden;
    border: 1px solid #ECECEC;
    color: #959595 !important; }
  .button-group .button-bar-filter, .button-group-flat .button-bar-filter {
    border-color: #7d7d7d;
    background-color: #fff;
    color: #686868 !important; }
    .button-group .button-bar-filter:hover, .button-group .button-bar-filter:focus, .button-group-flat .button-bar-filter:hover, .button-group-flat .button-bar-filter:focus {
      background: #ccefef !important; }
    .button-group .button-bar-filter.active, .button-group-flat .button-bar-filter.active {
      background: #91dede !important; }
  .button-group .button:only-of-type, .button-group-flat .button:only-of-type {
    border-radius: 4px; }
  .button-group .button-border.button-primary.active, .button-group .button-primary.active.button-border-thin, .button-group .button-primary.active.button-border-thick, .button-group-flat .button-border.button-primary.active, .button-group-flat .button-primary.active.button-border-thin, .button-group-flat .button-primary.active.button-border-thick {
    color: #fff !important; }
  .button-group .button-bar-filter, .button-group-flat .button-bar-filter {
    padding: 0 !important; }
  .button-group .button-bar-filter:first-child, .button-group .button-bar-filter:first-child, .button-group-flat .button-bar-filter:first-child, .button-group-flat .button-bar-filter:first-child {
    padding: 0 15px !important; }
  .button-group .button-bar-filter span, .button-group-flat .button-bar-filter span {
    overflow: hidden;
    display: inline-block;
    width: 100%; }

.button-bar-filter.button-small {
  padding: 0 6px; }

.button.disabled {
  pointer-events: none; }

.button-border, .button-border-thin, .button-border-thick {
  background: #fff; }

/*************************************************************
 *
 * Global Styles for iseek nucleus
 * 
*************************************************************/
html,
body {
  background: #fff;
  height: 100%;
  font-family: "proxima-nova", sans-serif !important;
  width: 100%; }

body.login {
  background: transparent url("images/login.brown-desktop.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100%;
  height: auto; }

.h1, .h2, .h3, .h4, .h5 {
  color: #114d72; }

.no-shadow {
  box-shadow: none; }

.editable-field {
  display: inline-block;
  padding-bottom: 1px;
  border-bottom: 1px dotted #868686;
  transition: all .4s ease-out; }
  .editable-field i {
    color: #868686;
    transition: all .4s ease-out; }
  .editable-field:hover {
    border-color: #CF3333; }
    .editable-field:hover i {
      color: #CF3333; }

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  background-color: transparent;
  /* padding-top: 15px; */ }

.step-badge {
  padding: 5px 12px;
  display: inline-block;
  border: 2px solid  #9D9D9D;
  color: #9D9D9D;
  border-radius: 100%;
  font-size: .8em !important;
  vertical-align: middle;
  margin-bottom: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
  position: relative;
  font-weight: 500;
  /**&:after{
      content: '';
      position: absolute;
      @include triangle(21px, #D23A3D, right);
      top: 50%;
      transform: translateY(-50%);
      right: -16px;
  }**/ }
  .step-badge--white {
    background: #fff;
    border: none; }
  .step-badge--small {
    padding: 3px 8px; }

a {
  color: #114d72; }
  a:hover {
    text-decoration: none; }

.select-filter {
  height: 30px;
  padding: 5px 10px;
  width: 100%;
  display: inline-block;
  line-height: 1em;
  max-width: 100%; }

.powered-by {
  width: 200px;
  height: 15px;
  background: url("../../assets/images/logos/logo.iseek.powered_by.png") no-repeat center left;
  overflow: hidden;
  text-indent: -1000px;
  background-size: contain;
  display: block;
  filter: grayscale(90%);
  opacity: .3; }

.alert-board-lane {
  color: #ddd !important;
  font-weight: 500 !important; }

.avatar-thumbnail--active-group {
  margin-left: -5px !important;
  margin-right: -5px !important; }

.group-dropdown {
  font-size: 16px !important;
  line-height: 16px !important; }

.trial-bar {
  width: 100%;
  height: 25px;
  background: #fff;
  text-align: center;
  padding: 3px 0;
  font-weight: 500;
  display: none;
  color: #373737;
  font-size: 12px;
  display: none; }
  .trial-bar.active {
    display: block; }
  .trial-bar--warning {
    background: #FEAE1B; }
  .trial-bar--danger {
    background: #FF4351;
    color: #fff; }
  .trial-bar .upgrade-button {
    padding: 1px 15px;
    color: #373737;
    background: #fff;
    border-radius: 20px;
    margin: 0 10px;
    font-weight: 700; }

.show-trial-bar .content {
  top: 85px; }
.show-trial-bar .side-menu {
  top: 85px; }
.show-trial-bar .storyboard--list {
  top: 160px; }
.show-trial-bar.page-wrapper .storyboard--list--with-tabs {
  top: 180px; }
.show-trial-bar .main-content {
  height: calc(100vh - 85px);
  top: 85px; }
.show-trial-bar .page-heading {
  margin-top: 85px; }
.show-trial-bar .settings-page {
  margin-top: 25px; }

.side-menu {
  /* background: $background-lighter-grey !important; */
  background: #fff !important;
  border-right: 1px solid #e6e6e6 !important; }
  .side-menu__option-label {
    padding-left: 10px; }
    .side-menu__option-label--sub {
      padding-left: 42px !important; }
    .side-menu__option-label--support-text {
      font-size: 12px;
      padding-left: 10px;
      display: inline-block;
      top: 15px;
      position: relative;
      color: #747474; }
  .side-menu__option-icon {
    width: 25px;
    display: inline-block;
    position: relative; }
    .side-menu__option-icon .badge {
      font-size: 9px;
      padding: 3px;
      top: -6px;
      right: -6px;
      position: absolute; }
    .show-trial-bar .side-menu__option-icon .badge.badge--success {
      background-color: #FEAE1B !important; }

.alert-warning .alert-link:focus, .alert-warning .alert-link:hover {
  text-decoration: underline !important; }

.button-34 {
  line-height: 35px;
  height: 35px;
  font-size: 14px;
  padding-right: 35px;
  padding-left: 35px; }

.setting-table {
  font-size: 14px;
  padding: 8px 10px !important;
  text-transform: capitalize; }
  .setting-table__title {
    color: #2e6a9e !important;
    /* text-transform: uppercase !important; */ }
  .setting-table__header {
    font-weight: normal; }
  .setting-table--range {
    line-height: 1.0em;
    vertical-align: middle; }
  .setting-table .avatar-container {
    position: relative;
    left: initial;
    transform: none;
    bottom: initial !important;
    bottom: -10px !important;
    position: relative !important; }

.inner-sidemenu {
  padding-top: 0px !important;
  min-height: 100% !important; }

.inner-sidemenu__menu ul li a {
  height: 60px !important;
  width: 240px !important;
  font-size: 16px !important; }

/*************************************************************
 *
 * Storyboard Embedded Styling
 * 
*************************************************************/
.storyboard-embedded {
  top: 60px; }
  .storyboard-embedded .storyboard-actions__pagination {
    top: 0px;
    left: 0px;
    padding: 0;
    z-index: 1000; }
  .storyboard-embedded.storyboard-viewer {
    top: 10px !important;
    bottom: 50px !important; }
  .storyboard-embedded .storyboard-actions__pagination, .storyboard-embedded .storyboard-actions__main-title {
    position: absolute;
    top: -60px;
    left: 120px !important;
    right: 120px !important;
    z-index: 1000; }
  .storyboard-embedded .info-bar {
    bottom: -6px; }
  .storyboard-embedded .storyboard-page-body {
    padding: 0px 125px;
    margin-bottom: 30px; }
  .storyboard-embedded .poweredby-icon {
    position: fixed; }
  .storyboard-embedded.fixed-ratio-view.view-mode--stretch .storyboard-actions__main-title {
    top: 0 !important; }
  .storyboard-embedded.fixed-ratio-view.view-mode--stretch .storyboard-page-body {
    top: 60px !important; }

.storyboard-tag {
  float: right;
  height: 55px;
  width: 63.36px;
  position: relative;
  z-index: 5; }

.list-table {
  background-color: #FCFCFC; }
  .list-table:hover {
    background-color: #b9e4f0; }

.list-create-storyboard {
  background-color: #fff; }
  .list-create-storyboard:hover {
    /* box-shadow: 0px 0px 10px #d5d5d5; */
    background-color: #FBFDFF;
    color: #0098A0; }
  .list-create-storyboard__content {
    color: #F69323;
    font-size: 1.0em;
    font-weight: 500;
    border: 1px solid #F69323;
    border-radius: 4px;
    padding: 10px 30px 10px 30px !important;
    background: #fff; }
    .list-create-storyboard__content:hover {
      /* box-shadow: 0px 0px 10px #d5d5d5; */
      border: 1px solid #0098A0;
      background-color: #FBFDFF;
      color: #0098A0; }
  .list-create-storyboard__spacing {
    height: 10px; }

.size-20 {
  font-size: 20px; }

.button-borderless {
  color: #9f9f9f; }

.button-borderless:hover, .button-borderless:focus {
  color: #3A84C5 !important; }

/*************************************************************
 *
 * Expired Session Styling
 * 
*************************************************************/
.modal-body {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

/*************************************************************
 *
 * Storyboard Edit mode Styling
 * 
*************************************************************/
.button-borderless.button-inverse {
  color: #9f9f9f; }

.button-gray {
  color: #37B3D3 !important; }

.button-white {
  color: #fff !important; }

.button-sb-config {
  font-size: 18px;
  margin-right: 0 !important; }

.button-18 {
  font-size: 18px !important; }

.storyboard .editing .storyboard-actions__pagination {
  box-shadow: none; }

.page-storyboards-edit .navbar {
  display: none; }

/*************************************************************
 *
 * Storyboard Preview mode Styling
 * 
*************************************************************/
.btn-separator {
  content: ' ';
  display: block;
  float: left;
  background: #EEE;
  margin: 0 5px;
  height: 35px;
  width: 2px; }

.button-follow {
  margin-right: 0px;
  margin-left: 15px; }

/* .button-present:before {
    content: ' ';
    display: block;
    float: left;
    background: #EEE;
    margin: 0 10px;
    height: 35px;
    width: 3px;
} */
html, body {
  background-color: #F1F1F1; }

/* .storyboard-editor, .storyboard-viewer {
    background-color: $background-light-grey !important;
} */
.page-storyboards-view .navbar {
  display: none; }

.page-storyboards-view .main-content {
  top: 0px; }

/* 
.viewer__board .storyboard-header, .viewer__board .nested-page-nav {
    background-color:#ddd !important;
} */
.storyboard-feature-bar {
  background: #fafafa;
  height: 80px; }

/*************************************************************
 *
 * Library Visual Edit 
 * 
*************************************************************/
.page-viz-edit .viz-container.editableTitle .viz-inner-container.groupedTable {
  top: 0px; }
.page-viz-edit .groupedTable .table-title {
  display: none; }
.page-viz-edit .viz-title-editor input {
  z-index: 100;
  position: relative; }
.page-viz-edit .viz-body .viz-outer-container {
  bottom: 0px; }
.page-viz-edit .viz-toolbar {
  height: 51px;
  padding: 10px 15px;
  background: #fff;
  position: fixed;
  left: 0;
  bottom: initial;
  right: 0;
  top: 60px;
  z-index: 30000; }

/*************************************************************
 *
 * Folder Storyboard View Styling 
 * 
*************************************************************/
.folder-storyboard-container {
  /*     min-height: 100px;
      border: 1px solid #ddd;
      margin: 20px 10px;
      border-radius: 3px;
      padding: 10px; */ }
  .folder-storyboard-container:first-of-type {
    margin-top: 20px; }

.folder-storyboard-list-container {
  margin-bottom: 20px; }
  .folder-storyboard-list-container:first-of-type {
    margin-top: 20px; }

.folder-storyboard-container .folder-title {
  position: relative;
  /*     left:15px;
      top:-5px; */
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  /* text-transform: uppercase;  */
  color: #9B9B9B;
  /*  margin-top: 10px; */ }

.visual-selector-inner .folder-title {
  left: 10px;
  background: #fff;
  font-size: 16px;
  font-weight: bolder;
  color: #2b8dcd;
  border-bottom: 1px solid #ddd; }

.embed-storyboard-list-folders .folder-title {
  left: 10px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  /*     font-weight: bolder;
      color: #2b8dcd;
      border-bottom: 1px solid #ddd; */
  /* text-transform: uppercase; */
  color: #9B9B9B;
  /*     margin-top:10px;   */ }

.folder-button-group {
  /*     position: absolute;
      right: 30px;
      top: -10px; */
  /*     position: relative;
      display: inline-block; */
  top: 10px; }

.folder-add-storyboard,
.folder-add-visual {
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  width: 35px !important;
  height: 35px !important;
  line-height: 35px !important; }

.folder-storyboard-container .folder-option-button,
.folder-storyboard-list-container .folder-option-button {
  width: 150px; }

.folder-storyboard-container .folder-option-button.active,
.folder-storyboard-list-container .folder-option-button.active {
  background: #17a9e7;
  color: #fff; }

.folder-storyboard-container .folder-option-dropdown,
.folder-storyboard-list-container .folder-option-dropdown {
  list-style-type: none;
  background: #f0f0f0;
  padding: 0px;
  position: absolute;
  left: -40px;
  width: 150px;
  z-index: 2;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd; }

.folder-storyboard-container .folder-option-dropdown li,
.folder-storyboard-list-container .folder-option-dropdown li {
  padding: 0px 20px;
  border-bottom: 1px solid #fff;
  color: #666; }

.folder-storyboard-container .folder-option-dropdown li:hover,
.folder-storyboard-list-container .folder-option-dropdown li:hover {
  background: #99dbf8; }

.folder-storyboard-tile-container {
  /*     margin-left:10px;
      margin-top:30px; */
  min-height: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 5px 0px 5px 0px;
  background-color: #FCFCFC;
  padding: 0px 20px 15px 20px;
  /*     border-radius: 3px;
      padding: 10px; */ }

/*************************************************************
 *
 * Mobile View Styling
 * 
*************************************************************/
input[type="radio"], input[type="checkbox"] {
  margin: 0px; }

.admin-dot {
  font-size: 10px !important;
  color: #48d2a0; }

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  /*  background-color : black; */ }

.navbar-nav {
  margin: 0px !important; }

.navbar-collapse {
  border-top: none; }

.navbar-default .navbar-toggle {
  border-color: rgba(221, 221, 221, 0); }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: white; }

.avatar-thumbnail--active-group {
  margin-left: -5px !important;
  margin-right: 0px !important; }

.dropdown-menu {
  padding: 0px 0px !important; }

.dataset-cover__title {
  text-align: center;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  position: relative;
  width: 80%;
  font-size: 1.7rem;
  color: #3A84C5; }

.nucleus-tabs--tab.active {
  color: #3A84C5 !important; }

.nucleus-tabs--tab {
  border-top: 1px solid #EBEBEB; }
  .nucleus-tabs--tab.active:before {
    background: #F69323 !important;
    height: 0px !important; }

.storyboard-cover__top:after {
  background: #F9F9FB !important; }
.storyboard-cover__link {
  color: #747474 !important; }
.storyboard-cover__title {
  text-align: center;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  position: absolute;
  width: 80%;
  bottom: initial;
  top: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: none;
  background: transparent;
  border-radius: 10px;
  font-size: 1em;
  text-shadow: none;
  color: #3A84C5 !important; }
.storyboard-cover__layout {
  box-shadow: 0px 0px 10px #9f9f9f !important;
  width: 250px !important;
  height: 170px !important;
  top: 25%; }
.storyboard-cover__button-row .row-button {
  color: #3A84C5 !important; }

/* .storyboard-cover__top:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: $background-light-grey;
} */
/*************************************************************
 *
 * User Dash/Landing Page 
 * 
*************************************************************/
.dataset-overview {
  box-shadow: 1px 0px 5px #000 inset;
  background: transparent url("images/login.brown-desktop.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  padding: 120px 0; }
  .dataset-overview h1,
  .dataset-overview h2,
  .dataset-overview h3,
  .dataset-overview h4,
  .dataset-overview h5 {
    color: #ffffff; }

.dataset-search {
  background: #F4F4F4 url("../../assets/images/worn-dots.png");
  padding: 30px 0; }

/*************************************************************
 *
 * Circle Dials
 * 
*************************************************************/
.circle-dial, .circle-dial--lg, .circle-dial--md, .circle-dial--sm {
  border-radius: 50%;
  -ms-border-radius: .circle-dial radius;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  box-shadow: 0px 0px 4px #000;
  border: 5px solid #000;
  display: inline-block;
  height: 50px;
  position: relative;
  width: 50px; }
  .circle-dial--lg {
    height: 200px;
    width: 200px; }
  .circle-dial--md {
    height: 150px;
    width: 150px; }
  .circle-dial--sm {
    height: 50px;
    width: 50px; }
  .circle-dial.alert, .alert.circle-dial--lg, .alert.circle-dial--md, .alert.circle-dial--sm {
    border-color: #fc3f52;
    background: #fff; }
  .circle-dial__text {
    display: inline-block;
    font-size: 3em;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center; }

.activity-row {
  box-shadow: 0px 1px 2px #d6d6d6;
  border: 1px solid #FAF35E;
  font-size: 1.1em;
  margin-bottom: 5px;
  padding-left: 10px; }
  .activity-row__date {
    background: #fff;
    padding: 22px 0;
    padding: 15px 0;
    position: relative;
    display: inline-block;
    font-weight: 500; }
  .activity-row__content {
    color: #242424;
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    padding: 15px 15px;
    display: inline-block; }
  .activity-row__score {
    background: #e7e7e7;
    font-size: 1.7em;
    padding: 22px 0;
    display: inline-block; }

/*************************************************************
 *
 * Dataverse View
 *  
*************************************************************/
.edit_link {
  display: none;
  position: relative; }

.dataset-container {
  /* background: transparent url('../../assets/images/5D50AWZ696.jpg') no-repeat center;   */
  background-size: cover;
  position: absolute;
  overflow-y: auto;
  width: 100%;
  top: 60px;
  bottom: 0;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 80px !important; }

.dataset-row {
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  border-bottom: 1px solid #e6e6e6;
  clear: both;
  color: #747474;
  overflow-x: hidden;
  padding: 20px 0;
  /* background: transparent url('../../assets/images/nucleus_arrow_next.svg') no-repeat 97% center; */
  background-size: auto 40%; }
  .dataset-row.active, .dataset-row:hover {
    background-color: rgba(76, 174, 239, 0.1); }
  .dataset-row__image {
    border-radius: 50%;
    -ms-border-radius: .dataset-row__image radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 1px 1px 2px #000;
    background: #fff url("../../assets/images/in.dataset-placeholder.png") no-repeat center;
    margin: 0 auto;
    height: 150px;
    width: 150px;
    position: relative;
    overflow: hidden;
    text-align: center; }
    .dataset-row__image img {
      display: inline-block;
      border-radius: 50% !important;
      -ms-border-radius: .dataset-row__image img radius;
      -moz-border-radius: 50% !important;
      -webkit-border-radius: 50% !important;
      box-shadow: 0px 0px 3px #000; }
    .dataset-row__image .private {
      left: 0;
      color: #7e1e1e;
      position: absolute;
      text-align: center;
      width: 100%;
      font-size: 8em;
      opacity: 0.7;
      text-shadow: 0px 0px 15px #000; }
  .dataset-row__actions {
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    opacity: 0; }
  .dataset-row:hover .dataset-row__actions {
    opacity: 1; }
  .dataset-row > div {
    outline: none; }

/*************************************************************
 *
 * Results Preview Pane
 * 
*************************************************************/
.results-preview {
  animation-name: slideout;
  background: #fff;
  bottom: 0px;
  box-shadow: -1px 1px 20px #e6e6e6;
  color: #464646;
  overflow-x: hidden;
  padding: 0 10px 10px;
  position: fixed;
  right: 0;
  top: 60px;
  width: 50%;
  animation-duration: .4s;
  animation-fill-mode: forward;
  animation-timing-function: ease-in-out;
  z-index: 10; }
  .results-preview__title {
    clear: both;
    color: #464646;
    padding: 5px 0;
    text-align: center; }
    .results-preview__title h1,
    .results-preview__title h2,
    .results-preview__title h3,
    .results-preview__title h4,
    .results-preview__title h5 {
      margin: 0px; }
  .results-preview__data-table {
    clear: both;
    color: #464646;
    position: absolute;
    top: 180px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0px 20px 20px 20px; }
    .results-preview__data-table .visual {
      position: absolute;
      height: 100%;
      width: 100%;
      overflow: initial; }
  .results-preview__header-actions {
    background: #fafafa;
    /* box-shadow: 1px 1px 1px #F3F3F3; */
    box-sizing: border-box;
    padding: 13px 0; }
    .results-preview__header-actions h1,
    .results-preview__header-actions h2,
    .results-preview__header-actions h3,
    .results-preview__header-actions h4,
    .results-preview__header-actions h5 {
      margin: 0px; }
    .results-preview__header-actions h3 {
      color: #3A84C5 !important; }
    .results-preview__header-actions a {
      color: #747474 !important; }

/*************************************************************
 *
 * Dataset Visual Gallery //Needs Clean up
 * 
*************************************************************/
.gallery-row {
  padding: 25px 0;
  box-shadow: 0 -1px 15px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #7f98aa;
  background-size: cover; }
  .gallery-row:nth-of-type(0n+0) {
    background-color: #0d1c31; }
  .gallery-row:nth-of-type(1n+0) {
    background-color: #183359; }
  .gallery-row:nth-of-type(2n+0) {
    background-color: #224a82; }
  .gallery-row:nth-of-type(3n+0) {
    background-color: #2d61aa; }
  .gallery-row:nth-of-type(4n+0) {
    background-color: #3e79cc; }
  .gallery-row__title {
    color: #fff;
    font-family: "proxima-nova", sans-serif;
    font-size: 2em;
    font-weight: 500;
    margin: 0 20px 10px;
    padding: 5px 0;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .gallery-row__title > a {
      color: #fff; }

.visual-list, .visual-list-all {
  background: #0D1C31;
  bottom: 0px;
  overflow: auto;
  position: absolute;
  top: 123px;
  width: 100%; }
  .visual-list ul[rn-carousel] > li, .visual-list-all ul[rn-carousel] > li {
    width: 25%;
    padding: 10px; }
  .visual-list-all {
    padding: 15px; }

.visual-thumbnails__container {
  margin-top: 7px;
  margin-bottom: 7px; }
.visual-thumbnails__platform {
  height: 100%;
  padding: 10px;
  box-shadow: 0px 0px 10px #000; }
.visual-thumbnails__actions {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in; }
  .visual-thumbnails__actions:hover {
    opacity: 1; }
.visual-thumbnails__view-container {
  height: 100%; }
.visual-thumbnails__name {
  color: #fff;
  font-size: 1.1em;
  font-family: "proxima-nova", sans-serif;
  position: absolute;
  padding: 5px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2; }

.action-container {
  border-radius: 10px;
  -ms-border-radius: .action-container radius;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0px 0px 5px #7F7F7F;
  background: #EEEEEE;
  display: inline-block;
  padding: 3px; }

.visual-list viz.viz-thumbnail, .visual-list-all viz.viz-thumbnail {
  box-shadow: 0 0 5px #000;
  display: inline-block;
  height: 100%;
  width: 100%; }

.visual-list-all viz.viz-thumbnail {
  height: 100%;
  width: 100%;
  display: block; }

.visual-view-all a {
  color: #fff;
  text-decoration: none; }

.rn-carousel-control.rn-carousel-control-next,
.rn-carousel-control.rn-carousel-control-prev {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: #fff;
  font-weight: 500;
  height: 100%;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 40px;
  z-index: 1; }
  .rn-carousel-control.rn-carousel-control-next:after,
  .rn-carousel-control.rn-carousel-control-prev:after {
    content: ''; }
  .rn-carousel-control.rn-carousel-control-next:before,
  .rn-carousel-control.rn-carousel-control-prev:before {
    content: ''; }
  .rn-carousel-control.rn-carousel-control-next:hover,
  .rn-carousel-control.rn-carousel-control-prev:hover {
    background-size: 15px auto; }

.rn-carousel-control.rn-carousel-control-next {
  background: #122845 url("../../assets/images/nucleus_arrow_next.svg") no-repeat center;
  background-size: 10px auto;
  right: 0; }

.rn-carousel-control.rn-carousel-control-prev {
  background: #122845 url("../../assets/images/nucleus_arrow_prev.svg") no-repeat center;
  background-size: 10px auto;
  left: 0; }

/*************************************************************
*
* Suggestion Picker and Suggestion Blocks
*
*************************************************************/
.suggestion-picker {
  height: auto;
  position: fixed;
  text-align: center;
  width: calc(100% - 60px - 300px);
  z-index: 10000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(calc(-50% + 0px)) translateX(calc(-50% + 150px));
  -moz-transform: translateY(calc(-50% + 0px)) translateX(calc(-50% + 150px));
  -ms-transform: translateY(calc(-50% + 0px)) translateX(calc(-50% + 150px));
  -o-transform: translateY(calc(-50% + 0px)) translateX(calc(-50% + 150px));
  transform: translateY(calc(-50% + 0px)) translateX(calc(-50% + 150px)); }
  .suggestion-picker .current {
    opacity: 1; }
    .suggestion-picker .current:after {
      content: '';
      width: 100%;
      height: 100%;
      background: transparent;
      border: 3px solid #ffcc00;
      position: absolute;
      top: 0;
      left: 0; }
    .suggestion-picker .current:before {
      background: #ffcc00;
      border-radius: 100%;
      box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.17);
      color: #000;
      content: '\f00c';
      font-family: 'Font Awesome 5 Pro';
      left: -5px;
      padding: 9px;
      position: absolute;
      top: -5px;
      z-index: 2; }
  .suggestion-picker .viz-container .groupedTable {
    background: url("../../assets/images/nucleus.table.png") no-repeat center center;
    background-size: contain; }
    .suggestion-picker .viz-container .groupedTable #tableContainer {
      display: none; }
  .suggestion-picker .suggested-chart {
    -webkit-animation: fadeup-bottom 0.4s ease-in;
    -moz-animation: fadeup-bottom 0.4s ease-in;
    animation: fadeup-bottom 0.4s ease-in;
    animation-fill-mode: forwards;
    border-radius: 2px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    display: inline-block;
    height: 150px;
    margin: 5px;
    opacity: 0;
    position: relative;
    transition: all .4s ease-out;
    width: 225px;
    z-index: 10000;
    background: #fff;
    /* Large Devices, Wide Screens */ }
    .suggestion-picker .suggested-chart .loading-indicator {
      display: none; }
    .suggestion-picker .suggested-chart .headline-caption {
      font-size: .8vw; }
    .suggestion-picker .suggested-chart .headline .headline-value {
      color: #4F4F4F;
      display: inline-block;
      font-family: "Oswald", sans-serif;
      font-size: 2.8vw;
      font-weight: 500;
      font-weight: 500;
      height: 75%;
      position: absolute;
      position: relative;
      top: 25%;
      width: 100%; }
      .suggestion-picker .suggested-chart .headline .headline-value:before {
        color: #4F4F4F;
        content: '';
        height: 3px;
        left: 50%;
        position: absolute;
        top: 0;
        transform: translateX(-50%);
        width: 20%; }
    .suggestion-picker .suggested-chart .headline .headline-caption {
      color: #5F5F5F;
      display: block;
      font-size: 1vw;
      font-weight: 500;
      height: 25%;
      position: absolute;
      top: 0;
      vertical-align: middle;
      width: 100%; }
    .suggestion-picker .suggested-chart .headline .headline-value span,
    .suggestion-picker .suggested-chart .headline .headline-caption span {
      display: inline-block;
      left: 0;
      /* width: 100%; */
      text-overflow: ellipsis;
      overflow: hidden;
      width: 90%;
      white-space: nowrap; }
    .suggestion-picker .suggested-chart-title {
      color: #fff;
      font-size: 1.1em;
      font-weight: 500;
      outline: none !important; }
    .suggestion-picker .suggested-chart:nth-of-type(2) {
      animation-delay: .2s; }
    .suggestion-picker .suggested-chart:nth-of-type(3) {
      animation-delay: .3s; }
    .suggestion-picker .suggested-chart:nth-of-type(4) {
      animation-delay: .4s; }
    .suggestion-picker .suggested-chart:nth-of-type(5) {
      animation-delay: .5s; }
    .suggestion-picker .suggested-chart:nth-of-type(6) {
      animation-delay: .6s; }
    .suggestion-picker .suggested-chart:nth-of-type(7) {
      animation-delay: .7s; }
    .suggestion-picker .suggested-chart:nth-of-type(8) {
      animation-delay: .8s; }
    .suggestion-picker .suggested-chart:nth-of-type(9) {
      animation-delay: .9s; }
    .suggestion-picker .suggested-chart:hover {
      opacity: 1;
      transform: scale(1.02); }
    @media only screen and (max-width: 1200px) {
      .suggestion-picker .suggested-chart {
        height: 150px;
        width: 150px; } }
  .suggestion-picker visual {
    position: relative;
    width: auto;
    height: auto; }
  .suggestion-picker .viz-container {
    pointer-events: none;
    position: relative; }

/*************************************************************
 *
 * Super Simple Charting Styles
 * 
*************************************************************/
.aspect__selected-multiselect {
  display: flex;
  background: #efefef; }
  .aspect__selected-multiselect .multiselect-content {
    flex-grow: 1;
    align-self: center; }
  .aspect__selected-multiselect .multiselect-icon {
    align-self: center;
    padding: 0 8px;
    opacity: 0;
    left: -2px;
    position: relative;
    transition: all .2s ease-out; }
  .aspect__selected-multiselect:hover .multiselect-icon, .aspect__selected-multiselect:focus .multiselect-icon {
    opacity: 1;
    left: 0px;
    color: #1B7DD2;
    position: relative; }

/*************************************************************
 *
 * Super Simple Charting Styles
 * 
*************************************************************/
.angucomplete-dropdown {
  width: 100%;
  max-height: 200px;
  overflow-y: scroll; }

.measure-list.simple,
.field-list.simple,
.filter-field-list.simple {
  position: absolute;
  /**margin-left: 100%;**/
  width: 200px;
  /* *top: 40px; **/
  top: 240px;
  bottom: 240px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px; }

.simple .dialog-container-inner {
  overflow-x: hidden;
  position: absolute;
  right: 5px;
  left: 5px;
  width: auto;
  bottom: 10px;
  top: 60px; }

.simple .dialog-pane-container--x2.slide {
  overflow-y: hidden; }

.simple .dialog-maincontent,
.simple .maincontent-options,
.dialog-container-inner.simple .dialog-pane,
.simple .dialog-pane-container--x2.slide {
  height: 100%; }

ul.maincontent-options li a:hover, ul.maincontent-options li.active a, ul.measure-type-options li a:hover, ul.measure-type-options li.active a {
  background: initial !important; }

.sidebar--modal.show-selected ul.maincontent-options li a:hover, .sidebar--modal.show-selected ul.maincontent-options li.active a, .sidebar--modal.show-selected ul.measure-type-options li a:hover, .sidebar--modal.show-selected ul.measure-type-options li.active a {
  background: #5de3c8 !important; }
.sidebar--modal.show-selected .dialog-container-inner.simple {
  bottom: 0; }

.simple .dialog-maincontent {
  width: 100%; }

.field-list.simple .dialog-container-inner {
  bottom: 45px; }

.date-filter-dialog {
  border-radius: 8px;
  background: #f2f2f2;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  z-index: 3;
  margin-top: 30px;
  /**&:before{
          content: '';
          top: -30px; 
          left: 50px;  
          position: absolute;
          @include triangle(30px, #f2f2f2, up);
  }**/ }
  .date-filter-dialog:focus, .date-filter-dialog:active {
    outline: none; }
  .date-filter-dialog label {
    color: #000;
    font-size: .9em; }
  .date-filter-dialog select, .date-filter-dialog input {
    display: inline-block; }
  .modal-body .date-filter-dialog {
    left: 35%;
    position: fixed;
    top: 200px;
    z-index: 30000; }
    .modal-body .date-filter-dialog:before {
      content: none; }
    .modal-body .date-filter-dialog:after {
      background: rgba(0, 0, 0, 0.4);
      bottom: 0;
      content: '';
      left: 0;
      pointer-events: all;
      position: fixed;
      right: 0;
      top: 0;
      z-index: -30; }

.dialog__quick-select {
  border-bottom: 1px solid #dedddd;
  border-radius: 8px 8px 0 0;
  color: #000;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  overflow: hidden;
  padding: 0px; }
  .dialog__quick-select button {
    background: #F2F2F2;
    border-right: 1px solid #dedddd;
    border: none;
    color: #000;
    flex-grow: 1;
    font-family: "proxima-nova", sans-serif;
    font-size: .9em;
    font-weight: 500;
    padding-bottom: 15px;
    padding-top: 15px;
    transition: all .4s ease-out; }
    .dialog__quick-select button:hover {
      background: #fff; }
    .dialog__quick-select button:last-of-type {
      border-right: none; }
.dialog__row {
  background: #f2f2f2;
  border-bottom: 1px solid #dedddd;
  padding: 10px 10px;
  transition: all .2s ease-out;
  vertical-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap; }
  .dialog__row.active {
    border-left: 5px solid #47a2da;
    background: #fff; }
  .dialog__row:hover {
    background: #fff; }
.dialog__row .date input {
  font-size: 0.8em; }
.dialog__row-label, .dialog__row-input {
  display: inline-block;
  margin-bottom: 0; }
.dialog__row-input {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap; }
.dialog__actions {
  background: #f2f2f2;
  padding: 10px 10px;
  border-radius: 0 0 8px 8px; }

.btn-measure-close {
  border-radius: 4px;
  color: #8EE0FF !important;
  display: inline-block;
  transition: all 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  cursor: pointer;
  font-size: 22px;
  margin-right: -18px; }

.btn-dimension-close {
  border-radius: 4px;
  color: #FAAFA6 !important;
  display: inline-block;
  transition: all 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  cursor: pointer;
  font-size: 22px;
  margin-right: -18px; }

.btn-filter-close {
  border-radius: 4px;
  color: #C0FDB1 !important;
  display: inline-block;
  transition: all 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
  cursor: pointer;
  font-size: 22px;
  margin-right: -18px; }

.chart-type-jumpin {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 5px;
  border: 2px solid #999;
  background: #ddd;
  margin: 5px;
  cursor: pointer; }

.chart-type-jumpin:hover {
  background: #eee; }

.chart-type-jumpin .chart-type {
  background-size: 100% 100%;
  height: 100%;
  width: 100%; }

.chart-type-jumpin .chart-icon-headline {
  background-image: url("../../assets/images/chart_icon_large/headline.png"); }

.chart-type-jumpin .chart-icon-gauge {
  background-image: url("../../assets/images/chart_icon_large/gauge.png"); }

.chart-type-jumpin .chart-icon-pie {
  background-image: url("../../assets/images/chart_icon_large/pie.png"); }

.chart-type-jumpin .chart-icon-donut {
  background-image: url("../../assets/images/chart_icon_large/donut.png"); }

.chart-type-jumpin .chart-icon-bar {
  background-image: url("../../assets/images/chart_icon_large/bar.png"); }

.chart-type-jumpin .chart-icon-column {
  background-image: url("../../assets/images/chart_icon_large/column.png"); }

.chart-type-jumpin .chart-icon-line {
  background-image: url("../../assets/images/chart_icon_large/line.png"); }

.chart-type-jumpin .chart-icon-zoomline {
  background-image: url("../../assets/images/chart_icon_large/zoomline.png"); }

.chart-type-jumpin .chart-icon-area {
  background-image: url("../../assets/images/chart_icon_large/area.png"); }

.chart-type-jumpin .chart-icon-singley {
  background-image: url("../../assets/images/chart_icon_large/singley.png"); }

.chart-type-jumpin .chart-icon-dualy {
  background-image: url("../../assets/images/chart_icon_large/dualy.png"); }

.chart-type-jumpin .chart-icon-scatter {
  background-image: url("../../assets/images/chart_icon_large/scatter.png"); }

.chart-type-jumpin .chart-icon-bubble {
  background-image: url("../../assets/images/chart_icon_large/bubble.png"); }

.chart-type-jumpin .chart-icon-heatmap {
  background-image: url("../../assets/images/chart_icon_large/heatmap.png"); }

.chart-type-jumpin .chart-icon-treemap {
  background-image: url("../../assets/images/chart_icon_large/treemap.png"); }

/*************************************************************
 *
 * Applied Table Styles
 * 
*************************************************************/
table {
  border: 1px solid #BBBBBB; }
  table > thead > tr {
    background: #fff;
    border: 1px solid #727272; }
    table > thead > tr:nth-of-type(even) {
      background: #ebebeb; }
    table > thead > tr > th {
      background: #fff;
      border-top: #37B3D3;
      border: none !important;
      color: #37B3D3;
      font-size: 1.1em;
      font-family: "proxima-nova", sans-serif;
      font-weight: 500;
      padding: 25px 0px 10px 0px !important; }
    table > thead > tr > td {
      border: none !important; }
  table td, table th {
    position: relative; }

/*************************************************************
 *
 * Buttons - Old
 * 
*************************************************************/
.btn-main {
  border-radius: 5px;
  -ms-border-radius: .btn-main radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #20ba9b;
  border: 1px solid #20ba9b;
  box-shadow: 1px 1px 0px #157965;
  color: #20ba9b;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-main:hover, .btn-main:focus {
    background: #116352;
    border-color: #116352;
    color: #fff; }
  .btn-main.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-main.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-main.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-main.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #20ba9b;
    background: rgba(32, 186, 155, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-main.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-main.circle--md {
      height: 120px;
      width: 120px; }
      .btn-main.circle--md .text {
        font-size: 1em; }
    .btn-main.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-main.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-main.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-main.circle:hover {
      background: #20ba9b; }

.btn-remove {
  border-radius: 5px;
  -ms-border-radius: .btn-remove radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #FF495C;
  border: 1px solid #FF495C;
  box-shadow: 1px 1px 0px #fc001a;
  color: #FF495C;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-remove:hover, .btn-remove:focus {
    background: #e20018;
    border-color: #e20018;
    color: #fff; }
  .btn-remove.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-remove.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-remove.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-remove.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #FF495C;
    background: rgba(255, 73, 92, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-remove.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-remove.circle--md {
      height: 120px;
      width: 120px; }
      .btn-remove.circle--md .text {
        font-size: 1em; }
    .btn-remove.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-remove.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-remove.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-remove.circle:hover {
      background: #FF495C; }

.btn-action {
  border-radius: 5px;
  -ms-border-radius: .btn-action radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #086DFF;
  border: 1px solid #086DFF;
  box-shadow: 1px 1px 0px #004cbb;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-action:hover, .btn-action:focus {
    background: #0042a1;
    border-color: #0042a1;
    color: #fff; }
  .btn-action.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-action.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-action.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-action.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #086DFF;
    background: rgba(8, 109, 255, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-action.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-action.circle--md {
      height: 120px;
      width: 120px; }
      .btn-action.circle--md .text {
        font-size: 1em; }
    .btn-action.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-action.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-action.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-action.circle:hover {
      background: #086DFF; }

.btn-basic {
  border-radius: 5px;
  -ms-border-radius: .btn-basic radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #8A8A8A;
  border: 1px solid #8A8A8A;
  box-shadow: 1px 1px 0px #646464;
  color: #8A8A8A;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-basic:hover, .btn-basic:focus {
    background: #575757;
    border-color: #575757;
    color: #fff; }
  .btn-basic.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-basic.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-basic.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-basic.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #8A8A8A;
    background: rgba(138, 138, 138, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-basic.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-basic.circle--md {
      height: 120px;
      width: 120px; }
      .btn-basic.circle--md .text {
        font-size: 1em; }
    .btn-basic.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-basic.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-basic.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-basic.circle:hover {
      background: #8A8A8A; }

.btn-login {
  border-radius: 5px;
  -ms-border-radius: .btn-login radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #29abe2;
  border: 1px solid #29abe2;
  box-shadow: 1px 1px 0px #177da8;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 15px 0; }
  .btn-login:hover, .btn-login:focus {
    background: #146c91;
    border-color: #146c91;
    color: #fff; }
  .btn-login.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-login.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-login.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-login.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #29abe2;
    background: rgba(41, 171, 226, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-login.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-login.circle--md {
      height: 120px;
      width: 120px; }
      .btn-login.circle--md .text {
        font-size: 1em; }
    .btn-login.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-login.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-login.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-login.circle:hover {
      background: #29abe2; }

.btn-default {
  border-radius: 5px;
  -ms-border-radius: .btn-default radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #8A8A8A;
  border: 1px solid #8A8A8A;
  box-shadow: 1px 1px 0px #646464;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-default:hover, .btn-default:focus {
    background: #575757;
    border-color: #575757;
    color: #fff; }
  .btn-default.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-default.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-default.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-default.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #8A8A8A;
    background: rgba(138, 138, 138, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-default.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-default.circle--md {
      height: 120px;
      width: 120px; }
      .btn-default.circle--md .text {
        font-size: 1em; }
    .btn-default.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-default.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-default.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-default.circle:hover {
      background: #8A8A8A; }

.btn-edit {
  border-radius: 5px;
  -ms-border-radius: .btn-edit radius;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  background: #8A8A8A;
  border: 1px solid #8A8A8A;
  box-shadow: 1px 1px 0px #646464;
  color: #fff;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700; }
  .btn-edit:hover, .btn-edit:focus {
    background: #575757;
    border-color: #575757;
    color: #fff; }
  .btn-edit.rounded {
    border-radius: 50%;
    -ms-border-radius: .btn-edit.rounded radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%; }
  .btn-edit.circle {
    border-radius: 50%;
    -ms-border-radius: .btn-edit.circle radius;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 3px solid #8A8A8A;
    background: rgba(138, 138, 138, 0.3);
    display: inline-block;
    height: 65px;
    position: relative;
    width: 65px;
    margin: 0 5px; }
    .btn-edit.circle--lg {
      height: 200px;
      width: 200px; }
    .btn-edit.circle--md {
      height: 120px;
      width: 120px; }
      .btn-edit.circle--md .text {
        font-size: 1em; }
    .btn-edit.circle--sm {
      height: 50px;
      width: 50px; }
    .btn-edit.circle .text {
      color: #fff;
      display: inline-block;
      font-size: .7em;
      font-weight: 700;
      margin-bottom: 0;
      text-align: center; }
    .btn-edit.circle.glow {
      -webkit-animation: 1.5s ease-in glowing infinite;
      -moz-animation: 1.5s ease-in glowing infinite;
      animation: 1.5s ease-in glowing infinite;
      animation-fill-mode: forwards; }
    .btn-edit.circle:hover {
      background: #8A8A8A; }

.btn-toolbar {
  background: #fff;
  border-radius: 15px;
  border: 2px solid #d6d6d6;
  color: #565656;
  display: inline-block;
  font-weight: 500;
  padding: 1px 10px;
  transition: all .4s ease-in;
  margin-left: 1px;
  margin-right: 1px;
  font-size: 14px;
  text-align: center; }
  .btn-toolbar.active {
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) inset;
    background: #C8C8C8; }
  .btn-toolbar:hover {
    background: #E5E5E5; }
  .btn-toolbar:focus, .btn-toolbar.active {
    outline: none; }
  .btn-toolbar--close {
    background: transparent;
    color: #fff;
    border: 2px solid #807E7E;
    color: #807E7E;
    position: absolute;
    top: 10px;
    right: 10px; }
    .btn-toolbar--close:hover {
      background: #fffefe; }

.btn-chart-actions {
  background: #fff;
  border-radius: 15px;
  border: 2px solid #d6d6d6;
  color: #565656;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 0px;
  text-align: center;
  transition: all .4s ease-in;
  font-weight: 500; }
  .btn-chart-actions--delete {
    border: 2px solid #FF6464;
    color: #FF6464;
    transition: all .2s ease-in; }
    .btn-chart-actions--delete:hover {
      background: #ff7e7e;
      color: #fff; }
  .btn-chart-actions--cancel {
    border: 2px solid #4E4E4E;
    color: #4E4E4E;
    transition: all .2s ease-in; }
    .btn-chart-actions--cancel:hover {
      background: #5b5b5b;
      color: #fff; }
  .btn-chart-actions--apply {
    border: 2px solid #16a1af;
    background: #16a1af;
    color: #fff;
    transition: all .2s ease-in; }
    .btn-chart-actions--apply:hover {
      border-color: #107782;
      background: #107782; }

.button.disabled, .button.is-disabled, .button:disabled {
  border: none !important;
  text-shadow: none !important; }
  .button.disabled:hover, .button.is-disabled:hover, .button:disabled:hover {
    color: #ccc !important; }

.group-btn {
  width: 65%;
  margin: auto;
  padding: 0;
  border-collapse: separate;
  border-radius: 5px;
  border: 1px solid #BBBBBB; }
  .group-btn--onboarding {
    max-width: 750px;
    width: 100%; }
  .group-btn .button-giant i.icon {
    font-size: 45px;
    margin-top: 15px;
    display: inline-block; }
  .group-btn .button-giant h3 {
    font-size: 20px; }
  .group-btn .button-giant p {
    font-size: 16px;
    line-height: 1.3em; }
  .group-btn table {
    width: 100%;
    /* background-color: white; */ }
  .group-btn td {
    width: 100%; }
  .group-btn .button-giant {
    font-size: 22px !important;
    width: 100%;
    height: auto;
    display: block;
    min-height: 115px;
    border-radius: 4px 4px 0px 0px; }
    .group-btn .button-giant + .group-btn .button-giant {
      border-radius: 0px 0px 4px 4px; }
    .group-btn .button-giant:first-of-type {
      border-bottom: 1px solid #BBBBBB; }

.button-storyboard-save {
  min-width: 140px; }

/*************************************************************
 *
 * Avatar Picker
 * 
*************************************************************/
.btn-file {
  position: relative;
  overflow: hidden; }

.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 999px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block; }

div.avatar-display h5 {
  margin-top: 0px; }

div.avatar-display img.thumbnail {
  display: inline-block;
  margin-bottom: 10px; }

div.avatar-display {
  margin-bottom: 0px; }

hr.halfbreak {
  width: 50%; }

div#avatarCanvasContainer {
  background-image: url(data:image/gif;base64,R0lGODlhCgAKAIAAAOLi4v///yH5BAAHAP8ALAAAAAAKAAoAAAIRhB2ZhxoM3GMSykqd1VltzxQAOw==);
  display: inline-block;
  border: 2px solid #ccc; }

div.crew-message {
  display: block;
  float: left;
  clear: both;
  margin: 10px 10px 0px 0px; }

div.crew-validation {
  display: inline-block;
  float: left;
  margin: 0px 10px 10px 0px;
  padding: 3px 5px; }

span.label.status-large {
  display: block;
  width: 200px;
  vertical-align: bottom;
  padding: 5px;
  margin: 5px; }

.avatar-thumbnail {
  display: inline-block;
  padding: 5px;
  margin: 0px 0px 0px 0px;
  /* height: 100px;
  width: 100px; */
  height: 30px;
  width: 30px;
  cursor: pointer;
  border-radius: 50%;
  background-size: contain;
  background-position: center center;
  box-shadow: 0px 0px 2px #000;
  background-color: #fff;
  border: 2px solid #fff;
  vertical-align: middle;
  margin-right: 10px; }
  .avatar-thumbnail--full {
    width: 300px !important;
    border-radius: 16px; }
  .avatar-thumbnail.org-icon--menu {
    margin: 15px 5px 15px 15px !important;
    padding: 0 !important; }
    .avatar-thumbnail.org-icon--menu:hover, .avatar-thumbnail.org-icon--menu:focus {
      background-color: #fff !important; }
    .avatar-thumbnail.org-icon--menu:before {
      content: none !important; }
    .avatar-thumbnail.org-icon--menu.listed {
      margin: 0px !important;
      height: 30px !important;
      width: 30px !important; }
  .avatar-thumbnail--lg {
    height: 50px;
    width: 50px; }
  .avatar-thumbnail--active-group {
    background-repeat: no-repeat;
    background-size: cover;
    height: 35px !important;
    width: 35px !important;
    display: inline-block;
    float: left;
    margin-left: -5px;
    margin-right: 2px;
    text-align: center; }

.org-dropdown {
  height: 0 !important;
  padding: 0 !important; }

.dropdown-menu li .avatar-thumbnail {
  margin: 0 !important; }

button.avatar-change {
  vertical-align: middle;
  margin-left: 10px; }

.avatar-picker-panel .panel-title {
  margin-left: 15px; }

.avatar-picker-panel .panel-body {
  margin-bottom: 15px; }

/*************************************************************
 *
 * Toggle Switch
 * 
*************************************************************/
.toggle-switch {
  position: relative; }
  .toggle-switch-label {
    margin-left: 7px;
    font-size: 15px;
    display: inline-block;
    padding: 2px 10px; }
  .toggle-switch .tgl {
    display: none; }
    .toggle-switch .tgl, .toggle-switch .tgl:after, .toggle-switch .tgl:before, .toggle-switch .tgl *, .toggle-switch .tgl *:after, .toggle-switch .tgl *:before, .toggle-switch .tgl + .tgl-btn {
      box-sizing: border-box; }
      .toggle-switch .tgl::selection, .toggle-switch .tgl:after::selection, .toggle-switch .tgl:before::selection, .toggle-switch .tgl *::selection, .toggle-switch .tgl *:after::selection, .toggle-switch .tgl *:before::selection, .toggle-switch .tgl + .tgl-btn::selection {
        background: none; }
    .toggle-switch .tgl + .tgl-btn {
      float: right;
      outline: 0;
      display: inline-block;
      width: 4em;
      height: 2em;
      position: relative;
      cursor: pointer;
      user-select: none;
      margin-bottom: 0; }
      .toggle-switch .tgl + .tgl-btn:after, .toggle-switch .tgl + .tgl-btn:before {
        position: relative;
        display: block;
        content: "";
        width: 50%;
        height: 100%; }
      .toggle-switch .tgl + .tgl-btn:after {
        left: 0; }
      .toggle-switch .tgl + .tgl-btn:before {
        display: none; }
    .toggle-switch .tgl:checked + .tgl-btn:after {
      left: 50%; }
  .toggle-switch .tgl-light + .tgl-btn {
    background: #7D7D7D;
    border-radius: 2em;
    padding: 2px;
    transition: all .4s ease; }
    .toggle-switch .tgl-light + .tgl-btn:after {
      border-radius: 50%;
      background: #fff;
      transition: all .2s ease; }
  .toggle-switch .tgl-light:checked + .tgl-btn {
    background: #9FD6AE; }

/*************************************************************
 *
 * Footer //And Pushing footer to the bottom
 * 
*************************************************************/
html,
body {
  height: 100%;
  transition: left 0.8s cubic-bezier(0.86, 0, 0.07, 1), right 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  top: 0;
  right: 0;
  position: relative; }
  html.animatedCoverEntry,
  body.animatedCoverEntry {
    overflow: hidden;
    position: relative;
    top: 0;
    right: 588px; }

.page-wrapper {
  height: auto;
  margin-bottom: -90px;
  min-height: 100vh; }
  .page-wrapper.page-onboarding, .page-wrapper.page-register {
    background: transparent url("images/login.brown-desktop.jpg") no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    padding: 0 16px !important; }

.page-wrapper:after {
  content: "";
  display: block; }

.footer,
footer,
#footer {
  height: 90px; }

footer,
.footer {
  background: #171717 top left;
  color: #fff;
  font-size: 1em;
  min-height: 90px;
  padding: 30px;
  position: relative;
  text-align: center;
  z-index: 3; }

/*************************************************************
 *
 * Animations
 * 
*************************************************************/
.loader {
  background: transparent;
  width: 50px;
  height: 100px;
  margin: 50px auto;
  position: relative; }
  .loader span {
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: #FFF;
    position: absolute;
    animation: bar-chart-white 2s infinite ease-in-out; }
  .loader span:nth-child(1) {
    left: 0px; }
  .loader span:nth-child(2) {
    left: 10px;
    animation-delay: .2s; }
  .loader span:nth-child(3) {
    left: 20px;
    animation-delay: .4s; }
  .loader p {
    color: #fff;
    font-family: arial;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: -40px;
    left: -15px; }

.color-loader {
  background: transparent;
  width: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px; }
  .color-loader span {
    display: block;
    bottom: 0px;
    width: 9px;
    height: 5px;
    background: #FFF;
    position: absolute;
    animation: bar-chart 2s infinite ease-in-out; }
  .color-loader span:nth-child(1) {
    left: 0px; }
  .color-loader span:nth-child(2) {
    left: 10px;
    animation-delay: .2s; }
  .color-loader span:nth-child(3) {
    left: 20px;
    animation-delay: .4s; }
  .color-loader p {
    color: #fff;
    font-family: arial;
    font-weight: 500;
    text-align: center;
    position: absolute;
    bottom: -40px;
    left: -15px; }

/*************************************************************
 *
 * Page Specific Styles
 * 
*************************************************************/
.page-storyboards, .page-navigator, .page-navigator-query, .page-dataExport {
  background: #fff;
  background-size: cover;
  background-attachment: fixed;
  left: 240px;
  right: 0;
  position: absolute; }

.well-white-form {
  background-color: #fff !important;
  margin-top: 15px;
  padding: 30px;
  border: 1px solid rgba(0, 40, 100, 0.12) !important; }

.page-wrapper .my-subtitle {
  display: none; }

.page-wrapper.collapsed .my-subtitle {
  display: block;
  color: #747474;
  font-size: 12px;
  line-height: 1.0;
  font-weight: normal; }

.page-wrapper.collapsed .page-heading h2 {
  font-size: 23px; }

.page-heading a {
  color: #114d72; }

.page-heading .nav-link {
  font-weight: 500;
  padding: 10px 15px; }
.page-heading .nav > li > a:hover, .page-heading .nav > li > a:focus {
  background-color: transparent;
  color: #56CCCC; }
.page-heading .nav-pills > li.active > a, .page-heading .nav-pills > li.active > a:hover, .page-heading .nav-pills > li.active > a:focus {
  background-color: transparent;
  color: #56CCCC; }
  .page-heading .nav-pills > li.active > a:before, .page-heading .nav-pills > li.active > a:hover:before, .page-heading .nav-pills > li.active > a:focus:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    background: #56CCCC;
    width: 100%;
    height: 3px;
    opacity: 1; }

.page-wrapper.collapsed .storyboard--list--with-tabs {
  padding-top: 109px !important; }

.page-wrapper .storyboard--list--with-tabs {
  padding-top: 0px !important;
  top: 157px; }

.page-wrapper.collapsed .page-heading--transparent--with-tabs {
  color: #114d72;
  height: 109px !important; }

.page-wrapper .page-heading--transparent--with-tabs {
  color: #114d72;
  height: 97px !important; }

.page-navigator-query, .page-dataExport, [class*='page-agents'], .page-dataverse-dataset-facet, .page-dataverse-explore, .page-dataverse-visualize, .page-dataverse-customDataset-measures, .page-dataverse-explore, .page-dataverse-dataset-settings, .page-dataverse-customDataset-measures, .page-dataverse-dataset-fields, .page-dataverse-dataset-measures, .page-dataverse-dataset-preview, .page-dataverse-dataset-publish, .page-dataverse-dataset-datasource, .page-storyboards, .page-navigator, .page-login, [class*='page-manage'], .page-organization-settings, .page-subscription, .page-datasets, .page-settings, .page-password, .page-subscription {
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1), left 0.6s cubic-bezier(0.23, 1, 0.32, 1), right 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
  .page-navigator-query.collapsed, .page-dataExport.collapsed, [class*='page-agents'].collapsed, .page-dataverse-dataset-facet.collapsed, .page-dataverse-explore.collapsed, .page-dataverse-visualize.collapsed, .page-dataverse-customDataset-measures.collapsed, .page-dataverse-explore.collapsed, .page-dataverse-dataset-settings.collapsed, .page-dataverse-customDataset-measures.collapsed, .page-dataverse-dataset-fields.collapsed, .page-dataverse-dataset-measures.collapsed, .page-dataverse-dataset-preview.collapsed, .page-dataverse-dataset-publish.collapsed, .page-dataverse-dataset-datasource.collapsed, .page-storyboards.collapsed, .page-navigator.collapsed, .page-login.collapsed, [class*='page-manage'].collapsed, .page-organization-settings.collapsed, .page-subscription.collapsed, .page-datasets.collapsed, .page-settings.collapsed, .page-password.collapsed, .page-subscription.collapsed {
    left: 65px; }

.page-storyboards, .page-navigator, .page-dataExport, [class*='page-agents'], .page-dataverse-explore, .page-dataverse-dataset-facet, .page-dataverse-visualize, .page-dataverse-customDataset-measures, .page-dataverse, .page-dataverse-visualize, .page-dataverse-dataset-settings, .page-dataverse-customDataset-measures, .page-dataverse-dataset-publish, .page-dataverse-dataset-fields, .page-dataverse-dataset-measures, .page-dataverse-dataset-datasource, .page-dataverse-dataset-preview, .page-navigator-query, [class*='page-manage'], .page-organization-settings, .page-subscription, .page-datasets, .page-settings, .page-password, .page-subscription {
  left: 240px;
  right: 0;
  position: absolute; }

.page-dataverse-explore, .page-navigator-query, .page-dataverse-explore, .page-dataverse-dataset-facet, .page-navigator-query, .page-dataverse-visualize {
  position: absolute;
  background: #fff; }

.page-storyboards-edit .side-menu, .page-storyboards-edit .bottom-bar--nav, .page-storyboards-view .side-menu, .page-storyboards-view .bottom-bar--nav, .page-storyboards-create .side-menu, .page-storyboards-create .bottom-bar--nav, .page-storyboards-new .side-menu, .page-storyboards-new .bottom-bar--nav, .page-storyboards-wizard .side-menu, .page-storyboards-wizard .bottom-bar--nav {
  display: none !important; }

.page-home {
  left: 0; }

/*************************************************************
 *
 * Storyboard Navigator Styles
 * 
*************************************************************/
.search-bar {
  font-family: Arial, 'Font Awesome 5 Pro';
  width: 85%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #F9F9FB;
  display: inline-block;
  width: calc(100% - 115px);
  border: none;
  border-radius: 20px;
  height: 40px;
  border: none; }
  .search-bar--full-width {
    width: 100% !important; }
  .search-bar--small {
    padding: 3px 6px;
    font-size: 12px; }
  .search-bar--white {
    background-color: #fff; }

.listing-buttons {
  width: 110px;
  display: inline-block;
  vertical-align: middle; }

.board-lane {
  opacity: 1;
  transition: all .8s ease-in-out;
  min-height: 250px;
  position: relative; }
  .board-lane:hover .board-lane__header-link, .board-lane--sub:hover .board-lane__header-link {
    display: inline-block;
    pointer-events: initial;
    margin-left: 0;
    opacity: 1; }
  .board-lane__header {
    font-size: 15px;
    color: #747474;
    margin-right: 5px;
    padding-right: 10px;
    font-weight: 500;
    display: inline-block;
    font-family: "proxima-nova", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0px;
    width: 100%; }
  .board-lane__header-link {
    font-size: .6em;
    vertical-align: middle;
    position: relative;
    transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    opacity: 0;
    margin-left: -10px;
    pointer-events: none;
    font-weight: 300;
    color: #114d72; }
  .board-lane__avatar {
    display: inline-block;
    height: auto;
    width: auto;
    overflow: hidden;
    border-radius: 100%;
    margin-right: 10px;
    height: 40px;
    width: 40px;
    padding-right: 30px;
    top: 5px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0px 0px 5px #000; }
    .board-lane__avatar .dataset-avatars {
      border-radius: 100%; }

.board-lane--sub {
  margin-left: -15px;
  margin-right: -15px;
  background-color: rgba(0, 0, 0, 0.7);
  padding-left: 15px;
  padding-right: 15px;
  box-shadow: 1px 1px;
  height: 0;
  overflow: hidden;
  -webkit-animation: revealLane 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation: revealLane 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  animation: revealLane 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  animation-fill-mode: forwards;
  animation-delay: .2s;
  position: relative; }

/*************************************************************
*
* Main Content Section and Header
*
*************************************************************/
.main-content {
  /* background: $background-grey; */
  background: #fff !important;
  height: calc(100vh - 60px);
  left: 0;
  right: 0px;
  top: 60px;
  position: absolute;
  overflow-y: auto; }
  .main-content__container {
    display: flex;
    height: auto !important;
    min-height: calc(100%); }
  .main-content__content {
    flex-grow: 1;
    position: relative;
    padding: 25px 0px !important; }
  .main-content__content--choice {
    height: calc(100% - 70px) !important; }
  .main-content__section-header {
    padding: 20px 15px;
    background: #fff;
    font-family: "proxima-nova", sans-serif;
    /* font-weight: 500; */
    border-bottom: 4px solid #56CCCC;
    min-height: 80px !important;
    color: #114d72; }
    .main-content__section-header--with-tabs {
      padding: 20px 15px 0px 15px !important; }
    .main-content__section-header .sub-title {
      padding-top: 10px;
      font-weight: normal;
      color: #666; }
  .main-content--collapsed {
    position: absolute;
    right: 0;
    margin: 0 !important;
    top: 60px;
    width: auto; }

/*************************************************************
 *
 * Storyboard Editor, Viewer, Sidebar, and Footer Styles
 * 
*************************************************************/
.gray-out, .storyboard-editor.open .storyboard-actions__pagination {
  pointer-events: none;
  opacity: 1; }
  .gray-out:before, .storyboard-editor.open .storyboard-actions__pagination:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    z-index: 300; }

.storyboard-editor.open .storyboard-actions__pagination .page-title, .storyboard-editor.open .storyboard-actions__pagination .page-header, .storyboard-editor.open .storyboard-actions__pagination .button {
  pointer-events: none; }

.storyboard-actions__pagination {
  z-index: 100000; }

.option-action .button-borderless.button-inverse {
  color: #3A84C5; }

.pagination {
  margin: 0px !important;
  transform: translateY(25%); }
  .pagination li > a.delete-link {
    padding-left: 10px;
    padding-right: 10px;
    background-color: #3A84C5 !important;
    color: white;
    border: 1px solid #3A84C5; }
  .pagination li > a.delete-link:hover {
    background-color: #F95355 !important;
    border: 1px solid #F95355; }
  .pagination li > a.add-link {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #4AE2C1 !important;
    color: white;
    border: 1px solid #4AE2C1; }

.pagination li > a.add-link:hover {
  background-color: #22d7af !important;
  border: 1px solid #22d7af; }

.pagination > li > a, .pagination > li > span {
  padding: 5px 30px; }

/*************************************************************
 *
 * Freeform Layout Styles
 * 
*************************************************************/
.layout-freeform {
  margin-top: 40px;
  height: auto; }

.layout-thumbnail--overlay {
  transition: all .4s ease-in;
  padding-left: 10px;
  padding-right: 5px; }
.layout-thumbnail--image {
  width: auto;
  text-align: left;
  margin-bottom: 5px;
  margin-top: 10px; }
  .layout-thumbnail--image svg {
    max-height: 120px;
    max-width: 160px; }
  .layout-thumbnail--image:active {
    background-color: #f2f3f7;
    font-weight: bold; }
.layout-thumbnail--title {
  color: #114d72;
  text-transform: capitalize;
  text-align: center;
  position: relative;
  top: -5px;
  font-size: 12px; }
  .layout-thumbnail--title:active {
    font-weight: bold; }

.storyboard-sidebar--2tier {
  /* @extend %sidebar-gradient; */
  border-right: 1px solid #e6e6e6;
  background-color: #fafafa;
  bottom: 0;
  box-sizing: border-box;
  color: #747474;
  left: -250px;
  overflow-x: visible;
  overflow-y: auto;
  padding: 20px 15px;
  position: fixed;
  top: 110px;
  width: 300px;
  z-index: 100000;
  /* box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.59); */
  animation-delay: .0s;
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-name: slidein;
  animation-timing-function: ease-in-out;
  opacity: 0; }
  .storyboard-sidebar--2tier h1,
  .storyboard-sidebar--2tier h2,
  .storyboard-sidebar--2tier h3,
  .storyboard-sidebar--2tier h4,
  .storyboard-sidebar--2tier h5 {
    margin: 0px; }
  .storyboard-sidebar--2tier.edit {
    overflow-y: auto;
    overflow-x: initial; }
  .storyboard-sidebar--2tier.edit .sidebar__title {
    display: none; }
  .storyboard-sidebar--2tier.ng-animate.ng-hide {
    opacity: 1;
    animation-delay: 0;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: menu-slideout;
    animation-timing-function: ease-in-out; }
  .storyboard-sidebar--2tier h4 {
    font-weight: 500;
    color: #3A84C5;
    padding-bottom: 15px; }

.visual-axislimit {
  padding: 10px 0 0; }
  .visual-axislimit-input {
    margin: 10px; }
  .visual-axislimit-input input {
    color: #000;
    width: 40%;
    border-radius: 4px;
    border: none;
    padding: 5px 5px;
    margin: 5px 5px; }

.viz-toolbar .visual-axislimit {
  padding: 10px 0 0; }
  .viz-toolbar .visual-axislimit-input {
    margin: 0px;
    float: right;
    display: inline-block; }
  .viz-toolbar .visual-axislimit-input input {
    color: #000;
    padding-left: 2px;
    padding-right: 2px;
    width: initial; }

/*************************************************************
*
* Visual Types
*
*************************************************************/
.sb-visual__option-menu {
  position: absolute;
  z-index: 1;
  right: 2px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  top: 2px;
  border-radius: 100%;
  color: #555555;
  outline: none;
  transition: all .4s ease-in; }
  .sb-visual__option-menu.active, .sb-visual__option-menu.active:hover {
    background: #8E8E8E;
    color: #fff; }
  .storyboard.editing .sb-visual__option-menu {
    display: none !important; }

.main-button-group {
  position: absolute;
  top: 30%;
  left: 0px;
  width: 100%;
  padding: 0;
  margin: 0; }
  .main-button-group ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0; }
    .main-button-group ul li {
      flex-grow: 1; }
  .main-button-group.shift-up {
    animation: shift-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    top: 5%; }

.sub-button-group ul {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0; }
  .sub-button-group ul > li {
    flex-grow: 1;
    flex-basis: 150px; }

.table-view-all {
  display: flex;
  border-top: 1px solid #ccc; }
  .table-view-all button {
    flex-grow: 1;
    border: 0px;
    background: transparent;
    padding: 5px 0;
    font-size: 11px;
    border-right: 1px solid #ccc; }
    .table-view-all button:last-of-type {
      border-right: none; }

.label-filter {
  margin-left: 9px;
  background: transparent;
  color: #B0B0B0;
  display: inline-block;
  text-align: left;
  vertical-align: baseline;
  vertical-align: -webkit-baseline-middle; }

/*************************************************************
*
* Storyboard Editor Sidebar Styles
*
*************************************************************/
.sidebar, .left-sidebar {
  /*****************************************************
  * Storyboard banner buttons
  *****************************************************/
  /*****************************************************
  * Chart buttons
  *****************************************************/ }
  .sidebar__option-headlines, .left-sidebar__option-headlines {
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    color: #3A84C5;
    margin-left: -20px !important;
    margin-right: -20px !important;
    text-align: left;
    font-size: 1.3em;
    font-weight: 500;
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 15px; }
    .sidebar__option-headlines:hover, .left-sidebar__option-headlines:hover {
      background: rgba(58, 132, 197, 0.1) !important;
      color: #3A84C5; }
    .sidebar__option-headlines:focus, .sidebar__option-headlines:active, .left-sidebar__option-headlines:focus, .left-sidebar__option-headlines:active {
      color: #3A84C5;
      outline: none;
      background: rgba(58, 132, 197, 0.1) !important; }
  .sidebar .layout-thumbnail, .left-sidebar .layout-thumbnail {
    width: auto;
    height: 145px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    margin: 10px;
    border: 2px solid rgba(58, 132, 197, 0.4);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px; }
    .sidebar .layout-thumbnail--title, .left-sidebar .layout-thumbnail--title {
      padding-top: 10px; }
    .sidebar .layout-thumbnail svg, .left-sidebar .layout-thumbnail svg {
      pointer-events: none; }
      .sidebar .layout-thumbnail svg rect, .left-sidebar .layout-thumbnail svg rect {
        fill: transparent;
        -webkit-transition: all 0.2s ease-in;
        -moz-transition: all 0.2s ease-in;
        transition: all 0.2s ease-in; }
    .sidebar .layout-thumbnail:hover, .left-sidebar .layout-thumbnail:hover {
      box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
      background-color: rgba(255, 255, 255, 0.9); }
      .sidebar .layout-thumbnail:hover svg, .left-sidebar .layout-thumbnail:hover svg {
        pointer-events: none; }
        .sidebar .layout-thumbnail:hover svg rect, .left-sidebar .layout-thumbnail:hover svg rect {
          fill: #fff; }
  .sidebar .theme-thumbnail, .left-sidebar .theme-thumbnail {
    border-radius: 8px;
    overflow: hidden;
    width: 183px;
    height: 150px; }
  .sidebar .theme-item, .left-sidebar .theme-item {
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid #e6e6e6; }
    .sidebar .theme-item.selected, .left-sidebar .theme-item.selected {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.22); }
      .sidebar .theme-item.selected span, .left-sidebar .theme-item.selected span {
        font-weight: 500; }
    .sidebar .theme-item:last-of-type, .left-sidebar .theme-item:last-of-type {
      border-bottom: none; }
    .sidebar .theme-item-midnight, .sidebar .theme-item-nucleus, .left-sidebar .theme-item-midnight, .left-sidebar .theme-item-nucleus {
      display: none; }
  .sidebar .font-item, .left-sidebar .font-item {
    padding: 10px 0;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
    .sidebar .font-item.selected, .left-sidebar .font-item.selected {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.22); }
      .sidebar .font-item.selected span, .left-sidebar .font-item.selected span {
        font-weight: 500; }
    .sidebar .font-item:last-of-type, .left-sidebar .font-item:last-of-type {
      border-bottom: none; }
  .sidebar .palette-item, .left-sidebar .palette-item {
    padding: 15px 0;
    font-size: 1.2em;
    border-bottom: 1px solid #e6e6e6;
    transition: all .2 ease-in; }
    .sidebar .palette-item span, .left-sidebar .palette-item span {
      padding: 3px 10px;
      color: #747474 !important;
      display: inline-block;
      border-radius: 10px; }
    .sidebar .palette-item:last-of-type, .left-sidebar .palette-item:last-of-type {
      border-bottom: none; }
    .sidebar .palette-item.selected, .left-sidebar .palette-item.selected {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.22); }
      .sidebar .palette-item.selected span, .left-sidebar .palette-item.selected span {
        font-weight: 500; }
    .sidebar .palette-item:hover .color-palette, .left-sidebar .palette-item:hover .color-palette {
      box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
  .sidebar .color-palette, .left-sidebar .color-palette {
    border-radius: 4px;
    height: 32px;
    list-style: none;
    overflow: hidden;
    padding: 0px;
    width: auto;
    display: inline-block;
    transition: all .2 ease-in; }
    .sidebar .color-palette--swatches, .left-sidebar .color-palette--swatches {
      width: 32px;
      height: 32px;
      display: inline-block; }
      .sidebar .color-palette--swatches:first-of-type, .left-sidebar .color-palette--swatches:first-of-type {
        border-radius: 4px 0px 0px 4px; }
      .sidebar .color-palette--swatches:last-of-type, .left-sidebar .color-palette--swatches:last-of-type {
        border-radius: 0px 4px 4px 0px; }
  .sidebar__current-layout, .left-sidebar__current-layout {
    background: rgba(225, 225, 225, 0.2);
    height: 150px;
    margin-left: -20px;
    margin-right: -20px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center 30%;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    animation-fill-mode: forwards; }
    .sidebar__current-layout span, .left-sidebar__current-layout span {
      position: absolute;
      bottom: 5px;
      left: 0;
      display: inline-block;
      width: 100%; }
  .sidebar a, .left-sidebar a {
    color: #747474; }
    .sidebar a:hover, .left-sidebar a:hover {
      text-decoration: none; }
  .sidebar .theme-thumbnail, .left-sidebar .theme-thumbnail {
    width: auto;
    height: 150px; }
  .sidebar .nav-stacked > li + li, .left-sidebar .nav-stacked > li + li {
    margin-top: 0; }
  .sidebar .nav-stacked > li > a, .sidebar .nav-stacked span li a, .left-sidebar .nav-stacked > li > a, .left-sidebar .nav-stacked span li a {
    border-bottom: 1px solid #eee; }
  .sidebar .dialog-container__close, .left-sidebar .dialog-container__close {
    animation-delay: .4s;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: fadein;
    animation-timing-function: ease-in-out,ease-in-out;
    display: inline-block;
    font-size: 18.2px;
    left: 220px;
    position: absolute;
    top: 14px;
    z-index: 100000;
    opacity: 0; }
  .sidebar .dialog-search, .left-sidebar .dialog-search {
    padding: 10px 5px;
    overflow: hidden;
    opacity: 0;
    animation-name: fadein;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out,ease-in-out;
    animation-delay: .4s;
    font-size: 12px;
    /**position: absolute;
    height: 40px;
    width: 98%;**/
    border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
    .sidebar .dialog-search .dialog-search, .left-sidebar .dialog-search .dialog-search {
      border-bottom: none; }
    .sidebar .dialog-search:after, .left-sidebar .dialog-search:after {
      font-size: 16px;
      top: 13px;
      right: 50px; }
    .sidebar .dialog-search input, .left-sidebar .dialog-search input {
      height: 30px;
      width: 85%; }
    .sidebar .dialog-search--full input, .left-sidebar .dialog-search--full input {
      width: 100% !important; }
    .sidebar .dialog-search--full:after, .left-sidebar .dialog-search--full:after {
      font-size: 18px;
      top: 11px;
      right: 20px; }
  .sidebar .dialog-group, .left-sidebar .dialog-group {
    margin-bottom: 10px;
    padding: 0 5px; }
  .sidebar .measure-list.simple,
  .sidebar .field-list.simple,
  .sidebar .filter-field-list.simple,
  .sidebar .dataset-list.simple, .left-sidebar .measure-list.simple,
  .left-sidebar .field-list.simple,
  .left-sidebar .filter-field-list.simple,
  .left-sidebar .dataset-list.simple {
    animation-delay: 0s, .2s;
    animation-duration: .4s, .4s;
    animation-fill-mode: forwards,forwards;
    animation-name: chart-config-slidein;
    animation-timing-function: ease-in-out,ease-in-out;
    /* @extend %sidebar-gradient;  */
    background-color: #fafafa;
    border-bottom-left-radius: 0px;
    border-radius: 0;
    border-top-left-radius: 0px;
    border: none;
    bottom: 0;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
    box-shadow: none;
    left: initial;
    margin-top: 0;
    padding: 0;
    position: fixed;
    top: 110px;
    width: 300px;
    z-index: 10000; }
    .sidebar .measure-list.simple.multi-tabs,
    .sidebar .field-list.simple.multi-tabs,
    .sidebar .filter-field-list.simple.multi-tabs,
    .sidebar .dataset-list.simple.multi-tabs, .left-sidebar .measure-list.simple.multi-tabs,
    .left-sidebar .field-list.simple.multi-tabs,
    .left-sidebar .filter-field-list.simple.multi-tabs,
    .left-sidebar .dataset-list.simple.multi-tabs {
      bottom: 30px !important; }
  .sidebar .maincontent-options, .sidebar .dialog-multiselect, .left-sidebar .maincontent-options, .left-sidebar .dialog-multiselect {
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 30px; }
    .sidebar .maincontent-options__title, .sidebar .dialog-multiselect__title, .left-sidebar .maincontent-options__title, .left-sidebar .dialog-multiselect__title {
      text-align: center;
      font-size: 18px;
      /* box-shadow: 0px 3px 2px #000;  */
      font-style: italic;
      color: #3A84C5; }
    .sidebar .maincontent-options__back, .sidebar .dialog-multiselect__back, .left-sidebar .maincontent-options__back, .left-sidebar .dialog-multiselect__back {
      background: transparent;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
    .sidebar .maincontent-options .ui-selected, .sidebar .dialog-multiselect .ui-selected, .left-sidebar .maincontent-options .ui-selected, .left-sidebar .dialog-multiselect .ui-selected {
      background: #56CCCC !important; }
      .sidebar .maincontent-options .ui-selected *, .sidebar .dialog-multiselect .ui-selected *, .left-sidebar .maincontent-options .ui-selected *, .left-sidebar .dialog-multiselect .ui-selected * {
        color: #fff; }
    .sidebar .maincontent-options li:nth-of-type(even), .sidebar .dialog-multiselect li:nth-of-type(even), .left-sidebar .maincontent-options li:nth-of-type(even), .left-sidebar .dialog-multiselect li:nth-of-type(even) {
      background: rgba(255, 255, 255, 0.2); }
    .sidebar .maincontent-options li, .sidebar .dialog-multiselect li, .left-sidebar .maincontent-options li, .left-sidebar .dialog-multiselect li {
      background: rgba(255, 255, 255, 0.4); }
    .sidebar .maincontent-options li a, .sidebar .dialog-multiselect li a, .left-sidebar .maincontent-options li a, .left-sidebar .dialog-multiselect li a {
      color: #fff;
      display: block;
      padding: 5px 10px; }
    .sidebar .maincontent-options .remove-field, .sidebar .dialog-multiselect .remove-field, .left-sidebar .maincontent-options .remove-field, .left-sidebar .dialog-multiselect .remove-field {
      float: right; }
  .sidebar .dialog-container-inner, .left-sidebar .dialog-container-inner {
    border-right: 1px solid #e6e6e6;
    background: #fafafa;
    /* border-bottom: #5C6163 1px solid; */
    /* border-radius: 0;
    border-top: #5C6163 1px solid;
    border: none; */
    bottom: 0;
    left: 0;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0;
    top: 0px; }
    .sidebar .dialog-container-inner li a, .left-sidebar .dialog-container-inner li a {
      color: #747474;
      font-size: 1.2em;
      padding-top: 5px;
      padding-bottom: 5px;
      display: inline-block; }
      .sidebar .dialog-container-inner li a svg.svg-inline--fa, .left-sidebar .dialog-container-inner li a svg.svg-inline--fa {
        display: inline-block;
        float: right; }
  .sidebar .dialog-selected, .left-sidebar .dialog-selected {
    animation-delay: .4s;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: selected-slidein;
    animation-timing-function: ease-in-out;
    background: #626365;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.4);
    height: 100%;
    left: 300px;
    opacity: 0;
    padding-top: 0px;
    position: absolute;
    top: 0;
    width: 250px;
    z-index: 10001; }
  .sidebar .dialog-maincontent, .left-sidebar .dialog-maincontent {
    height: auto !important; }
  .sidebar .dataset-list.simple .dialog-search ~ .dialog-container-inner,
  .sidebar .measure-list.simple .dialog-search ~ .dialog-container-inner,
  .sidebar .field-list.simple .dialog-search ~ .dialog-container-inner, .left-sidebar .dataset-list.simple .dialog-search ~ .dialog-container-inner,
  .left-sidebar .measure-list.simple .dialog-search ~ .dialog-container-inner,
  .left-sidebar .field-list.simple .dialog-search ~ .dialog-container-inner {
    top: 56px; }
  .sidebar .form-vertical-container__group-title, .left-sidebar .form-vertical-container__group-title {
    padding-left: 0px;
    padding-bottom: 5px;
    border: none;
    color: #747474; }
  .sidebar .dialog-multiselect, .left-sidebar .dialog-multiselect {
    margin-bottom: 0px;
    padding-top: 0px; }
  .sidebar .dialog-pane-date, .left-sidebar .dialog-pane-date {
    border: none !important;
    height: auto; }
    .sidebar .dialog-pane-date li, .sidebar .dialog-pane-date li label, .left-sidebar .dialog-pane-date li, .left-sidebar .dialog-pane-date li label {
      color: #747474 !important;
      font-size: 1em !important;
      font-weight: 500 !important; }
    .sidebar .dialog-pane-date li:hover, .left-sidebar .dialog-pane-date li:hover {
      background-color: #5de3c8 !important; }
  .sidebar .aspect, .left-sidebar .aspect {
    margin: 0px;
    border-radius: 0;
    overflow: visible;
    position: relative; }
    .sidebar .aspect:hover, .left-sidebar .aspect:hover {
      box-shadow: none; }
    .sidebar .aspect:active, .sidebar .aspect:hover, .sidebar .aspect:focus, .left-sidebar .aspect:active, .left-sidebar .aspect:hover, .left-sidebar .aspect:focus {
      position: relative; }
    .sidebar .aspect--button, .left-sidebar .aspect--button {
      position: relative;
      z-index: 1; }
    .sidebar .aspect__header, .left-sidebar .aspect__header {
      margin-bottom: 5px; }
    .sidebar .aspect.bar-chart-active .aspect__selected, .left-sidebar .aspect.bar-chart-active .aspect__selected {
      background-image: url("../../assets/images/icons/icon.bar-charts-h.svg");
      background-repeat: repeat-x;
      background-position: 60px bottom;
      background-size: auto 25px;
      background-color: rgba(43, 88, 146, 0.78) !important; }
    .sidebar .aspect__config-menu, .left-sidebar .aspect__config-menu {
      display: inline-block;
      width: 100%;
      padding: 3px 0;
      background: #4ae2c1;
      margin-bottom: -5px;
      margin-top: 6px; }
      .sidebar .aspect__config-menu:hover, .left-sidebar .aspect__config-menu:hover {
        background: cyan; }
    .sidebar .aspect__selected, .left-sidebar .aspect__selected {
      background-color: #fff !important;
      box-shadow: 0px 0px 5px rgba(53, 53, 53, 0.51);
      color: #747474;
      margin-bottom: 2px;
      padding-left: 20px;
      padding: 7px 10px 0px;
      position: relative; }
      .sidebar .aspect__selected.bar-chart-active, .left-sidebar .aspect__selected.bar-chart-active {
        background-image: url("../../assets/images/icons/icon.bar-charts-h.svg");
        background-repeat: repeat-x;
        background-position: 60px bottom;
        background-size: auto 25px;
        background-color: rgba(43, 88, 146, 0.78) !important; }
      .sidebar .aspect__selected.measure_link > span, .left-sidebar .aspect__selected.measure_link > span {
        padding-bottom: 3px;
        color: #747474; }
      .sidebar .aspect__selected > span, .left-sidebar .aspect__selected > span {
        width: 147px;
        text-overflow: ellipsis;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap; }
      .sidebar .aspect__selected.filter, .left-sidebar .aspect__selected.filter {
        padding-bottom: 7px; }
      .sidebar .aspect__selected .measure-metric, .left-sidebar .aspect__selected .measure-metric {
        background: rgba(74, 133, 221, 0.9);
        color: #fff;
        font-weight: 500;
        height: 100%;
        left: 0;
        padding-right: 3px;
        padding: 7px 3px;
        position: absolute;
        text-align: center;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        top: 0;
        transition: all .4s ease-in;
        width: 60px;
        cursor: pointer; }
        .sidebar .aspect__selected .measure-metric:hover, .left-sidebar .aspect__selected .measure-metric:hover {
          background: rgba(6, 207, 255, 0.8); }
        .sidebar .aspect__selected .measure-metric i, .left-sidebar .aspect__selected .measure-metric i {
          font-size: 18px; }
      .sidebar .aspect__selected .measure-metric + .measure-label, .left-sidebar .aspect__selected .measure-metric + .measure-label {
        margin-left: 55px; }
      .sidebar .aspect__selected:hover, .left-sidebar .aspect__selected:hover {
        box-shadow: none !important; }
      .sidebar .aspect__selected--add, .left-sidebar .aspect__selected--add {
        margin-top: 5px;
        background: transparent !important;
        border: 1px dotted #fff;
        border: 1px dashed #fff;
        text-align: center;
        padding-top: 5px;
        padding-bottom: 5px; }
        .sidebar .aspect__selected--add span, .left-sidebar .aspect__selected--add span {
          font-size: 13px;
          font-weight: 500; }
      .sidebar .aspect__selected--filter, .left-sidebar .aspect__selected--filter {
        padding: 7px 10px; }
      .sidebar .aspect__selected--padded, .left-sidebar .aspect__selected--padded {
        padding: 10px;
        color: #fff; }
      .sidebar .aspect__selected--button, .left-sidebar .aspect__selected--button {
        width: 100%;
        height: 140px;
        padding: 10px;
        margin-bottom: 20px;
        cursor: pointer; }
      .sidebar .aspect__selected .label, .left-sidebar .aspect__selected .label {
        color: #fff;
        display: block; }
  .sidebar .sidebar-menu-button__image, .left-sidebar .sidebar-menu-button__image {
    min-height: 70px;
    width: 100%;
    display: inline-block; }
  .sidebar .chart-image, .left-sidebar .chart-image {
    background: transparent url("../../assets/images/icons/icon.axis-limits.dark.svg") no-repeat center center;
    background-size: contain; }
    .sidebar .chart-image--axis-limit, .left-sidebar .chart-image--axis-limit {
      background: transparent url("../../assets/images/icons/icon.axis-limits.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--trend-lines-avg, .left-sidebar .chart-image--trend-lines-avg {
      background: transparent url("../../assets/images/icons/icon.trend-lines-avg.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--trend-lines-value, .left-sidebar .chart-image--trend-lines-value {
      background: transparent url("../../assets/images/icons/icon.trend-lines-val.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--trend-zone, .left-sidebar .chart-image--trend-zone {
      background: transparent url("../../assets/images/icons/icon.trend-zone.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--quadrant-labels, .left-sidebar .chart-image--quadrant-labels {
      background: transparent url("../../assets/images/icons/icon.quadrant-labels.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--highlight, .left-sidebar .chart-image--highlight {
      background: transparent url("../../assets/images/icons/icon.cell-highlight.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--text-highlight, .left-sidebar .chart-image--text-highlight {
      background: transparent url("../../assets/images/icons/icon.text-highlight.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--date-highlight, .left-sidebar .chart-image--date-highlight {
      background: transparent url("../../assets/images/icons/icon.date-highlight.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--bar-graph, .left-sidebar .chart-image--bar-graph {
      background: transparent url("../../assets/images/icons/icon.chart-graph.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--actionable-link, .left-sidebar .chart-image--actionable-link {
      background: transparent url("../../assets/images/icons/icon.actionable-link.dark.svg") no-repeat center center;
      background-size: contain; }
    .sidebar .chart-image--storyboard-link, .left-sidebar .chart-image--storyboard-link {
      background: transparent url("../../assets/images/icons/icon.storyboard-link.dark.svg") no-repeat center center;
      background-size: contain; }
  .sidebar field:nth-of-type(1) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(1), .left-sidebar field:nth-of-type(1) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(1) {
    z-index: 20;
    position: relative; }
  .sidebar field:nth-of-type(2) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(2), .left-sidebar field:nth-of-type(2) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(2) {
    z-index: 19;
    position: relative; }
  .sidebar field:nth-of-type(3) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(3), .left-sidebar field:nth-of-type(3) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(3) {
    z-index: 18;
    position: relative; }
  .sidebar field:nth-of-type(4) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(4), .left-sidebar field:nth-of-type(4) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(4) {
    z-index: 17;
    position: relative; }
  .sidebar field:nth-of-type(5) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(5), .left-sidebar field:nth-of-type(5) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(5) {
    z-index: 16;
    position: relative; }
  .sidebar field:nth-of-type(6) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(6), .left-sidebar field:nth-of-type(6) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(6) {
    z-index: 15;
    position: relative; }
  .sidebar field:nth-of-type(7) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(7), .left-sidebar field:nth-of-type(7) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(7) {
    z-index: 14;
    position: relative; }
  .sidebar field:nth-of-type(8) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(8), .left-sidebar field:nth-of-type(8) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(8) {
    z-index: 13;
    position: relative; }
  .sidebar field:nth-of-type(9) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(9), .left-sidebar field:nth-of-type(9) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(9) {
    z-index: 12;
    position: relative; }
  .sidebar field:nth-of-type(10) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(10), .left-sidebar field:nth-of-type(10) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(10) {
    z-index: 11;
    position: relative; }
  .sidebar field:nth-of-type(11) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(11), .left-sidebar field:nth-of-type(11) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(11) {
    z-index: 10;
    position: relative; }
  .sidebar field:nth-of-type(12) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(12), .left-sidebar field:nth-of-type(12) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(12) {
    z-index: 9;
    position: relative; }
  .sidebar field:nth-of-type(13) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(13), .left-sidebar field:nth-of-type(13) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(13) {
    z-index: 8;
    position: relative; }
  .sidebar field:nth-of-type(14) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(14), .left-sidebar field:nth-of-type(14) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(14) {
    z-index: 7;
    position: relative; }
  .sidebar field:nth-of-type(15) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(15), .left-sidebar field:nth-of-type(15) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(15) {
    z-index: 6;
    position: relative; }
  .sidebar field:nth-of-type(16) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(16), .left-sidebar field:nth-of-type(16) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(16) {
    z-index: 5;
    position: relative; }
  .sidebar field:nth-of-type(17) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(17), .left-sidebar field:nth-of-type(17) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(17) {
    z-index: 4;
    position: relative; }
  .sidebar field:nth-of-type(18) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(18), .left-sidebar field:nth-of-type(18) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(18) {
    z-index: 3;
    position: relative; }
  .sidebar field:nth-of-type(19) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(19), .left-sidebar field:nth-of-type(19) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(19) {
    z-index: 2;
    position: relative; }
  .sidebar field:nth-of-type(20) .aspect, .sidebar .aspect .as-sortable-item:nth-of-type(20), .left-sidebar field:nth-of-type(20) .aspect, .left-sidebar .aspect .as-sortable-item:nth-of-type(20) {
    z-index: 1;
    position: relative; }
  .sidebar .sidebar-group, .sidebar field .aspect, .sidebar .aspect .as-sortable-item, .left-sidebar .sidebar-group, .left-sidebar field .aspect, .left-sidebar .aspect .as-sortable-item {
    z-index: auto  !important;
    position: static !important; }
  .sidebar .btn-close, .left-sidebar .btn-close {
    background: transparent;
    border: none !important; }
  .sidebar .addfield-button, .left-sidebar .addfield-button {
    opacity: 0;
    animation-delay: .4s;
    animation-duration: .4s;
    animation-fill-mode: forwards,forwards;
    animation-name: fadein;
    animation-timing-function: ease-in-out;
    transition: all .2s ease-in-out; }
  .sidebar .sidebar-group, .left-sidebar .sidebar-group {
    border-bottom: 1px solid #61728e;
    padding: 7px 0 25px; }
  .sidebar .sidebar-line, .left-sidebar .sidebar-line {
    border-bottom: 1px solid #61728e;
    height: 1px;
    width: 100%;
    margin: 5px 0;
    clear: both; }

.sidebar--modal .dialog-container-inner, .sidebar--modal .dialog-container {
  opacity: 1;
  animation: none;
  left: 0;
  top: 0;
  animation: none; }
.sidebar--modal .dialog-group {
  display: none;
  animation: none; }
.sidebar--modal .field-list.simple, .sidebar--modal .dataset-list.simple {
  left: 0 !important;
  top: 0px !important;
  bottom: 0px;
  width: 250px !important;
  position: absolute;
  animation: none;
  opacity: 1;
  width: 100%;
  height: initial;
  animation: none;
  background: #537289;
  box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.7); }
.sidebar--modal.slide-in .field-list.simple, .sidebar--modal.slide-in .dataset-list.simple {
  left: 0 !important;
  top: -90px !important;
  bottom: 0px;
  width: 100% !important;
  position: absolute;
  animation: none;
  opacity: 1;
  width: 100%;
  height: initial;
  animation: none;
  background: #537289;
  transform: translateY(-100%); }
.sidebar--modal.show .field-list.simple, .sidebar--modal.show .dataset-list.simple {
  animation-delay: .0s;
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-name: translate-down;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.sidebar--modal .dataset-list.simple {
  width: 100%; }
.sidebar--modal .dialog-search {
  animation: none;
  opacity: 1; }
.sidebar--modal .dialog-search:after {
  font-size: 18px;
  top: 12px;
  right: 17px; }
.sidebar--modal .dialog-search input {
  width: 100%; }
.sidebar--modal .dialog-container__close {
  display: none; }

.info-bar {
  position: relative;
  top: 66px;
  padding: 0px 140px;
  width: 100%;
  z-index: 300; }

.last-updated {
  display: inline-block;
  font-weight: 500;
  border-radius: 15px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.58);
  padding: 2px 0px;
  color: #fff;
  margin-right: 10px;
  margin-top: 5px;
  color: #656565;
  box-shadow: none;
  border: none;
  font-size: 12px; }
  .storyboard-viewer .last-updated {
    top: 75px; }
    .storyboard-viewer .last-updated.presentation {
      display: none; }

.date-part-dialog {
  background: #516D7A;
  border: none !important;
  height: auto;
  margin-top: 0;
  position: absolute;
  transition: all .4s ease-out;
  transition: none; }
  .date-part-dialog li {
    padding-top: 5px;
    padding-bottom: 5px; }
  .date-part-dialog li, .date-part-dialog li label {
    color: #fff !important;
    font-size: 1em !important;
    font-weight: 500 !important; }
  .date-part-dialog li:hover {
    background-color: #5de3c8 !important; }
  .date-part-dialog li input {
    vertical-align: sub;
    margin-right: 10px;
    margin-left: 10px; }
  .date-part-dialog .btn-back {
    color: #4a4a4a;
    font-weight: 500;
    transition: all .4s; }
  .date-part-dialog .btn-apply {
    background: #5ac0e7;
    color: #fff;
    font-weight: 500;
    transition: all .4s; }
  .date-part-dialog li input.active:before, .date-part-dialog li input.selected:before {
    /**font-family: 'Font Awesome 5 Pro';
    font-size: 16px;
    color: #1F9DCF;
    content: "\f00c";
    position: relative;
    top: -4px;
    left: -2px;**/ }
  .date-part-dialog:before {
    content: '';
    position: absolute;
    top: -17px;
    left: 30px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 10px;
    border-bottom-color: #516D7A; }
  .date-part-dialog.arrow-bottom:before {
    content: '';
    position: absolute;
    top: initial;
    bottom: -20px;
    left: 30px;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 10px;
    border-top-color: #516D7A; }

.field-display {
  padding: 11px 5px;
  color: #537289;
  background-color: #F4F4F4;
  border-color: #e6e6e6;
  font-size: 1.4em;
  font-weight: 500; }
  .field-display--metric {
    background: #537289;
    height: 49px;
    margin-top: -10px;
    margin-bottom: -17px;
    margin-left: -4px;
    position: relative;
    width: 185px;
    display: inline-block;
    text-align: center; }
    .field-display--metric .dropup, .field-display--metric .dropdown {
      position: absolute;
      top: 0px;
      height: 49px;
      padding: 10px 0;
      width: 100%;
      color: #fff;
      text-decoration: dotted;
      transition: all .4s ease-in;
      background: transparent;
      box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.44); }
      .field-display--metric .dropup:hover, .field-display--metric .dropdown:hover {
        background: #4996d2; }
  .field-display--title {
    display: inline-block;
    padding-left: 5px; }
  .field-display--actions {
    float: right; }
  .field-display .fa-stack {
    font-size: 0.6em; }

/*************************************************************
 *
 * Editor and Viewer Blocks
 * 
*************************************************************/
.editor,
.viewer,
.preview {
  position: relative;
  height: 100%;
  overflow-y: auto; }
  .editor__footer,
  .viewer__footer,
  .preview__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    min-height: 70px; }
  .editor__board,
  .viewer__board,
  .preview__board {
    height: 80%;
    height: calc(100% - 110px);
    padding: 0; }
  .editor__description,
  .viewer__description,
  .preview__description {
    margin: 0 0 6px 0;
    height: 50px;
    max-height: 50px;
    overflow-y: auto;
    padding: 0 0 0 5px; }
  .editor__title, .editor__subtitle,
  .viewer__title,
  .viewer__subtitle,
  .preview__title,
  .preview__subtitle {
    color: #3A84C5;
    font-size: 32px;
    border-bottom: none;
    /* border-bottom: dotted 1px #ccc; */
    display: inline-block;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    /* font-size: 24px; */
    width: 100%;
    background: transparent; }
    .editor__title:focus, .editor__subtitle:focus,
    .viewer__title:focus,
    .viewer__subtitle:focus,
    .preview__title:focus,
    .preview__subtitle:focus {
      border: none;
      box-shadow: none; }
  .editor__subtitle,
  .viewer__subtitle,
  .preview__subtitle {
    color: #3A84C5;
    font-size: 25px;
    border-bottom: none;
    /* border-bottom: dotted 1px #ccc; */
    display: inline-block;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    /* font-size: 24px; */
    width: 100%;
    text-align: right;
    background: transparent; }
    .editor__subtitle:focus,
    .viewer__subtitle:focus,
    .preview__subtitle:focus {
      border: none;
      box-shadow: none; }

.viewer__board {
  height: calc(100% - 60px - 50px); }
  .viewer__board .storyboard-header, .viewer__board .nested-page-nav {
    min-height: 100px;
    padding-top: 0;
    padding: 20px 20px 10px;
    border-radius: 5px;
    /* margin: 0 10px; */
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: transparent; }
  .viewer__board .nested-page-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff;
    top: 79px;
    left: 50px;
    right: 0; }
  .viewer__board .storyboard-page-nav {
    /*             top: 115px;
                left: 150px; */ }
.viewer__footer {
  padding: 20px; }

.editor {
  background: transparent;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-left: 150px;
  padding-right: 150px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .editor.active-content {
    padding-left: 300px;
    padding-right: 0; }
  .editor .info-bar {
    top: -45px;
    right: 15px; }
  .editor__board .storyboard-header, .editor__board .nested-page-nav {
    min-height: 0px;
    padding: 5px 10px;
    background: transparent;
    position: relative; }
    .editor__board .storyboard-header #sub-title, .editor__board .nested-page-nav #sub-title {
      color: #3A84C5;
      font-size: 25px;
      font-weight: 400;
      text-transform: capitalize;
      text-align: right; }
  .editor__board .storyboard-header {
    position: fixed; }
  .editor__board .nested-page-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff; }

/*************************************************************
 *
 * Storyboard Flexbox Styles - Chart Panels
 * 
*************************************************************/
.chart-panel {
  position: relative;
  background: #fff url("../../assets/images/icons/icon.plus.svg") no-repeat center;
  background-color: #fff;
  background-size: 50% 50%;
  flex: 1 0 auto;
  flex-basis: auto;
  margin: 5px 5px;
  box-shadow: 0 0 6px #BFBFBF;
  flex-basis: 100px;
  -webkit-transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
  transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
  /**&.fullscreen {
    position: fixed;
    transform: translateY(0) !important; 
    animation-delay: 0s; 
    animation-duration: .2s; 
    animation-fill-mode: forwards;
    animation-name: fullscreen; 
    animation-timing-function: ease-in-out;    
  } **/ }
  .chart-panel:hover {
    background-color: #DCDCDC; }
    .chart-panel:hover:after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.3) url("../../assets/images/icons/icon.plus.svg") no-repeat center;
      background-size: 50% 50%;
      z-index: 2;
      pointer-events: none; }
    .preview .chart-panel:hover {
      background-color: #fff; }
  .chart-panel:active, .chart-panel:focus {
    outline: none; }
  .chart-panel.sb-visual {
    cursor: pointer !important; }
  .chart-panel.sb-filter, .chart-panel .c-filter {
    box-shadow: none;
    background: transparent !important; }
    .storyboard-filter-block .chart-panel.sb-filter, .storyboard-filter-block .chart-panel .c-filter {
      min-width: 47%; }
    .chart-panel.sb-filter range-slider-filter, .chart-panel.sb-filter fix-min-slider, .chart-panel .c-filter range-slider-filter, .chart-panel .c-filter fix-min-slider {
      z-index: 998; }
    .chart-panel.sb-filter .filter-dropdown, .chart-panel.sb-filter .filter-search, .chart-panel .c-filter .filter-dropdown, .chart-panel .c-filter .filter-search {
      transform: translateY(-30%);
      z-index: 999; }
    .chart-panel.sb-filter .filter-body, .chart-panel .c-filter .filter-body {
      height: 100%; }
    .chart-panel.sb-filter.active-edit .editable .filter-body, .chart-panel .c-filter.active-edit .editable .filter-body {
      pointer-events: all; }
    .chart-panel.sb-filter .editable .filter-body, .chart-panel .c-filter .editable .filter-body {
      pointer-events: none; }
    .chart-panel.sb-filter .viz-container, .chart-panel .c-filter .viz-container {
      overflow: visible; }
  .chart-panel.sb-filter .filter-dropdown, .chart-panel.sb-filter .filter-search {
    padding: 0 10px; }
  .chart-panel .c-filter .viz-container {
    box-shadow: none !important; }
  .preview .chart-panel > .viz-container {
    cursor: default !important; }
  .preview .chart-panel:hover:after {
    content: none !important; }
  .chart-panel.placed-chart:hover:after {
    background: rgba(255, 255, 255, 0.3) url("../../assets/images/icons/icon.tool.svg") no-repeat center;
    background-size: 50% 50%; }
  .viewer__board .chart-panel, .chart-panel.placed-chart {
    background: #fff; }
  .viewer__board .chart-panel:hover:after {
    content: none; }
  .viewer__board .chart-panel:hover:after {
    background: transparent; }
  .storyboard-filter-row .chart-panel {
    background: #ada3c9 url("../../assets/images/icons/icon.filter-white.svg") no-repeat center;
    background-size: 600% 60%;
    border-radius: 10px;
    box-shadow: none;
    z-index: 999; }
    .storyboard-filter-row .chart-panel > div {
      overflow: visible; }
    .storyboard-filter-row .chart-panel .angucomplete-dropdown {
      top: 40px;
      max-height: 250px;
      overflow-y: auto; }
    .storyboard-filter-row .chart-panel:hover {
      background-color: #9083b6; }
    .storyboard-filter-row .chart-panel.placed-chart {
      background: #fff; }
  .viewer__board .storyboard-filter-row .chart-panel {
    background: none;
    box-shadow: none; }
    .viewer__board .storyboard-filter-row .chart-panel:hover {
      background: none; }
  .chart-panel.active-edit {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0) !important;
    border: none !important;
    box-shadow: none !important;
    background-image: none;
    pointer-events: none;
    /**&.fullscreen .viz-container, .viz-container.fullscreen{
        @include center-screen(160px, -20px); 
        //position: fixed !important;
        //width: calc(100% - 300px - 60px - 350px) !important; 
    }**/ }
    @media only screen and (max-width: 1350px) {
      .chart-panel.active-edit.sb-filter, .chart-panel.active-edit.sb-headline {
        flex: 8 0 auto; } }
    .chart-panel.active-edit:hover:after {
      position: absolute;
      content: none;
      background: transparent; }
    .chart-panel.active-edit .viz-container {
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      background: #fff;
      box-shadow: 0px 0px 15px #666666;
      overflow: visible;
      pointer-events: auto; }
    .chart-panel.active-edit .viz-container, .chart-panel.active-edit .viz-category-selector {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateY(calc(-50% + -20px)) translateX(calc(-50% + 160px));
      -moz-transform: translateY(calc(-50% + -20px)) translateX(calc(-50% + 160px));
      -ms-transform: translateY(calc(-50% + -20px)) translateX(calc(-50% + 160px));
      -o-transform: translateY(calc(-50% + -20px)) translateX(calc(-50% + 160px));
      transform: translateY(calc(-50% + -20px)) translateX(calc(-50% + 160px));
      background-color: rgba(255, 255, 255, 0.3);
      min-height: 21vw;
      height: 60%;
      position: fixed;
      width: calc(100% - 300px - 60px - 100px);
      border-radius: 8px;
      background: #fff;
      z-index: 1000000;
      pointer-events: auto; }
    .chart-panel.active-edit.sb-headline .viz-container {
      width: 300px;
      min-width: 30%;
      height: initial;
      min-height: 160px;
      position: absolute; }
    .chart-panel.active-edit.sb-filter .viz-container {
      width: 100%;
      min-width: 0%;
      height: 100%;
      min-height: 0%;
      position: absolute; }
    .chart-panel.active-edit.sb-filter .viz-toolbar {
      left: 0; }
    .chart-panel.active-edit .viz-category-selector {
      z-index: 1000001;
      overflow-y: auto; }
    .chart-panel.active-edit .alert {
      margin-bottom: 0;
      font-size: 11px; }
  .chart-panel.board-icons {
    background-image: none; }
  .chart-panel.empty-chart, .chart-panel.empty-filter {
    display: none; }
  .chart-panel .message-item {
    display: none; }

.hidden-filter-overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  background: repeating-linear-gradient(45deg, rgba(255, 109, 109, 0.1), rgba(195, 61, 61, 0.1) 10px, rgba(255, 66, 66, 0.15) 10px, rgba(226, 226, 226, 0.15) 20px);
  pointer-events: none;
  border-radius: 10px; }

.hide-filter .filter-container {
  pointer-events: auto !important; }

.editor date-selector {
  display: none; }

.hide-filter date-selector {
  display: block; }

.visual-close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  font-size: 22px;
  color: #9B9B9B; }
  .visual-close:hover {
    color: #9B9B9B; }

.visual-fullscreen {
  position: absolute;
  z-index: 3;
  top: 19px;
  right: 20px; }

.visual-type {
  padding: 0;
  margin: 0;
  height: 100%; }
  .visual-type li {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    height: 100%;
    position: relative; }
  .visual-type__raw-table, .visual-type__grouped-table, .visual-type__chart {
    overflow: hidden;
    animation-delay: 0s;
    animation-duration: .4s;
    animation-fill-mode: forwards,forwards;
    animation-name: fadein;
    animation-timing-function: ease-in-out;
    transition: all .2s ease-in-out; }
    .visual-type__raw-table a, .visual-type__grouped-table a, .visual-type__chart a {
      position: absolute;
      bottom: 5px;
      width: 100%;
      left: 0;
      font-weight: 500;
      color: #707886; }
      .visual-type__raw-table a:hover, .visual-type__grouped-table a:hover, .visual-type__chart a:hover {
        text-decoration: none; }
    .visual-type__raw-table:hover, .visual-type__grouped-table:hover, .visual-type__chart:hover {
      background-size: 65% 65%; }
  .visual-type__raw-table {
    background: url("../../assets/images/icons/icon.raw-table.svg") no-repeat center;
    background-size: 60% 60%; }
  .visual-type__grouped-table {
    background: url("../../assets/images/icons/icon.grouped-table.svg") no-repeat center;
    background-size: 60% 60%; }
  .visual-type__chart {
    background: url("../../assets/images/icons/icon.chart.svg") no-repeat center;
    background-size: 60% 60%; }

.visual-tile {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f7f7+0,f4f4f4+100 */
   /* padding: 0px;
   margin: 20px 0px;
   display: block;
   position: relative;
   box-shadow: 1px 1px 3px rgba(#000, .15);
   border-radius: 4px;
   height: 200px; 
   position: relative;
   border: 1px solid #e8e8e8; 
*/ }
  .visual-tile--selected {
    outline: 1px solid #56CCCC; }
  .visual-tile__image {
    display: inline-block;
    height: 100%;
    width: 100%;
    background-color: transparent;
    float: right;
    text-align: center;
    position: relative; }

.visual-tile .visual-title {
  margin-left: 0px; }

.visual-icon {
  height: 110px;
  width: 110px;
  position: absolute;
  /* left: 50%; */
  bottom: -10px;
  right: -10px;
  opacity: 0.25;
  /* transform: translateX(-50%); */
  border-radius: 100%;
  background: transparent;
  background-size: 60% auto;
  background-repeat: no-repeat;
  background-position: center;
  /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15); */ }

.visual-card {
  /* width: calc(100% - 205px); 
  display: inline-block;
  padding: 20px 10px;
  height: 100%;
  position: relative; */ }
  .visual-card__cover {
    /*  position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%; */ }

.visual-selector-inner {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 180px;
  bottom: 20px;
  padding: 0px 50px;
  overflow-x: hidden; }

.visual-tile .visual-type {
  background: #ca7a1f;
  color: #fff;
  padding: 3px;
  border-radius: 3px; }

.visual-tile .visual-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  border-top: 1px solid #E9E9E9; }

.visual-tile-button {
  flex-grow: 1;
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid #E9E9E9;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  color: #505050;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
  .visual-tile-button:hover {
    background: #999999; }
  .visual-tile-button:last-of-type {
    border-right: none; }

.xyplot-balloon {
  animation-duration: .4s;
  animation-fill-mode: forwards;
  animation-name: fadein;
  animation-timing-function: ease-in-out;
  background: rgba(59, 47, 89, 0.8);
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  height: auto;
  left: 10px;
  opacity: 0;
  padding: 5px 10px;
  position: absolute;
  top: 10px;
  width: auto; }

.storyboard-viewer.presentation .page-nav {
  /*         bottom: 0px;
          left: 0;
          top: initial;
          background: $light-grey;
          width: 100%;
          border-radius: 0; 
          text-align: center;
          padding: 9px;
          border-top: 1px solid #CCC;
          position: fixed;  */ }
.storyboard-viewer.presentation .page-nav__page a:hover {
  border: 0; }
.storyboard-viewer.presentation .info-bar {
  top: initial;
  bottom: 10px;
  right: 15px;
  /* position: fixed;  */
  z-index: 200; }
.storyboard-viewer.presentation .storyboard-header {
  min-height: 125px; }

/*************************************************************
 *
 * Filter Lists 
 * 
*************************************************************/
.range-filter .noUi-connect {
  background: #e6e3ef !important;
  border: 1px inset;
  height: 12px; }

.range-start, .range-end {
  color: #242424 !important; }
  .sidebar .range-start, .sidebar .range-end {
    color: #fff !important; }

.range-filter-indicator {
  background: #cac3dc !important;
  border: none !important;
  padding-top: 3px; }
  .range-filter-indicator::before {
    border-top-color: #cac3dc !important;
    top: 25px !important; }

.storyboard-viewer .hide-filter {
  display: none;
  box-shadow: none !important; }

/**************************************************************
*
* Custom Dropdown
*
***************************************************************/
.ui-select-bootstrap .ui-select-choices-row.active > a {
  background-color: #f5f5f5;
  color: #333; }

.register-level-option {
  display: 100%; }
  .register-level-option__icon-container, .register-level-option__content-container {
    display: inline-block; }
  .register-level-option__icon-container {
    font-size: 3.5em;
    padding: 5px 15px 5px 5px; }
  .register-level-option__icon-container img {
    width: auto;
    height: 68px;
    display: inline-block; }
  .register-level-option__content-container {
    width: calc(100% - 50px);
    white-space: initial !important; }
  .register-level-option__title {
    color: #707070; }
  .register-level-option__desc {
    color: #707070;
    display: inline-block; }

/**************************************************************
*
* Period Filter Restyles
*
***************************************************************/
.storyboard-period-filter .viz-container {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial; }
.storyboard-period-filter .row {
  margin-left: initial;
  margin-right: initial; }
.storyboard-period-filter div {
  background: transparent !important;
  box-shadow: none !important; }
.storyboard-period-filter .ui-select-container .btn-default, .storyboard-period-filter .form-control.ui-select-search {
  box-shadow: none !important;
  background: #fff !important;
  /*         border-color: #fff !important; */
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3A84C5;
  /*         border-radius: 20px !important; */
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
  height: 30px; }
.storyboard-period-filter .form-control.ui-select-search {
  border-color: #ddd !important;
  text-overflow: ellipsis;
  overflow: hidden; }

/*************************************************************
*
* Table and Chart Selector - TODO: Update Styles
*
*************************************************************/
.table-chart-selector {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex; }

.table-chart-selector .select-table,
.table-chart-selector .select-visual {
  width: 50%;
  text-align: center;
  border-radius: 5px; }

.table-chart-selector .select-visual {
  background: rgba(170, 205, 201, 0.53); }

.table-chart-selector .select-table {
  background: rgba(195, 220, 236, 0.53); }

/*************************************************************
*
* Page Navigation
*
*************************************************************/
.page-nav__page {
  background: transparent;
  color: #A4C839;
  font-weight: 500;
  margin: 5px 10px 0px;
  border-radius: 0px; }
  .page-nav__page.active {
    padding: 0 5px 0 0;
    background: #fff; }
  .page-nav__page a {
    padding: 7px 10px !important;
    color: #999999; }
    .page-nav__page a:hover {
      border-bottom: 2px dotted #A4C839; }
  .page-nav__page.active a {
    background-color: #A4C839 !important;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 0 #AFAFAF;
    color: #F42534; }
.page-nav__add-new a {
  font-size: 2rem;
  color: #232A2D; }
  .page-nav__add-new a:hover, .page-nav__add-new a:focus, .page-nav__add-new a:active {
    background: transparent !important;
    color: #A4C839;
    border: none;
    outline: none; }

.context-switcher__dropdown {
  left: -15px;
  width: 240px; }

.storyboard-filter-row .filter-input,
.storyboard-filter-row .filter-dropdown {
  margin: 0px auto; }

.storyboard-filter-sumbit-row {
  text-align: center;
  padding: 20px; }

.sb-btn {
  position: absolute;
  top: 10px;
  right: 25px; }

.filter-label {
  color: #656565;
  font-family: "lato";
  font-size: 13px;
  font-weight: 500;
  left: 50%;
  position: absolute;
  text-shadow: 1px 1px 4px #ccc;
  text-transform: capitalize;
  top: 0px;
  transform: translateX(-50%); }

.filter-label--slider {
  top: 0px;
  left: 50%;
  transform: translateX(-50%); }

.viz-topbar {
  width: 100%;
  position: absolute;
  top: -30px;
  height: 30px;
  display: none; }
.viz-bottombar {
  position: absolute;
  bottom: -85px;
  width: 100%;
  color: #fff;
  pointer-events: auto; }
  .has-filters .viz-bottombar {
    bottom: -135px; }
  .viz-bottombar.no-toolbar {
    bottom: -39px; }
.viz-toolbar {
  height: 45px;
  padding: 10px 15px;
  background: #fff;
  position: fixed;
  left: 360px;
  bottom: 0;
  right: 0;
  z-index: 2;
  color: #747474;
  z-index: 3000000;
  pointer-events: auto; }
  .viz-toolbar .h-divider {
    border-left: 1px solid #BFBDBD;
    margin-left: 3px;
    margin-right: 3px;
    height: 18px;
    display: inline-block;
    width: 1px;
    position: relative;
    top: 4px; }
.viz-buttons {
  background-color: transparent;
  padding: 15px 5px;
  text-align: center;
  color: #3F4652;
  display: inline-block;
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: initial !important;
  pointer-events: auto; }
  .viz-buttons.small-space .btn-chart-actions span {
    display: none; }
  .viz-buttons__group {
    text-align: right; }
    .viz-buttons__group--sorting {
      text-align: left;
      width: auto;
      display: inline-block; }
.viz-filters {
  z-index: 3;
  position: absolute;
  bottom: 0px;
  display: flex;
  height: 55px;
  left: 10px;
  right: 10px; }
  .active-edit .viz-filters {
    bottom: -50px;
    background: #fff;
    left: 0px;
    right: 0px;
    padding-left: 5px;
    padding-right: 5px;
    display: none; }
  .viz-filters > div {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: block;
    position: relative;
    margin-left: 5px;
    margin-right: 5px; }
  .viz-filters .viz-container {
    overflow: visible; }
.viz-compatibility-overlay {
  position: fixed;
  bottom: 45px;
  height: 50px;
  background-color: #a6c4d2;
  padding: 10px;
  left: 360px;
  right: 0px;
  color: white; }
.viz-mode-indicator {
  background-color: #67539B;
  height: 60px;
  width: 78px;
  position: absolute;
  top: -34px;
  right: -55px;
  transform: rotate(-40deg); }
  .viz-mode-indicator i.fa {
    color: #fff;
    position: absolute;
    display: inline-block;
    font-size: 14px;
    z-index: 4;
    position: bottom;
    left: 4px;
    transform: rotate(40deg);
    bottom: 28px; }

.active-edit range-slider-filter, .active-edit fix-min-slider {
  margin-top: 30px; }

.viz-suggestions, .edit-group-label {
  background-color: #ededed;
  height: 100%;
  left: 360px;
  overflow: hidden;
  padding: 5px 70px 5px 10px;
  position: fixed;
  text-align: left;
  top: initial;
  transition: all .3s ease-in;
  right: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all .4s ease-in;
  bottom: 0;
  height: 45px;
  z-index: 3000001; }
  .viz-suggestions button, .edit-group-label button {
    margin-left: 3px;
    margin-right: 3px; }
  .viz-suggestions.active, .edit-group-label.active {
    opacity: 1;
    pointer-events: initial; }

.edit-group-label {
  height: 45px; }

.suggestion-image {
  height: 15px;
  width: 15px; }

.suggestion-row {
  transition: all .4s ease-in;
  min-width: 50px;
  margin-top: 3px;
  display: inline-block; }
  .suggestion-row:hover, .suggestion-row.active, .suggestion-row.focus {
    background: rgba(255, 255, 255, 0.2);
    outline: none; }

.suggestion-button {
  display: inline-block;
  margin-left: 2px;
  margin-right: 2px;
  padding: 4px 10px;
  transition: all .4s ease-in-out;
  font-size: 1.3vh;
  display: inline-block; }
  .suggestion-button:focus, .suggestion-button:active {
    outline: none; }
  .suggestion-button img {
    height: 18px;
    width: 18px; }

.btn-fullscreen {
  background: transparent;
  color: #fff; }

.viz-category-selector {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2%;
  z-index: 1; }

.viz-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden; }
  .calendarHeatmap .viz-container {
    overflow: visible; }
  .viz-container:focus {
    outline: none; }
  .sidebar .viz-container {
    overflow: visible;
    position: relative; }
  .viz-container .chart-adviser {
    background-color: #fff;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 30px; }
    .viz-container .chart-adviser .message {
      position: relative;
      display: block;
      width: 100%;
      font-weight: 300;
      text-align: center;
      font-size: 2rem;
      color: #858585; }
    .viz-container .chart-adviser .message-item {
      position: relative;
      display: block;
      width: 100%;
      font-weight: 500;
      text-align: center;
      font-size: 1.5rem;
      color: #52a0d0;
      border: 1px solid rgba(177, 192, 201, 0.14);
      padding: 10px 0;
      margin-top: 3px;
      border-radius: 8px; }
  .viz-container .headline .chart-adviser .message-item {
    display: none; }
  .viz-container .chart-adviser .message-item:before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f069";
    margin-right: 5px; }
  .viz-container .chart-adviser {
    position: absolute; }

.insufficient .viz-inner-container.header .chart-adviser, .chart-panel.header .viz-container.insufficient, .chart-panel.filter-headerL .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.headline.neutral.svg") no-repeat center;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important; }

.insufficient .viz-inner-container.sparkcolumn .chart-adviser, .chart-panel.sparkcolumn .viz-container.insufficient, .chart-panel.filter-sparkcolumn .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.sparkcolumn.neutral.svg") no-repeat center;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important; }

.insufficient .viz-inner-container.sparkline .chart-adviser, .chart-panel.sparkline .viz-container.insufficient, .chart-panel.filter-sparkline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.sparkline.neutral.svg") no-repeat center;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important; }

.insufficient .viz-inner-container.trendheadline .chart-adviser, .chart-panel.trendheadline .viz-container.insufficient, .chart-panel.filter-trendheadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.trendheadline.neutral.svg") no-repeat center;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important; }

.viz-container .viz-inner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.viz-container.editableTitle .viz-inner-container {
  top: 40px; }

.viz-container.has-visible-filters {
  bottom: 55px;
  height: auto;
  outline: none; }

.viz-container .loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  vertical-align: middle;
  text-align: center; }

.viz-indicators {
  color: #999;
  padding: 0;
  margin: 0;
  width: auto;
  vertical-align: middle; }
  .viz-indicators > div {
    display: inline-block;
    margin-bottom: -15px !important; }

.viz-action-container {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  border-top: 1px solid #e8e8e8;
  width: 100%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
  .sb-visual:hover .viz-action-container {
    opacity: 1; }
  .viz-action-container__action {
    flex-grow: 1;
    padding: 5px 5px;
    font-size: 14px;
    color: #B0B0B0; }

.record-limit {
  font-size: 13px; }
  .record-limit__input {
    border: none;
    font-size: 12px;
    border-radius: 0;
    padding: 2px;
    height: auto;
    font-weight: 500;
    width: 40px;
    display: inline;
    box-shadow: none;
    text-align: center;
    border-bottom: 1px dotted #b4b4b4;
    background: transparent; }
    .record-limit__input:focus, .record-limit__input:hover {
      box-shadow: none;
      border-bottom: 1px dotted #56CCCC;
      font-weight: 500; }
    .record-limit__input:hover {
      background: #F8F8F8;
      box-shadow: none;
      font-weight: 500; }

.viz-buttons-overlay {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1; }

.viz-title-editor {
  width: 100%;
  height: 40px;
  cursor: text;
  font-size: 22px;
  container-type: inline-size; }

@supports (font-size: 1cqi) {
  .viz-title-editor input {
    font-size: clamp(0.8rem, 4cqi, 2.5rem) !important; } }
.viz-title-editor input {
  width: 100%;
  text-align: center;
  display: inline-block;
  border: none;
  font-family: Verdana, sans;
  font-size: 22px;
  line-height: 40px;
  height: 40px;
  background: inherit;
  padding: 0px;
  margin: 0px; }

.active-edit .viz-title-editor input {
  border-bottom: 2px inset; }

.active-edit .viz-title-editor:hover input {
  border-bottom: dotted 2px #A0A0A0;
  background-color: rgba(0, 0, 0, 0.03); }

.active-edit .viz-title-editor input:focus {
  border-bottom: dotted 2px #808080;
  background-color: rgba(0, 0, 0, 0.1); }

.storyboard-filter-submit-row {
  text-align: center;
  padding: 20px;
  z-index: 2; }

.storybaord-filter-row .viz-container {
  min-height: 60px; }

.storyboard-filter-row .viz-container > div {
  position: absolute;
  width: 100%; }

.storyboard-filter-row .active-edit .viz-container > div {
  top: initial !important;
  transform: none !important;
  position: absolute;
  width: 100%; }

.edit-mask {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999; }

.storyboard-editor.open .edit-mask {
  display: block; }

.active-edit, .chart-panel.active-edit {
  box-shadow: 0px 0px 15px #666666;
  z-index: 10000; }

/************************************************************
* 
* Modal Styles
*
*************************************************************/
/************************************************************
* 
* Modal Filter 
*
*************************************************************/
.modal-body .field-list {
  top: 0px;
  height: 100%;
  position: relative; }

.modal-body .field-list h3 {
  font-size: 14px;
  color: #fff; }

.modal-body .dialog-group__options,
.modal-body .field-selector-title {
  display: none; }

.modal-body .selector-group-dropdown {
  display: block !important;
  padding: 10px 5px;
  border-bottom: 1px solid #6F7584; }

.modal-body .right-pane {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 250px;
  right: 10px;
  overflow-y: auto;
  padding: 0px 10px; }

.modal-body .dataset-filter-container {
  position: relative;
  width: 45%;
  margin: 2%;
  display: inline-block;
  overflow: visible;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  padding: 2px 10px; }
  .modal-body .dataset-filter-container--header {
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 15px;
    margin-top: -2px;
    padding-top: 2px;
    background: #eee; }
  .modal-body .dataset-filter-container--body {
    padding-left: 10px;
    padding-right: 10px; }

.modal-body .viz-container {
  overflow: visible; }

.modal-body .aspect__selected {
  background: #808080 !important;
  margin: 10px 15px;
  color: #fff;
  padding: 10px; }
  .modal-body .aspect__selected i {
    float: right; }

/*************************************************************$
*
* Selection Blocks
*
*************************************************************/
.select-block {
  min-height: 150px;
  border: 1px solid #DBDBDB;
  color: #7F7F7F; }
  .select-block--web {
    background: transparent url("../../assets/images/icons/icon.web.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--postgres {
    background: transparent url("../../assets/images/icons/icon.postgresql.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--elasticsearch {
    background: transparent url("../../assets/images/icons/icon.elasticsearch.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--ftp {
    background: transparent url("../../assets/images/icons/icon.ftp.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--dropbox {
    background: transparent url("../../assets/images/icons/icon.dropbox.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--runkeeper {
    background: transparent url("../../assets/images/icons/icon.runkeeper.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--solr {
    background: transparent url("../../assets/images/icons/icon.solr.svg") no-repeat bottom right;
    background-size: 100px auto; }
  .select-block--amazon {
    background: transparent url("../../assets/images/icons/icon.amazon_redshift.svg") no-repeat bottom right;
    background-size: 150px auto; }
  .select-block--iseek {
    background: transparent url("../../assets/images/icons/icon.iseek.svg") no-repeat bottom right;
    background-size: 150px auto; }
  .select-block .caption h3 {
    font-family: "Oswald", sans-serif; }

.dataview-icon {
  position: fixed;
  z-index: 0;
  bottom: 90px;
  bottom: calc(90px + 20px);
  right: 20px;
  height: 150px;
  width: 300px; }
  .dataview-icon--iseek {
    background: transparent url("../../assets/images/icons/icon.iseek.svg") no-repeat bottom right;
    background-size: contain; }
  .dataview-icon--amazon {
    background: transparent url("../../assets/images/icons/icon.amazon_redshift.svg") no-repeat bottom right; }
  .dataview-icon--formstack {
    background: transparent url("../../assets/images/icons/icon.formstack.svg") no-repeat bottom right; }
  .dataview-icon--postgres {
    background: transparent url("../../assets/images/icons/icon.postgres.svg") no-repeat bottom right;
    background-size: contain; }
  .dataview-icon--elasticsearch {
    background: transparent url("../../assets/images/icons/icon.elasticsearch.svg") no-repeat bottom right;
    background-size: contain; }

/*************************************************************
*
* Search Form styles and input
*
*************************************************************/
input.search {
  width: 100px;
  box-sizing: border-box;
  border: 0px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  color: black;
  background-color: transparent;
  height: 100%;
  transition: width 0.4s ease-in-out; }

.animated-search {
  position: relative;
  padding-left: 25px; }
  .animated-search .input-icon {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%); }

input.search:focus {
  width: 80%; }

.container-flex {
  display: flex; }

.flex-ele {
  flex-shrink: 2;
  margin-right: 20px; }
  .flex-ele--grow {
    flex-grow: 6; }

/*************************************************************
*
* Filter Directives 
*
.*************************************************************/
.ui-select-container .btn-default {
  box-shadow: none !important;
  background: #fff;
  border-color: #E1E1E1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #777; }
  .ui-select-container .btn-default i {
    color: #8A8A8A; }

.filter-slider .viz-bottombar.no-toolbar, .filter-rangeslider .viz-bottombar.no-toolbar {
  bottom: -85px; }
.filter-input {
  display: block; }

.aspect__selected.filter fix-min-slider, .aspect__selected.filter range-slider-filter, .aspect__selected.filter .button-group-body {
  position: relative !important;
  display: inline-block; }
  .aspect__selected.filter fix-min-slider .rz-limit, .aspect__selected.filter fix-min-slider .rz-bubble, .aspect__selected.filter range-slider-filter .rz-limit, .aspect__selected.filter range-slider-filter .rz-bubble, .aspect__selected.filter .button-group-body .rz-limit, .aspect__selected.filter .button-group-body .rz-bubble {
    color: #7d7d7d; }
.aspect__selected.filter .button-group-body .button-group {
  transform: none; }
.aspect__selected.filter .ui-select-container .btn-default {
  width: 100%; }
.aspect__selected.filter .filter-editor {
  color: #7d7d7d;
  box-shadow: content-box; }
.aspect__selected.filter .ui-select-multiple.ui-select-bootstrap {
  min-height: 32px;
  height: auto;
  border-radius: 0px;
  border: 1px solid #E1E1E1;
  box-shadow: none; }

.ui-select-multiple.ui-select-bootstrap {
  border-radius: 1px;
  border: 1px solid #E1E1E1;
  box-shadow: none;
  min-height: 32px; }

.filter-dropdown .ui-select-container {
  min-height: 34px; }

/*************************************************************
*
* AG Grid Table styles
*
*************************************************************/
.ag-fresh .ag-root, .ag-theme-fresh .ag-root {
  border: none !important; }
.ag-fresh .ag-header, .ag-fresh .ag-header-row, .ag-theme-fresh .ag-header, .ag-theme-fresh .ag-header-row {
  background: #0075c2 !important;
  color: #fff !important;
  font-size: 1.1em;
  font-family: "proxima-nova", sans-serif;
  border-bottom: none !important;
  font-weight: 500;
  text-shadow: 1px 1px 1px rgba(76, 73, 73, 0.6);
  text-align: left; }
.ag-fresh .ag-header-icon svg polygon, .ag-theme-fresh .ag-header-icon svg polygon {
  fill: rgba(76, 73, 73, 0.6); }
.ag-fresh .ag-header-cell, .ag-theme-fresh .ag-header-cell {
  border-right: 1px rgba(255, 255, 255, 0.6) solid !important; }
.ag-fresh .ag-row-footer, .ag-theme-fresh .ag-row-footer {
  border-top: 1px solid #848484;
  border-bottom: 1px solid #848484; }
.ag-fresh .ag-row-level-0.ag-row-footer, .ag-theme-fresh .ag-row-level-0.ag-row-footer {
  box-shadow: 1px 1px 3px rgba(6, 6, 6, 0.2) inset;
  background: #E8E8E8;
  border-top: none;
  border-bottom: 1px solid #848484; }
.ag-fresh .ag-footer-cell, .ag-theme-fresh .ag-footer-cell {
  font-weight: 500;
  color: #484848;
  background: #E2E1E1;
  line-height: 1.3em;
  font-style: normal !important; }
.ag-fresh .ag-row-level-0 .ag-footer-cell, .ag-theme-fresh .ag-row-level-0 .ag-footer-cell {
  background: transparent;
  color: #3B3B3B; }

.ag-cell {
  color: #333;
  text-shadow: none;
  white-space: nowrap !important; }

.ag-cell-value h {
  background: #ffff00; }

.ag-paging-panel {
  padding: 12px 10px !important; }

.ag-paging-row-summary-panel {
  text-align: left;
  font-size: 13px;
  color: #5D5D5D;
  width: auto !important; }
  .ag-paging-row-summary-panel:before {
    content: "\f0c9  ";
    font-family: "Font Awesome 5 Pro"; }

.ag-paging-page-summary-panel {
  text-align: right;
  float: right;
  font-size: 13px;
  color: #5D5D5D; }

.ag-paging-button {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.298039);
  border-radius: 5px;
  box-sizing: border-box;
  color: black;
  margin: 1px;
  opacity: 0.7;
  outline: none;
  display: inline; }
  .ag-paging-button:hover {
    background: #b9cdf5;
    border: 1px solid rgba(0, 0, 0, 0.298039);
    border-radius: 5px;
    box-sizing: border-box;
    color: black;
    margin: 1px;
    opacity: 1;
    outline: none;
    display: inline; }
  .ag-paging-button:disabled {
    background: #eaeaea;
    color: #c7c7c7 !important;
    border: 1px solid rgba(169, 169, 169, 0.29804);
    border-radius: 5px;
    box-sizing: border-box;
    color: black;
    margin: 1px;
    opacity: 1;
    outline: none;
    display: inline; }

.div-cell-value {
  position: absolute;
  padding-left: 4px;
  font-weight: bold;
  font-size: 13px;
  color: #000000;
  font-size: 11px;
  margin-top: 3px;
  padding: 0px 4px;
  margin-left: 6px;
  font-style: normal; }

#cellModal .modal-content {
  position: absolute;
  max-height: 500px;
  min-height: 400px;
  width: 550px;
  white-space: pre-wrap !important; }

#cellModal .modal-header {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px; }

#cellModal .modal-body {
  height: 320px;
  overflow-y: auto; }

#cellModal .modal-footer {
  top: -20px;
  position: relative;
  background: #fbfbfb; }

#cellModal .modal-body p h {
  background: #ffff00; }

.long-text, .with-drillThrough {
  transition: background .3,s ease-in;
  background-color: transparent; }
  .long-text:hover, .with-drillThrough:hover {
    cursor: pointer !important;
    background: #e9f7ff; }

.with-drillThrough::after {
  content: "\f103";
  /* fa-angle-double-down */
  font-family: 'Font Awesome 5 Pro';
  float: right;
  padding-right: 4px;
  color: #B0B0B0; }

.filter-container.required-missing {
  border-radius: 10px;
  background: repeating-linear-gradient(45deg, rgba(62, 121, 255, 0.1), rgba(62, 121, 255, 0.1) 10px, rgba(62, 121, 255, 0.15) 10px, rgba(62, 121, 255, 0.15) 20px); }

.editor .ag-body-container,
.editor .filter-container {
  pointer-events: none;
  cursor: default; }

.storyboard-period-filter .filter-container {
  pointer-events: all; }

.mark {
  font-weight: normal;
  font-size: 25px;
  position: absolute;
  z-index: 1000;
  transform: translateY(-2px);
  right: 10px;
  background: transparent;
  padding-top: 0px; }
  .mark--check {
    color: #4AE2C1; }
  .mark--minus {
    color: #F95355;
    pointer-events: none;
    top: 6px;
    right: 10px; }

.facet-box .mark--minus {
  display: none; }
.facet-box.excludeValues .mark--minus {
  display: inline-block; }

/*************************************************************
*
* rzslider Styles
*
*************************************************************/
rzslider .rz-pointer {
  background-color: #76B74B;
  outline: none !important;
  transition: background-color .4s ease-out;
  top: -6px;
  width: 15px;
  height: 15px; }
  rzslider .rz-pointer.rz-active {
    background-color: #69f60c; }
  rzslider .rz-pointer.rz-active:after {
    background-color: #fff;
    top: 6px !important;
    left: 6px !important;
    width: 8px;
    height: 8px; }
.filter-facet-sparkline rzslider .rz-pointer {
  background: url("../../assets/images/icons/icon.slider-pointer.svg") no-repeat top center;
  background-size: contain;
  outline: none !important;
  transition: background-color .4s ease-out;
  top: -9px;
  width: 15px;
  height: 22px;
  border-radius: 0px; }
.filter-facet-sparkline rzslider .rz-bubble {
  display: none; }
.filter-facet-sparkline rzslider .rz-bar-wrapper {
  opacity: 0 !important; }
.filter-facet-sparkline rzslider .rz-pointer-min {
  margin-left: 0; }
  .filter-facet-sparkline rzslider .rz-pointer-min:before {
    font-family: 'Font Awesome 5 Pro';
    content: '';
    top: 37px;
    bottom: 0;
    width: 1px;
    background: #0a2f46;
    margin-left: 7px;
    text-align: left;
    text-indent: -0.25em;
    font-weight: 700;
    border-radius: 7px;
    color: #0a2f46;
    opacity: .5; }
.filter-facet-sparkline rzslider .rz-pointer-max {
  margin-left: 0; }
  .filter-facet-sparkline rzslider .rz-pointer-max:before {
    font-family: 'Font Awesome 5 Pro';
    content: '';
    top: 37px;
    bottom: 0;
    width: 1px;
    background: #0a2f46;
    margin-left: 7px;
    text-align: left;
    text-indent: -0.25em;
    font-weight: 700;
    border-radius: 7px;
    color: #0a2f46;
    opacity: .5; }
.filter-facet-sparkline rzslider .rz-pointer:after {
  font-family: 'Font Awesome 5 Pro';
  content: '\f0d8';
  font-weight: 700;
  position: fixed;
  width: 0px;
  height: 0px;
  left: initial;
  right: initial;
  background: transparent;
  top: initial;
  bottom: 8px;
  margin-left: 3.25px;
  color: #0a2f46;
  font-size: 13px; }
.filter-facet-sparkline rzslider .rz-pointer.rz-active:after {
  left: initial !important;
  top: initial !important; }

rzslider .rz-pointer:after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #ffffff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  content: ''; }

rzslider .rz-bar.rz-selection {
  background: #37b8b8; }

/*************************************************************
*
* Bootstrap Date Pickers
*
*************************************************************/
.bootstrap-datetimepicker-widget table thead tr th {
  color: #000;
  background: #fff;
  border: none !important; }
.bootstrap-datetimepicker-widget table td, .bootstrap-datetimepicker-widget table td span {
  color: #1E78B1;
  font-weight: 500; }
.bootstrap-datetimepicker-widget table td.old, .bootstrap-datetimepicker-widget table td.new {
  color: #82BEE5; }
.bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled span {
  color: #CDCDCD; }

/*************************************************************
*
* Range Sliders
*
*************************************************************/
.ui-rangeSlider-label {
  font-size: 12px;
  transition: all .2s ease-out;
  opacity: .5; }
.ui-rangeSlider:hover .ui-rangeSlider-label {
  opacity: 1; }

.dataset-filter-container .range-filter {
  top: -40px !important; }

/*************************************************************
*
* Breadcrumbs
*
*************************************************************/
.breadcrumb-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid #DEDEDE;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  overflow-y: hidden;
  position: relative;
  z-index: 1; }
  .breadcrumb-flex li {
    background: #191919;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.15);
    flex-grow: 1;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    text-align: center;
    transition: all .4s ease-out;
    cursor: default; }
    .breadcrumb-flex li:nth-of-type(1) {
      background: #8aa4b8;
      z-index: 6; }
      .breadcrumb-flex li:nth-of-type(1):after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #8aa4b8;
        position: absolute;
        top: 0;
        right: -68px; }
    .breadcrumb-flex li:nth-of-type(2) {
      background: #6a8ca5;
      z-index: 5; }
      .breadcrumb-flex li:nth-of-type(2):after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #6a8ca5;
        position: absolute;
        top: 0;
        right: -68px; }
    .breadcrumb-flex li:nth-of-type(3) {
      background: #5d7f99;
      z-index: 4; }
      .breadcrumb-flex li:nth-of-type(3):after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #5d7f99;
        position: absolute;
        top: 0;
        right: -68px; }
    .breadcrumb-flex li:nth-of-type(4) {
      background: #537289;
      z-index: 3; }
      .breadcrumb-flex li:nth-of-type(4):after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #537289;
        position: absolute;
        top: 0;
        right: -68px; }
    .breadcrumb-flex li:nth-of-type(5) {
      background: #405869;
      z-index: 2; }
      .breadcrumb-flex li:nth-of-type(5):after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #405869;
        position: absolute;
        top: 0;
        right: -68px; }
    .breadcrumb-flex li:last-of-type {
      background: #364a59;
      z-index: 1; }
      .breadcrumb-flex li:last-of-type:after {
        content: none; }
    .breadcrumb-flex li:last-of-type {
      border-right: none; }
    .breadcrumb-flex li:hover {
      background: #405869;
      text-decoration: none;
      cursor: pointer; }
    .breadcrumb-flex li + li:before {
      content: ''; }
    .breadcrumb-flex li a {
      color: #fff;
      font-size: 1.1em; }
      .breadcrumb-flex li a:hover {
        text-decoration: none; }
    .breadcrumb-flex li .button {
      margin-top: -5px;
      margin-bottom: -5px;
      font-size: .8em; }
    .breadcrumb-flex li.active {
      background: #FFF;
      color: #5FC2CC; }
      .breadcrumb-flex li.active a {
        color: #537289; }
      .breadcrumb-flex li.active:after {
        content: none;
        height: 0;
        width: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 34px;
        border-left-color: #FFF;
        position: absolute;
        top: 0;
        right: -68px; }
      .breadcrumb-flex li.active:hover {
        background: #FFF; }

/*************************************************************
*
* Login Stat Boxes
*
*************************************************************/
.stat-widgets {
  position: absolute;
  width: 100%;
  overflow: hidden;
  bottom: 0;
  left: 0;
  height: 200px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  z-index: 1; }

.stat-box {
  color: #fff;
  min-width: 250px;
  flex-grow: 1;
  margin: 0 10px;
  height: 150px;
  box-shadow: 0px 0px 3px #000;
  text-align: center;
  position: relative;
  top: 150px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .stat-box__stat {
    font-size: 3.2em;
    font-weight: 500;
    width: 100%;
    position: absolute;
    padding: 25px;
    bottom: 0;
    background-color: rgba(118, 183, 75, 0.5); }
  .stat-box__title {
    top: 0;
    font-size: 1.2em;
    font-weight: 500;
    padding: 15px;
    position: absolute;
    width: 100%;
    background-color: #76b74b; }
  .stat-box:hover {
    top: 50px; }

/*************************************************************
*
* Login Stat Boxes
*
*************************************************************/
.date-filter-dialog .ng-invalid-pattern {
  background-color: rgba(255, 0, 0, 0.5); }

.upload-dataset {
  background: #F9F9F9;
  border-radius: 6px;
  border: 4px dashed #e3e3e3;
  color: #838383;
  font-size: 12pt;
  padding: 24px;
  text-align: center;
  transition: all .2s ease-in; }

.upload-dataset:hover {
  background: #fff;
  cursor: pointer;
  transform: scale(1.01); }

/*************************************************************
*
* NG Tag input
*
*************************************************************/
.mobile-table-selector {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 999999; }
  .mobile-table-selector .toggle-button {
    top: 15px;
    right: 15px;
    position: absolute;
    font-size: 18px;
    background: inherit;
    border-radius: 100% 0px 100% 100%;
    z-index: 20;
    width: 25px;
    color: #fff;
    text-align: center; }
  .mobile-table-selector .selector-container {
    z-index: 40; }

/****************************************************************
*
* Radial Menu
*
*****************************************************************/
.radial-menu {
  position: relative; }
  .radial-menu--percentage {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 100%;
    left: 0;
    padding: 6px 10px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%; }
    .radial-menu--percentage:after {
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      transition: all 0.5s;
      display: inline-block;
      position: absolute;
      top: 4px;
      left: 4px;
      right: 4px;
      bottom: 4px;
      border-radius: 50%;
      text-align: center;
      font-weight: bold;
      color: #6D6D6D;
      background: #fff;
      font-size: 9px;
      padding: 6px 5px;
      z-index: 4;
      box-shadow: 0px 0px 2px #878787; }
  .radial-menu--percentage:hover:after {
    background: #E25858;
    font-color: #fff;
    content: "\f00d";
    color: #fff;
    font-family: 'Font Awesome 5 Pro'; }
  .radial-menu--filter {
    background: transparent;
    border-radius: 50%;
    padding: 0px;
    outline: none;
    text-align: center;
    transition: all .2s ease-in;
    vertical-align: middle;
    bottom: 0;
    color: #B0B0B0; }
    .radial-menu--filter.active {
      background: #B0B0B0;
      padding: 5px 10px; }
      .radial-menu--filter.active .fa {
        color: #fff; }

.filter-editor {
  box-sizing: content-box; }

.radial-flyout {
  position: absolute; }
  .radial-flyout ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: absolute;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none; }
  .radial-flyout.active ul {
    display: block;
    visibility: visible;
    pointer-events: initial; }
  .radial-flyout li {
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0; }
  .radial-flyout--down.active li {
    opacity: 1;
    padding: 5px 10px;
    background: #537289;
    color: #fff;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.31); }
    .radial-flyout--down.active li:hover {
      background: #2d4063; }
    .radial-flyout--down.active li:nth-of-type(1) {
      top: 3px;
      left: -75px; }
    .radial-flyout--down.active li:nth-of-type(2) {
      top: 45px;
      left: -58px; }
    .radial-flyout--down.active li:nth-of-type(3) {
      top: 63px;
      left: -10px; }
  .radial-flyout--up.active li {
    opacity: 1;
    padding: 5px 10px;
    background: #537289;
    color: #fff;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.31); }
    .radial-flyout--up.active li:hover {
      background: #2d4063; }
    .radial-flyout--up.active li:nth-of-type(1) {
      top: -50px;
      left: 48px; }
    .radial-flyout--up.active li:nth-of-type(2) {
      top: -65px;
      left: -2px; }
    .radial-flyout--up.active li:nth-of-type(3) {
      top: -11px;
      left: 80px; }

/************************************************************* 
*
* Datasset Facet Box in facet screen
*
*************************************************************/
.storyboard-creator-nav {
  z-index: 1000; }

.filter-item-group {
  overflow-x: auto;
  width: 100%;
  height: 115px; }
  .filter-item-group--name {
    display: inline-block;
    white-space: nowrap;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis; }

.facet-box.dataset-item:focus, .facet-box.dataset-item:focus-within {
  z-index: 2000; }

.dataset-facets .facet-box {
  width: 47%;
  max-height: 325px;
  display: inline-block;
  position: relative;
  margin: 0px 0 15px 0px;
  border: 1px solid #999; }

.fullscreen .dataset-facets {
  position: fixed;
  left: 0;
  top: 65px; }

.fullscreen .facet-container {
  height: auto;
  display: flex;
  flex-wrap: wrap; }

.filter-facet-text .field-header--name, .filter-facet-date .field-header--name, .filter-facet-num .field-header--name, .dataset-facets-body .field-header--name {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 55px); }

.placed-chart .fa-check-circle, .placed-chart .exclude-missing-toggle {
  display: none !important; }

.filter-facet-sparkline .rzslider-element {
  padding: 0 30px; }
.filter-facet-sparkline .sparkline-element {
  top: 0; }

rzslider .rz-pointer::before {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  display: inline-block; }

.dataset-facets-body__expand {
  position: absolute;
  right: 10px;
  top: 10px; }

.segment-filters .filter-search .filter-label {
  display: inline; }

.facets-item {
  display: flex; }
  .facets-item > div {
    width: 18px; }

.filter-search .filter-label {
  display: none; }

.gridstack-item {
  position: relative; }
  .gridstack-item--chart-options {
    position: absolute;
    bottom: 0;
    left: 0px;
    right: 0px;
    background: #56CCCC;
    display: none;
    opacity: 0;
    transition: opacity .2s ease-in;
    padding: 5px 0;
    cursor: move; }
    .gridstack-item--chart-options a, .gridstack-item--chart-options span {
      color: #fff;
      display: inline-block;
      padding: 0px 0px 0px 10px; }
  .storyboard-editor .grid-stack-item:hover .gridstack-item--chart-options {
    display: block;
    opacity: 1;
    z-index: 1001; }

/************************************************************* 
*
* Styles for Drill-Through pages
*
*************************************************************/
.nested-page-nav {
  margin: 0px 10px 15px 10px;
  padding: 10px 20px;
  top: 79px;
  left: 50px;
  right: 0; }

.nested-page-nav .nested-breadcrumbs {
  border-bottom: 1px solid #969696;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: none; }

.nested-page-nav .fa-circle {
  color: #7297a3; }

.nested-page-nav .fa-level-down {
  color: white; }

.nested-page-nav .filtered-by {
  color: #969696;
  font-size: 13px;
  border-bottom: 2px solid #d5e2e5;
  margin-right: 6px; }

.nested-page-nav .filter-values {
  color: #7297a3;
  font-size: 2em;
  vertical-align: bottom; }

.nested-page-nav .filter-values .filter-value {
  vertical-align: bottom; }

.nested-page-nav .filter-values .filter-value:after {
  content: ", ";
  vertical-align: bottom; }

.nested-page-nav .filter-values:last-child .filter-value:last-child:after {
  content: ""; }

.nested-page-nav .nested-pages .button {
  box-shadow: 0px 0px 4px #888888;
  width: inherit;
  padding: 0 10px !important;
  margin-right: 10px; }

.nested-page-nav .nested-page-separator {
  color: #7297a3;
  margin-right: 8px; }

.nested-page-nav .nested-pages .button:last-child {
  box-shadow: none; }

.nested-page-nav .nested-pages .button .fa-home {
  color: #7297a3; }

.active-nested-page {
  position: relative;
  box-shadow: none; }

.active-nested-page::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #7297a3; }

.menu-tabs {
  display: block; }
  .menu-tabs .nav {
    border-bottom: 1px solid transparent; }
  .menu-tabs .nav > li > a {
    border-top: 0 solid transparent !important;
    border-left: 0 solid transparent !important;
    border-right: 0 solid transparent !important;
    border-bottom: 0 solid transparent !important; }
    .menu-tabs .nav > li > a mark {
      position: relative;
      height: 18px;
      width: 18px;
      border-radius: 100%;
      display: inline-block;
      background: #114d72;
      color: #fff; }
      .menu-tabs .nav > li > a mark span {
        position: absolute;
        font-size: 13px; }
  .menu-tabs .nav-pills > li > a:hover, .menu-tabs .nav-pills > li > a:focus, .menu-tabs .nav-pills > li:hover, .menu-tabs .nav-pills > li:focus {
    background-color: transparent;
    color: #56CCCC; }
    .menu-tabs .nav-pills > li > a:hover mark, .menu-tabs .nav-pills > li > a:focus mark, .menu-tabs .nav-pills > li:hover mark, .menu-tabs .nav-pills > li:focus mark {
      background: #56CCCC;
      color: #fff; }
  .menu-tabs .nav-pills > li.active > a, .menu-tabs .nav-pills > li.active > a:hover, .menu-tabs .nav-pills > li.active > a:focus, .menu-tabs .nav-pills > li.active, .menu-tabs .nav-pills > li.active:hover, .menu-tabs .nav-pills > li.active:focus {
    background-color: transparent;
    color: #56CCCC; }
    .menu-tabs .nav-pills > li.active > a:before, .menu-tabs .nav-pills > li.active > a:hover:before, .menu-tabs .nav-pills > li.active > a:focus:before, .menu-tabs .nav-pills > li.active:before, .menu-tabs .nav-pills > li.active:hover:before, .menu-tabs .nav-pills > li.active:focus:before {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      background: #56CCCC;
      width: 100%;
      height: 3px;
      opacity: 1; }
    .menu-tabs .nav-pills > li.active > a mark, .menu-tabs .nav-pills > li.active > a:hover mark, .menu-tabs .nav-pills > li.active > a:focus mark, .menu-tabs .nav-pills > li.active mark, .menu-tabs .nav-pills > li.active:hover mark, .menu-tabs .nav-pills > li.active:focus mark {
      background: #56CCCC;
      color: #fff; }

/************************************************************* 
* Styling Organization Setting pages 

*************************************************************/
.form-control-small {
  border-radius: 22px !important;
  height: 30px !important; }

/************************************************************* 
* Used for selectively hiding generic Nucleus elements when a
* custom theme has been applied.
*************************************************************/
.hide-for-custom-theme {
  display: none !important; }

/************************************************************* 
*  Field Grouping Admin Mode
*************************************************************/
.breadcrumb-flex li {
  padding-bottom: 15px !important;
  padding-top: 15px !important; }

.table.dataset-field > tbody:nth-of-type(1) {
  background: #f0f8ff !important; }

.table.dataset-field > tbody:nth-of-type(2) {
  background: #f0ffff !important; }

.table.dataset-field > tbody:nth-of-type(3) {
  background: #e0eeee !important; }

.table.dataset-field > tbody:nth-of-type(4) {
  background: #c1cdcd !important; }

.table.dataset-field > tbody:nth-of-type(5) {
  background: #fff8dc !important; }

.table.dataset-field > tbody:nth-of-type(6) {
  background: #eee8cd !important; }

.table.dataset-field > tbody:nth-of-type(7) {
  background: #c1ffc1 !important; }

.table.dataset-field > tbody:nth-of-type(8) {
  background: #b4eeb4 !important; }

.table.dataset-field > tbody:nth-of-type(9) {
  background: #9bcd9b !important; }

.table.dataset-field > tbody:nth-of-type(10) {
  background: #f8f8ff !important; }

.table.dataset-field > tbody:nth-of-type(11) {
  background: #e6e6fa !important; }

.table.dataset-field > tbody:nth-of-type(12) {
  background: #fff0f5 !important; }

.table.dataset-field > tbody:nth-of-type(13) {
  background: #eee0e5 !important; }

.table.dataset-field > tbody:nth-of-type(14) {
  background: #fafad2 !important; }

.table.dataset-field > tbody:nth-of-type(15) {
  background: #cae1ff !important; }

/************************************************************* 
*  Empty State
*************************************************************/
.empty-state-image {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  margin: 0 auto; }
  .empty-state-image--templates {
    background: url("../../assets/images/image-illustration/graphic-empty-board-templates.png") center center no-repeat;
    background-size: contain; }
  .empty-state-image--visuals {
    background: url("../../assets/images/image-illustration/graphic-empty-board–visuals.png") center center no-repeat;
    background-size: contain; }

/**************************************
*
* Nuclues In-app Pricing Boxes
*
***************************************/
.plan-box {
  border: 1px solid #ebebeb;
  width: 250px;
  box-shadow: 2.8px 1.6px 0.8px rgba(0, 0, 0, 0.006), 6.7px 3.9px 1.9px rgba(0, 0, 0, 0.008), 12.5px 7.3px 3.6px rgba(0, 0, 0, 0.01), 22.3px 13px 6.5px rgba(0, 0, 0, 0.012), 41.8px 24.2px 12.1px rgba(0, 0, 0, 0.014), 100px 58px 29px rgba(0, 0, 0, 0.02);
  text-align: left;
  overflow: hidden;
  padding: 1em;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #5e5e5e; }
  .plan-box--no-shadow {
    box-shadow: none; }
  .plan-box.active {
    border: 1px solid #0098A0; }
    .plan-box.active .plan-box__price {
      color: #0098A0; }
  .plan-box.active .plan-box__header {
    background: #fff; }
  .plan-box--full-width {
    width: 100%; }
  .plan-box__header {
    color: #0098A0;
    background: #fff;
    text-align: center;
    text-align: left;
    font-size: 1em; }
  .plan-box__name {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    font-family: "Montserrat", sans-serif; }
  .plan-box__current-plan {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 8px;
    display: none; }
  .plan-box__price {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
    color: #2e6a9e; }
    .plan-box__price .currency {
      font-size: 55%;
      vertical-align: top;
      text-align: center;
      padding: 0 5px; }
    .plan-box__price .interval {
      font-size: 40%;
      line-height: 1.7;
      text-align: center; }
  .plan-box__subscription {
    font-size: 1.1em;
    font-family: "proxima-nova", sans-serif;
    color: #5e5e5e;
    margin-bottom: 1.2em;
    min-height: 50px; }
  .plan-box__expiration {
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    background: #fcfcfc;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7; }
    .plan-box__expiration--days {
      font-weight: 500; }
  .plan-box__feature-row {
    border-bottom: #e6e6e6 1px solid;
    font-size: 1.1em; }
    .plan-box__feature-row:last-of-type {
      border-bottom: none; }
  .plan-box__content, .plan-box__body {
    overflow-y: auto;
    font-family: "proxima-nova", sans-serif;
    line-height: 2em;
    color: #5e5e5e;
        /* p{
            font-weight: 700;
            line-height: 2em;
            font-size: 1.1em;
            margin: 0 30px;

            &:first-of-type{
                margin-top: 15px;
            }

            &:last-of-type{
                margin-bottom: 15px;
            }
        }

        ul{
            list-style: none;
            margin-left: 0; 
            padding-left: 0;
            text-align: center; 
            margin: 15px 30px; 

            li{
                list-style: none;
                font-size: 1.1em;
                font-weight: 700;
                line-height: 2em;
                color: #888888;

                strong{
                    font-weight: 700;
                }
                
            }
        } */ }
  .plan-box__footer {
    padding: 15px 30px;
    background: #fff;
    text-align: center; }

.expiration-banner {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  border-bottom: 1px solid #ccc;
  background: transparent;
  margin-top: -25px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 25px 25px;
  font-size: 2.5rem;
  color: #747474;
  font-weight: 700; }
  .expiration-banner__title {
    font-weight: 700; }
  .expiration-banner__sub-title {
    font-size: 1.5rem;
    font-weight: 500; }
  .expiration-banner p {
    margin: 0;
    padding: 0; }
  .expiration-banner span {
    color: #3A84C5; }
  .expiration-banner--warning {
    color: #FEAE1B; }
  .expiration-banner--currentplan {
    margin-left: 0;
    margin-right: 0;
    background: rgba(0, 152, 160, 0.1); }
    .expiration-banner--currentplan span {
      color: #0098A0; }
  .expiration-banner .span.danger {
    color: #FF4351; }

.plan-status-banner {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  border-bottom: 1px solid #ccc;
  background: transparent;
  margin-top: -25px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 25px 25px;
  color: #747474;
  font-weight: 700; }
  .plan-status-banner__accent-text {
    font-weight: 500;
    font-size: 0.7em; }
  .plan-status-banner__title {
    font-weight: 700;
    font-size: 1.8rem; }
  .plan-status-banner__sub-title {
    font-size: 1.5rem;
    font-weight: 500; }
  .plan-status-banner p {
    margin: 0;
    padding: 0; }
  .plan-status-banner span {
    color: #3A84C5; }
  .plan-status-banner--warning {
    color: #FEAE1B; }
  .plan-status-banner--currentplan {
    margin-left: -15px;
    margin-right: -15px;
    background: rgba(0, 152, 160, 0.1); }
    .plan-status-banner--currentplan span {
      color: #0098A0; }
  .plan-status-banner .span.danger {
    color: #FF4351; }

.price {
  color: #979797;
  font-weight: 700;
  font-size: 1.4em; }
  .price--sm {
    font-size: 1.2em; }
  .price--lg {
    font-size: 1.6em; }
  .price--color-primary {
    color: #0098A0; }
  .price__interval {
    font-size: .8em; }

.plan-box--price-free {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-free, .plan-box--price-free.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-free .plan-box__header, .plan-box--price-free.active .plan-box__header {
      background: #0098A0;
      color: #fff; }
      .unavailable .plan-box--price-free .plan-box__header .plan-box__header__current-plan, .plan-box--price-free.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-free .plan-box__header {
    color: #0098A0;
    background: #fff;
    border-bottom: #0098A0 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-free .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-free .plan-box__footer .button-primary {
      background: #0098A0;
      border: none;
      color: #fff; }
      .plan-box--price-free .plan-box__footer .button-primary:hover {
        background: #0098A0;
        color: #fff; }

.plan-box--free {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--free, .plan-box--free.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--free .plan-box__header, .plan-box--free.active .plan-box__header {
      background: #0098A0;
      color: #fff; }
      .unavailable .plan-box--free .plan-box__header .plan-box__header__current-plan, .plan-box--free.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--free .plan-box__header {
    color: #0098A0;
    background: #fff;
    border-bottom: #0098A0 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--free .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--free .plan-box__footer .button-primary {
      background: #0098A0;
      border: none;
      color: #fff; }
      .plan-box--free .plan-box__footer .button-primary:hover {
        background: #0098A0;
        color: #fff; }

.plan-box--price-1 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-1, .plan-box--price-1.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-1 .plan-box__header, .plan-box--price-1.active .plan-box__header {
      background: #2e6a9e;
      color: #fff; }
      .unavailable .plan-box--price-1 .plan-box__header .plan-box__header__current-plan, .plan-box--price-1.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-1 .plan-box__header {
    color: #2e6a9e;
    background: #fff;
    border-bottom: #2e6a9e 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-1 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-1 .plan-box__footer .button-primary {
      background: #2e6a9e;
      border: none;
      color: #fff; }
      .plan-box--price-1 .plan-box__footer .button-primary:hover {
        background: #2e6a9e;
        color: #fff; }

.plan-box--price-2 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-2, .plan-box--price-2.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-2 .plan-box__header, .plan-box--price-2.active .plan-box__header {
      background: #0098A0;
      color: #fff; }
      .unavailable .plan-box--price-2 .plan-box__header .plan-box__header__current-plan, .plan-box--price-2.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-2 .plan-box__header {
    color: #0098A0;
    background: #fff;
    border-bottom: #0098A0 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-2 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-2 .plan-box__footer .button-primary {
      background: #0098A0;
      border: none;
      color: #fff; }
      .plan-box--price-2 .plan-box__footer .button-primary:hover {
        background: #0098A0;
        color: #fff; }

.plan-box--price-3 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-3, .plan-box--price-3.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-3 .plan-box__header, .plan-box--price-3.active .plan-box__header {
      background: #F5A623;
      color: #fff; }
      .unavailable .plan-box--price-3 .plan-box__header .plan-box__header__current-plan, .plan-box--price-3.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-3 .plan-box__header {
    color: #F5A623;
    background: #fff;
    border-bottom: #F5A623 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-3 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-3 .plan-box__footer .button-primary {
      background: #F5A623;
      border: none;
      color: #fff; }
      .plan-box--price-3 .plan-box__footer .button-primary:hover {
        background: #F5A623;
        color: #fff; }

.plan-box--price-4 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-4, .plan-box--price-4.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-4 .plan-box__header, .plan-box--price-4.active .plan-box__header {
      background: #2e6a9e;
      color: #fff; }
      .unavailable .plan-box--price-4 .plan-box__header .plan-box__header__current-plan, .plan-box--price-4.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-4 .plan-box__header {
    color: #2e6a9e;
    background: #fff;
    border-bottom: #2e6a9e 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-4 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-4 .plan-box__footer .button-primary {
      background: #2e6a9e;
      border: none;
      color: #fff; }
      .plan-box--price-4 .plan-box__footer .button-primary:hover {
        background: #2e6a9e;
        color: #fff; }

.plan-box--price-5 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-5, .plan-box--price-5.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-5 .plan-box__header, .plan-box--price-5.active .plan-box__header {
      background: #0098A0;
      color: #fff; }
      .unavailable .plan-box--price-5 .plan-box__header .plan-box__header__current-plan, .plan-box--price-5.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-5 .plan-box__header {
    color: #0098A0;
    background: #fff;
    border-bottom: #0098A0 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-5 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-5 .plan-box__footer .button-primary {
      background: #0098A0;
      border: none;
      color: #fff; }
      .plan-box--price-5 .plan-box__footer .button-primary:hover {
        background: #0098A0;
        color: #fff; }

.plan-box--price-6 {
  border: 1px solid #E1E1E1; }
  .unavailable .plan-box--price-6, .plan-box--price-6.active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
    border: 0; }
    .unavailable .plan-box--price-6 .plan-box__header, .plan-box--price-6.active .plan-box__header {
      background: #F5A623;
      color: #fff; }
      .unavailable .plan-box--price-6 .plan-box__header .plan-box__header__current-plan, .plan-box--price-6.active .plan-box__header .plan-box__header__current-plan {
        display: inline-block; }
  .plan-box--price-6 .plan-box__header {
    color: #F5A623;
    background: #fff;
    border-bottom: #F5A623 2px solid;
    padding: 15px 30px;
    text-align: center; }
  .plan-box--price-6 .plan-box__footer {
    padding: 15px 30px;
    background: #F3F3F3;
    text-align: center; }
    .plan-box--price-6 .plan-box__footer .button-primary {
      background: #F5A623;
      border: none;
      color: #fff; }
      .plan-box--price-6 .plan-box__footer .button-primary:hover {
        background: #F5A623;
        color: #fff; }

.popover, .popover * {
  text-align: left !important; }

/*************************************************************
 *
 * Card Form Styling
 * 
*************************************************************/
.date-tag-agent {
  display: inline-block;
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
  color: #747474; }

.card-form {
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  /* box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); */ }
  .card-form .card-header {
    /* background: none; */
    padding: 15px 20px;
    margin: 0px;
    display: inline-block;
    width: 100%;
    min-height: 3.5rem;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 40, 100, 0.12); }
    .card-form .card-header:first-child {
      border-radius: calc(3px - 1px) calc(3px - 1px) 0 0; }
  .card-form .card-body {
    flex: 1 1 auto;
    margin: 0;
    padding: 2.0rem 2.0rem;
    position: relative; }
  .card-form .card-footer {
    border-top: 1px solid rgba(0, 40, 100, 0.12);
    color: #6e7687;
    padding: 2.0rem 2.0rem;
    background: none; }
    .card-form .card-footer:last-child {
      border-radius: 0 0 calc(3px - 1px) calc(3px - 1px); }
  .card-form--borderless {
    border-width: 0; }

.card-form--preview .card-body {
  padding: 0 0; }

.card-header.message-header, .message-header {
  padding: 20px 35px !important; }
  .card-header.message-header__type, .message-header__type {
    font-size: 1.3em;
    color: #454545; }
  .card-header.message-header__name, .message-header__name {
    margin-top: 0; }
  .card-header.message-header__generated, .message-header__generated {
    text-align: right;
    font-size: 1.1em;
    color: #9B9B9B; }

/*************************************************************
 *
 * Storyboard Styles
 * 
*************************************************************/
.embed-card {
  display: inline-block;
  height: 300px;
  width: 250px;
  margin: 7px 20px 7px 0px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  padding-bottom: 25px; }

.card, .visual-tile {
  display: inline-block;
  height: 200px;
  width: 250px;
  margin: 7px 20px 7px 0px;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
  padding-bottom: 25px;
  box-shadow: 0px 0px 10px #eee;
  /* border: 1px solid #dedede; */ }
  .card__svg-background svg, .visual-tile__svg-background svg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -25px; }
  .card:hover:not(.card--new), .card:focus:not(.card--new), .visual-tile:hover:not(.card--new), .visual-tile:focus:not(.card--new) {
    display: inline-block;
    /*         .visual-tile__description-title, .visual-tile__description__info, .visual-tile__description { 
                filter: blur(2.0px);
            } */
    /*         .visual-tile__inner + .visual-tile__inner--overlay{
               top: 0;
            }  */ }
    .card:hover:not(.card--new) .card__content .title, .card:hover:not(.card--new) .visual-tile__content .title, .card:focus:not(.card--new) .card__content .title, .card:focus:not(.card--new) .visual-tile__content .title, .visual-tile:hover:not(.card--new) .card__content .title, .visual-tile:hover:not(.card--new) .visual-tile__content .title, .visual-tile:focus:not(.card--new) .card__content .title, .visual-tile:focus:not(.card--new) .visual-tile__content .title {
      top: -100%; }
    .card:hover:not(.card--new) .card__content .actions, .card:hover:not(.card--new) .visual-tile__content .actions, .card:focus:not(.card--new) .card__content .actions, .card:focus:not(.card--new) .visual-tile__content .actions, .visual-tile:hover:not(.card--new) .card__content .actions, .visual-tile:hover:not(.card--new) .visual-tile__content .actions, .visual-tile:focus:not(.card--new) .card__content .actions, .visual-tile:focus:not(.card--new) .visual-tile__content .actions {
      top: 0px; }
    .card:hover:not(.card--new) .card__content, .card:hover:not(.card--new) .visual-tile__content, .card:focus:not(.card--new) .card__content, .card:focus:not(.card--new) .visual-tile__content, .visual-tile:hover:not(.card--new) .card__content, .visual-tile:hover:not(.card--new) .visual-tile__content, .visual-tile:focus:not(.card--new) .card__content, .visual-tile:focus:not(.card--new) .visual-tile__content {
      bottom: 0;
      display: block; }
    .card:hover:not(.card--new) .card__description-title, .card:hover:not(.card--new) .card__description, .card:hover:not(.card--new) .card__inner, .card:hover:not(.card--new) .card__description__info, .card:hover:not(.card--new) .storyboard-tag, .card:focus:not(.card--new) .card__description-title, .card:focus:not(.card--new) .card__description, .card:focus:not(.card--new) .card__inner, .card:focus:not(.card--new) .card__description__info, .card:focus:not(.card--new) .storyboard-tag, .visual-tile:hover:not(.card--new) .card__description-title, .visual-tile:hover:not(.card--new) .card__description, .visual-tile:hover:not(.card--new) .card__inner, .visual-tile:hover:not(.card--new) .card__description__info, .visual-tile:hover:not(.card--new) .storyboard-tag, .visual-tile:focus:not(.card--new) .card__description-title, .visual-tile:focus:not(.card--new) .card__description, .visual-tile:focus:not(.card--new) .card__inner, .visual-tile:focus:not(.card--new) .card__description__info, .visual-tile:focus:not(.card--new) .storyboard-tag {
      /*  filter: blur(8.0px); */
      display: none; }
    .card:hover:not(.card--new).card__inner--container, .card:focus:not(.card--new).card__inner--container, .visual-tile:hover:not(.card--new).card__inner--container, .visual-tile:focus:not(.card--new).card__inner--container {
      transform: scale(1.05, 1.05); }
    .card:hover:not(.card--new) .card__inner, .card:focus:not(.card--new) .card__inner, .visual-tile:hover:not(.card--new) .card__inner, .visual-tile:focus:not(.card--new) .card__inner {
      top: -200px; }
    .card:hover:not(.card--new) .animation-container .visual-tile__inner, .card:focus:not(.card--new) .animation-container .visual-tile__inner, .visual-tile:hover:not(.card--new) .animation-container .visual-tile__inner, .visual-tile:focus:not(.card--new) .animation-container .visual-tile__inner {
      top: 0px; }
    .card:hover:not(.card--new) .card__inner + .card__inner--overlay, .card:focus:not(.card--new) .card__inner + .card__inner--overlay, .visual-tile:hover:not(.card--new) .card__inner + .card__inner--overlay, .visual-tile:focus:not(.card--new) .card__inner + .card__inner--overlay {
      top: 0; }
    .card:hover:not(.card--new) .card__inner--overlay, .card:hover:not(.card--new) .visual-tile__inner--overlay, .card:focus:not(.card--new) .card__inner--overlay, .card:focus:not(.card--new) .visual-tile__inner--overlay, .visual-tile:hover:not(.card--new) .card__inner--overlay, .visual-tile:hover:not(.card--new) .visual-tile__inner--overlay, .visual-tile:focus:not(.card--new) .card__inner--overlay, .visual-tile:focus:not(.card--new) .visual-tile__inner--overlay {
      background-color: #fff !important; }
    .card:hover:not(.card--new) .card__dataset, .card:focus:not(.card--new) .card__dataset, .visual-tile:hover:not(.card--new) .card__dataset, .visual-tile:focus:not(.card--new) .card__dataset {
      bottom: 193px; }
    .card:hover:not(.card--new) .card__description-cover, .card:focus:not(.card--new) .card__description-cover, .visual-tile:hover:not(.card--new) .card__description-cover, .visual-tile:focus:not(.card--new) .card__description-cover {
      bottom: 90px;
      color: #0098A0;
      font-weight: bolder;
      pointer-events: none; }
    .card:hover:not(.card--new) .visual-tile__description-cover, .card:focus:not(.card--new) .visual-tile__description-cover, .visual-tile:hover:not(.card--new) .visual-tile__description-cover, .visual-tile:focus:not(.card--new) .visual-tile__description-cover {
      bottom: 70px;
      color: #0098A0;
      font-weight: bolder;
      pointer-events: none;
      font-size: 1.2em; }
  .card--group, .visual-tile--group {
    border-radius: 100%;
    overflow: visible;
    height: 200px;
    width: 200px;
    background-color: #BBBBBB;
    box-shadow: 0px 0px 5px #000;
    border: 0 solid rgba(255, 255, 255, 0);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .card--group:before, .visual-tile--group:before {
      content: '';
      position: absolute;
      border: 6px solid rgba(255, 255, 255, 0);
      transition: border 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      pointer-events: none; }
    .card--group.expanded:before, .visual-tile--group.expanded:before {
      content: '';
      border: 6px solid white;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      border-radius: 100%;
      z-index: 3; }
    .card--group:after, .visual-tile--group:after {
      content: '';
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 15px;
      border-top-color: rgba(255, 255, 255, 0);
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -25px;
      transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) s; }
    .card--group.expanded:after, .visual-tile--group.expanded:after {
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 15px;
      border-top-color: white; }
  .card--group .card__inner--container, .visual-tile--group .card__inner--container, .card--group .visual-tile__inner--container, .visual-tile--group .visual-tile__inner--container {
    height: 200px;
    width: 200px;
    box-shadow: none; }
  .card__inner--container, .visual-tile__inner--container {
    height: 200px;
    width: 250px;
    position: relative;
    /* box-shadow: 0px 0px 10px $box-shadow-grey;  */
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .card__inner--container:hover, .visual-tile__inner--container:hover {
      box-shadow: 0px 0px 10px #d5d5d5; }
  .card__inner, .visual-tile__inner {
    /* @include transition(all .5s $ease-out-quart); */
    /* background: #fff url('../../assets/images/icons/icon.storyboard-default.svg') no-repeat center; */
    background-size: 100% 100%;
    display: inline-block;
    height: 200px;
    padding: 15px;
    position: absolute;
    text-align: center;
    vertical-align: middle;
    width: 250px;
    /* z-index: 2; */
    left: 0;
    top: 0; }
  .card__inner--group, .visual-tile__inner--group {
    left: 0;
    top: 0;
    transition: none;
    width: 200px;
    background: rgba(80, 80, 80, 0.3);
    border-radius: 100%; }
    .card:hover .card__inner--group, .card:focus .card__inner--group, .card:hover .visual-tile__inner--group, .card:focus .visual-tile__inner--group {
      top: 0 !important; }
  .card__attributes, .visual-tile__attributes {
    position: absolute;
    bottom: 8px;
    width: 220px;
    display: flex;
    z-index: 1;
    align-items: center;
    gap: 1px; }
    .card__attributes .tile__dataset, .card__attributes .dataset-avatars, .card__attributes .avatar-container, .visual-tile__attributes .tile__dataset, .visual-tile__attributes .dataset-avatars, .visual-tile__attributes .avatar-container {
      position: relative !important;
      margin-left: 0 !important;
      width: 40px;
      left: 0 !important; }
    .card__attributes .avatar-container, .visual-tile__attributes .avatar-container {
      bottom: 0 !important;
      left: 0 !important; }
  .card__fields, .visual-tile__fields {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding-top: 5px;
    flex-grow: 1;
    width: 100%; }
  .card--new .card__inner, .visual-tile--new .card__inner, .card--new .visual-tile__inner, .visual-tile--new .visual-tile__inner {
    /* margin: 7px 0px; */
    background: #fafafa url("../../assets/images/icons/icon.plus.svg") no-repeat center;
    background-size: 50% 50%;
    box-shadow: none;
    /* border: 3px dashed $background-grey; */
    cursor: pointer;
    clear: both;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .card--new .card__inner i, .visual-tile--new .card__inner i, .card--new .visual-tile__inner i, .visual-tile--new .visual-tile__inner i {
      font-size: 3rem; }
    .card--new .card__inner:hover, .visual-tile--new .card__inner:hover, .card--new .visual-tile__inner:hover, .visual-tile--new .visual-tile__inner:hover {
      border-radius: 4px;
      /* border: 2px dashed #56CCCC; */
      background-color: #fff;
      /* background-color: #FBFDFF; */
      box-shadow: 0px 0px 10px #d5d5d5; }
      .card--new .card__inner:hover .card__title, .card--new .card__inner:hover .visual-tile__title, .visual-tile--new .card__inner:hover .card__title, .visual-tile--new .card__inner:hover .visual-tile__title, .card--new .visual-tile__inner:hover .card__title, .card--new .visual-tile__inner:hover .visual-tile__title, .visual-tile--new .visual-tile__inner:hover .card__title, .visual-tile--new .visual-tile__inner:hover .visual-tile__title {
        color: #0098A0; }
  .card__title, .visual-tile__title {
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    text-align: center;
    top: 20px;
    width: 100%;
    /* font-weight: 900; */
    font-family: "proxima-nova", sans-serif;
    color: #696969;
    font-size: 14px; }
    .card__title--group, .visual-tile__title--group {
      display: inline-block;
      height: auto;
      width: auto;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      font-weight: 300;
      font-size: 1.8em;
      color: #fff; }
  .card__description-cover, .visual-tile__description-cover {
    display: block;
    text-align: center;
    font-family: "proxima-nova", sans-serif;
    /*  */
    font-size: 1.2em;
    padding: 5px 0;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .card__details, .visual-tile__details {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    overflow-y: auto;
    padding: 15px 20px;
    z-index: 4; }
  .card__palette, .visual-tile__palette {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: #CCCCCC;
    z-index: 4; }
  .card__dataset, .visual-tile__dataset {
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0; }
    .card__dataset .avatar-container, .visual-tile__dataset .avatar-container {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 18px;
      /* bottom: 5px; 
      left: 10px; */
      display: inline-block;
      z-index: 5;
      display: flex;
      width: 100%;
      justify-content: center; }
    .card__dataset .avatar-icon, .visual-tile__dataset .avatar-icon {
      flex-shrink: 1;
      flex-grow: 1;
      flex-basis: 20px; }
    .card__dataset .dataset-avatars, .visual-tile__dataset .dataset-avatars {
      height: 30px;
      width: 30px;
      border-radius: 100%;
      border: 1px solid #dedede;
      background-color: #ccc;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      display: inline-block;
      /* box-shadow: 0 0 3px rgba(#000, .4);  */
      margin: 0 -5px;
      position: absolute; }
  .card__content, .visual-tile__content {
    display: none;
    float: left;
    font-weight: 500;
    height: 40px;
    padding: 5px 10px;
    position: absolute;
    text-align: center;
    width: 250px;
    word-wrap: break-word;
    left: 0;
    bottom: -39px;
    letter-spacing: 1.3px;
    color: #616161;
    z-index: 4;
    -webkit-transition: bottom 0.2s ease-in 0.2s;
    -moz-transition: bottom 0.2s ease-in 0.2s;
    transition: bottom 0.2s ease-in 0.2s; }
    .card__content .actions, .visual-tile__content .actions {
      display: flex;
      flex-direction: row;
      height: 100%;
      left: 0;
      position: absolute;
      text-align: center;
      top: 0;
      width: 100%;
      border-top: 1px solid #e6e6e6; }
      .card__content .actions .dropdown-menu a, .visual-tile__content .actions .dropdown-menu a {
        font-size: 12px;
        padding-top: 5px !important;
        padding-bottom: 5px !important; }
      .card__content .actions > div, .visual-tile__content .actions > div {
        color: #747474;
        cursor: pointer;
        border-right: 1px solid #e6e6e6;
        text-align: center;
        padding: 8px 0;
        font-size: 12px;
        transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        background: #fcfcfc; }
        .card__content .actions > div:hover, .visual-tile__content .actions > div:hover {
          background-color: #f8fbfe;
          color: #114d72; }
        .card__content .actions > div:last-of-type, .visual-tile__content .actions > div:last-of-type {
          border-right: none; }
      .card__content .actions .action-button, .visual-tile__content .actions .action-button {
        flex-grow: 1; }
        .card__content .actions .action-button--sm, .visual-tile__content .actions .action-button--sm {
          flex-grow: 2; }
          .card__content .actions .action-button--sm span, .visual-tile__content .actions .action-button--sm span {
            display: inline-block;
            height: 100%;
            width: 100%; }
      .card__content .actions > span, .visual-tile__content .actions > span {
        flex-grow: 1;
        flex-shrink: 0;
        display: inline-block;
        font-size: 1.3rem;
        font-weight: 500;
        color: #fff;
        padding-left: 10px;
        padding-right: 10px; }
      .card__content .actions > span:hover, .visual-tile__content .actions > span:hover {
        text-decoration: none; }
      .card__content .actions__delete, .visual-tile__content .actions__delete {
        color: #fff !important; }

.card--new {
  top: 8px !important; }
.card__inner--overlay {
  display: inline-block;
  padding: 20px;
  height: 200px;
  width: 250px;
  text-align: center;
  position: absolute;
  vertical-align: middle;
  /* background: #fff; */
  left: 0px;
  /* top: ($card-dimensions / 2); */
  top: 0px;
  box-shadow: none;
  color: #747474;
  -webkit-transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  font-family: "proxima-nova", sans-serif;
  background-size: cover;
  background-position: center; }
  .card__inner--overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5); }
.card__description-title {
  display: block;
  text-align: center;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.1em;
  color: #3A84C5; }
.card__description {
  display: block;
  display: -webkit-box;
  text-align: center;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.8em;
  color: #5e5e5e;
  height: auto;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  /* white-space: nowrap; */
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }
  .card__description__info {
    color: #000;
    text-transform: capitalize !important;
    font-size: 0.8em;
    margin-top: -5px; }

.visual-tile--new {
  top: 8px !important; }
.visual-tile__inner--overlay {
  display: inline-block;
  padding: px;
  height: 150px;
  width: 250px;
  text-align: center;
  position: absolute;
  vertical-align: middle;
  /* background: #fff; */
  left: 0px;
  /* top: ($card-dimensions / 2); */
  top: 0px;
  box-shadow: none;
  color: #747474;
  -webkit-transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
  overflow: hidden;
  font-family: "proxima-nova", sans-serif;
  background-size: cover;
  background-position: center; }
  .visual-tile__inner--overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background: rgba(255,255,255,0.5); */ }
.visual-tile__description-title {
  display: block;
  text-align: left;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.0em;
  color: #3A84C5;
  margin-bottom: 5px;
  margin-top: 5px; }
.visual-tile__description {
  display: block;
  text-align: left;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.7em;
  color: #747474; }
  .visual-tile__description__info {
    color: #000;
    text-transform: capitalize !important;
    font-size: 0.8em;
    margin-top: -5px;
    font-weight: 500; }
    .visual-tile__description__info__highlight {
      font-weight: 500;
      text-transform: uppercase; }

.visual-tile {
  height: 150px !important; }
  .visual-tile__inner {
    height: 150px !important; }
    .visual-tile__inner--container {
      height: 150px !important; }
  .visual-tile .animation-container {
    width: 100%; }
  .visual-tile__inner {
    width: 100%;
    background-image: none;
    text-align: left;
    /* background-color: #fbfbfb; */ }
  .visual-tile--overlay {
    padding: 10px; }
  .visual-tile__inner--container {
    width: 100%;
    /* box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); */ }
  .visual-tile:hover .visual-tile__inner {
    /* top: -200px;     */ }
  .visual-tile:hover .visual-tile__inner + .visual-tile__inner--overlay {
    top: 0; }

/*********************************************
*
* Storyboard Tile on onbaording template 
*
**********************************************/
.card--onboarding-template {
  transition: all 0.2s solid;
  outline: 0px solid transition; }
  .card--onboarding-template:hover:not(.card--new), .card--onboarding-template:focus:not(.card--new) {
    outline: 2px solid #56CCCC; }
    .card--onboarding-template:hover:not(.card--new) .card__inner--overlay, .card--onboarding-template:focus:not(.card--new) .card__inner--overlay {
      background-color: transparent !important; }
    .card--onboarding-template:hover:not(.card--new) .card__dataset, .card--onboarding-template:focus:not(.card--new) .card__dataset {
      bottom: 0 !important; }
    .card--onboarding-template:hover:not(.card--new) .card__description-title, .card--onboarding-template:focus:not(.card--new) .card__description-title {
      display: block !important; }
    .card--onboarding-template:hover:not(.card--new) .card__description__info, .card--onboarding-template:focus:not(.card--new) .card__description__info {
      display: block !important; }
    .card--onboarding-template:hover:not(.card--new) .card__description, .card--onboarding-template:focus:not(.card--new) .card__description {
      display: block !important; }
    .card--onboarding-template:hover:not(.card--new) .storyboard-tag, .card--onboarding-template:focus:not(.card--new) .storyboard-tag {
      display: block !important; }

navigator-tile[tile-type*='row'] {
  display: block;
  width: 100%; }
  navigator-tile[tile-type*='row'] ng-include {
    display: block; }
  navigator-tile[tile-type*='row'] tr {
    display: inline-table;
    width: 100%; }
    navigator-tile[tile-type*='row'] tr td {
      border-top: 1px solid #ddd;
      /* background-color: #FCFCFC;
      padding: 0px 10px 0px 10px !important; */ }
  navigator-tile[tile-type*='row'] tr.list-table {
    background-color: #FCFCFC; }
    navigator-tile[tile-type*='row'] tr.list-table:hover {
      background-color: #b9e4f0; }
  navigator-tile[tile-type*='row'] tr.list-create-storyboard {
    background-color: #fff; }

.animation-container {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 4px; }

.animation-container {
        /* .modal-open &{

             overflow:  visible;


            .card__inner--overlay{
                opacity: 0;   
            }
        } */ }

/* 
@each $theme, $colors in $theme-styles{
    .card__svg-background{

        svg{
            .sbcolor {
                 opacity : 0.5 !important;
            }        
            .sbcolor-1 {
                
            }
            .sbcolor-1 .sbcolor-1-1{
                stop-color: nth($colors, 4) !important;
            }
            .sbcolor-1 .sbcolor-1-2{
                stop-color: nth($colors, 4)  !important;
            }
            .sbcolor-2 {
               opacity : 1.0 !important;      
            }
            .sbcolor-2 .sbcolor-2-1{
                stop-color: nth($colors, 4)  !important;
            }
            .sbcolor-2 .sbcolor-2-2{
                stop-color: nth($colors, 4)  !important;
            }

        }

    }
}
 */
/*************************************************************
 *
 * New Card Styling
 * 
*************************************************************/
navigator-tile {
  flex-grow: 0; }

.navigator-tile {
  max-width: 275px;
  min-width: 0;
  width: 100%;
  flex-grow: 0;
  flex-basis: 275px;
  flex-shrink: 0;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: 15px; }

.tile {
  height: 300px;
  width: 250px;
  border-radius: 8px;
  border: 1px solid #ECECEC;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.07);
  display: inline-block;
  margin: 0 25px; }
  .tile--new {
    /* margin: 7px 0px; */
    background: #fafafa url("../../assets/images/icons/icon.plus.svg") no-repeat center;
    background-size: 50% 50%;
    box-shadow: none;
    /* border: 3px dashed $background-grey; */
    cursor: pointer;
    clear: both;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in; }
    .tile--new i {
      font-size: 3rem; }
    .tile--new:hover {
      background-color: #fff;
      /* background-color: #FBFDFF; */
      box-shadow: 0px 0px 10px #d5d5d5; }
      .tile--new:hover .tile__title {
        color: #0098A0; }
  .tile__header, .tile__body {
    height: 50%;
    position: absolute;
    left: 0;
    right: 0; }
  .tile__header {
    top: 0;
    background: #fff; }
    .tile__header:after {
      content: '';
      background: rgba(0, 0, 0, 0);
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 3;
      transition: all .2s linear; }
    .tile__header:hover:after, .tile__header:focus:after {
      background: rgba(0, 0, 0, 0.3);
      z-index: 3; }
  .tile__body {
    bottom: 0;
    padding: 15px;
    padding-top: 25px;
    background: #fff; }
  .tile__svg-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden; }
  .tile__palette {
    height: 3px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
  .tile-title {
    margin: 0;
    color: #2e6a9e;
    font-size: 15px;
    text-align: left; }
  .tile__description__info {
    text-align: left; }
  .tile__description {
    text-align: left;
    font-size: 12px;
    line-height: 1.4em;
    overflow: hidden;
    position: relative;
    max-height: 32px;
    max-height: calc(1.6rem * 2); }
    .tile__description:before {
      position: absolute;
      content: "...";
      top: 1.6rem;
      right: 0;
      background: #fff;
      width: 1.6rem;
      text-align: right; }
  .tile__actions-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    transition: opacity .4s linear; }
    .tile__actions-container *:not(.button-tile) {
      opacity: 0;
      z-index: 101; }
    .tile__actions-container:hover *, .tile__actions-container:focus * {
      opacity: 1; }
  .tile__actions {
    position: absolute;
    left: 15px;
    top: 5px;
    text-align: left;
    z-index: 2;
    color: #fff; }
  .tile__header--button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 2; }
  .tile__dataset {
    position: absolute;
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: absolute;
    width: 30%;
    bottom: 0;
    left: 15px;
    z-index: 4; }
    .tile__dataset .avatar-container {
      position: absolute;
      left: 0;
      bottom: 18px;
      /* bottom: 5px; 
      left: 10px; */
      display: inline-block;
      z-index: 5;
      display: flex;
      width: 100%;
      justify-content: flex-start; }
    .tile__dataset .avatar-icon {
      flex-shrink: 1;
      flex-grow: 1;
      flex-basis: 20px; }
    .tile__dataset .dataset-avatars {
      height: 30px;
      width: 30px;
      border-radius: 100%;
      border: 1px solid #dedede;
      background-color: #ccc;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      display: inline-block;
      /* box-shadow: 0 0 3px rgba(#000, .4);  */
      margin: 0 -5px;
      position: absolute; }
  .tile__svg-background svg {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0px;
    bottom: -25px; }
  .tile__add-info {
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-size: .8em;
    color: #a5a5a5; }
  .tile .avatar-container {
    position: absolute;
    left: 0;
    top: -15px; }

.button-tile {
  position: absolute;
  right: 15px;
  bottom: -15px;
  z-index: 100; }

@media only screen and (max-width: 450px) {
  navigator-tile {
    flex-grow: 0; }

  .navigator-tile {
    max-width: 165px;
    min-width: 0;
    width: 100%;
    flex-grow: 0;
    flex-basis: 165px;
    flex-shrink: 0;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 15px; }

  .tile {
    height: 250px;
    width: 150px;
    border-radius: 8px;
    border: 1px solid #ECECEC;
    position: relative;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.07);
    display: inline-block;
    margin: 0 15px; }
    .tile--new {
      /* margin: 7px 0px; */
      background: #fafafa url("../../assets/images/icons/icon.plus.svg") no-repeat center;
      background-size: 50% 50%;
      box-shadow: none;
      /* border: 3px dashed $background-grey; */
      cursor: pointer;
      clear: both;
      border-radius: 4px;
      -webkit-transition: all 0.2s ease-in;
      -moz-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in; }
      .tile--new i {
        font-size: 3rem; }
      .tile--new:hover {
        background-color: #fff;
        /* background-color: #FBFDFF; */
        box-shadow: 0px 0px 10px #d5d5d5; }
        .tile--new:hover .tile__title {
          color: #0098A0; }
    .tile__header, .tile__body {
      height: 50%;
      position: absolute;
      left: 0;
      right: 0; }
    .tile__header {
      top: 0;
      background: #fff; }
      .tile__header:after {
        content: '';
        background: rgba(0, 0, 0, 0);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 3;
        transition: all .2s linear; }
      .tile__header:hover:after, .tile__header:focus:after {
        background: rgba(0, 0, 0, 0.3);
        z-index: 3; }
    .tile__body {
      bottom: 0;
      padding: 5px;
      padding-top: 25px;
      background: #fff; }
    .tile__svg-background {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden; }
    .tile__palette {
      height: 3px;
      display: inline-block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
    .tile-title {
      margin: 0;
      color: #2e6a9e;
      font-size: 15px;
      text-align: left; }
    .tile__description__info {
      text-align: left; }
    .tile__description {
      text-align: left;
      font-size: 12px;
      line-height: 1.4em;
      overflow: hidden;
      position: relative;
      max-height: 32px;
      max-height: calc(1.6rem * 2); }
      .tile__description:before {
        position: absolute;
        content: "...";
        top: 1.6rem;
        right: 0;
        background: #fff;
        width: 1.6rem;
        text-align: right; }
    .tile__actions-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 100;
      transition: opacity .4s linear; }
      .tile__actions-container *:not(.button-tile) {
        opacity: 0;
        z-index: 101; }
      .tile__actions-container:hover *, .tile__actions-container:focus * {
        opacity: 1; }
    .tile__actions {
      position: absolute;
      left: 5px;
      top: 5px;
      text-align: left;
      z-index: 2;
      color: #fff; }
    .tile__header--button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      z-index: 2; }
    .tile__dataset {
      position: absolute;
      -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: absolute;
      width: 30%;
      bottom: 0;
      left: 5px;
      z-index: 4; }
      .tile__dataset .avatar-container {
        position: absolute;
        left: 0;
        bottom: 18px;
        /* bottom: 5px; 
        left: 10px; */
        display: inline-block;
        z-index: 5;
        display: flex;
        width: 100%;
        justify-content: flex-start; }
      .tile__dataset .avatar-icon {
        flex-shrink: 1;
        flex-grow: 1;
        flex-basis: 20px; }
      .tile__dataset .dataset-avatars {
        height: 30px;
        width: 30px;
        border-radius: 100%;
        border: 1px solid #dedede;
        background-color: #ccc;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        display: inline-block;
        /* box-shadow: 0 0 3px rgba(#000, .4);  */
        margin: 0 -5px;
        position: absolute; }
    .tile__svg-background svg {
      width: 100%;
      height: auto;
      position: absolute;
      left: 0px;
      bottom: -25px; }
    .tile__add-info {
      position: absolute;
      bottom: 10px;
      left: 5px;
      font-size: .8em;
      color: #a5a5a5; }
    .tile .avatar-container {
      position: absolute;
      left: 0;
      top: -15px; }

  .button-tile {
    position: absolute;
    right: 5px;
    bottom: -15px;
    z-index: 100; }

  .navigation-tiles-container navigator-tile:nth-of-type(1) {
    flex-grow: 0; }

  navigator-tile {
    flex-grow: 1; }

  .tile--new, .navigator-tile--new {
    display: none; }

  .tile__actions-container {
    opacity: 1; }

  .tile__dataset .avatar-container {
    left: 5px; }

  .tile__dataset {
    width: 18%;
    left: -8px; } }
/*************************************************************
 *
 * Card Color Palette
 * 
*************************************************************/
.dot {
  /* margin: 5px;  */
  font-size: 16px !important; }
  .dot__campaign {
    color: #341A85; }
  .dot__none {
    color: #F5A623; }
  .dot__rolling {
    color: #D0021B; }
  .dot__periodic {
    color: #0098A0; }
  .dot__alert {
    color: #F95355; }
  .dot__report {
    color: #3A84C5; }
  .dot__snapshot {
    color: #48d2a0; }

.color-palette span {
  width: 100%;
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background-color: #2b6e65;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b6e65), color-stop(100%, #d6edd9));
  background-image: -webkit-linear-gradient(left, #2b6e65, #d6edd9);
  background-image: linear-gradient(to right,#2b6e65, #d6edd9); }

.tile-color--standard .color-palette span, .storyboard-cover--standard .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--standard .color-palette span, .storyboard-cover--standard .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--standard .color-palette span, .storyboard-cover--standard .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--standard .color-palette span, .storyboard-cover--standard .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--standard .color-palette span, .storyboard-cover--standard .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--standard .tile__inner--overlay .is-storyboard-template, .storyboard-cover--standard .tile__inner--overlay .is-storyboard-template {
  background-color: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--standard .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }

.tile-color--true_blue .color-palette span, .storyboard-cover--true_blue .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #8dd7f8));
  background-image: -webkit-linear-gradient(left, black, #8dd7f8);
  background-image: linear-gradient(to right,black, #8dd7f8); }
.tile-color--true_blue .color-palette span, .storyboard-cover--true_blue .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #8dd7f8));
  background-image: -webkit-linear-gradient(left, black, #8dd7f8);
  background-image: linear-gradient(to right,black, #8dd7f8); }
.tile-color--true_blue .color-palette span, .storyboard-cover--true_blue .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #8dd7f8));
  background-image: -webkit-linear-gradient(left, black, #8dd7f8);
  background-image: linear-gradient(to right,black, #8dd7f8); }
.tile-color--true_blue .color-palette span, .storyboard-cover--true_blue .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #8dd7f8));
  background-image: -webkit-linear-gradient(left, black, #8dd7f8);
  background-image: linear-gradient(to right,black, #8dd7f8); }
.tile-color--true_blue .color-palette span, .storyboard-cover--true_blue .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #8dd7f8));
  background-image: -webkit-linear-gradient(left, black, #8dd7f8);
  background-image: linear-gradient(to right,black, #8dd7f8); }
.tile-color--true_blue .tile__inner--overlay .is-storyboard-template, .storyboard-cover--true_blue .tile__inner--overlay .is-storyboard-template {
  background-color: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(69, 190, 243, 0.1) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #45BEF3 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(69, 190, 243, 0.1) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #45BEF3 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(69, 190, 243, 0.1) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #45BEF3 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(69, 190, 243, 0.1) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #193141 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #45BEF3 !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(25, 49, 65, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }
.tile-color--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--true_blue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(69, 190, 243, 0.3) !important; }

.tile-color--marianas .color-palette span, .storyboard-cover--marianas .color-palette span {
  background-color: #170f38;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #170f38), color-stop(100%, #92b6ec));
  background-image: -webkit-linear-gradient(left, #170f38, #92b6ec);
  background-image: linear-gradient(to right,#170f38, #92b6ec); }
.tile-color--marianas .color-palette span, .storyboard-cover--marianas .color-palette span {
  background-color: #170f38;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #170f38), color-stop(100%, #92b6ec));
  background-image: -webkit-linear-gradient(left, #170f38, #92b6ec);
  background-image: linear-gradient(to right,#170f38, #92b6ec); }
.tile-color--marianas .color-palette span, .storyboard-cover--marianas .color-palette span {
  background-color: #170f38;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #170f38), color-stop(100%, #92b6ec));
  background-image: -webkit-linear-gradient(left, #170f38, #92b6ec);
  background-image: linear-gradient(to right,#170f38, #92b6ec); }
.tile-color--marianas .color-palette span, .storyboard-cover--marianas .color-palette span {
  background-color: #170f38;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #170f38), color-stop(100%, #92b6ec));
  background-image: -webkit-linear-gradient(left, #170f38, #92b6ec);
  background-image: linear-gradient(to right,#170f38, #92b6ec); }
.tile-color--marianas .color-palette span, .storyboard-cover--marianas .color-palette span {
  background-color: #170f38;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #170f38), color-stop(100%, #92b6ec));
  background-image: -webkit-linear-gradient(left, #170f38, #92b6ec);
  background-image: linear-gradient(to right,#170f38, #92b6ec); }
.tile-color--marianas .tile__inner--overlay .is-storyboard-template, .storyboard-cover--marianas .tile__inner--overlay .is-storyboard-template {
  background-color: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(81, 138, 224, 0.1) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #518AE0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(81, 138, 224, 0.1) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #518AE0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(81, 138, 224, 0.1) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #518AE0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(81, 138, 224, 0.1) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #352380 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #518AE0 !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(53, 35, 128, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }
.tile-color--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--marianas .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(81, 138, 224, 0.3) !important; }

.tile-color--midnight .color-palette span, .storyboard-cover--midnight .color-palette span {
  background-color: #0923db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0923db), color-stop(100%, #fe387f));
  background-image: -webkit-linear-gradient(left, #0923db, #fe387f);
  background-image: linear-gradient(to right,#0923db, #fe387f); }
.tile-color--midnight .color-palette span, .storyboard-cover--midnight .color-palette span {
  background-color: #0923db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0923db), color-stop(100%, #fe387f));
  background-image: -webkit-linear-gradient(left, #0923db, #fe387f);
  background-image: linear-gradient(to right,#0923db, #fe387f); }
.tile-color--midnight .color-palette span, .storyboard-cover--midnight .color-palette span {
  background-color: #0923db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0923db), color-stop(100%, #fe387f));
  background-image: -webkit-linear-gradient(left, #0923db, #fe387f);
  background-image: linear-gradient(to right,#0923db, #fe387f); }
.tile-color--midnight .color-palette span, .storyboard-cover--midnight .color-palette span {
  background-color: #0923db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0923db), color-stop(100%, #fe387f));
  background-image: -webkit-linear-gradient(left, #0923db, #fe387f);
  background-image: linear-gradient(to right,#0923db, #fe387f); }
.tile-color--midnight .color-palette span, .storyboard-cover--midnight .color-palette span {
  background-color: #0923db;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0923db), color-stop(100%, #fe387f));
  background-image: -webkit-linear-gradient(left, #0923db, #fe387f);
  background-image: linear-gradient(to right,#0923db, #fe387f); }
.tile-color--midnight .tile__inner--overlay .is-storyboard-template, .storyboard-cover--midnight .tile__inner--overlay .is-storyboard-template {
  background-color: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(233, 1, 84, 0.1) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #E90154 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(233, 1, 84, 0.1) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #E90154 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(233, 1, 84, 0.1) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #E90154 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(233, 1, 84, 0.1) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #495ef7 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #E90154 !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(73, 94, 247, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }
.tile-color--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--midnight .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(233, 1, 84, 0.3) !important; }

.tile-color--nucleus .color-palette span, .storyboard-cover--nucleus .color-palette span {
  background-color: #314700;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #314700), color-stop(100%, #ffa4b5));
  background-image: -webkit-linear-gradient(left, #314700, #ffa4b5);
  background-image: linear-gradient(to right,#314700, #ffa4b5); }
.tile-color--nucleus .color-palette span, .storyboard-cover--nucleus .color-palette span {
  background-color: #314700;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #314700), color-stop(100%, #ffa4b5));
  background-image: -webkit-linear-gradient(left, #314700, #ffa4b5);
  background-image: linear-gradient(to right,#314700, #ffa4b5); }
.tile-color--nucleus .color-palette span, .storyboard-cover--nucleus .color-palette span {
  background-color: #314700;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #314700), color-stop(100%, #ffa4b5));
  background-image: -webkit-linear-gradient(left, #314700, #ffa4b5);
  background-image: linear-gradient(to right,#314700, #ffa4b5); }
.tile-color--nucleus .color-palette span, .storyboard-cover--nucleus .color-palette span {
  background-color: #314700;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #314700), color-stop(100%, #ffa4b5));
  background-image: -webkit-linear-gradient(left, #314700, #ffa4b5);
  background-image: linear-gradient(to right,#314700, #ffa4b5); }
.tile-color--nucleus .color-palette span, .storyboard-cover--nucleus .color-palette span {
  background-color: #314700;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #314700), color-stop(100%, #ffa4b5));
  background-image: -webkit-linear-gradient(left, #314700, #ffa4b5);
  background-image: linear-gradient(to right,#314700, #ffa4b5); }
.tile-color--nucleus .tile__inner--overlay .is-storyboard-template, .storyboard-cover--nucleus .tile__inner--overlay .is-storyboard-template {
  background-color: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(255, 87, 119, 0.1) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #FF5777 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(255, 87, 119, 0.1) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #FF5777 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(255, 87, 119, 0.1) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #FF5777 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(255, 87, 119, 0.1) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #70a300 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #FF5777 !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(112, 163, 0, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }
.tile-color--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--nucleus .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(255, 87, 119, 0.3) !important; }

.tile-color--textured .color-palette span, .storyboard-cover--textured .color-palette span {
  background-color: #886505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #886505), color-stop(100%, #fbf1dd));
  background-image: -webkit-linear-gradient(left, #886505, #fbf1dd);
  background-image: linear-gradient(to right,#886505, #fbf1dd); }
.tile-color--textured .color-palette span, .storyboard-cover--textured .color-palette span {
  background-color: #886505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #886505), color-stop(100%, #fbf1dd));
  background-image: -webkit-linear-gradient(left, #886505, #fbf1dd);
  background-image: linear-gradient(to right,#886505, #fbf1dd); }
.tile-color--textured .color-palette span, .storyboard-cover--textured .color-palette span {
  background-color: #886505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #886505), color-stop(100%, #fbf1dd));
  background-image: -webkit-linear-gradient(left, #886505, #fbf1dd);
  background-image: linear-gradient(to right,#886505, #fbf1dd); }
.tile-color--textured .color-palette span, .storyboard-cover--textured .color-palette span {
  background-color: #886505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #886505), color-stop(100%, #fbf1dd));
  background-image: -webkit-linear-gradient(left, #886505, #fbf1dd);
  background-image: linear-gradient(to right,#886505, #fbf1dd); }
.tile-color--textured .color-palette span, .storyboard-cover--textured .color-palette span {
  background-color: #886505;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #886505), color-stop(100%, #fbf1dd));
  background-image: -webkit-linear-gradient(left, #886505, #fbf1dd);
  background-image: linear-gradient(to right,#886505, #fbf1dd); }
.tile-color--textured .tile__inner--overlay .is-storyboard-template, .storyboard-cover--textured .tile__inner--overlay .is-storyboard-template {
  background-color: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(242, 213, 153, 0.1) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #F2D599 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(242, 213, 153, 0.1) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #F2D599 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(242, 213, 153, 0.1) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #F2D599 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(242, 213, 153, 0.1) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #e0a609 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #F2D599 !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(224, 166, 9, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }
.tile-color--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--textured .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(242, 213, 153, 0.3) !important; }

.tile-color--writevue .color-palette span, .storyboard-cover--writevue .color-palette span {
  background-color: #18666d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18666d), color-stop(100%, #a1cce9));
  background-image: -webkit-linear-gradient(left, #18666d, #a1cce9);
  background-image: linear-gradient(to right,#18666d, #a1cce9); }
.tile-color--writevue .color-palette span, .storyboard-cover--writevue .color-palette span {
  background-color: #18666d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18666d), color-stop(100%, #a1cce9));
  background-image: -webkit-linear-gradient(left, #18666d, #a1cce9);
  background-image: linear-gradient(to right,#18666d, #a1cce9); }
.tile-color--writevue .color-palette span, .storyboard-cover--writevue .color-palette span {
  background-color: #18666d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18666d), color-stop(100%, #a1cce9));
  background-image: -webkit-linear-gradient(left, #18666d, #a1cce9);
  background-image: linear-gradient(to right,#18666d, #a1cce9); }
.tile-color--writevue .color-palette span, .storyboard-cover--writevue .color-palette span {
  background-color: #18666d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18666d), color-stop(100%, #a1cce9));
  background-image: -webkit-linear-gradient(left, #18666d, #a1cce9);
  background-image: linear-gradient(to right,#18666d, #a1cce9); }
.tile-color--writevue .color-palette span, .storyboard-cover--writevue .color-palette span {
  background-color: #18666d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #18666d), color-stop(100%, #a1cce9));
  background-image: -webkit-linear-gradient(left, #18666d, #a1cce9);
  background-image: linear-gradient(to right,#18666d, #a1cce9); }
.tile-color--writevue .tile__inner--overlay .is-storyboard-template, .storyboard-cover--writevue .tile__inner--overlay .is-storyboard-template {
  background-color: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(99, 170, 219, 0.1) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #63AADB !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(99, 170, 219, 0.1) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #63AADB !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(99, 170, 219, 0.1) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #63AADB !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(99, 170, 219, 0.1) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #29adb8 !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #63AADB !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(41, 173, 184, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }
.tile-color--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--writevue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(99, 170, 219, 0.3) !important; }

.tile-color--correctvue .color-palette span, .storyboard-cover--correctvue .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--correctvue .color-palette span, .storyboard-cover--correctvue .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--correctvue .color-palette span, .storyboard-cover--correctvue .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--correctvue .color-palette span, .storyboard-cover--correctvue .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--correctvue .color-palette span, .storyboard-cover--correctvue .color-palette span {
  background-color: #223515;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #223515), color-stop(100%, #fab76a));
  background-image: -webkit-linear-gradient(left, #223515, #fab76a);
  background-image: linear-gradient(to right,#223515, #fab76a); }
.tile-color--correctvue .tile__inner--overlay .is-storyboard-template, .storyboard-cover--correctvue .tile__inner--overlay .is-storyboard-template {
  background-color: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(247, 147, 32, 0.1) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #4c772f !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #F79320 !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(76, 119, 47, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }
.tile-color--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--correctvue .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(247, 147, 32, 0.3) !important; }

.tile-color--smartspend .color-palette span, .storyboard-cover--smartspend .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #3ae0b9));
  background-image: -webkit-linear-gradient(left, black, #3ae0b9);
  background-image: linear-gradient(to right,black, #3ae0b9); }
.tile-color--smartspend .color-palette span, .storyboard-cover--smartspend .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #3ae0b9));
  background-image: -webkit-linear-gradient(left, black, #3ae0b9);
  background-image: linear-gradient(to right,black, #3ae0b9); }
.tile-color--smartspend .color-palette span, .storyboard-cover--smartspend .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #3ae0b9));
  background-image: -webkit-linear-gradient(left, black, #3ae0b9);
  background-image: linear-gradient(to right,black, #3ae0b9); }
.tile-color--smartspend .color-palette span, .storyboard-cover--smartspend .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #3ae0b9));
  background-image: -webkit-linear-gradient(left, black, #3ae0b9);
  background-image: linear-gradient(to right,black, #3ae0b9); }
.tile-color--smartspend .color-palette span, .storyboard-cover--smartspend .color-palette span {
  background-color: black;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, #3ae0b9));
  background-image: -webkit-linear-gradient(left, black, #3ae0b9);
  background-image: linear-gradient(to right,black, #3ae0b9); }
.tile-color--smartspend .tile__inner--overlay .is-storyboard-template, .storyboard-cover--smartspend .tile__inner--overlay .is-storyboard-template {
  background-color: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(28, 178, 143, 0.1) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #1CB28F !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(28, 178, 143, 0.1) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #1CB28F !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(28, 178, 143, 0.1) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #1CB28F !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(28, 178, 143, 0.1) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #072408 !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #1CB28F !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(7, 36, 8, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }
.tile-color--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--smartspend .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(28, 178, 143, 0.3) !important; }

.tile-color--woodgrain .color-palette span, .storyboard-cover--woodgrain .color-palette span {
  background-color: #885300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #885300), color-stop(100%, #1fabd0));
  background-image: -webkit-linear-gradient(left, #885300, #1fabd0);
  background-image: linear-gradient(to right,#885300, #1fabd0); }
.tile-color--woodgrain .color-palette span, .storyboard-cover--woodgrain .color-palette span {
  background-color: #885300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #885300), color-stop(100%, #1fabd0));
  background-image: -webkit-linear-gradient(left, #885300, #1fabd0);
  background-image: linear-gradient(to right,#885300, #1fabd0); }
.tile-color--woodgrain .color-palette span, .storyboard-cover--woodgrain .color-palette span {
  background-color: #885300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #885300), color-stop(100%, #1fabd0));
  background-image: -webkit-linear-gradient(left, #885300, #1fabd0);
  background-image: linear-gradient(to right,#885300, #1fabd0); }
.tile-color--woodgrain .color-palette span, .storyboard-cover--woodgrain .color-palette span {
  background-color: #885300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #885300), color-stop(100%, #1fabd0));
  background-image: -webkit-linear-gradient(left, #885300, #1fabd0);
  background-image: linear-gradient(to right,#885300, #1fabd0); }
.tile-color--woodgrain .color-palette span, .storyboard-cover--woodgrain .color-palette span {
  background-color: #885300;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #885300), color-stop(100%, #1fabd0));
  background-image: -webkit-linear-gradient(left, #885300, #1fabd0);
  background-image: linear-gradient(to right,#885300, #1fabd0); }
.tile-color--woodgrain .tile__inner--overlay .is-storyboard-template, .storyboard-cover--woodgrain .tile__inner--overlay .is-storyboard-template {
  background-color: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(21, 116, 141, 0.1) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #15748D !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(21, 116, 141, 0.1) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #15748D !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(21, 116, 141, 0.1) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #15748D !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(21, 116, 141, 0.1) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #e48b00 !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #15748D !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(228, 139, 0, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }
.tile-color--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--woodgrain .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(21, 116, 141, 0.3) !important; }

.tile-color--campaign .color-palette span, .storyboard-cover--campaign .color-palette span {
  background-color: #ffab1f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffab1f), color-stop(100%, #3790d1));
  background-image: -webkit-linear-gradient(left, #ffab1f, #3790d1);
  background-image: linear-gradient(to right,#ffab1f, #3790d1); }
.tile-color--campaign .color-palette span, .storyboard-cover--campaign .color-palette span {
  background-color: #ffab1f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffab1f), color-stop(100%, #3790d1));
  background-image: -webkit-linear-gradient(left, #ffab1f, #3790d1);
  background-image: linear-gradient(to right,#ffab1f, #3790d1); }
.tile-color--campaign .color-palette span, .storyboard-cover--campaign .color-palette span {
  background-color: #ffab1f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffab1f), color-stop(100%, #3790d1));
  background-image: -webkit-linear-gradient(left, #ffab1f, #3790d1);
  background-image: linear-gradient(to right,#ffab1f, #3790d1); }
.tile-color--campaign .color-palette span, .storyboard-cover--campaign .color-palette span {
  background-color: #ffab1f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffab1f), color-stop(100%, #3790d1));
  background-image: -webkit-linear-gradient(left, #ffab1f, #3790d1);
  background-image: linear-gradient(to right,#ffab1f, #3790d1); }
.tile-color--campaign .color-palette span, .storyboard-cover--campaign .color-palette span {
  background-color: #ffab1f;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffab1f), color-stop(100%, #3790d1));
  background-image: -webkit-linear-gradient(left, #ffab1f, #3790d1);
  background-image: linear-gradient(to right,#ffab1f, #3790d1); }
.tile-color--campaign .tile__inner--overlay .is-storyboard-template, .storyboard-cover--campaign .tile__inner--overlay .is-storyboard-template {
  background-color: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(35, 103, 153, 0.1) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #236799 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(35, 103, 153, 0.1) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #236799 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(35, 103, 153, 0.1) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #236799 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(35, 103, 153, 0.1) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #ffce7b !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #236799 !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(255, 206, 123, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }
.tile-color--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--campaign .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(35, 103, 153, 0.3) !important; }

.tile-color--leagueminder .color-palette span, .storyboard-cover--leagueminder .color-palette span {
  background-color: #4c3f00;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c3f00), color-stop(100%, #1e396f));
  background-image: -webkit-linear-gradient(left, #4c3f00, #1e396f);
  background-image: linear-gradient(to right,#4c3f00, #1e396f); }
.tile-color--leagueminder .color-palette span, .storyboard-cover--leagueminder .color-palette span {
  background-color: #4c3f00;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c3f00), color-stop(100%, #1e396f));
  background-image: -webkit-linear-gradient(left, #4c3f00, #1e396f);
  background-image: linear-gradient(to right,#4c3f00, #1e396f); }
.tile-color--leagueminder .color-palette span, .storyboard-cover--leagueminder .color-palette span {
  background-color: #4c3f00;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c3f00), color-stop(100%, #1e396f));
  background-image: -webkit-linear-gradient(left, #4c3f00, #1e396f);
  background-image: linear-gradient(to right,#4c3f00, #1e396f); }
.tile-color--leagueminder .color-palette span, .storyboard-cover--leagueminder .color-palette span {
  background-color: #4c3f00;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c3f00), color-stop(100%, #1e396f));
  background-image: -webkit-linear-gradient(left, #4c3f00, #1e396f);
  background-image: linear-gradient(to right,#4c3f00, #1e396f); }
.tile-color--leagueminder .color-palette span, .storyboard-cover--leagueminder .color-palette span {
  background-color: #4c3f00;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4c3f00), color-stop(100%, #1e396f));
  background-image: -webkit-linear-gradient(left, #4c3f00, #1e396f);
  background-image: linear-gradient(to right,#4c3f00, #1e396f); }
.tile-color--leagueminder .tile__inner--overlay .is-storyboard-template, .storyboard-cover--leagueminder .tile__inner--overlay .is-storyboard-template {
  background-color: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(14, 26, 51, 0.1) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #0e1a33 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(14, 26, 51, 0.1) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #0e1a33 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(14, 26, 51, 0.1) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #0e1a33 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(14, 26, 51, 0.1) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #a88b00 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #0e1a33 !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(168, 139, 0, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }
.tile-color--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--leagueminder .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(14, 26, 51, 0.3) !important; }

.tile-color--visitguam .color-palette span, .storyboard-cover--visitguam .color-palette span {
  background-color: #4a3a07;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4a3a07), color-stop(100%, #7ac773));
  background-image: -webkit-linear-gradient(left, #4a3a07, #7ac773);
  background-image: linear-gradient(to right,#4a3a07, #7ac773); }
.tile-color--visitguam .color-palette span, .storyboard-cover--visitguam .color-palette span {
  background-color: #4a3a07;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4a3a07), color-stop(100%, #7ac773));
  background-image: -webkit-linear-gradient(left, #4a3a07, #7ac773);
  background-image: linear-gradient(to right,#4a3a07, #7ac773); }
.tile-color--visitguam .color-palette span, .storyboard-cover--visitguam .color-palette span {
  background-color: #4a3a07;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4a3a07), color-stop(100%, #7ac773));
  background-image: -webkit-linear-gradient(left, #4a3a07, #7ac773);
  background-image: linear-gradient(to right,#4a3a07, #7ac773); }
.tile-color--visitguam .color-palette span, .storyboard-cover--visitguam .color-palette span {
  background-color: #4a3a07;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4a3a07), color-stop(100%, #7ac773));
  background-image: -webkit-linear-gradient(left, #4a3a07, #7ac773);
  background-image: linear-gradient(to right,#4a3a07, #7ac773); }
.tile-color--visitguam .color-palette span, .storyboard-cover--visitguam .color-palette span {
  background-color: #4a3a07;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4a3a07), color-stop(100%, #7ac773));
  background-image: -webkit-linear-gradient(left, #4a3a07, #7ac773);
  background-image: linear-gradient(to right,#4a3a07, #7ac773); }
.tile-color--visitguam .tile__inner--overlay .is-storyboard-template, .storyboard-cover--visitguam .tile__inner--overlay .is-storyboard-template {
  background-color: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(76, 169, 68, 0.1) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #4CA944 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(76, 169, 68, 0.1) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #4CA944 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(76, 169, 68, 0.1) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #4CA944 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(76, 169, 68, 0.1) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #9e7c0f !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #4CA944 !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(158, 124, 15, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }
.tile-color--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--visitguam .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(76, 169, 68, 0.3) !important; }

.tile-color--amped .color-palette span, .storyboard-cover--amped .color-palette span {
  background-color: #0f4282;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f4282), color-stop(100%, #fdb7cf));
  background-image: -webkit-linear-gradient(left, #0f4282, #fdb7cf);
  background-image: linear-gradient(to right,#0f4282, #fdb7cf); }
.tile-color--amped .color-palette span, .storyboard-cover--amped .color-palette span {
  background-color: #0f4282;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f4282), color-stop(100%, #fdb7cf));
  background-image: -webkit-linear-gradient(left, #0f4282, #fdb7cf);
  background-image: linear-gradient(to right,#0f4282, #fdb7cf); }
.tile-color--amped .color-palette span, .storyboard-cover--amped .color-palette span {
  background-color: #0f4282;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f4282), color-stop(100%, #fdb7cf));
  background-image: -webkit-linear-gradient(left, #0f4282, #fdb7cf);
  background-image: linear-gradient(to right,#0f4282, #fdb7cf); }
.tile-color--amped .color-palette span, .storyboard-cover--amped .color-palette span {
  background-color: #0f4282;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f4282), color-stop(100%, #fdb7cf));
  background-image: -webkit-linear-gradient(left, #0f4282, #fdb7cf);
  background-image: linear-gradient(to right,#0f4282, #fdb7cf); }
.tile-color--amped .color-palette span, .storyboard-cover--amped .color-palette span {
  background-color: #0f4282;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0f4282), color-stop(100%, #fdb7cf));
  background-image: -webkit-linear-gradient(left, #0f4282, #fdb7cf);
  background-image: linear-gradient(to right,#0f4282, #fdb7cf); }
.tile-color--amped .tile__inner--overlay .is-storyboard-template, .storyboard-cover--amped .tile__inner--overlay .is-storyboard-template {
  background-color: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(251, 109, 157, 0.1) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #FB6D9D !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(251, 109, 157, 0.1) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #FB6D9D !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(251, 109, 157, 0.1) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #FB6D9D !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(251, 109, 157, 0.1) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #196bd4 !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #FB6D9D !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(25, 107, 212, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }
.tile-color--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--amped .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(251, 109, 157, 0.3) !important; }

.tile-color--optix .color-palette span, .storyboard-cover--optix .color-palette span {
  background-color: #132f76;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #132f76), color-stop(100%, #f38ab2));
  background-image: -webkit-linear-gradient(left, #132f76, #f38ab2);
  background-image: linear-gradient(to right,#132f76, #f38ab2); }
.tile-color--optix .color-palette span, .storyboard-cover--optix .color-palette span {
  background-color: #132f76;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #132f76), color-stop(100%, #f38ab2));
  background-image: -webkit-linear-gradient(left, #132f76, #f38ab2);
  background-image: linear-gradient(to right,#132f76, #f38ab2); }
.tile-color--optix .color-palette span, .storyboard-cover--optix .color-palette span {
  background-color: #132f76;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #132f76), color-stop(100%, #f38ab2));
  background-image: -webkit-linear-gradient(left, #132f76, #f38ab2);
  background-image: linear-gradient(to right,#132f76, #f38ab2); }
.tile-color--optix .color-palette span, .storyboard-cover--optix .color-palette span {
  background-color: #132f76;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #132f76), color-stop(100%, #f38ab2));
  background-image: -webkit-linear-gradient(left, #132f76, #f38ab2);
  background-image: linear-gradient(to right,#132f76, #f38ab2); }
.tile-color--optix .color-palette span, .storyboard-cover--optix .color-palette span {
  background-color: #132f76;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #132f76), color-stop(100%, #f38ab2));
  background-image: -webkit-linear-gradient(left, #132f76, #f38ab2);
  background-image: linear-gradient(to right,#132f76, #f38ab2); }
.tile-color--optix .tile__inner--overlay .is-storyboard-template, .storyboard-cover--optix .tile__inner--overlay .is-storyboard-template {
  background-color: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-1 {
  stop-color: rgba(236, 69, 132, 0.1) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-bg--none .sbcolor-bg-2 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-1--none .sbcolor-1-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none--template .sbcolor-2--none .sbcolor-2-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none {
  opacity: 1.0 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-2 {
  stop-color: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-3 {
  stop-color: #EC4584 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-1--none .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-2 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--none .sbcolor-2--none .sbcolor-2-3 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-1 {
  stop-color: rgba(236, 69, 132, 0.1) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-bg--periodic .sbcolor-bg-2 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-1--periodic .sbcolor-1-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic--template .sbcolor-2--periodic .sbcolor-2-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic {
  opacity: 1.0 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-2 {
  stop-color: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-3 {
  stop-color: #EC4584 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-1--periodic .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-2 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--periodic .sbcolor-2--periodic .sbcolor-2-3 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-1 {
  stop-color: rgba(236, 69, 132, 0.1) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-bg--rolling .sbcolor-bg-2 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-1--rolling .sbcolor-1-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling--template .sbcolor-2--rolling .sbcolor-2-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling {
  opacity: 1.0 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-2 {
  stop-color: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-3 {
  stop-color: #EC4584 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-1--rolling .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-2 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--rolling .sbcolor-2--rolling .sbcolor-2-3 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-1 {
  stop-color: rgba(236, 69, 132, 0.1) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-bg--campaign .sbcolor-bg-2 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-1--campaign .sbcolor-1-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign {
  opacity: 0.4 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-1 {
  fill: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign--template .sbcolor-2--campaign .sbcolor-2-2 {
  stroke: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign {
  opacity: 1.0 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-2 {
  stop-color: #1f4fc5 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-3 {
  stop-color: #EC4584 !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-1--campaign .sbcolor-1-4 {
  stop-color: #fff !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-1 {
  stop-color: rgba(31, 79, 197, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-2 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }
.tile-color--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3, .storyboard-cover--optix .tile__svg-background.tile__svg-background--campaign .sbcolor-2--campaign .sbcolor-2-3 {
  stop-color: rgba(236, 69, 132, 0.3) !important; }

.nucleus-checkbox-sm {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.nucleus-checkbox-sm label {
  margin-bottom: 0;
  vertical-align: middle; }

/* Hide the browser's default checkbox */
.nucleus-checkbox-sm input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.nucleus-checkbox-sm .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  cursor: pointer;
  border: 1px solid #aaa;
  background: #fff;
  border-radius: 4px; }

/* On mouse-over, add a grey background color */
.nucleus-checkbox-sm:hover input ~ .checkmark {
  background-color: #aaa;
  border: none; }

/* When the checkbox is checked, add a blue background */
.nucleus-checkbox-sm input:checked ~ .checkmark {
  background-color: #2196F3;
  border: none; }

/* Create the checkmark/indicator (hidden when not checked) */
.nucleus-checkbox-sm .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.nucleus-checkbox-sm input:checked ~ .checkmark:after,
.nucleus-checkbox-sm:hover .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.nucleus-checkbox-sm .checkmark:after {
  left: 7px;
  top: 3px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/***************************************
*
* Z-Index Rise for active Filters
*
***************************************/
.storyboard-viewer .grid-stack-item.active {
  z-index: 100001; }
  .storyboard-viewer .grid-stack-item.active .filter-dropdown {
    overflow: visible; }
.storyboard-viewer .grid-stack-item:not(.active) {
  z-index: 10000; }
  .storyboard-viewer .grid-stack-item:not(.active) .ui-select-choices {
    display: none; }
  .storyboard-viewer .grid-stack-item:not(.active) .filter-dropdown {
    overflow: visible; }

.storyboard-filter-list {
  position: static;
  /*margin-bottom: 10px;*/ }

.storyboard-rangeslider .viz-container {
  position: relative; }

.storyboard-filter-container {
  border-bottom: 1px solid #ddd;
  color: #2e6a9e;
  margin-bottom: 2px;
  padding: 15px;
  /**div:nth-of-type(2){
      position: unset !important;
      width: calc(100% - 35px) !important;
  }**/ }

.storyboard-multi {
  height: 160px; }

.storyboard-date-selector,
.storyboard-rangeslider {
  height: auto; }

.sidebar__submenu .filter-multi .ui-select-match {
  width: 100%;
  overflow-x: hidden;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px; }

.sidebar__submenu .filter-multi .ui-select-match-item {
  width: auto; }

.sidebar__submenu .filter-multi .ui-select-match-close {
  position: relative;
  z-index: 1000; }

.field-list-selection .dialog-search input {
  width: 100% !important; }

.field-list-selection .dialog-search:after {
  right: 15px !important; }

.filter-editor-panel {
  position: static;
  left: 0px;
  top: 100px;
  bottom: 0px;
  margin-left: -15px;
  margin-right: -15px;
  display: block; }

.filter-editor-tab {
  padding: 5px;
  display: inline-block;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #ddd;
  text-align: center;
  border-bottom: none; }

.filter-editor-tab.active {
  background-color: #0086d9;
  color: #fff; }

.filter-editor-panel .filter-buttonbar .button-small {
  padding: 0px 2px; }

.filter-buttonbar:hover, .filter-buttonbar:focus {
  background-color: transparent !important;
  border-color: transparent !important; }

.filter-editor-panel .toggle-switch {
  height: 25px; }

.filter-editor-panel .filter-settings {
  position: relative;
  padding: 15px 15px;
  z-index: 10000;
  font-size: 16px;
  background: #F2F2F2;
  margin: 15px -15px -15px; }

.filter-editor-tab .filter-dropdown {
  height: 35px; }

.storyboard-filter-list fix-min-slider {
  top: 0px !important; }

.filter-editor-panel .show-setting {
  border-color: #42d1d2; }

/**************************************************
*
* Fitler Dropdown and multiselect
*
***************************************************/
.filter-dropdown.open .dropdown-menu {
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
.filter-dropdown .dropdown-menu {
  border: none;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
.filter-dropdown .ui-select-choices-group .ui-select-choices-row:last-of-type {
  bottom: 0;
  background: #fff; }

.storyboard-viewer .grid-stack-item.active .filter-dropdown {
  overflow: visible;
  height: auto;
  min-height: 1.666666em;
  z-index: 1; }
.storyboard-viewer .grid-stack-item.active .filter-dropdown input.ui-select-search {
  background-color: transparent;
  min-height: 1.666666em;
  vertical-align: bottom;
  text-align: left; }
.storyboard-viewer .grid-stack-item.active .filter-dropdown .ui-select-match span {
  z-index: 2; }
.storyboard-viewer .grid-stack-item.active .multi-filter-button-group {
  z-index: 2;
  right: 5px; }
.storyboard-viewer .grid-stack-item:not(.active) .filter-dropdown {
  overflow-y: visible; }

.ui-select-search::placeholder {
  color: #777;
  font-size: 1.1em; }

@-moz-document url-prefix() {
  .ui-select-search::placeholder {
    color: #000; } }
.ui-select-sticky-footer .ui-select-choices-row div {
  white-space: normal; }

.ui-select-sticky-footer .ui-select-choices-row.disabled {
  z-index: 100;
  border-top: 1px solid #ddd;
  bottom: 0;
  display: initial !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important; }
  .ui-select-sticky-footer .ui-select-choices-row.disabled div, .ui-select-sticky-footer .ui-select-choices-row.disabled a {
    display: initial !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important; }
  .ui-select-sticky-footer .ui-select-choices-row.disabled span {
    display: block; }

/**************************************************
*
* New Editor Sidebar filters
*
***************************************************/
.freeform--editor-beta .left-sidebar .viz-container {
  position: relative; }

#gridCanvas .filter-facet-date .button-missing-inline {
  display: none; }

/************************************************************* 
*
* Layout Styles - Layout styles outside of the the regular
* Bootstrap stylings of the page.
*
*************************************************************/
.facet-container {
  height: calc(100vh - 424px);
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  align-content: stretch;
  align-items: baseline; }

.col-xs-15 {
  width: 20%;
  float: left;
  padding-left: 15px;
  padding-right: 15px; }

/*********************************** 
* Nucleus Splitscreen
***********************************/
.nucleus-ss {
  position: absolute;
  top: 80px;
  left: 0;
  width: 50%;
  bottom: 70px;
  overflow-y: auto; }
  .nucleus-ss--left {
    border-right: 1px solid #e6e6e6; }
  .nucleus-ss--right {
    left: 50%; }
  .nucleus-ss--fullscreen {
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 100000;
    width: 100%;
    background: #fff;
    top: 0;
    bottom: 0; }

.nucleus-ss--fullscreen .facet-box {
  min-width: 250px;
  max-width: 350px;
  /* width: 100%; */
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 14%;
  /* Large Devices, Wide Screens */ }
  @media only screen and (max-width: 1200px) {
    .nucleus-ss--fullscreen .facet-box {
      width: 47%; } }
.nucleus-ss--fullscreen .storyboard-page-navigation {
  position: relative; }
.nucleus-ss--fullscreen .storyboard-actions__main-title {
  left: 0;
  background: #fff;
  top: 0px;
  position: sticky;
  z-index: 100000; }
  .nucleus-ss--fullscreen .storyboard-actions__main-title .filter-container .filter-label {
    display: none; }
.nucleus-ss--fullscreen .filter-global-search > div {
  margin-top: 5px !important; }

.facet-item {
  display: flex;
  flex-wrap: nowrap; }
  .facet-item > div {
    min-width: 18px;
    flex-basis: 18px; }
  .facet-item > div + div {
    flex-grow: 1; }

.main-content__section-header, .page-heading {
  background: #fff;
  box-shadow: 1px 0px 5px rgba(0, 0, 0, 0.59);
  color: #fff;
  padding: 8px 0px 3px;
  position: relative;
  z-index: 1000;
  min-height: 51px;
  margin-top: 60px; }
  .main-content__section-header--transparent, .page-heading--transparent {
    background: #fff !important;
    box-shadow: none !important;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    height: 80px !important; }
    .main-content__section-header--transparent h1, .main-content__section-header--transparent h2, .main-content__section-header--transparent h3, .main-content__section-header--transparent h4, .page-heading--transparent h1, .page-heading--transparent h2, .page-heading--transparent h3, .page-heading--transparent h4 {
      color: #114d72; }
  .main-content__section-header h2, .page-heading h2 {
    font-size: 25px !important;
    line-height: 1.5;
    font-family: "proxima-nova", sans-serif !important; }
    .main-content__section-header h2 a, .page-heading h2 a {
      color: #ddd; }
  .main-content__section-header .h1,
  .main-content__section-header h2,
  .main-content__section-header h3,
  .main-content__section-header h4,
  .main-content__section-header h5, .page-heading .h1,
  .page-heading h2,
  .page-heading h3,
  .page-heading h4,
  .page-heading h5 {
    margin: 0; }
  .main-content__section-header .form-control, .page-heading .form-control {
    border: none;
    border-radius: 20px;
    border-box: 0;
    height: 40px;
    border: none; }
  .storyboard-creator-heading .main-content__section-header h2, .storyboard-creator-heading .page-heading h2 {
    text-shadow: none; }

.main-content__section-header {
  margin-top: 0; }

/**************************************
*
* Navigation 
*
**************************************/
.navigation-tiles-container, .templates-container {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

/*********************************** 
*
* Storyboard Layout and other styles
* Needs to be broken down more
*
***********************************/
.storyboard {
  height: calc(100% - 50px);
  display: block;
  position: relative; }
  .storyboard-page-body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; }
  .storyboard__title {
    border-bottom: dotted 1px #ccc;
    display: inline-block; }
  .storyboard-sidebar {
    background-color: #191919;
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0px 15px 20px;
    position: fixed;
    top: 60px;
    width: 60px;
    z-index: 100001;
    border-right: 1px solid #e6e6e6;
    /* box-shadow: 0 4px 8px 0 rgba(244, 244, 244, 0.09), 0 0px 35px 0 rgba(148, 146, 146, 0.34) */ }
    .storyboard-sidebar h1,
    .storyboard-sidebar h2,
    .storyboard-sidebar h3,
    .storyboard-sidebar h4,
    .storyboard-sidebar h5 {
      margin: 0px; }
    .storyboard-sidebar.edit {
      overflow-y: initial;
      overflow-x: hidden; }
    .storyboard-sidebar.edit .sidebar__title {
      display: none; }
  .storyboard-editor {
    position: absolute;
    padding: 0 0 0px;
    background: #F1F1F1;
    left: 60px;
    top: 110px;
    bottom: 0;
    right: 0;
    padding-right: 0;
    transition: all .4s ease-in-out;
    z-index: 2; }
  .storyboard-header {
    min-height: 0px;
    padding: 5px 10px;
    background: transparent;
    position: fixed; }
    .storyboard-header h2 {
      padding-bottom: 6px;
      /* border-bottom: 1px solid $light-grey; */ }
      .storyboard-header h2 #title {
        color: #3A84C5;
        font-size: 32px; }
      .storyboard-header h2 #sub-title {
        color: #3A84C5;
        font-size: 25px;
        font-weight: 400;
        text-transform: capitalize;
        text-align: right; }
    .storyboard-header__description {
      display: block;
      font-size: 13px;
      position: absolute;
      top: 84px;
      /* left: 20px; */
      font-style: italic; }
    .storyboard-header__follow {
      display: inline-block;
      color: #dcdcdc;
      font-weight: 300; }
      .storyboard-header__follow .button {
        margin-bottom: 5px; }
  .storyboard-actions {
    width: 100%;
    background: white;
    border-bottom: 1px solid #e6e6e6;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 300 !important;
    /*         margin-bottom: 20px; */
    padding: 7px 0px;
    min-height: 60px;
    /*         .button {
                color: $grey;
            } */
    /*         .storyboard-editor.open &{
                display: none;
            } */ }
    .storyboard-actions--relative {
      position: relative;
      display: block;
      width: auto;
      margin-left: -25px;
      margin-right: -25px;
      margin-top: -25px; }
    .storyboard-actions.editing {
      background: #2e6a9e; }
      .storyboard-actions.editing .btn-separator {
        background: #3A84C5; }
      .storyboard-actions.editing .button-green {
        color: #00ffff; }
      .storyboard-actions.editing .storyboard-usergroup-select {
        color: white; }
        .storyboard-actions.editing .storyboard-usergroup-select .usergroup-view-select {
          background: #fafafa; }
    .storyboard-actions.shadow {
      box-shadow: 0 4px 8px 0 rgba(244, 244, 244, 0.09), 0 0px 35px 0 rgba(148, 146, 146, 0.34); }
    .storyboard-actions__presentation-toogle {
      padding: 0 30px; }
    .storyboard-actions--filterbar {
      position: relative;
      background-color: white; }
    .storyboard-actions__pagination, .storyboard-actions__main-title {
      padding: 0 30px; }
    .storyboard-viewer .storyboard-actions__main-title {
      left: 0; }
    .storyboard-actions__pagination, .storyboard-actions__main-title {
      width: auto;
      height: 50px;
      background: #fcfcfc;
      border-bottom: 1px solid #e6e6e6;
      top: 60px;
      left: 60px;
      right: 0;
      position: fixed;
      z-index: 1000;
      transition: all 0.4s ease-in; }
      .storyboard-actions__pagination.presentation, .storyboard-actions__main-title.presentation {
        display: none; }
      .storyboard-actions__pagination.editing, .storyboard-actions__main-title.editing {
        background: #191919; }
  .storyboard-viewer {
    position: absolute;
    padding: 0 10px 10px;
    background: #F1F1F1;
    left: 0;
    top: 110px;
    bottom: 0;
    right: 0;
    z-index: 200; }
  .storyboard-viewer.presentation {
    position: absolute;
    top: 60px;
    /*         bottom: 58px;
            right: 0px; */
    left: 0; }
    .storyboard-viewer.presentation.one-page {
      top: 0px; }
  .storyboard-usergroup-select {
    position: relative;
    z-index: 100;
    display: inline-block;
    align-self: center;
    padding: 10px 15px !important; }
    .storyboard-usergroup-select--toggle {
      font-weight: 700;
      color: #A4C839;
      border-bottom: 1px dotted #A4C839;
      max-width: 150px; }
    .storyboard-usergroup-select--mobile {
      display: none; }
  .storyboard-usergroup-select select {
    height: 30px;
    padding: 5px 10px;
    width: 150px;
    display: inline-block;
    margin-left: 5px;
    max-width: 150px; }
  .storyboard-nested {
    /**.storyboard-header{
        display: none;
    }**/ }
  .storyboard-container {
    height: 100%;
    width: 100%;
    display: inline-block; }
  .storyboard-section {
    border-radius: 10px;
    -ms-border-radius: .storyboard-section radius;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: flex-start;
    padding: 5px 5px; }
  .storyboard-row {
    flex-direction: row;
    box-sizing: border-box; }
    .storyboard-row--2x {
      flex-direction: row; }
    .storyboard-row--3x {
      flex-direction: row; }
    .storyboard-row--headline {
      height: 20%;
      width: 100%;
      flex-grow: 0; }
  .storyboard.no-filter-section .storyboard-row {
    flex-direction: row;
    box-sizing: border-box; }
    .storyboard.no-filter-section .storyboard-row--2x {
      flex-direction: row; }
    .storyboard.no-filter-section .storyboard-row--3x {
      flex-direction: row; }
  .storyboard-filter-row {
    height: 16.66%;
    height: calc(80px);
    flex-direction: row;
    box-sizing: border-box;
    flex-grow: 0; }
  .storyboard-filter-column {
    height: 37.50%;
    flex-direction: column;
    box-sizing: border-box; }
    .storyboard-filter-column--2x {
      height: 74.99%;
      flex-direction: column; }
    .storyboard-filter-column--3x {
      height: 99.99%;
      flex-direction: column; }
  .storyboard-filter-block {
    flex-direction: row;
    box-sizing: border-box;
    flex-wrap: wrap; }
    .storyboard-filter-block--2x {
      flex-direction: row;
      flex-wrap: wrap; }
    .storyboard-filter-block--3x {
      flex-direction: row;
      flex-wrap: wrap; }
  .storyboard-column {
    flex-direction: column; }
    .storyboard-column--15x {
      flex-direction: column; }
    .storyboard-column--2x {
      flex-direction: column; }
    .storyboard-column--3x {
      flex-direction: column; }
  .storyboard.no-filter-section .storyboard-column {
    flex-direction: column; }
    .storyboard.no-filter-section .storyboard-column--15x {
      flex-direction: column; }
    .storyboard.no-filter-section .storyboard-column--2x {
      flex-direction: column; }
    .storyboard.no-filter-section .storyboard-column--3x {
      flex-direction: column; }
  .storyboard-page-nav {
    /*         float: right;
            position: absolute;
            top: -51px;
            left: 10px;
            z-index: 2; 
            border-radius: 20px;
            padding: 2px 0px 0px 0px; */ }
  .storyboard.scrollable {
    flex-wrap: nowrap; }
    .storyboard.scrollable .sb-table, .storyboard.scrollable .sb-visual, .storyboard.scrollable .storyboard-filter-block {
      height: 21vw;
      flex-basis: auto; }
    .storyboard.scrollable .sb-visual.has-filters {
      height: 25vw; }
    .storyboard.scrollable .storyboard-filter-block--lg {
      height: 25vw; }
    .storyboard.scrollable .sb-table {
      height: 25vw; }
    .storyboard.scrollable .storyboard-row--headline {
      height: auto; }
    .storyboard.scrollable .sb-headline {
      height: 8vw; }
  .storyboard-layout-select {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500000;
    padding: 40px;
    color: #fff; }
    .storyboard-layout-select .layout-thumbnail--overlay {
      margin-bottom: 5px;
      margin-right: 5px;
      max-height: 120px;
      max-width: 160px; }
      .storyboard-layout-select .layout-thumbnail--overlay.selected, .storyboard-layout-select .layout-thumbnail--overlay.active, .storyboard-layout-select .layout-thumbnail--overlay:hover {
        border-radius: 8px;
        font-weight: bold;
        background-color: #f2f3f7; }
    .storyboard-layout-select .layout-thumbnail--image {
      border-radius: 2px;
      transition: all 0.4s ease-in-out; }
      .storyboard-layout-select .layout-thumbnail--image.selected, .storyboard-layout-select .layout-thumbnail--image:hover {
        background-color: #f2f3f7;
        border-radius: 8px;
        font-weight: bold; }
  .storyboard--list {
    margin-left: -15px;
    margin-right: -15px;
    top: 140px;
    padding-top: 120px; }
    .storyboard--list .slick-slider .slick-arrow.slick-disabled {
      display: none; }
  .storyboard-slideout {
    position: fixed;
    top: 52px;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 100%;
    padding: 20px;
    z-index: 3000;
    animation-name: mobile-menu-slidein;
    animation-duration: .2s;
    animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    animation-fill-mode: forwards;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    padding-top: 55px; }
    .storyboard-slideout__mask {
      left: -10%;
      opacity: .4;
      z-index: 1;
      display: block;
      background-color: rgba(0, 0, 0, 0.4);
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px; }
    .storyboard-slideout__header {
      padding: 10px 20px;
      font-size: 18px;
      font-weight: 500;
      display: block;
      color: #fff;
      background: #191919;
      top: 0px;
      position: absolute;
      left: 0px;
      right: 0px; }

.storyboard-viewer .storyboard-actions__pagination {
  z-index: 300; }
.storyboard-viewer .storyboard-page-body {
  z-index: 200;
  top: 0px;
  padding: 60px 125px;
  margin-top: 24px;
  height: calc(100% + 80px); }
.storyboard-viewer.fixed-ratio-view .storyboard-page-body {
  padding: 0;
  margin-top: 0px;
  height: 100%;
  top: 130px;
  height: 100%; }

.page-dataExport, .page-password, .page-settings {
  margin-top: 60px; }

.mobile-pages {
  font-size: 1.6rem;
  text-align: center;
  padding: 15px 0;
  margin-left: -25px;
  margin-right: -25px;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 2;
  font-weight: 700;
  color: #7d7d7d; }
  .mobile-pages:last-of-type {
    border-bottom: 0px solid transparent; }
.mobile-close {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0; }

.filter-bar-container {
  display: flex; }

/*************************************************************
*
* Dataset Layout and Dataset blocks
* Needs to be broken down more
*
*************************************************************/
/*********************************** 
 *
 * Integrations Styles 
 * 
***********************************/
.integrations-manager__heading--available {
  border-bottom: 1px solid #e6e6e6 !important; }

.integrations-manager__heading--used {
  border-bottom: 1px solid #e6e6e6 !important; }

.integrations-manager__heading {
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: none !important;
  font-family: "proxima-nova", sans-serif !important;
  padding: 20px 15px !important; }
  .integrations-manager__heading h2 {
    font-family: "proxima-nova", sans-serif !important;
    margin-bottom: 0px !important;
    color: #2e6a9e !important;
    font-size: 25px !important;
    line-height: 1.5; }

/*********************************** 
 *
 * Dataset Items
 * 
***********************************/
.dataset-item {
  padding: 10px 0 0 0;
  font-family: "proxima-nova", sans-serif !important;
  background-color: #fff !important;
  border: 1px solid #e6e6e6 !important;
  margin-top: 10px;
  position: relative;
  color: #3A84C5;
  border-radius: 4px;
  box-shadow: 0px 0px 10px #eee;
  /* box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.04);   */ }
  .dataset-item:last-of-type {
    margin-bottom: 15px; }
  .dataset-item:hover .edit_link {
    display: inline-block;
    vertical-align: bottom;
    float: right; }
  .dataset-item:hover:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100% !important;
    background: transparent !important;
    bottom: 0;
    left: 0;
    box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.1); }
  .dataset-item--multiselect:hover .dataset-avatar, .dataset-item--multiselect:focus .dataset-avatar {
    border: 1px solid #56CCCC; }

.fullscreen .navbar, .fullscreen .side-menu {
  display: none; }

.storyboard-actions__main-title .add-link {
  width: 30px;
  display: inline-block;
  text-align: center;
  height: 32px;
  padding-top: 3px;
  margin-top: 7px;
  font-size: 18px;
  border-radius: 2px; }

.dataset-facets-body .dataset-facet-record-table {
  position: relative;
  padding: 5px 10px;
  color: #9B9B9B;
  background: #fff;
  border-radius: 3px;
  min-width: 120px;
  text-align: center;
  /*font-weight: bold;*/ }

.dataset-item-list {
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 5px; }

.integrations-manager .dataset-item-list .dataset-item h3 {
  margin-top: 0px !important;
  margin-left: 25px !important; }

.dataset-avatar {
  margin-right: 10px !important; }

.dataset-icon--active, .dataset-avatar {
  border: 1px solid #ddd !important; }

.table > tbody > tr > th, .table > tfoot > tr > th, .table > tbody > tr > td, .table > tfoot > tr > td {
  padding: 5px;
  line-height: 1.42857143;
  vertical-align: middle !important; }

/* modify this part might cause the change of table style in Library visual CNG*/
.table > thead > tr > th, .table > thead > tr > td {
  padding: 20px 0px 5px 0px !important;
  line-height: 1.42857143 !important;
  vertical-align: middle !important; }

.integrations-manager__column--available {
  width: 50%;
  left: 0;
  height: 100%;
  border-right: 1px solid #e6e6e6;
  overflow-y: auto; }

.integrations-manager__column--selected {
  overflow-y: auto;
  height: 100%; }

.integrations-manager__column--selected {
  overflow-y: auto; }

/*************************************************
*
* General Bootstrap Modal Overrides
*
**************************************************/
.navbar-right {
  margin-right: 15px !important; }

.badge {
  background-color: #4AE2C1 !important;
  z-index: 100003 !important;
  margin-left: -5px; }
  .badge--default {
    background-color: #e6e6e6 !important; }
  .badge-danger {
    background-color: #F95355 !important; }

.modal-backdrop {
  z-index: 100003 !important; }

.modal {
  z-index: 10000004 !important; }

.modal-content {
  border-radius: 0;
  border-top: 5px solid #537289; }

.modal-header {
  text-align: left;
  font-size: 2em;
  font-weight: 700;
  border-bottom: none;
  color: #535454; }
  .modal-header .close {
    position: relative;
    z-index: 3;
    padding: 5px; }
  .modal-header h4 {
    font-size: 1em; }

.panel {
  border-radius: 0; }
  .panel-body__section {
    padding: 15px;
    border-bottom: 1px solid #ddd; }
    .panel-body__section:first-of-type {
      border-top: none; }
    .panel-body__section:last-of-type {
      border-bottom: none; }
  .panel-body__section--dotted {
    border-bottom: 1px dashed #ddd; }
  .panel-body .table--borderless {
    margin-bottom: 0; }
    .panel-body .table--borderless tr:first-of-type {
      border-top: none; }
      .panel-body .table--borderless tr:first-of-type td {
        border-top: none; }
    .panel-body .table--borderless tr:last-of-type {
      border-bottom: none; }
      .panel-body .table--borderless tr:last-of-type td {
        border-bottom: none; }

/*************************************************
*
* Nucleus Modal Dialog - Replace Share Dialog
*
**************************************************/
.nucleus-dialog .group-container {
  max-height: 300px;
  overflow-x: hidden; }
.nucleus-dialog .group-container .group-item-avatar, .nucleus-dialog .group-container .group-item-name, .nucleus-dialog .group-container .group-item-delete, .nucleus-dialog .group-container .email-container-avatar, .nucleus-dialog .group-container .email-container-name, .nucleus-dialog .group-container .email-container-delete, .nucleus-dialog .group-container .email-container .email-item-avatar, .nucleus-dialog .group-container .email-container .email-item-name, .nucleus-dialog .group-container .email-container .email-item-delete {
  display: inline-block; }
.nucleus-dialog .group-container .group-item-avatar, .nucleus-dialog .group-container .email-container-avatar, .nucleus-dialog .group-container .email-container .email-item-avatar {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-size: cover;
  vertical-align: bottom;
  margin-right: 5px; }
.nucleus-dialog .group-container .group-item-name, .nucleus-dialog .group-container .email-container-name, .nucleus-dialog .group-container .email-container .email-item-name {
  font-size: 14px;
  color: #2b698e; }
.nucleus-dialog .group-container .group-item-delete, .nucleus-dialog .group-container .email-container-delete, .nucleus-dialog .group-container .email-container .email-item-delete {
  float: right; }
.nucleus-dialog .email-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 0px 0px; }
.nucleus-dialog .input-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 5px 10px;
  color: #747474;
  margin-bottom: 10px; }
.nucleus-dialog .group-tab, .nucleus-dialog .email-tab {
  padding: 20px 20px;
  height: 500px; }
.nucleus-dialog .group-tab-label {
  color: #666;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  height: 50px; }
.nucleus-dialog .dialog-title {
  color: #0d3f69;
  text-align: center; }
.nucleus-dialog .email-edit-tab {
  padding: 20px 20px;
  height: 630px; }
.nucleus-dialog .label-group, .nucleus-dialog .label-email {
  cursor: pointer;
  padding: 15px; }
  .nucleus-dialog .label-group:hover, .nucleus-dialog .label-group.active, .nucleus-dialog .label-email:hover, .nucleus-dialog .label-email.active {
    color: #16a1af; }
  .nucleus-dialog .label-group:hover a:before, .nucleus-dialog .label-group.active a:before, .nucleus-dialog .label-email:hover a:before, .nucleus-dialog .label-email.active a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
    height: 4px;
    background: #48d2a0; }
.nucleus-dialog .well {
  min-height: 20px;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #fff; }
.nucleus-dialog .list-group--full-width {
  margin-left: -15px;
  margin-right: -15px;
  border-right-width: 0;
  border-left-width: 0;
  border-radius: 0; }
  .nucleus-dialog .list-group--full-width:first-of-type {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px; }
  .nucleus-dialog .list-group--full-width:last-of-type {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }
  .nucleus-dialog .list-group--full-width .list-group-item {
    padding: 15px 30px; }
    .nucleus-dialog .list-group--full-width .list-group-item--image {
      float: left; }
      .nucleus-dialog .list-group--full-width .list-group-item--image img {
        height: 95px;
        width: auto; }
    .nucleus-dialog .list-group--full-width .list-group-item--icon {
      font-size: 5.5rem;
      float: left; }
    .nucleus-dialog .list-group--full-width .list-group-item--description {
      margin-left: 8rem; }
  .nucleus-dialog .list-group--full-width a {
    border-right-width: 0;
    border-left-width: 0; }

.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  position: absolute; }

.ui-select-bootstrap > .ui-select-choices {
  min-width: 100%;
  width: auto; }

.slide-in {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: none; }
  .slide-in.show {
    display: block; }

.badge--success {
  background-color: #56CCCC !important; }
.badge--caution {
  background-color: #FEAE1B !important; }
.badge--danger {
  background-color: #FF4351 !important; }

label {
  color: #535454;
  font-weight: 700; }

.label-nucleus {
  background-color: #56CCCC; }

input.form-control--underline {
  color: #fff;
  background: transparent;
  border-radius: 0px;
  border: none;
  box-shadow: none;
  font-weight: 700;
  border-bottom: rgba(255, 255, 255, 0.4) 1px dotted;
  padding: 1px;
  margin: 0;
  height: 30px;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
  input.form-control--underline:hover, input.form-control--underline:active, input.form-control--underline:focus {
    outline: none;
    border-bottom: #fff 1px solid; }
  input.form-control--underline::-webkit-input-placeholder, input.form-control--underline::-moz-placeholder, input.form-control--underline:-ms-input-placeholder, input.form-control--underline:-moz-placeholder {
    color: #fff;
    font-weight: 700; }

.list-group-item--dataset {
  background-color: #f9f9f9; }
.list-group-item-warning {
  font-weight: 700; }

.alert {
  border-radius: 0;
  box-shadow: 0px 2px 5px rgba(88, 88, 88, 0.2);
  border: none; }
  .alert-warning {
    background: #FFECCF url("../../assets/images/icons/texture.stripe-01-01.png") repeat-x top left;
    background-size: auto 100%;
    border: none; }
  .alert-rounded {
    border-radius: 8px; }
  .alert-bordered {
    border-width: 1px; }
  .alert-board-lane {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: none;
    border: none; }

.dropdown-menu li {
  border-bottom: 1px solid #e8e8e8; }
  .dropdown-menu li:last-of-type {
    border-bottom: none; }
.dropdown-menu a {
  display: block;
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.badge-primary {
  background: #16a1af; }
.badge-plain {
  background: #FFF;
  color: #FF4351; }
.badge-inverse {
  background: #5b5b5b; }
.badge-action {
  background: #A5DE37; }
.badge-highlight {
  background: #FEAE1B; }
.badge-caution {
  background: #FF4351; }
.badge-royal {
  background: #7B72E9; }

.table-responsive {
  border-radius: 4px 4px 0px 0px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.38);
  margin-bottom: 20px; }
  .table-responsive .table {
    margin-bottom: 0px; }

.table {
  border: none; }
  .singleList .table {
    margin-bottom: 0 !important; }

table > thead > tr {
  border: none; }

table > thead > tr > th {
  padding: 9px 10px !important;
  font-size: 15px; }

.slick-slider {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 25px; }

.slick-slide:focus, .slick-slide *:focus {
  outline: none; }

.slick-list {
  overflow: visible; }

.button-small {
  font-size: 14px; }

.ui-select-match.btn-default-focus {
  outline-offset: 0;
  outline: none; }

.uib-datepicker-popup .btn.btn-default {
  border: none;
  box-shadow: none;
  background: transparent;
  color: #5e5e5e; }
  .uib-datepicker-popup .btn.btn-default:hover, .uib-datepicker-popup .btn.btn-default:focus {
    background: #f9f9f9; }
  .uib-datepicker-popup .btn.btn-default.active {
    background: #E8ffff;
    color: #56CCCC; }
.uib-datepicker-popup .uib-button-bar {
  padding-bottom: 8px;
  min-height: 55px !important; }
.uib-datepicker-popup .text-muted {
  color: #e6e6e6; }

#editor .viz-headline,
.viz-headline {
  text-align: center;
  height: 100%;
  width: 100%;
  color: #656565;
  background: #fff;
  border: none;
  position: absolute; }

#editor .viz-headline .headline-colorbg,
.viz-headline .headline-colorbg {
  text-align: center;
  height: 100%;
  width: 100%;
  color: #fff;
  background: #67539B;
  border: none;
  position: absolute; }

#editor .viz-headline {
  transform: none; }

.storyboard-viewer .visualTitle .viz-inner-container.multiheadline {
  top: 0 !important; }
.storyboard-viewer .visualTitle .viz-inner-container.headline {
  top: 0; }

.sb-headline {
  box-shadow: none;
  border-right: #E3E3E3 solid 1px !important; }
  .sb-headline:last-of-type {
    border-right: none !important; }
  .sb-headline .viz-title-editor {
    display: none; }
  .sb-headline .viz-container.editableTitle .viz-inner-container {
    top: 0; }
  .sb-headline.active-edit .viz-title-editor {
    display: block; }
  .sb-headline.active-edit .viz-container.editableTitle .viz-inner-container {
    top: 40px; }
  .sb-headline.active-edit .headline-caption {
    visibility: hidden; }

.multiheadline .viz-headline {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column; }
  .multiheadline .viz-headline.viz-multiheadline-horizontal {
    flex-direction: row;
    flex-wrap: wrap; }
    .multiheadline .viz-headline.viz-multiheadline-horizontal .multiheadline-metric-container {
      width: 49%;
      align-self: baseline; }
      .multiheadline .viz-headline.viz-multiheadline-horizontal .multiheadline-metric-container:first-of-type::before {
        content: '';
        position: absolute;
        width: 3px;
        height: 73%;
        bottom: initial;
        left: initial;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
    .multiheadline .viz-headline.viz-multiheadline-horizontal .headline-caption {
      width: 100%;
      align-self: center; }
  .multiheadline .viz-headline .headline-caption {
    order: 1;
    width: 100%;
    position: relative;
    padding-bottom: 0%;
    margin-bottom: 0%;
    color: #fff; }
  .multiheadline .viz-headline .multiheadline {
    color: #fff; }
  .multiheadline .viz-headline .multiheadline-value {
    color: #fff;
    font-weight: 700; }
  .multiheadline .viz-headline .multiheadline-metric-container {
    order: 2;
    position: relative; }
    .multiheadline .viz-headline .multiheadline-metric-container:first-of-type::before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #fff; }

.multiheadline-horizontal {
  text-align: right;
  padding-right: 1em; }
  .multiheadline-horizontal + .multiheadline-horizontal {
    text-align: left;
    padding-left: 1em; }

.sb-headline.preview:nth-of-type(1) .viz-headline {
  background: #67539B; }
.sb-headline.preview:nth-of-type(2) .viz-headline {
  background: #76B74B; }
.sb-headline.preview:nth-of-type(3) .viz-headline {
  background: #76B74B; }
.sb-headline.preview:nth-of-type(4) .viz-headline {
  background: #76B74B; }
.sb-headline.preview:nth-of-type(5) .viz-headline {
  background: #76B74B; }
.sb-headline.preview .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .sb-headline.preview .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.sb-headline.preview .headline .headline-caption {
  font-size: 1.2vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .sb-headline.preview .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }

.storyboard.standard .sb-headline:nth-of-type(1) .viz-headline, .storyboard.standard .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.standard .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.standard .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #67539B; }
.storyboard.standard .sb-headline:nth-of-type(2) .viz-headline, .storyboard.standard .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.standard .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.standard .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #76B74B; }
.storyboard.standard .sb-headline:nth-of-type(3) .viz-headline, .storyboard.standard .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.standard .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.standard .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #F79320; }
.storyboard.standard .sb-headline:nth-of-type(4) .viz-headline, .storyboard.standard .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.standard .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.standard .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #3D4AA5; }
.storyboard.standard .sb-headline:nth-of-type(5) .viz-headline, .storyboard.standard .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.standard .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.standard .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #F93858; }
.storyboard.standard .sb-headline .headline .headline-value, .storyboard.standard .grid-stack-item .headline .headline-value, .storyboard-container.standard .sb-headline .headline .headline-value, .storyboard-container.standard .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.standard .sb-headline .headline .headline-value span, .storyboard.standard .grid-stack-item .headline .headline-value span, .storyboard-container.standard .sb-headline .headline .headline-value span, .storyboard-container.standard .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.standard .sb-headline .headline .headline-caption, .storyboard.standard .grid-stack-item .headline .headline-caption, .storyboard-container.standard .sb-headline .headline .headline-caption, .storyboard-container.standard .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.standard .sb-headline .headline .headline-caption span, .storyboard.standard .grid-stack-item .headline .headline-caption span, .storyboard-container.standard .sb-headline .headline .headline-caption span, .storyboard-container.standard .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.standard .sb-headline .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline .gaugeBulb .chart-value,
.storyboard.standard .sb-headline .gauge .chart-value,
.storyboard.standard .sb-headline .gaugeLinear .chart-value,
.storyboard.standard .sb-headline .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item .gauge .chart-value,
.storyboard.standard .grid-stack-item .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline .gauge .chart-value,
.storyboard-container.standard .sb-headline .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item .gauge .chart-value,
.storyboard-container.standard .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item .gaugeBullet .chart-value {
  background: #67539B; }
.storyboard.standard .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.standard .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.standard .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.standard .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #67539B));
  background-image: -webkit-linear-gradient(left, #fff, #67539B);
  background-image: linear-gradient(to right,#fff, #67539B); }
.storyboard.standard .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.standard .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.standard .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.standard .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #76B74B));
  background-image: -webkit-linear-gradient(left, #fff, #76B74B);
  background-image: linear-gradient(to right,#fff, #76B74B); }
.storyboard.standard .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.standard .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.standard .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.standard .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #F79320));
  background-image: -webkit-linear-gradient(left, #fff, #F79320);
  background-image: linear-gradient(to right,#fff, #F79320); }
.storyboard.standard .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.standard .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.standard .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.standard .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #3D4AA5));
  background-image: -webkit-linear-gradient(left, #fff, #3D4AA5);
  background-image: linear-gradient(to right,#fff, #3D4AA5); }
.storyboard.standard .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.standard .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.standard .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.standard .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.standard .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.standard .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.standard .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.standard .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.standard .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #F93858));
  background-image: -webkit-linear-gradient(left, #fff, #F93858);
  background-image: linear-gradient(to right,#fff, #F93858); }
.storyboard.standard .sb-headline:nth-of-type(1) .circularheadline, .storyboard.standard .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.standard .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.standard .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #67539B; }
  .storyboard.standard .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #67539B; }
.storyboard.standard .sb-headline:nth-of-type(2) .circularheadline, .storyboard.standard .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.standard .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.standard .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #76B74B; }
  .storyboard.standard .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #76B74B; }
.storyboard.standard .sb-headline:nth-of-type(3) .circularheadline, .storyboard.standard .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.standard .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.standard .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #F79320; }
  .storyboard.standard .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #F79320; }
.storyboard.standard .sb-headline:nth-of-type(4) .circularheadline, .storyboard.standard .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.standard .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.standard .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #3D4AA5; }
  .storyboard.standard .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #3D4AA5; }
.storyboard.standard .sb-headline:nth-of-type(5) .circularheadline, .storyboard.standard .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.standard .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.standard .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #F93858; }
  .storyboard.standard .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.standard .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.standard .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.standard .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #F93858; }

.storyboard.vibrant .sb-headline .viz-headline, .storyboard.vibrant .grid-stack-item .viz-headline, .storyboard-container.vibrant .sb-headline .viz-headline, .storyboard-container.vibrant .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.vibrant .sb-headline .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item .viz-headline .headline-value {
    color: #0067B1; }
    .storyboard.vibrant .sb-headline .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #0067B1; }
.storyboard.vibrant .sb-headline:nth-of-type(1) .viz-headline, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #0067B1; }
  .storyboard.vibrant .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #0067B1; }
    .storyboard.vibrant .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #0067B1; }
.storyboard.vibrant .sb-headline:nth-of-type(2) .viz-headline, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #6E298D; }
  .storyboard.vibrant .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #6E298D; }
    .storyboard.vibrant .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #6E298D; }
.storyboard.vibrant .sb-headline:nth-of-type(3) .viz-headline, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #C13694; }
  .storyboard.vibrant .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #C13694; }
    .storyboard.vibrant .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #C13694; }
.storyboard.vibrant .sb-headline:nth-of-type(4) .viz-headline, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #F15A30; }
  .storyboard.vibrant .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #F15A30; }
    .storyboard.vibrant .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #F15A30; }
.storyboard.vibrant .sb-headline:nth-of-type(5) .viz-headline, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #FFF200; }
  .storyboard.vibrant .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #FFF200; }
    .storyboard.vibrant .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FFF200; }
.storyboard.vibrant .sb-headline .headline .headline-value, .storyboard.vibrant .grid-stack-item .headline .headline-value, .storyboard-container.vibrant .sb-headline .headline .headline-value, .storyboard-container.vibrant .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.vibrant .sb-headline .headline .headline-value:before, .storyboard.vibrant .grid-stack-item .headline .headline-value:before, .storyboard-container.vibrant .sb-headline .headline .headline-value:before, .storyboard-container.vibrant .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.vibrant .sb-headline .headline .headline-caption, .storyboard.vibrant .grid-stack-item .headline .headline-caption, .storyboard-container.vibrant .sb-headline .headline .headline-caption, .storyboard-container.vibrant .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.vibrant .sb-headline .headline .headline-value span,
.storyboard.vibrant .sb-headline .headline .headline-caption span, .storyboard.vibrant .grid-stack-item .headline .headline-value span,
.storyboard.vibrant .grid-stack-item .headline .headline-caption span, .storyboard-container.vibrant .sb-headline .headline .headline-value span,
.storyboard-container.vibrant .sb-headline .headline .headline-caption span, .storyboard-container.vibrant .grid-stack-item .headline .headline-value span,
.storyboard-container.vibrant .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.vibrant .sb-headline .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline .gauge .chart-value,
.storyboard.vibrant .sb-headline .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item .gauge .chart-value,
.storyboard.vibrant .grid-stack-item .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline .gauge .chart-value,
.storyboard-container.vibrant .sb-headline .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item .gaugeBullet .chart-value {
  background: #0067B1; }
.storyboard.vibrant .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #0067B1));
  background-image: -webkit-linear-gradient(left, #fff, #0067B1);
  background-image: linear-gradient(to right,#fff, #0067B1); }
.storyboard.vibrant .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #6E298D));
  background-image: -webkit-linear-gradient(left, #fff, #6E298D);
  background-image: linear-gradient(to right,#fff, #6E298D); }
.storyboard.vibrant .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #C13694));
  background-image: -webkit-linear-gradient(left, #fff, #C13694);
  background-image: linear-gradient(to right,#fff, #C13694); }
.storyboard.vibrant .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #F15A30));
  background-image: -webkit-linear-gradient(left, #fff, #F15A30);
  background-image: linear-gradient(to right,#fff, #F15A30); }
.storyboard.vibrant .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.vibrant .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.vibrant .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFF200));
  background-image: -webkit-linear-gradient(left, #fff, #FFF200);
  background-image: linear-gradient(to right,#fff, #FFF200); }
.storyboard.vibrant .sb-headline:nth-of-type(1) .circularheadline, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #0067B1; }
  .storyboard.vibrant .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #0067B1; }
.storyboard.vibrant .sb-headline:nth-of-type(2) .circularheadline, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #6E298D; }
  .storyboard.vibrant .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #6E298D; }
.storyboard.vibrant .sb-headline:nth-of-type(3) .circularheadline, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #C13694; }
  .storyboard.vibrant .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #C13694; }
.storyboard.vibrant .sb-headline:nth-of-type(4) .circularheadline, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #F15A30; }
  .storyboard.vibrant .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #F15A30; }
.storyboard.vibrant .sb-headline:nth-of-type(5) .circularheadline, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #FFF200; }
  .storyboard.vibrant .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.vibrant .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.vibrant .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.vibrant .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #FFF200; }

.storyboard.spring .sb-headline .viz-headline, .storyboard.spring .grid-stack-item .viz-headline, .storyboard-container.spring .sb-headline .viz-headline, .storyboard-container.spring .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.spring .sb-headline .viz-headline .headline-value, .storyboard.spring .grid-stack-item .viz-headline .headline-value, .storyboard-container.spring .sb-headline .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item .viz-headline .headline-value {
    color: #00CC66; }
    .storyboard.spring .sb-headline .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00CC66; }
.storyboard.spring .sb-headline:nth-of-type(1) .viz-headline, .storyboard.spring .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.spring .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #00CC66; }
  .storyboard.spring .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.spring .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.spring .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #00CC66; }
    .storyboard.spring .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00CC66; }
.storyboard.spring .sb-headline:nth-of-type(2) .viz-headline, .storyboard.spring .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.spring .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #157218; }
  .storyboard.spring .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.spring .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.spring .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #157218; }
    .storyboard.spring .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #157218; }
.storyboard.spring .sb-headline:nth-of-type(3) .viz-headline, .storyboard.spring .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.spring .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #1CB28F; }
  .storyboard.spring .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.spring .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.spring .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #1CB28F; }
    .storyboard.spring .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #1CB28F; }
.storyboard.spring .sb-headline:nth-of-type(4) .viz-headline, .storyboard.spring .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.spring .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #B2FF66; }
  .storyboard.spring .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.spring .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.spring .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #B2FF66; }
    .storyboard.spring .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #B2FF66; }
.storyboard.spring .sb-headline:nth-of-type(5) .viz-headline, .storyboard.spring .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.spring .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #118B3E; }
  .storyboard.spring .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.spring .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.spring .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #118B3E; }
    .storyboard.spring .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.spring .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.spring .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #118B3E; }
.storyboard.spring .sb-headline .headline .headline-value, .storyboard.spring .grid-stack-item .headline .headline-value, .storyboard-container.spring .sb-headline .headline .headline-value, .storyboard-container.spring .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.spring .sb-headline .headline .headline-value:before, .storyboard.spring .grid-stack-item .headline .headline-value:before, .storyboard-container.spring .sb-headline .headline .headline-value:before, .storyboard-container.spring .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.spring .sb-headline .headline .headline-caption, .storyboard.spring .grid-stack-item .headline .headline-caption, .storyboard-container.spring .sb-headline .headline .headline-caption, .storyboard-container.spring .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.spring .sb-headline .headline .headline-value span,
.storyboard.spring .sb-headline .headline .headline-caption span, .storyboard.spring .grid-stack-item .headline .headline-value span,
.storyboard.spring .grid-stack-item .headline .headline-caption span, .storyboard-container.spring .sb-headline .headline .headline-value span,
.storyboard-container.spring .sb-headline .headline .headline-caption span, .storyboard-container.spring .grid-stack-item .headline .headline-value span,
.storyboard-container.spring .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.spring .sb-headline .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline .gaugeBulb .chart-value,
.storyboard.spring .sb-headline .gauge .chart-value,
.storyboard.spring .sb-headline .gaugeLinear .chart-value,
.storyboard.spring .sb-headline .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item .gauge .chart-value,
.storyboard.spring .grid-stack-item .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline .gauge .chart-value,
.storyboard-container.spring .sb-headline .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item .gauge .chart-value,
.storyboard-container.spring .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item .gaugeBullet .chart-value {
  background: #00CC66; }
.storyboard.spring .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.spring .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.spring .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.spring .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00CC66));
  background-image: -webkit-linear-gradient(left, #fff, #00CC66);
  background-image: linear-gradient(to right,#fff, #00CC66); }
.storyboard.spring .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.spring .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.spring .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.spring .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #157218));
  background-image: -webkit-linear-gradient(left, #fff, #157218);
  background-image: linear-gradient(to right,#fff, #157218); }
.storyboard.spring .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.spring .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.spring .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.spring .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #1CB28F));
  background-image: -webkit-linear-gradient(left, #fff, #1CB28F);
  background-image: linear-gradient(to right,#fff, #1CB28F); }
.storyboard.spring .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.spring .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.spring .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.spring .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #B2FF66));
  background-image: -webkit-linear-gradient(left, #fff, #B2FF66);
  background-image: linear-gradient(to right,#fff, #B2FF66); }
.storyboard.spring .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.spring .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.spring .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.spring .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.spring .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.spring .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.spring .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.spring .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.spring .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #118B3E));
  background-image: -webkit-linear-gradient(left, #fff, #118B3E);
  background-image: linear-gradient(to right,#fff, #118B3E); }
.storyboard.spring .sb-headline:nth-of-type(1) .circularheadline, .storyboard.spring .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.spring .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #00CC66; }
  .storyboard.spring .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #00CC66; }
.storyboard.spring .sb-headline:nth-of-type(2) .circularheadline, .storyboard.spring .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.spring .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #157218; }
  .storyboard.spring .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #157218; }
.storyboard.spring .sb-headline:nth-of-type(3) .circularheadline, .storyboard.spring .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.spring .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #1CB28F; }
  .storyboard.spring .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #1CB28F; }
.storyboard.spring .sb-headline:nth-of-type(4) .circularheadline, .storyboard.spring .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.spring .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #B2FF66; }
  .storyboard.spring .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #B2FF66; }
.storyboard.spring .sb-headline:nth-of-type(5) .circularheadline, .storyboard.spring .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.spring .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #118B3E; }
  .storyboard.spring .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.spring .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.spring .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.spring .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #118B3E; }

.storyboard.summer .sb-headline .viz-headline, .storyboard.summer .grid-stack-item .viz-headline, .storyboard-container.summer .sb-headline .viz-headline, .storyboard-container.summer .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.summer .sb-headline .viz-headline .headline-value, .storyboard.summer .grid-stack-item .viz-headline .headline-value, .storyboard-container.summer .sb-headline .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item .viz-headline .headline-value {
    color: #FF6666; }
    .storyboard.summer .sb-headline .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FF6666; }
.storyboard.summer .sb-headline:nth-of-type(1) .viz-headline, .storyboard.summer .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.summer .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #FF6666; }
  .storyboard.summer .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.summer .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.summer .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #FF6666; }
    .storyboard.summer .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FF6666; }
.storyboard.summer .sb-headline:nth-of-type(2) .viz-headline, .storyboard.summer .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.summer .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #00FFFF; }
  .storyboard.summer .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.summer .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.summer .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #00FFFF; }
    .storyboard.summer .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00FFFF; }
.storyboard.summer .sb-headline:nth-of-type(3) .viz-headline, .storyboard.summer .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.summer .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #00994C; }
  .storyboard.summer .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.summer .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.summer .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #00994C; }
    .storyboard.summer .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00994C; }
.storyboard.summer .sb-headline:nth-of-type(4) .viz-headline, .storyboard.summer .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.summer .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #FF8000; }
  .storyboard.summer .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.summer .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.summer .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #FF8000; }
    .storyboard.summer .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FF8000; }
.storyboard.summer .sb-headline:nth-of-type(5) .viz-headline, .storyboard.summer .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.summer .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #FFFF00; }
  .storyboard.summer .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.summer .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.summer .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #FFFF00; }
    .storyboard.summer .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.summer .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.summer .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FFFF00; }
.storyboard.summer .sb-headline .headline .headline-value, .storyboard.summer .grid-stack-item .headline .headline-value, .storyboard-container.summer .sb-headline .headline .headline-value, .storyboard-container.summer .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.summer .sb-headline .headline .headline-value:before, .storyboard.summer .grid-stack-item .headline .headline-value:before, .storyboard-container.summer .sb-headline .headline .headline-value:before, .storyboard-container.summer .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.summer .sb-headline .headline .headline-caption, .storyboard.summer .grid-stack-item .headline .headline-caption, .storyboard-container.summer .sb-headline .headline .headline-caption, .storyboard-container.summer .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.summer .sb-headline .headline .headline-value span,
.storyboard.summer .sb-headline .headline .headline-caption span, .storyboard.summer .grid-stack-item .headline .headline-value span,
.storyboard.summer .grid-stack-item .headline .headline-caption span, .storyboard-container.summer .sb-headline .headline .headline-value span,
.storyboard-container.summer .sb-headline .headline .headline-caption span, .storyboard-container.summer .grid-stack-item .headline .headline-value span,
.storyboard-container.summer .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.summer .sb-headline .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline .gaugeBulb .chart-value,
.storyboard.summer .sb-headline .gauge .chart-value,
.storyboard.summer .sb-headline .gaugeLinear .chart-value,
.storyboard.summer .sb-headline .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item .gauge .chart-value,
.storyboard.summer .grid-stack-item .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline .gauge .chart-value,
.storyboard-container.summer .sb-headline .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item .gauge .chart-value,
.storyboard-container.summer .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item .gaugeBullet .chart-value {
  background: #FF6666; }
.storyboard.summer .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.summer .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.summer .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.summer .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF6666));
  background-image: -webkit-linear-gradient(left, #fff, #FF6666);
  background-image: linear-gradient(to right,#fff, #FF6666); }
.storyboard.summer .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.summer .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.summer .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.summer .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00FFFF));
  background-image: -webkit-linear-gradient(left, #fff, #00FFFF);
  background-image: linear-gradient(to right,#fff, #00FFFF); }
.storyboard.summer .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.summer .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.summer .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.summer .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00994C));
  background-image: -webkit-linear-gradient(left, #fff, #00994C);
  background-image: linear-gradient(to right,#fff, #00994C); }
.storyboard.summer .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.summer .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.summer .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.summer .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF8000));
  background-image: -webkit-linear-gradient(left, #fff, #FF8000);
  background-image: linear-gradient(to right,#fff, #FF8000); }
.storyboard.summer .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.summer .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.summer .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.summer .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.summer .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.summer .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.summer .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.summer .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.summer .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFFF00));
  background-image: -webkit-linear-gradient(left, #fff, #FFFF00);
  background-image: linear-gradient(to right,#fff, #FFFF00); }
.storyboard.summer .sb-headline:nth-of-type(1) .circularheadline, .storyboard.summer .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.summer .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #FF6666; }
  .storyboard.summer .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #FF6666; }
.storyboard.summer .sb-headline:nth-of-type(2) .circularheadline, .storyboard.summer .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.summer .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #00FFFF; }
  .storyboard.summer .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #00FFFF; }
.storyboard.summer .sb-headline:nth-of-type(3) .circularheadline, .storyboard.summer .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.summer .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #00994C; }
  .storyboard.summer .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #00994C; }
.storyboard.summer .sb-headline:nth-of-type(4) .circularheadline, .storyboard.summer .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.summer .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #FF8000; }
  .storyboard.summer .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #FF8000; }
.storyboard.summer .sb-headline:nth-of-type(5) .circularheadline, .storyboard.summer .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.summer .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #FFFF00; }
  .storyboard.summer .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.summer .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.summer .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.summer .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #FFFF00; }

.storyboard.autumn .sb-headline:nth-of-type(1) .viz-headline, .storyboard.autumn .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.autumn .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.autumn .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #874108; }
.storyboard.autumn .sb-headline:nth-of-type(2) .viz-headline, .storyboard.autumn .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.autumn .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.autumn .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #609050; }
.storyboard.autumn .sb-headline:nth-of-type(3) .viz-headline, .storyboard.autumn .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.autumn .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.autumn .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #CDE33D; }
.storyboard.autumn .sb-headline:nth-of-type(4) .viz-headline, .storyboard.autumn .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.autumn .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.autumn .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #E89220; }
.storyboard.autumn .sb-headline:nth-of-type(5) .viz-headline, .storyboard.autumn .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.autumn .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.autumn .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #750521; }
.storyboard.autumn .sb-headline .headline .headline-value, .storyboard.autumn .grid-stack-item .headline .headline-value, .storyboard-container.autumn .sb-headline .headline .headline-value, .storyboard-container.autumn .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.autumn .sb-headline .headline .headline-value span, .storyboard.autumn .grid-stack-item .headline .headline-value span, .storyboard-container.autumn .sb-headline .headline .headline-value span, .storyboard-container.autumn .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.autumn .sb-headline .headline .headline-caption, .storyboard.autumn .grid-stack-item .headline .headline-caption, .storyboard-container.autumn .sb-headline .headline .headline-caption, .storyboard-container.autumn .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.autumn .sb-headline .headline .headline-caption span, .storyboard.autumn .grid-stack-item .headline .headline-caption span, .storyboard-container.autumn .sb-headline .headline .headline-caption span, .storyboard-container.autumn .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.autumn .sb-headline .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline .gauge .chart-value,
.storyboard.autumn .sb-headline .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item .gauge .chart-value,
.storyboard.autumn .grid-stack-item .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline .gauge .chart-value,
.storyboard-container.autumn .sb-headline .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item .gaugeBullet .chart-value {
  background: #874108; }
.storyboard.autumn .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #874108));
  background-image: -webkit-linear-gradient(left, #fff, #874108);
  background-image: linear-gradient(to right,#fff, #874108); }
.storyboard.autumn .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #609050));
  background-image: -webkit-linear-gradient(left, #fff, #609050);
  background-image: linear-gradient(to right,#fff, #609050); }
.storyboard.autumn .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CDE33D));
  background-image: -webkit-linear-gradient(left, #fff, #CDE33D);
  background-image: linear-gradient(to right,#fff, #CDE33D); }
.storyboard.autumn .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #E89220));
  background-image: -webkit-linear-gradient(left, #fff, #E89220);
  background-image: linear-gradient(to right,#fff, #E89220); }
.storyboard.autumn .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.autumn .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.autumn .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.autumn .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.autumn .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #750521));
  background-image: -webkit-linear-gradient(left, #fff, #750521);
  background-image: linear-gradient(to right,#fff, #750521); }
.storyboard.autumn .sb-headline:nth-of-type(1) .circularheadline, .storyboard.autumn .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.autumn .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.autumn .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #874108; }
  .storyboard.autumn .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #874108; }
.storyboard.autumn .sb-headline:nth-of-type(2) .circularheadline, .storyboard.autumn .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.autumn .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.autumn .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #609050; }
  .storyboard.autumn .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #609050; }
.storyboard.autumn .sb-headline:nth-of-type(3) .circularheadline, .storyboard.autumn .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.autumn .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.autumn .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #CDE33D; }
  .storyboard.autumn .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #CDE33D; }
.storyboard.autumn .sb-headline:nth-of-type(4) .circularheadline, .storyboard.autumn .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.autumn .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.autumn .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #E89220; }
  .storyboard.autumn .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #E89220; }
.storyboard.autumn .sb-headline:nth-of-type(5) .circularheadline, .storyboard.autumn .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.autumn .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.autumn .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #750521; }
  .storyboard.autumn .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.autumn .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.autumn .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.autumn .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #750521; }

.storyboard.winter .sb-headline .viz-headline, .storyboard.winter .grid-stack-item .viz-headline, .storyboard-container.winter .sb-headline .viz-headline, .storyboard-container.winter .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.winter .sb-headline .viz-headline .headline-value, .storyboard.winter .grid-stack-item .viz-headline .headline-value, .storyboard-container.winter .sb-headline .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item .viz-headline .headline-value {
    color: #99e5ff; }
    .storyboard.winter .sb-headline .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #99e5ff; }
.storyboard.winter .sb-headline:nth-of-type(1) .viz-headline, .storyboard.winter .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.winter .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #99e5ff; }
  .storyboard.winter .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.winter .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.winter .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #99e5ff; }
    .storyboard.winter .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #99e5ff; }
.storyboard.winter .sb-headline:nth-of-type(2) .viz-headline, .storyboard.winter .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.winter .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #FFCCCC; }
  .storyboard.winter .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.winter .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.winter .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #FFCCCC; }
    .storyboard.winter .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FFCCCC; }
.storyboard.winter .sb-headline:nth-of-type(3) .viz-headline, .storyboard.winter .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.winter .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #FFFF99; }
  .storyboard.winter .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.winter .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.winter .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #FFFF99; }
    .storyboard.winter .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FFFF99; }
.storyboard.winter .sb-headline:nth-of-type(4) .viz-headline, .storyboard.winter .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.winter .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #CCCCFF; }
  .storyboard.winter .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.winter .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.winter .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #CCCCFF; }
    .storyboard.winter .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #CCCCFF; }
.storyboard.winter .sb-headline:nth-of-type(5) .viz-headline, .storyboard.winter .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.winter .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #99FFCC; }
  .storyboard.winter .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.winter .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.winter .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #99FFCC; }
    .storyboard.winter .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.winter .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.winter .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #99FFCC; }
.storyboard.winter .sb-headline .headline .headline-value, .storyboard.winter .grid-stack-item .headline .headline-value, .storyboard-container.winter .sb-headline .headline .headline-value, .storyboard-container.winter .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.winter .sb-headline .headline .headline-value:before, .storyboard.winter .grid-stack-item .headline .headline-value:before, .storyboard-container.winter .sb-headline .headline .headline-value:before, .storyboard-container.winter .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.winter .sb-headline .headline .headline-caption, .storyboard.winter .grid-stack-item .headline .headline-caption, .storyboard-container.winter .sb-headline .headline .headline-caption, .storyboard-container.winter .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.winter .sb-headline .headline .headline-value span,
.storyboard.winter .sb-headline .headline .headline-caption span, .storyboard.winter .grid-stack-item .headline .headline-value span,
.storyboard.winter .grid-stack-item .headline .headline-caption span, .storyboard-container.winter .sb-headline .headline .headline-value span,
.storyboard-container.winter .sb-headline .headline .headline-caption span, .storyboard-container.winter .grid-stack-item .headline .headline-value span,
.storyboard-container.winter .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.winter .sb-headline .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline .gaugeBulb .chart-value,
.storyboard.winter .sb-headline .gauge .chart-value,
.storyboard.winter .sb-headline .gaugeLinear .chart-value,
.storyboard.winter .sb-headline .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item .gauge .chart-value,
.storyboard.winter .grid-stack-item .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline .gauge .chart-value,
.storyboard-container.winter .sb-headline .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item .gauge .chart-value,
.storyboard-container.winter .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item .gaugeBullet .chart-value {
  background: #99e5ff; }
.storyboard.winter .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.winter .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.winter .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.winter .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #99e5ff));
  background-image: -webkit-linear-gradient(left, #fff, #99e5ff);
  background-image: linear-gradient(to right,#fff, #99e5ff); }
.storyboard.winter .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.winter .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.winter .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.winter .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFCCCC));
  background-image: -webkit-linear-gradient(left, #fff, #FFCCCC);
  background-image: linear-gradient(to right,#fff, #FFCCCC); }
.storyboard.winter .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.winter .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.winter .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.winter .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFFF99));
  background-image: -webkit-linear-gradient(left, #fff, #FFFF99);
  background-image: linear-gradient(to right,#fff, #FFFF99); }
.storyboard.winter .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.winter .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.winter .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.winter .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CCCCFF));
  background-image: -webkit-linear-gradient(left, #fff, #CCCCFF);
  background-image: linear-gradient(to right,#fff, #CCCCFF); }
.storyboard.winter .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.winter .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.winter .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.winter .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.winter .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.winter .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.winter .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.winter .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.winter .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #99FFCC));
  background-image: -webkit-linear-gradient(left, #fff, #99FFCC);
  background-image: linear-gradient(to right,#fff, #99FFCC); }
.storyboard.winter .sb-headline:nth-of-type(1) .circularheadline, .storyboard.winter .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.winter .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #99e5ff; }
  .storyboard.winter .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #99e5ff; }
.storyboard.winter .sb-headline:nth-of-type(2) .circularheadline, .storyboard.winter .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.winter .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #FFCCCC; }
  .storyboard.winter .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #FFCCCC; }
.storyboard.winter .sb-headline:nth-of-type(3) .circularheadline, .storyboard.winter .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.winter .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #FFFF99; }
  .storyboard.winter .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #FFFF99; }
.storyboard.winter .sb-headline:nth-of-type(4) .circularheadline, .storyboard.winter .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.winter .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #CCCCFF; }
  .storyboard.winter .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #CCCCFF; }
.storyboard.winter .sb-headline:nth-of-type(5) .circularheadline, .storyboard.winter .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.winter .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #99FFCC; }
  .storyboard.winter .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.winter .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.winter .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.winter .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #99FFCC; }

.storyboard.dragon .sb-headline:nth-of-type(1) .viz-headline, .storyboard.dragon .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.dragon .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.dragon .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #EF3E00; }
.storyboard.dragon .sb-headline:nth-of-type(2) .viz-headline, .storyboard.dragon .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.dragon .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.dragon .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #8B5A00; }
.storyboard.dragon .sb-headline:nth-of-type(3) .viz-headline, .storyboard.dragon .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.dragon .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.dragon .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #CC0000; }
.storyboard.dragon .sb-headline:nth-of-type(4) .viz-headline, .storyboard.dragon .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.dragon .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.dragon .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #990000; }
.storyboard.dragon .sb-headline:nth-of-type(5) .viz-headline, .storyboard.dragon .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.dragon .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.dragon .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #FF0000; }
.storyboard.dragon .sb-headline .headline .headline-value, .storyboard.dragon .grid-stack-item .headline .headline-value, .storyboard-container.dragon .sb-headline .headline .headline-value, .storyboard-container.dragon .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.dragon .sb-headline .headline .headline-value span, .storyboard.dragon .grid-stack-item .headline .headline-value span, .storyboard-container.dragon .sb-headline .headline .headline-value span, .storyboard-container.dragon .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.dragon .sb-headline .headline .headline-caption, .storyboard.dragon .grid-stack-item .headline .headline-caption, .storyboard-container.dragon .sb-headline .headline .headline-caption, .storyboard-container.dragon .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.dragon .sb-headline .headline .headline-caption span, .storyboard.dragon .grid-stack-item .headline .headline-caption span, .storyboard-container.dragon .sb-headline .headline .headline-caption span, .storyboard-container.dragon .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.dragon .sb-headline .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline .gauge .chart-value,
.storyboard.dragon .sb-headline .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item .gauge .chart-value,
.storyboard.dragon .grid-stack-item .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline .gauge .chart-value,
.storyboard-container.dragon .sb-headline .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item .gaugeBullet .chart-value {
  background: #EF3E00; }
.storyboard.dragon .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #EF3E00));
  background-image: -webkit-linear-gradient(left, #fff, #EF3E00);
  background-image: linear-gradient(to right,#fff, #EF3E00); }
.storyboard.dragon .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #8B5A00));
  background-image: -webkit-linear-gradient(left, #fff, #8B5A00);
  background-image: linear-gradient(to right,#fff, #8B5A00); }
.storyboard.dragon .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CC0000));
  background-image: -webkit-linear-gradient(left, #fff, #CC0000);
  background-image: linear-gradient(to right,#fff, #CC0000); }
.storyboard.dragon .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #990000));
  background-image: -webkit-linear-gradient(left, #fff, #990000);
  background-image: linear-gradient(to right,#fff, #990000); }
.storyboard.dragon .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.dragon .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.dragon .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.dragon .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.dragon .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF0000));
  background-image: -webkit-linear-gradient(left, #fff, #FF0000);
  background-image: linear-gradient(to right,#fff, #FF0000); }
.storyboard.dragon .sb-headline:nth-of-type(1) .circularheadline, .storyboard.dragon .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.dragon .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.dragon .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #EF3E00; }
  .storyboard.dragon .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #EF3E00; }
.storyboard.dragon .sb-headline:nth-of-type(2) .circularheadline, .storyboard.dragon .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.dragon .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.dragon .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #8B5A00; }
  .storyboard.dragon .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #8B5A00; }
.storyboard.dragon .sb-headline:nth-of-type(3) .circularheadline, .storyboard.dragon .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.dragon .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.dragon .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #CC0000; }
  .storyboard.dragon .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #CC0000; }
.storyboard.dragon .sb-headline:nth-of-type(4) .circularheadline, .storyboard.dragon .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.dragon .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.dragon .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #990000; }
  .storyboard.dragon .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #990000; }
.storyboard.dragon .sb-headline:nth-of-type(5) .circularheadline, .storyboard.dragon .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.dragon .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.dragon .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #FF0000; }
  .storyboard.dragon .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.dragon .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.dragon .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.dragon .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #FF0000; }

.storyboard.ocean .sb-headline:nth-of-type(1) .viz-headline, .storyboard.ocean .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.ocean .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.ocean .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #0022FF; }
.storyboard.ocean .sb-headline:nth-of-type(2) .viz-headline, .storyboard.ocean .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.ocean .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.ocean .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #0D3D51; }
.storyboard.ocean .sb-headline:nth-of-type(3) .viz-headline, .storyboard.ocean .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.ocean .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.ocean .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #3399FF; }
.storyboard.ocean .sb-headline:nth-of-type(4) .viz-headline, .storyboard.ocean .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.ocean .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.ocean .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #66FFFF; }
.storyboard.ocean .sb-headline:nth-of-type(5) .viz-headline, .storyboard.ocean .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.ocean .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.ocean .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #003333; }
.storyboard.ocean .sb-headline .headline .headline-value, .storyboard.ocean .grid-stack-item .headline .headline-value, .storyboard-container.ocean .sb-headline .headline .headline-value, .storyboard-container.ocean .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.ocean .sb-headline .headline .headline-value span, .storyboard.ocean .grid-stack-item .headline .headline-value span, .storyboard-container.ocean .sb-headline .headline .headline-value span, .storyboard-container.ocean .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.ocean .sb-headline .headline .headline-caption, .storyboard.ocean .grid-stack-item .headline .headline-caption, .storyboard-container.ocean .sb-headline .headline .headline-caption, .storyboard-container.ocean .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.ocean .sb-headline .headline .headline-caption span, .storyboard.ocean .grid-stack-item .headline .headline-caption span, .storyboard-container.ocean .sb-headline .headline .headline-caption span, .storyboard-container.ocean .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.ocean .sb-headline .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline .gauge .chart-value,
.storyboard.ocean .sb-headline .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item .gauge .chart-value,
.storyboard.ocean .grid-stack-item .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline .gauge .chart-value,
.storyboard-container.ocean .sb-headline .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item .gaugeBullet .chart-value {
  background: #0022FF; }
.storyboard.ocean .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #0022FF));
  background-image: -webkit-linear-gradient(left, #fff, #0022FF);
  background-image: linear-gradient(to right,#fff, #0022FF); }
.storyboard.ocean .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #0D3D51));
  background-image: -webkit-linear-gradient(left, #fff, #0D3D51);
  background-image: linear-gradient(to right,#fff, #0D3D51); }
.storyboard.ocean .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #3399FF));
  background-image: -webkit-linear-gradient(left, #fff, #3399FF);
  background-image: linear-gradient(to right,#fff, #3399FF); }
.storyboard.ocean .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #66FFFF));
  background-image: -webkit-linear-gradient(left, #fff, #66FFFF);
  background-image: linear-gradient(to right,#fff, #66FFFF); }
.storyboard.ocean .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.ocean .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.ocean .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.ocean .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.ocean .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #003333));
  background-image: -webkit-linear-gradient(left, #fff, #003333);
  background-image: linear-gradient(to right,#fff, #003333); }
.storyboard.ocean .sb-headline:nth-of-type(1) .circularheadline, .storyboard.ocean .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.ocean .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.ocean .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #0022FF; }
  .storyboard.ocean .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #0022FF; }
.storyboard.ocean .sb-headline:nth-of-type(2) .circularheadline, .storyboard.ocean .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.ocean .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.ocean .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #0D3D51; }
  .storyboard.ocean .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #0D3D51; }
.storyboard.ocean .sb-headline:nth-of-type(3) .circularheadline, .storyboard.ocean .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.ocean .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.ocean .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #3399FF; }
  .storyboard.ocean .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #3399FF; }
.storyboard.ocean .sb-headline:nth-of-type(4) .circularheadline, .storyboard.ocean .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.ocean .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.ocean .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #66FFFF; }
  .storyboard.ocean .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #66FFFF; }
.storyboard.ocean .sb-headline:nth-of-type(5) .circularheadline, .storyboard.ocean .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.ocean .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.ocean .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #003333; }
  .storyboard.ocean .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.ocean .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.ocean .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.ocean .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #003333; }

.storyboard.mystery .sb-headline:nth-of-type(1) .viz-headline, .storyboard.mystery .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.mystery .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.mystery .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #af2a5a; }
.storyboard.mystery .sb-headline:nth-of-type(2) .viz-headline, .storyboard.mystery .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.mystery .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.mystery .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #009292; }
.storyboard.mystery .sb-headline:nth-of-type(3) .viz-headline, .storyboard.mystery .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.mystery .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.mystery .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #d550ae; }
.storyboard.mystery .sb-headline:nth-of-type(4) .viz-headline, .storyboard.mystery .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.mystery .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.mystery .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #711b4a; }
.storyboard.mystery .sb-headline:nth-of-type(5) .viz-headline, .storyboard.mystery .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.mystery .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.mystery .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #4d0099; }
.storyboard.mystery .sb-headline .headline .headline-value, .storyboard.mystery .grid-stack-item .headline .headline-value, .storyboard-container.mystery .sb-headline .headline .headline-value, .storyboard-container.mystery .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.mystery .sb-headline .headline .headline-value span, .storyboard.mystery .grid-stack-item .headline .headline-value span, .storyboard-container.mystery .sb-headline .headline .headline-value span, .storyboard-container.mystery .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.mystery .sb-headline .headline .headline-caption, .storyboard.mystery .grid-stack-item .headline .headline-caption, .storyboard-container.mystery .sb-headline .headline .headline-caption, .storyboard-container.mystery .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.mystery .sb-headline .headline .headline-caption span, .storyboard.mystery .grid-stack-item .headline .headline-caption span, .storyboard-container.mystery .sb-headline .headline .headline-caption span, .storyboard-container.mystery .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.mystery .sb-headline .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline .gauge .chart-value,
.storyboard.mystery .sb-headline .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item .gauge .chart-value,
.storyboard.mystery .grid-stack-item .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline .gauge .chart-value,
.storyboard-container.mystery .sb-headline .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item .gaugeBullet .chart-value {
  background: #af2a5a; }
.storyboard.mystery .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #af2a5a));
  background-image: -webkit-linear-gradient(left, #fff, #af2a5a);
  background-image: linear-gradient(to right,#fff, #af2a5a); }
.storyboard.mystery .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #009292));
  background-image: -webkit-linear-gradient(left, #fff, #009292);
  background-image: linear-gradient(to right,#fff, #009292); }
.storyboard.mystery .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #d550ae));
  background-image: -webkit-linear-gradient(left, #fff, #d550ae);
  background-image: linear-gradient(to right,#fff, #d550ae); }
.storyboard.mystery .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #711b4a));
  background-image: -webkit-linear-gradient(left, #fff, #711b4a);
  background-image: linear-gradient(to right,#fff, #711b4a); }
.storyboard.mystery .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.mystery .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.mystery .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.mystery .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.mystery .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #4d0099));
  background-image: -webkit-linear-gradient(left, #fff, #4d0099);
  background-image: linear-gradient(to right,#fff, #4d0099); }
.storyboard.mystery .sb-headline:nth-of-type(1) .circularheadline, .storyboard.mystery .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.mystery .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.mystery .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #af2a5a; }
  .storyboard.mystery .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #af2a5a; }
.storyboard.mystery .sb-headline:nth-of-type(2) .circularheadline, .storyboard.mystery .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.mystery .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.mystery .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #009292; }
  .storyboard.mystery .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #009292; }
.storyboard.mystery .sb-headline:nth-of-type(3) .circularheadline, .storyboard.mystery .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.mystery .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.mystery .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #d550ae; }
  .storyboard.mystery .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #d550ae; }
.storyboard.mystery .sb-headline:nth-of-type(4) .circularheadline, .storyboard.mystery .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.mystery .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.mystery .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #711b4a; }
  .storyboard.mystery .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #711b4a; }
.storyboard.mystery .sb-headline:nth-of-type(5) .circularheadline, .storyboard.mystery .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.mystery .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.mystery .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #4d0099; }
  .storyboard.mystery .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.mystery .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.mystery .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.mystery .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #4d0099; }

.storyboard.flower .sb-headline:nth-of-type(1) .viz-headline, .storyboard.flower .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.flower .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.flower .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #FFFF00; }
.storyboard.flower .sb-headline:nth-of-type(2) .viz-headline, .storyboard.flower .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.flower .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.flower .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #FF8000; }
.storyboard.flower .sb-headline:nth-of-type(3) .viz-headline, .storyboard.flower .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.flower .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.flower .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #CC0000; }
.storyboard.flower .sb-headline:nth-of-type(4) .viz-headline, .storyboard.flower .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.flower .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.flower .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #7F00FF; }
.storyboard.flower .sb-headline:nth-of-type(5) .viz-headline, .storyboard.flower .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.flower .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.flower .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #CC00CC; }
.storyboard.flower .sb-headline .headline .headline-value, .storyboard.flower .grid-stack-item .headline .headline-value, .storyboard-container.flower .sb-headline .headline .headline-value, .storyboard-container.flower .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.flower .sb-headline .headline .headline-value span, .storyboard.flower .grid-stack-item .headline .headline-value span, .storyboard-container.flower .sb-headline .headline .headline-value span, .storyboard-container.flower .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.flower .sb-headline .headline .headline-caption, .storyboard.flower .grid-stack-item .headline .headline-caption, .storyboard-container.flower .sb-headline .headline .headline-caption, .storyboard-container.flower .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.flower .sb-headline .headline .headline-caption span, .storyboard.flower .grid-stack-item .headline .headline-caption span, .storyboard-container.flower .sb-headline .headline .headline-caption span, .storyboard-container.flower .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.flower .sb-headline .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline .gaugeBulb .chart-value,
.storyboard.flower .sb-headline .gauge .chart-value,
.storyboard.flower .sb-headline .gaugeLinear .chart-value,
.storyboard.flower .sb-headline .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item .gauge .chart-value,
.storyboard.flower .grid-stack-item .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline .gauge .chart-value,
.storyboard-container.flower .sb-headline .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item .gauge .chart-value,
.storyboard-container.flower .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item .gaugeBullet .chart-value {
  background: #FFFF00; }
.storyboard.flower .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.flower .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.flower .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.flower .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFFF00));
  background-image: -webkit-linear-gradient(left, #fff, #FFFF00);
  background-image: linear-gradient(to right,#fff, #FFFF00); }
.storyboard.flower .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.flower .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.flower .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.flower .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF8000));
  background-image: -webkit-linear-gradient(left, #fff, #FF8000);
  background-image: linear-gradient(to right,#fff, #FF8000); }
.storyboard.flower .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.flower .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.flower .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.flower .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CC0000));
  background-image: -webkit-linear-gradient(left, #fff, #CC0000);
  background-image: linear-gradient(to right,#fff, #CC0000); }
.storyboard.flower .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.flower .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.flower .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.flower .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #7F00FF));
  background-image: -webkit-linear-gradient(left, #fff, #7F00FF);
  background-image: linear-gradient(to right,#fff, #7F00FF); }
.storyboard.flower .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.flower .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.flower .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.flower .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.flower .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.flower .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.flower .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.flower .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.flower .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CC00CC));
  background-image: -webkit-linear-gradient(left, #fff, #CC00CC);
  background-image: linear-gradient(to right,#fff, #CC00CC); }
.storyboard.flower .sb-headline:nth-of-type(1) .circularheadline, .storyboard.flower .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.flower .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.flower .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #FFFF00; }
  .storyboard.flower .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #FFFF00; }
.storyboard.flower .sb-headline:nth-of-type(2) .circularheadline, .storyboard.flower .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.flower .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.flower .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #FF8000; }
  .storyboard.flower .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #FF8000; }
.storyboard.flower .sb-headline:nth-of-type(3) .circularheadline, .storyboard.flower .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.flower .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.flower .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #CC0000; }
  .storyboard.flower .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #CC0000; }
.storyboard.flower .sb-headline:nth-of-type(4) .circularheadline, .storyboard.flower .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.flower .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.flower .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #7F00FF; }
  .storyboard.flower .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #7F00FF; }
.storyboard.flower .sb-headline:nth-of-type(5) .circularheadline, .storyboard.flower .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.flower .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.flower .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #CC00CC; }
  .storyboard.flower .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.flower .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.flower .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.flower .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #CC00CC; }

.storyboard.rainbow .sb-headline:nth-of-type(1) .viz-headline, .storyboard.rainbow .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.rainbow .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #FF0000; }
.storyboard.rainbow .sb-headline:nth-of-type(2) .viz-headline, .storyboard.rainbow .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.rainbow .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #FF8000; }
.storyboard.rainbow .sb-headline:nth-of-type(3) .viz-headline, .storyboard.rainbow .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.rainbow .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #FFFF00; }
.storyboard.rainbow .sb-headline:nth-of-type(4) .viz-headline, .storyboard.rainbow .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.rainbow .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #80FF00; }
.storyboard.rainbow .sb-headline:nth-of-type(5) .viz-headline, .storyboard.rainbow .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.rainbow .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #00FF00; }
.storyboard.rainbow .sb-headline .headline .headline-value, .storyboard.rainbow .grid-stack-item .headline .headline-value, .storyboard-container.rainbow .sb-headline .headline .headline-value, .storyboard-container.rainbow .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.rainbow .sb-headline .headline .headline-value span, .storyboard.rainbow .grid-stack-item .headline .headline-value span, .storyboard-container.rainbow .sb-headline .headline .headline-value span, .storyboard-container.rainbow .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.rainbow .sb-headline .headline .headline-caption, .storyboard.rainbow .grid-stack-item .headline .headline-caption, .storyboard-container.rainbow .sb-headline .headline .headline-caption, .storyboard-container.rainbow .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.rainbow .sb-headline .headline .headline-caption span, .storyboard.rainbow .grid-stack-item .headline .headline-caption span, .storyboard-container.rainbow .sb-headline .headline .headline-caption span, .storyboard-container.rainbow .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.rainbow .sb-headline .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline .gauge .chart-value,
.storyboard.rainbow .sb-headline .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item .gauge .chart-value,
.storyboard.rainbow .grid-stack-item .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline .gauge .chart-value,
.storyboard-container.rainbow .sb-headline .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item .gaugeBullet .chart-value {
  background: #FF0000; }
.storyboard.rainbow .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF0000));
  background-image: -webkit-linear-gradient(left, #fff, #FF0000);
  background-image: linear-gradient(to right,#fff, #FF0000); }
.storyboard.rainbow .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF8000));
  background-image: -webkit-linear-gradient(left, #fff, #FF8000);
  background-image: linear-gradient(to right,#fff, #FF8000); }
.storyboard.rainbow .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FFFF00));
  background-image: -webkit-linear-gradient(left, #fff, #FFFF00);
  background-image: linear-gradient(to right,#fff, #FFFF00); }
.storyboard.rainbow .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #80FF00));
  background-image: -webkit-linear-gradient(left, #fff, #80FF00);
  background-image: linear-gradient(to right,#fff, #80FF00); }
.storyboard.rainbow .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.rainbow .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.rainbow .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00FF00));
  background-image: -webkit-linear-gradient(left, #fff, #00FF00);
  background-image: linear-gradient(to right,#fff, #00FF00); }
.storyboard.rainbow .sb-headline:nth-of-type(1) .circularheadline, .storyboard.rainbow .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.rainbow .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #FF0000; }
  .storyboard.rainbow .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #FF0000; }
.storyboard.rainbow .sb-headline:nth-of-type(2) .circularheadline, .storyboard.rainbow .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.rainbow .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #FF8000; }
  .storyboard.rainbow .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #FF8000; }
.storyboard.rainbow .sb-headline:nth-of-type(3) .circularheadline, .storyboard.rainbow .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.rainbow .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #FFFF00; }
  .storyboard.rainbow .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #FFFF00; }
.storyboard.rainbow .sb-headline:nth-of-type(4) .circularheadline, .storyboard.rainbow .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.rainbow .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #80FF00; }
  .storyboard.rainbow .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #80FF00; }
.storyboard.rainbow .sb-headline:nth-of-type(5) .circularheadline, .storyboard.rainbow .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.rainbow .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #00FF00; }
  .storyboard.rainbow .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.rainbow .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.rainbow .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.rainbow .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #00FF00; }

.storyboard.modern .sb-headline .viz-headline, .storyboard.modern .grid-stack-item .viz-headline, .storyboard-container.modern .sb-headline .viz-headline, .storyboard-container.modern .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.modern .sb-headline .viz-headline .headline-value, .storyboard.modern .grid-stack-item .viz-headline .headline-value, .storyboard-container.modern .sb-headline .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item .viz-headline .headline-value {
    color: #737484; }
    .storyboard.modern .sb-headline .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #737484; }
.storyboard.modern .sb-headline:nth-of-type(1) .viz-headline, .storyboard.modern .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.modern .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #737484; }
  .storyboard.modern .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.modern .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.modern .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #737484; }
    .storyboard.modern .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #737484; }
.storyboard.modern .sb-headline:nth-of-type(2) .viz-headline, .storyboard.modern .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.modern .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #234E7F; }
  .storyboard.modern .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.modern .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.modern .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #234E7F; }
    .storyboard.modern .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #234E7F; }
.storyboard.modern .sb-headline:nth-of-type(3) .viz-headline, .storyboard.modern .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.modern .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #737336; }
  .storyboard.modern .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.modern .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.modern .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #737336; }
    .storyboard.modern .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #737336; }
.storyboard.modern .sb-headline:nth-of-type(4) .viz-headline, .storyboard.modern .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.modern .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #8B3F7F; }
  .storyboard.modern .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.modern .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.modern .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #8B3F7F; }
    .storyboard.modern .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #8B3F7F; }
.storyboard.modern .sb-headline:nth-of-type(5) .viz-headline, .storyboard.modern .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.modern .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #FD5D5D; }
  .storyboard.modern .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.modern .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.modern .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #FD5D5D; }
    .storyboard.modern .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.modern .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.modern .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FD5D5D; }
.storyboard.modern .sb-headline .headline .headline-value, .storyboard.modern .grid-stack-item .headline .headline-value, .storyboard-container.modern .sb-headline .headline .headline-value, .storyboard-container.modern .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.modern .sb-headline .headline .headline-value:before, .storyboard.modern .grid-stack-item .headline .headline-value:before, .storyboard-container.modern .sb-headline .headline .headline-value:before, .storyboard-container.modern .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.modern .sb-headline .headline .headline-caption, .storyboard.modern .grid-stack-item .headline .headline-caption, .storyboard-container.modern .sb-headline .headline .headline-caption, .storyboard-container.modern .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.modern .sb-headline .headline .headline-value span,
.storyboard.modern .sb-headline .headline .headline-caption span, .storyboard.modern .grid-stack-item .headline .headline-value span,
.storyboard.modern .grid-stack-item .headline .headline-caption span, .storyboard-container.modern .sb-headline .headline .headline-value span,
.storyboard-container.modern .sb-headline .headline .headline-caption span, .storyboard-container.modern .grid-stack-item .headline .headline-value span,
.storyboard-container.modern .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.modern .sb-headline .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline .gaugeBulb .chart-value,
.storyboard.modern .sb-headline .gauge .chart-value,
.storyboard.modern .sb-headline .gaugeLinear .chart-value,
.storyboard.modern .sb-headline .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item .gauge .chart-value,
.storyboard.modern .grid-stack-item .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline .gauge .chart-value,
.storyboard-container.modern .sb-headline .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item .gauge .chart-value,
.storyboard-container.modern .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item .gaugeBullet .chart-value {
  background: #737484; }
.storyboard.modern .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.modern .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.modern .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.modern .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #737484));
  background-image: -webkit-linear-gradient(left, #fff, #737484);
  background-image: linear-gradient(to right,#fff, #737484); }
.storyboard.modern .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.modern .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.modern .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.modern .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #234E7F));
  background-image: -webkit-linear-gradient(left, #fff, #234E7F);
  background-image: linear-gradient(to right,#fff, #234E7F); }
.storyboard.modern .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.modern .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.modern .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.modern .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #737336));
  background-image: -webkit-linear-gradient(left, #fff, #737336);
  background-image: linear-gradient(to right,#fff, #737336); }
.storyboard.modern .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.modern .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.modern .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.modern .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #8B3F7F));
  background-image: -webkit-linear-gradient(left, #fff, #8B3F7F);
  background-image: linear-gradient(to right,#fff, #8B3F7F); }
.storyboard.modern .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.modern .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.modern .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.modern .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.modern .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.modern .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.modern .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.modern .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.modern .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FD5D5D));
  background-image: -webkit-linear-gradient(left, #fff, #FD5D5D);
  background-image: linear-gradient(to right,#fff, #FD5D5D); }
.storyboard.modern .sb-headline:nth-of-type(1) .circularheadline, .storyboard.modern .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.modern .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #737484; }
  .storyboard.modern .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #737484; }
.storyboard.modern .sb-headline:nth-of-type(2) .circularheadline, .storyboard.modern .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.modern .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #234E7F; }
  .storyboard.modern .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #234E7F; }
.storyboard.modern .sb-headline:nth-of-type(3) .circularheadline, .storyboard.modern .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.modern .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #737336; }
  .storyboard.modern .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #737336; }
.storyboard.modern .sb-headline:nth-of-type(4) .circularheadline, .storyboard.modern .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.modern .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #8B3F7F; }
  .storyboard.modern .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #8B3F7F; }
.storyboard.modern .sb-headline:nth-of-type(5) .circularheadline, .storyboard.modern .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.modern .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #FD5D5D; }
  .storyboard.modern .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.modern .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.modern .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.modern .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #FD5D5D; }

.storyboard.metal .sb-headline .viz-headline, .storyboard.metal .grid-stack-item .viz-headline, .storyboard-container.metal .sb-headline .viz-headline, .storyboard-container.metal .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.metal .sb-headline .viz-headline .headline-value, .storyboard.metal .grid-stack-item .viz-headline .headline-value, .storyboard-container.metal .sb-headline .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item .viz-headline .headline-value {
    color: #202020; }
    .storyboard.metal .sb-headline .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #202020; }
.storyboard.metal .sb-headline:nth-of-type(1) .viz-headline, .storyboard.metal .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.metal .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #202020; }
  .storyboard.metal .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.metal .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.metal .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #202020; }
    .storyboard.metal .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #202020; }
.storyboard.metal .sb-headline:nth-of-type(2) .viz-headline, .storyboard.metal .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.metal .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #663300; }
  .storyboard.metal .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.metal .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.metal .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #663300; }
    .storyboard.metal .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #663300; }
.storyboard.metal .sb-headline:nth-of-type(3) .viz-headline, .storyboard.metal .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.metal .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #404040; }
  .storyboard.metal .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.metal .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.metal .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #404040; }
    .storyboard.metal .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #404040; }
.storyboard.metal .sb-headline:nth-of-type(4) .viz-headline, .storyboard.metal .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.metal .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #CC6600; }
  .storyboard.metal .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.metal .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.metal .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #CC6600; }
    .storyboard.metal .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #CC6600; }
.storyboard.metal .sb-headline:nth-of-type(5) .viz-headline, .storyboard.metal .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.metal .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #606060; }
  .storyboard.metal .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.metal .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.metal .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #606060; }
    .storyboard.metal .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.metal .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.metal .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #606060; }
.storyboard.metal .sb-headline .headline .headline-value, .storyboard.metal .grid-stack-item .headline .headline-value, .storyboard-container.metal .sb-headline .headline .headline-value, .storyboard-container.metal .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.metal .sb-headline .headline .headline-value:before, .storyboard.metal .grid-stack-item .headline .headline-value:before, .storyboard-container.metal .sb-headline .headline .headline-value:before, .storyboard-container.metal .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.metal .sb-headline .headline .headline-caption, .storyboard.metal .grid-stack-item .headline .headline-caption, .storyboard-container.metal .sb-headline .headline .headline-caption, .storyboard-container.metal .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.metal .sb-headline .headline .headline-value span,
.storyboard.metal .sb-headline .headline .headline-caption span, .storyboard.metal .grid-stack-item .headline .headline-value span,
.storyboard.metal .grid-stack-item .headline .headline-caption span, .storyboard-container.metal .sb-headline .headline .headline-value span,
.storyboard-container.metal .sb-headline .headline .headline-caption span, .storyboard-container.metal .grid-stack-item .headline .headline-value span,
.storyboard-container.metal .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.metal .sb-headline .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline .gaugeBulb .chart-value,
.storyboard.metal .sb-headline .gauge .chart-value,
.storyboard.metal .sb-headline .gaugeLinear .chart-value,
.storyboard.metal .sb-headline .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item .gauge .chart-value,
.storyboard.metal .grid-stack-item .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline .gauge .chart-value,
.storyboard-container.metal .sb-headline .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item .gauge .chart-value,
.storyboard-container.metal .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item .gaugeBullet .chart-value {
  background: #202020; }
.storyboard.metal .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.metal .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.metal .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.metal .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #202020));
  background-image: -webkit-linear-gradient(left, #fff, #202020);
  background-image: linear-gradient(to right,#fff, #202020); }
.storyboard.metal .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.metal .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.metal .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.metal .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #663300));
  background-image: -webkit-linear-gradient(left, #fff, #663300);
  background-image: linear-gradient(to right,#fff, #663300); }
.storyboard.metal .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.metal .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.metal .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.metal .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #404040));
  background-image: -webkit-linear-gradient(left, #fff, #404040);
  background-image: linear-gradient(to right,#fff, #404040); }
.storyboard.metal .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.metal .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.metal .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.metal .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #CC6600));
  background-image: -webkit-linear-gradient(left, #fff, #CC6600);
  background-image: linear-gradient(to right,#fff, #CC6600); }
.storyboard.metal .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.metal .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.metal .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.metal .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.metal .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.metal .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.metal .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.metal .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.metal .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #606060));
  background-image: -webkit-linear-gradient(left, #fff, #606060);
  background-image: linear-gradient(to right,#fff, #606060); }
.storyboard.metal .sb-headline:nth-of-type(1) .circularheadline, .storyboard.metal .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.metal .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #202020; }
  .storyboard.metal .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #202020; }
.storyboard.metal .sb-headline:nth-of-type(2) .circularheadline, .storyboard.metal .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.metal .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #663300; }
  .storyboard.metal .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #663300; }
.storyboard.metal .sb-headline:nth-of-type(3) .circularheadline, .storyboard.metal .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.metal .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #404040; }
  .storyboard.metal .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #404040; }
.storyboard.metal .sb-headline:nth-of-type(4) .circularheadline, .storyboard.metal .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.metal .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #CC6600; }
  .storyboard.metal .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #CC6600; }
.storyboard.metal .sb-headline:nth-of-type(5) .circularheadline, .storyboard.metal .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.metal .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #606060; }
  .storyboard.metal .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.metal .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.metal .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.metal .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #606060; }

.storyboard.antique .sb-headline:nth-of-type(1) .viz-headline, .storyboard.antique .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.antique .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.antique .grid-stack-item:nth-of-type(1) .viz-headline {
  background: #A58011; }
.storyboard.antique .sb-headline:nth-of-type(2) .viz-headline, .storyboard.antique .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.antique .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.antique .grid-stack-item:nth-of-type(2) .viz-headline {
  background: #698611; }
.storyboard.antique .sb-headline:nth-of-type(3) .viz-headline, .storyboard.antique .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.antique .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.antique .grid-stack-item:nth-of-type(3) .viz-headline {
  background: #A96132; }
.storyboard.antique .sb-headline:nth-of-type(4) .viz-headline, .storyboard.antique .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.antique .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.antique .grid-stack-item:nth-of-type(4) .viz-headline {
  background: #0F6969; }
.storyboard.antique .sb-headline:nth-of-type(5) .viz-headline, .storyboard.antique .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.antique .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.antique .grid-stack-item:nth-of-type(5) .viz-headline {
  background: #9D4242; }
.storyboard.antique .sb-headline .headline .headline-value, .storyboard.antique .grid-stack-item .headline .headline-value, .storyboard-container.antique .sb-headline .headline .headline-value, .storyboard-container.antique .grid-stack-item .headline .headline-value {
  display: inline-block;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.6vw;
  font-weight: 700;
  height: 60%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  color: #fff;
  text-align: center; }
  .storyboard.antique .sb-headline .headline .headline-value span, .storyboard.antique .grid-stack-item .headline .headline-value span, .storyboard-container.antique .sb-headline .headline .headline-value span, .storyboard-container.antique .grid-stack-item .headline .headline-value span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.antique .sb-headline .headline .headline-caption, .storyboard.antique .grid-stack-item .headline .headline-caption, .storyboard-container.antique .sb-headline .headline .headline-caption, .storyboard-container.antique .grid-stack-item .headline .headline-caption {
  font-size: 1vw;
  height: 40%;
  font-weight: 300;
  vertical-align: middle;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(225, 225, 225, 0.4); }
  .storyboard.antique .sb-headline .headline .headline-caption span, .storyboard.antique .grid-stack-item .headline .headline-caption span, .storyboard-container.antique .sb-headline .headline .headline-caption span, .storyboard-container.antique .grid-stack-item .headline .headline-caption span {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0; }
.storyboard.antique .sb-headline .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline .gaugeBulb .chart-value,
.storyboard.antique .sb-headline .gauge .chart-value,
.storyboard.antique .sb-headline .gaugeLinear .chart-value,
.storyboard.antique .sb-headline .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item .gauge .chart-value,
.storyboard.antique .grid-stack-item .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline .gauge .chart-value,
.storyboard-container.antique .sb-headline .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item .gauge .chart-value,
.storyboard-container.antique .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item .gaugeBullet .chart-value {
  background: #A58011; }
.storyboard.antique .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.antique .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.antique .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.antique .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #A58011));
  background-image: -webkit-linear-gradient(left, #fff, #A58011);
  background-image: linear-gradient(to right,#fff, #A58011); }
.storyboard.antique .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.antique .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.antique .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.antique .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #698611));
  background-image: -webkit-linear-gradient(left, #fff, #698611);
  background-image: linear-gradient(to right,#fff, #698611); }
.storyboard.antique .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.antique .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.antique .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.antique .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #A96132));
  background-image: -webkit-linear-gradient(left, #fff, #A96132);
  background-image: linear-gradient(to right,#fff, #A96132); }
.storyboard.antique .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.antique .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.antique .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.antique .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #0F6969));
  background-image: -webkit-linear-gradient(left, #fff, #0F6969);
  background-image: linear-gradient(to right,#fff, #0F6969); }
.storyboard.antique .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.antique .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.antique .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.antique .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.antique .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.antique .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.antique .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.antique .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.antique .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #9D4242));
  background-image: -webkit-linear-gradient(left, #fff, #9D4242);
  background-image: linear-gradient(to right,#fff, #9D4242); }
.storyboard.antique .sb-headline:nth-of-type(1) .circularheadline, .storyboard.antique .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.antique .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.antique .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #A58011; }
  .storyboard.antique .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #A58011; }
.storyboard.antique .sb-headline:nth-of-type(2) .circularheadline, .storyboard.antique .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.antique .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.antique .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #698611; }
  .storyboard.antique .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #698611; }
.storyboard.antique .sb-headline:nth-of-type(3) .circularheadline, .storyboard.antique .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.antique .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.antique .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #A96132; }
  .storyboard.antique .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #A96132; }
.storyboard.antique .sb-headline:nth-of-type(4) .circularheadline, .storyboard.antique .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.antique .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.antique .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #0F6969; }
  .storyboard.antique .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #0F6969; }
.storyboard.antique .sb-headline:nth-of-type(5) .circularheadline, .storyboard.antique .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.antique .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.antique .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #9D4242; }
  .storyboard.antique .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.antique .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.antique .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.antique .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #9D4242; }

.storyboard.pos-neg .sb-headline .viz-headline, .storyboard.pos-neg .grid-stack-item .viz-headline, .storyboard-container.pos-neg .sb-headline .viz-headline, .storyboard-container.pos-neg .grid-stack-item .viz-headline {
  border-bottom: 3px solid #ccc; }
  .storyboard.pos-neg .sb-headline .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item .viz-headline .headline-value {
    color: #00FF00; }
    .storyboard.pos-neg .sb-headline .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(1) .viz-headline, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .viz-headline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline {
  border-color: #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline .headline-value {
    color: #00FF00; }
    .storyboard.pos-neg .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(2) .viz-headline, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .viz-headline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline {
  border-color: #FF0000; }
  .storyboard.pos-neg .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline .headline-value {
    color: #FF0000; }
    .storyboard.pos-neg .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FF0000; }
.storyboard.pos-neg .sb-headline:nth-of-type(3) .viz-headline, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .viz-headline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline {
  border-color: #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline .headline-value {
    color: #00FF00; }
    .storyboard.pos-neg .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(4) .viz-headline, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .viz-headline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline {
  border-color: #FF0000; }
  .storyboard.pos-neg .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline .headline-value {
    color: #FF0000; }
    .storyboard.pos-neg .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #FF0000; }
.storyboard.pos-neg .sb-headline:nth-of-type(5) .viz-headline, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .viz-headline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline {
  border-color: #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .viz-headline .headline-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline .headline-value {
    color: #00FF00; }
    .storyboard.pos-neg .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .viz-headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .viz-headline .headline-value:before {
      content: '';
      position: absolute;
      width: 20%;
      height: 3px;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #00FF00; }
.storyboard.pos-neg .sb-headline .headline .headline-value, .storyboard.pos-neg .grid-stack-item .headline .headline-value, .storyboard-container.pos-neg .sb-headline .headline .headline-value, .storyboard-container.pos-neg .grid-stack-item .headline .headline-value {
  color: #67539B;
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 2.8vw;
  font-weight: 700;
  font-weight: 700;
  height: 75%;
  position: absolute;
  position: relative;
  top: 25%;
  width: 100%; }
  .storyboard.pos-neg .sb-headline .headline .headline-value:before, .storyboard.pos-neg .grid-stack-item .headline .headline-value:before, .storyboard-container.pos-neg .sb-headline .headline .headline-value:before, .storyboard-container.pos-neg .grid-stack-item .headline .headline-value:before {
    background: #67539B;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 20%; }
.storyboard.pos-neg .sb-headline .headline .headline-caption, .storyboard.pos-neg .grid-stack-item .headline .headline-caption, .storyboard-container.pos-neg .sb-headline .headline .headline-caption, .storyboard-container.pos-neg .grid-stack-item .headline .headline-caption {
  color: #5F5F5F;
  display: block;
  font-size: 1vw;
  font-weight: 500;
  height: 25%;
  position: absolute;
  top: 0;
  vertical-align: middle;
  width: 100%; }
.storyboard.pos-neg .sb-headline .headline .headline-value span,
.storyboard.pos-neg .sb-headline .headline .headline-caption span, .storyboard.pos-neg .grid-stack-item .headline .headline-value span,
.storyboard.pos-neg .grid-stack-item .headline .headline-caption span, .storyboard-container.pos-neg .sb-headline .headline .headline-value span,
.storyboard-container.pos-neg .sb-headline .headline .headline-caption span, .storyboard-container.pos-neg .grid-stack-item .headline .headline-value span,
.storyboard-container.pos-neg .grid-stack-item .headline .headline-caption span {
  display: inline-block;
  left: 0;
  width: 100%; }
.storyboard.pos-neg .sb-headline .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline .gauge .chart-value,
.storyboard.pos-neg .sb-headline .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item .gaugeBullet .chart-value {
  background: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(1) .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00FF00));
  background-image: -webkit-linear-gradient(left, #fff, #00FF00);
  background-image: linear-gradient(to right,#fff, #00FF00); }
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(2) .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF0000));
  background-image: -webkit-linear-gradient(left, #fff, #FF0000);
  background-image: linear-gradient(to right,#fff, #FF0000); }
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(3) .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00FF00));
  background-image: -webkit-linear-gradient(left, #fff, #00FF00);
  background-image: linear-gradient(to right,#fff, #00FF00); }
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(4) .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #FF0000));
  background-image: -webkit-linear-gradient(left, #fff, #FF0000);
  background-image: linear-gradient(to right,#fff, #FF0000); }
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.pos-neg .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard.pos-neg .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gauge .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .sb-headline:nth-of-type(5) .gaugeBullet .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gaugeCylinder .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gaugeBulb .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gauge .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gaugeLinear .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gaugeThermometer .chart-value,
.storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .gaugeBullet .chart-value {
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #00FF00));
  background-image: -webkit-linear-gradient(left, #fff, #00FF00);
  background-image: linear-gradient(to right,#fff, #00FF00); }
.storyboard.pos-neg .sb-headline:nth-of-type(1) .circularheadline, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .circularheadline, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .circularheadline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .circularheadline {
  border-bottom: 3px solid #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(1) .circularheadline .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(1) .circularheadline .chart-value {
    color: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(2) .circularheadline, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .circularheadline, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .circularheadline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .circularheadline {
  border-bottom: 3px solid #FF0000; }
  .storyboard.pos-neg .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(2) .circularheadline .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(2) .circularheadline .chart-value {
    color: #FF0000; }
.storyboard.pos-neg .sb-headline:nth-of-type(3) .circularheadline, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .circularheadline, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .circularheadline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .circularheadline {
  border-bottom: 3px solid #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(3) .circularheadline .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(3) .circularheadline .chart-value {
    color: #00FF00; }
.storyboard.pos-neg .sb-headline:nth-of-type(4) .circularheadline, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .circularheadline, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .circularheadline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .circularheadline {
  border-bottom: 3px solid #FF0000; }
  .storyboard.pos-neg .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(4) .circularheadline .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(4) .circularheadline .chart-value {
    color: #FF0000; }
.storyboard.pos-neg .sb-headline:nth-of-type(5) .circularheadline, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .circularheadline, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .circularheadline, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .circularheadline {
  border-bottom: 3px solid #00FF00; }
  .storyboard.pos-neg .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard.pos-neg .grid-stack-item:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.pos-neg .sb-headline:nth-of-type(5) .circularheadline .chart-value, .storyboard-container.pos-neg .grid-stack-item:nth-of-type(5) .circularheadline .chart-value {
    color: #00FF00; }

.circularheadline .headline-caption {
  align-items: center;
  /* align vertical */
  background: none;
  color: #4B4B4B;
  display: flex;
  font-size: 1vw;
  height: 20%;
  justify-content: center;
  padding-right: 15px;
  text-align: center;
  top: 0;
  z-index: 3;
            /** &:before {
background: nth($colors, 2);
content: '';
height: 3px;
left: 50%;
position: absolute;
bottom: 0;
top: initial;
transform: translateX(-50%);
width: 20%;
}**/ }
  .circularheadline .headline-caption:before {
    content: none; }
.circularheadline .chart-value {
  position: absolute;
  width: 60%;
  font-size: 1.6vw;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center; }
.circularheadline .chart-container {
  position: absolute;
  top: 5%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%; }
.circularheadline .amcharts-chart-div .amcharts-chart-div a {
  display: none !important; }
.circularheadline .amcharts-chart-div a {
  visibility: hidden; }

.gaugeCylinder .chart-container,
.gaugeBulb .chart-container,
.gaugeThermometer .chart-container,
.gaugeBullet .chart-container {
  width: 35%;
  height: 75%;
  position: absolute;
  left: 0;
  z-index: 2; }
.gaugeCylinder .chart-value,
.gaugeBulb .chart-value,
.gaugeThermometer .chart-value,
.gaugeBullet .chart-value {
  padding: 0px 15px;
  width: 100%;
  position: absolute;
  z-index: 1;
  background: #ccc;
  text-align: right;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  font-size: 2vw;
  font-size: 700;
  font-family: "Oswald", sans-serif; }
.gaugeCylinder .headline-caption,
.gaugeBulb .headline-caption,
.gaugeThermometer .headline-caption,
.gaugeBullet .headline-caption {
  align-items: center;
  /* align vertical */
  background: none;
  color: #000;
  color: #4B4B4B;
  display: flex;
  font-size: 1.2vw;
  height: 25%;
  justify-content: flex-end;
  /* align horizontal */
  padding-right: 15px;
  text-align: right;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 3;
  display: none;
  /** &:before {
      background: nth($colors, 2);
      content: '';
      height: 3px;
      left: 50%;
      position: absolute;
      bottom: 0;
      top: initial;
      transform: translateX(-50%);
      width: 20%;
  }**/ }
  .gaugeCylinder .headline-caption:before,
  .gaugeBulb .headline-caption:before,
  .gaugeThermometer .headline-caption:before,
  .gaugeBullet .headline-caption:before {
    content: none; }
.sb-headline:has(.gaugeCylinder,
.gaugeBulb,
.gaugeThermometer,
.gaugeBullet) .viz-title-editor, .export-visual-container:has(.gaugeCylinder,
.gaugeBulb,
.gaugeThermometer,
.gaugeBullet) .viz-title-editor {
  display: block; }

.gauge .chart-container,
.gaugeLinear .chart-container {
  width: 100%;
  height: 65%;
  position: absolute;
  left: 0;
  z-index: 2; }
.gauge .chart-value,
.gaugeLinear .chart-value {
  display: none; }
.gauge .headline-caption,
.gaugeLinear .headline-caption {
  align-items: center;
  /* align vertical */
  background: none;
  color: #000;
  color: #4B4B4B;
  display: flex;
  font-size: 1vw;
  height: 25%;
  justify-content: center;
  /* align horizontal */
  padding-right: 15px;
  text-align: center;
  top: 0;
  width: 100%;
  position: absolute;
  z-index: 3; }
  .gauge .headline-caption:before,
  .gaugeLinear .headline-caption:before {
    content: none; }

.sparkcolumn, .sparkline {
  background: #fff !important; }
  .sparkcolumn .viz-headline, .sparkline .viz-headline {
    background: #fff !important; }
  .sparkcolumn .headline-value, .sparkline .headline-value {
    height: 80%; }
  .sparkcolumn .headline-caption, .sparkline .headline-caption {
    height: 20%; }

.rollingHeadline {
  box-shadow: none !important; }

.grid-stack-item.rollingHeadline:nth-of-type(0) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(1) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(2) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(3) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(4) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(5) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(6) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(7) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(8) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(9) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(10) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(11) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(12) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(13) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(14) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(15) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(16) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(17) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(18) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(19) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(20) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(21) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(22) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(23) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(24) {
  margin-top: 0px; }

.grid-stack-item.rollingHeadline:nth-of-type(25) {
  margin-top: 0px; }

.storyboard-viewer .grid-stack-item {
  background-image: none !important; }

.viz-trend-headline, .viz-multitab-trend {
  padding: 15px; }
  .viz-trend-headline .trend-headline-caption, .viz-multitab-trend .trend-headline-caption {
    text-align: left;
    font-weight: 500;
    color: #fff; }
  .viz-trend-headline .trend-headline-info, .viz-multitab-trend .trend-headline-info {
    position: relative; }
  .viz-trend-headline .trend-headline-value, .viz-multitab-trend .trend-headline-value {
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    text-align: left;
    display: block;
    vertical-align: top; }
  .viz-trend-headline .trend-headline-chart, .viz-multitab-trend .trend-headline-chart {
    position: absolute;
    bottom: 0px;
    top: 60%;
    width: 100%;
    background: transparent; }
  .viz-trend-headline .compare-title, .viz-multitab-trend .compare-title {
    font-size: 14px;
    margin-bottom: 0px; }
  .viz-trend-headline .compare-values-container, .viz-multitab-trend .compare-values-container {
    margin-right: 40px;
    float: left; }
  .viz-trend-headline .trend-headline-right-compare, .viz-multitab-trend .trend-headline-right-compare {
    color: #fff;
    display: inline-block;
    float: right;
    font-size: 16px;
    position: absolute;
    right: 15px;
    text-align: right;
    top: 0px;
    vertical-align: top;
    width: auto; }
  .viz-trend-headline .trend-headline-left-compare .compare-value,
  .viz-trend-headline .trend-headline-right-compare .compare-value, .viz-multitab-trend .trend-headline-left-compare .compare-value,
  .viz-multitab-trend .trend-headline-right-compare .compare-value {
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    padding: 0 8px; }
  .viz-trend-headline .compare-icon, .viz-multitab-trend .compare-icon {
    padding: 15px;
    background: #fff;
    display: inline-block;
    float: right;
    border-radius: 100%;
    position: absolute;
    right: 0; }
  .viz-trend-headline .compare-icon .positive, .viz-multitab-trend .compare-icon .positive {
    color: #70C248;
    font-weight: 700; }
  .viz-trend-headline .compare-icon .negative, .viz-multitab-trend .compare-icon .negative {
    color: #f01f1f;
    font-weight: 700; }
  .viz-trend-headline .compare-icon .na, .viz-multitab-trend .compare-icon .na {
    color: #929292;
    font-weight: 700; }
  .viz-trend-headline .dropdown .compare-title, .viz-multitab-trend .dropdown .compare-title {
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    padding: 0 8px; }
    .viz-trend-headline .dropdown .compare-title:hover, .viz-multitab-trend .dropdown .compare-title:hover {
      background: rgba(0, 0, 0, 0.5);
      border-radius: 12px; }

.trend-headline-chart.current,
.trend-headline-chart.previous {
  top: 50%;
  position: absolute;
  top: 60%;
  bottom: 0px;
  left: 0;
  right: 0; }

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .sb-headline {
    border-right: #E3E3E3 solid 0px !important;
    border-bottom: #E3E3E3 solid 1px !important; } }
.table.table--no-lines > thead > tr > th, .table.table--no-lines > tbody > tr > th, .table.table--no-lines > tfoot > tr > th, .table.table--no-lines > thead > tr > td, .table.table--no-lines > tbody > tr > td, .table.table--no-lines > tfoot > tr > td {
  border-top: transparent; }

.tablesorter-default .header, .tablesorter-default th.tablesorter-header {
  padding: 0px 0px 5px 0px !important; }

/************************************
*
* Visual Styles
*
************************************/
.visual-comment {
  position: absolute;
  float: right;
  margin-right: 10px;
  z-index: 99990;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.1);
  transition: color .3s linear;
  right: -17px;
  top: -7px; }
  .grid-stack-item:hover .visual-comment {
    color: rgba(0, 0, 0, 0.8); }

.grid-stack-item.rawTable .visual-comment, .grid-stack-item.groupedTable .visual-comment {
  right: 27px;
  top: -6px;
  margin-right: 0; }

.intelligent-agent {
  filter: grayscale(50%);
  opacity: 0.5;
  transition: all .6s ease-in-out; }
  .intelligent-agent:hover, .intelligent-agent:focus {
    filter: grayscale(0%);
    opacity: 1; }

.icon-intelligent-agent {
  display: inline-block;
  background: transparent url("../../assets/images/icons/icon.ai-star.svg") no-repeat center center;
  height: 18px;
  width: 18px;
  background-size: contain; }

.list-container-vertical .with-ranking, .list-container-horizontal .with-ranking, .singleList .with-ranking {
  position: relative; }
  .list-container-vertical .with-ranking .fa-circle, .list-container-horizontal .with-ranking .fa-circle, .singleList .with-ranking .fa-circle {
    font-size: 1.1em; }
  .list-container-vertical .with-ranking .listing-rank, .list-container-horizontal .with-ranking .listing-rank, .singleList .with-ranking .listing-rank {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 9px;
    left: 50%;
    font-weight: 700;
    margin-top: -2px;
    color: #fff; }
.list-container-vertical table tbody tr:nth-of-type(even), .list-container-vertical table tbody tr:nth-of-type(even) td, .list-container-horizontal table tbody tr:nth-of-type(even), .list-container-horizontal table tbody tr:nth-of-type(even) td, .singleList table tbody tr:nth-of-type(even), .singleList table tbody tr:nth-of-type(even) td {
  background-color: #f6f6f6; }
.list-container-vertical table .tablesorter-headerUnSorted, .list-container-horizontal table .tablesorter-headerUnSorted, .singleList table .tablesorter-headerUnSorted {
  background-image: none; }
  .list-container-vertical table .tablesorter-headerUnSorted .tablesorter-icon, .list-container-horizontal table .tablesorter-headerUnSorted .tablesorter-icon, .singleList table .tablesorter-headerUnSorted .tablesorter-icon {
    opacity: 0;
    transition: opacity .2s ease-in-out; }
  .list-container-vertical table .tablesorter-headerUnSorted:hover, .list-container-vertical table .tablesorter-headerUnSorted:focus, .list-container-horizontal table .tablesorter-headerUnSorted:hover, .list-container-horizontal table .tablesorter-headerUnSorted:focus, .singleList table .tablesorter-headerUnSorted:hover, .singleList table .tablesorter-headerUnSorted:focus {
    background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); }
    .list-container-vertical table .tablesorter-headerUnSorted:hover .tablesorter-icon, .list-container-vertical table .tablesorter-headerUnSorted:focus .tablesorter-icon, .list-container-horizontal table .tablesorter-headerUnSorted:hover .tablesorter-icon, .list-container-horizontal table .tablesorter-headerUnSorted:focus .tablesorter-icon, .singleList table .tablesorter-headerUnSorted:hover .tablesorter-icon, .singleList table .tablesorter-headerUnSorted:focus .tablesorter-icon {
      opacity: 1; }

.current-ai-visual {
  box-shadow: 0 0 10px #56CCCC;
  border: 2px solid #56CCCC;
  border-radius: 8px; }

/*************************************************************
 *
 * Storyboard Icons for sidebar and editor content
 * 
*************************************************************/
/** Gridstack item container for icons **/
.content-type-selector .grid-stack-item {
  background-size: 100% 100%;
  border-radius: 8px;
  border: 2px solid rgba(58, 132, 197, 0.4);
  cursor: default;
  display: inline-block;
  height: 80px;
  line-height: 80px;
  margin-top: 10px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  left: 0 !important;
  right: 0 !important; }
  .content-type-selector .grid-stack-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }

.grid-stack-item {
  background-size: 100% 100%;
  min-height: 80px;
  position: relative; }
  .grid-stack-item.facet-field {
    background: url("../../assets/images/icons/icon.facet-field.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.facet-field {
    background: none !important; }
  .grid-stack-item.automatic {
    background: url("../../assets/images/icons/icon.automatic.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.automatic {
    background: none !important; }
  .grid-stack-item.headline {
    background: url("../../assets/images/icons/icon.headline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.headline {
    background: none !important; }
  .grid-stack-item.multiheadline {
    background: url("../../assets/images/icons/icon.multiheadline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.multiheadline {
    background: none !important; }
  .grid-stack-item.singleList {
    background: url("../../assets/images/icons/icon.singleList.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.singleList {
    background: none !important; }
  .grid-stack-item.trendheadline {
    background: url("../../assets/images/icons/icon.trendheadline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.trendheadline {
    background: none !important; }
  .grid-stack-item.sparkcolumn {
    background: url("../../assets/images/icons/icon.sparkcolumn.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.sparkcolumn {
    background: none !important; }
  .grid-stack-item.sparkline {
    background: url("../../assets/images/icons/icon.sparkline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.sparkline {
    background: none !important; }
  .grid-stack-item.pie {
    background: url("../../assets/images/icons/icon.pie.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.pie {
    background: none !important; }
  .grid-stack-item.column {
    background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.column {
    background: none !important; }
  .grid-stack-item.staticHTML {
    background: url("../../assets/images/icons/icon.staticHTML.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.staticHTML {
    background: none !important; }
  .grid-stack-item.header {
    background: url("../../assets/images/icons/icon.header.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.header {
    background: none !important; }
  .grid-stack-item.rollingHeadline {
    background: url("../../assets/images/icons/icon.rollingHeadline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.rollingHeadline {
    background: none !important; }
  .grid-stack-item.board-icons {
    background: url("../../assets/images/icons/icon.board-icons.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.board-icons {
    background: none !important; }
  .grid-stack-item.web-content {
    background: url("../../assets/images/icons/icon.web-content.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.web-content {
    background: none !important; }
  .grid-stack-item.line {
    background: url("../../assets/images/icons/icon.line.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.line {
    background: none !important; }
  .grid-stack-item.rawTable {
    background: url("../../assets/images/icons/icon.rawTable.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.rawTable {
    background: none !important; }
  .grid-stack-item.gauge {
    background: url("../../assets/images/icons/icon.gauge.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gauge {
    background: none !important; }
  .grid-stack-item.gaugeCylinder {
    background: url("../../assets/images/icons/icon.gaugeCylinder.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gaugeCylinder {
    background: none !important; }
  .grid-stack-item.gaugeBulb {
    background: url("../../assets/images/icons/icon.gaugeBulb.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gaugeBulb {
    background: none !important; }
  .grid-stack-item.gaugeLinear {
    background: url("../../assets/images/icons/icon.gaugeLinear.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gaugeLinear {
    background: none !important; }
  .grid-stack-item.gaugeThermometer {
    background: url("../../assets/images/icons/icon.gaugeThermometer.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gaugeThermometer {
    background: none !important; }
  .grid-stack-item.overlappedColumn {
    background: url("../../assets/images/icons/icon.overlappedColumn.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.overlappedColumn {
    background: none !important; }
  .grid-stack-item.overlappedBar {
    background: url("../../assets/images/icons/icon.overlappedBar.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.overlappedBar {
    background: none !important; }
  .grid-stack-item.map {
    background: url("../../assets/images/icons/icon.map.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.map {
    background: none !important; }
  .grid-stack-item.heatmap {
    background: url("../../assets/images/icons/icon.heatmap.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.heatmap {
    background: none !important; }
  .grid-stack-item.column {
    background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.column {
    background: none !important; }
  .grid-stack-item.gaugeBullet {
    background: url("../../assets/images/icons/icon.gaugeBullet.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.gaugeBullet {
    background: none !important; }
  .grid-stack-item.singley {
    background: url("../../assets/images/icons/icon.singley.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.singley {
    background: none !important; }
  .grid-stack-item.dualy {
    background: url("../../assets/images/icons/icon.dualy.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.dualy {
    background: none !important; }
  .grid-stack-item.donut {
    background: url("../../assets/images/icons/icon.donut.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.donut {
    background: none !important; }
  .grid-stack-item.bar {
    background: url("../../assets/images/icons/icon.bar.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.bar {
    background: none !important; }
  .grid-stack-item.bubble {
    background: url("../../assets/images/icons/icon.bubble.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.bubble {
    background: none !important; }
  .grid-stack-item.scatter {
    background: url("../../assets/images/icons/icon.scatter.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.scatter {
    background: none !important; }
  .grid-stack-item.area {
    background: url("../../assets/images/icons/icon.area.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.area {
    background: none !important; }
  .grid-stack-item.groupedTable {
    background: url("../../assets/images/icons/icon.groupedTable.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.groupedTable {
    background: none !important; }
  .grid-stack-item.timeseries {
    background: url("../../assets/images/icons/icon.timeseries.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.timeseries {
    background: none !important; }
  .grid-stack-item.pareto {
    background: url("../../assets/images/icons/icon.pareto.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.pareto {
    background: none !important; }
  .grid-stack-item.search-all {
    background: url("../../assets/images/icons/icon.search-all.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.search-all {
    background: none !important; }
  .grid-stack-item.button-bar {
    background: url("../../assets/images/icons/icon.button-bar.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.button-bar {
    background: none !important; }
  .grid-stack-item.slider {
    background: url("../../assets/images/icons/icon.slider.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.slider {
    background: none !important; }
  .grid-stack-item.rangeslider {
    background: url("../../assets/images/icons/icon.rangeslider.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.rangeslider {
    background: none !important; }
  .grid-stack-item.multi {
    background: url("../../assets/images/icons/icon.multi.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.multi {
    background: none !important; }
  .grid-stack-item.dropdown {
    background: url("../../assets/images/icons/icon.dropdown.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.dropdown {
    background: none !important; }
  .grid-stack-item.search {
    background: url("../../assets/images/icons/icon.search.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.search {
    background: none !important; }
  .grid-stack-item.date-selector {
    background: url("../../assets/images/icons/icon.date-selector.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-selector {
    background: none !important; }
  .grid-stack-item.date-range-selector {
    background: url("../../assets/images/icons/icon.date-range-selector.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-range-selector {
    background: none !important; }
  .grid-stack-item.date-year-slider {
    background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-year-slider {
    background: none !important; }
  .grid-stack-item.date-quarter-button {
    background: url("../../assets/images/icons/icon.date-quarter-button.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-quarter-button {
    background: none !important; }
  .grid-stack-item.date-year-slider {
    background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-year-slider {
    background: none !important; }
  .grid-stack-item.date-month-button {
    background: url("../../assets/images/icons/icon.date-month-button.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.date-month-button {
    background: none !important; }
  .grid-stack-item.location-search {
    background: url("../../assets/images/icons/icon.location-search.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.location-search {
    background: none !important; }
  .grid-stack-item.campaignLine {
    background: url("../../assets/images/icons/icon.campaignLine.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.campaignLine {
    background: none !important; }
  .grid-stack-item.rollingList {
    background: url("../../assets/images/icons/icon.rollingList.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.rollingList {
    background: none !important; }
  .grid-stack-item.funnel {
    background: url("../../assets/images/icons/icon.funnel.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.funnel {
    background: none !important; }
  .grid-stack-item.pipeline {
    background: url("../../assets/images/icons/icon.pipeline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.pipeline {
    background: none !important; }
  .grid-stack-item.radar {
    background: url("../../assets/images/icons/icon.radar.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.radar {
    background: none !important; }
  .grid-stack-item.treemap {
    background: url("../../assets/images/icons/icon.treemap.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.treemap {
    background: none !important; }
  .grid-stack-item.sunburst {
    background: url("../../assets/images/icons/icon.sunburst.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.sunburst {
    background: none !important; }
  .grid-stack-item.multitabtrend {
    background: url("../../assets/images/icons/icon.multitabtrend.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.multitabtrend {
    background: none !important; }
  .grid-stack-item.circularheadline {
    background: url("../../assets/images/icons/icon.circularheadline.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.circularheadline {
    background: none !important; }
  .grid-stack-item.geoMap {
    background: url("../../assets/images/icons/icon.geoMap.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.geoMap {
    background: none !important; }
  .grid-stack-item.calendarHeatmap {
    background: url("../../assets/images/icons/icon.calendarHeatmap.neutral.svg") no-repeat center;
    background-size: 55% 55%; }
  .storyboard .layout-freeform .grid-stack-item.calendarHeatmap {
    background: none !important; }
  .grid-stack-item .grid-stack-item-content {
    color: rgba(255, 255, 255, 0); }
    .grid-stack-item .grid-stack-item-content-sidebar-title {
      color: #b1c0c9;
      font-size: 10px;
      padding-top: 8%; }

.grid-stack > .grid-stack-item > .grid-stack-item-content {
  overflow: visible; }

.insufficient .viz-inner-container .chart-adviser {
  background: url("../../assets/images/icons/icon.automatic.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  opacity: 0.8; }

.chart-panel.sb-filter .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.search.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  opacity: 0.8; }

.insufficient .viz-inner-container.facet-field .chart-adviser, .chart-panel.facet-field .viz-container.insufficient, .chart-panel.filter-facet-field .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.facet-field.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-facet-field {
  background: url("../../assets/images/icons/icon.facet-field.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-facet-field:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-facet-field span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.automatic .chart-adviser, .chart-panel.automatic .viz-container.insufficient, .chart-panel.filter-automatic .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.automatic.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-automatic {
  background: url("../../assets/images/icons/icon.automatic.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-automatic:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-automatic span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.headline .chart-adviser, .chart-panel.headline .viz-container.insufficient, .chart-panel.filter-headline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.headline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-headline {
  background: url("../../assets/images/icons/icon.headline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-headline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-headline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.multiheadline .chart-adviser, .chart-panel.multiheadline .viz-container.insufficient, .chart-panel.filter-multiheadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.multiheadline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-multiheadline {
  background: url("../../assets/images/icons/icon.multiheadline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-multiheadline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-multiheadline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.singleList .chart-adviser, .chart-panel.singleList .viz-container.insufficient, .chart-panel.filter-singleList .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.singleList.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-singleList {
  background: url("../../assets/images/icons/icon.singleList.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-singleList:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-singleList span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.trendheadline .chart-adviser, .chart-panel.trendheadline .viz-container.insufficient, .chart-panel.filter-trendheadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.trendheadline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-trendheadline {
  background: url("../../assets/images/icons/icon.trendheadline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-trendheadline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-trendheadline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.sparkcolumn .chart-adviser, .chart-panel.sparkcolumn .viz-container.insufficient, .chart-panel.filter-sparkcolumn .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.sparkcolumn.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-sparkcolumn {
  background: url("../../assets/images/icons/icon.sparkcolumn.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-sparkcolumn:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-sparkcolumn span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.sparkline .chart-adviser, .chart-panel.sparkline .viz-container.insufficient, .chart-panel.filter-sparkline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.sparkline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-sparkline {
  background: url("../../assets/images/icons/icon.sparkline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-sparkline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-sparkline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.pie .chart-adviser, .chart-panel.pie .viz-container.insufficient, .chart-panel.filter-pie .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.pie.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-pie {
  background: url("../../assets/images/icons/icon.pie.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-pie:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-pie span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.column .chart-adviser, .chart-panel.column .viz-container.insufficient, .chart-panel.filter-column .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-column {
  background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-column:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-column span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.staticHTML .chart-adviser, .chart-panel.staticHTML .viz-container.insufficient, .chart-panel.filter-staticHTML .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.staticHTML.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-staticHTML {
  background: url("../../assets/images/icons/icon.staticHTML.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-staticHTML:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-staticHTML span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.header .chart-adviser, .chart-panel.header .viz-container.insufficient, .chart-panel.filter-header .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.header.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-header {
  background: url("../../assets/images/icons/icon.header.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-header:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-header span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.rollingHeadline .chart-adviser, .chart-panel.rollingHeadline .viz-container.insufficient, .chart-panel.filter-rollingHeadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.rollingHeadline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-rollingHeadline {
  background: url("../../assets/images/icons/icon.rollingHeadline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-rollingHeadline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-rollingHeadline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.board-icons .chart-adviser, .chart-panel.board-icons .viz-container.insufficient, .chart-panel.filter-board-icons .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.board-icons.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-board-icons {
  background: url("../../assets/images/icons/icon.board-icons.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-board-icons:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-board-icons span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.web-content .chart-adviser, .chart-panel.web-content .viz-container.insufficient, .chart-panel.filter-web-content .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.web-content.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-web-content {
  background: url("../../assets/images/icons/icon.web-content.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-web-content:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-web-content span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.line .chart-adviser, .chart-panel.line .viz-container.insufficient, .chart-panel.filter-line .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.line.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-line {
  background: url("../../assets/images/icons/icon.line.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-line:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-line span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.rawTable .chart-adviser, .chart-panel.rawTable .viz-container.insufficient, .chart-panel.filter-rawTable .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.rawTable.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-rawTable {
  background: url("../../assets/images/icons/icon.rawTable.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-rawTable:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-rawTable span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gauge .chart-adviser, .chart-panel.gauge .viz-container.insufficient, .chart-panel.filter-gauge .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gauge.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gauge {
  background: url("../../assets/images/icons/icon.gauge.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gauge:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gauge span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gaugeCylinder .chart-adviser, .chart-panel.gaugeCylinder .viz-container.insufficient, .chart-panel.filter-gaugeCylinder .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gaugeCylinder.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gaugeCylinder {
  background: url("../../assets/images/icons/icon.gaugeCylinder.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gaugeCylinder:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gaugeCylinder span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gaugeBulb .chart-adviser, .chart-panel.gaugeBulb .viz-container.insufficient, .chart-panel.filter-gaugeBulb .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gaugeBulb.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gaugeBulb {
  background: url("../../assets/images/icons/icon.gaugeBulb.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gaugeBulb:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gaugeBulb span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gaugeLinear .chart-adviser, .chart-panel.gaugeLinear .viz-container.insufficient, .chart-panel.filter-gaugeLinear .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gaugeLinear.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gaugeLinear {
  background: url("../../assets/images/icons/icon.gaugeLinear.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gaugeLinear:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gaugeLinear span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gaugeThermometer .chart-adviser, .chart-panel.gaugeThermometer .viz-container.insufficient, .chart-panel.filter-gaugeThermometer .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gaugeThermometer.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gaugeThermometer {
  background: url("../../assets/images/icons/icon.gaugeThermometer.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gaugeThermometer:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gaugeThermometer span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.overlappedColumn .chart-adviser, .chart-panel.overlappedColumn .viz-container.insufficient, .chart-panel.filter-overlappedColumn .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.overlappedColumn.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-overlappedColumn {
  background: url("../../assets/images/icons/icon.overlappedColumn.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-overlappedColumn:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-overlappedColumn span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.overlappedBar .chart-adviser, .chart-panel.overlappedBar .viz-container.insufficient, .chart-panel.filter-overlappedBar .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.overlappedBar.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-overlappedBar {
  background: url("../../assets/images/icons/icon.overlappedBar.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-overlappedBar:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-overlappedBar span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.map .chart-adviser, .chart-panel.map .viz-container.insufficient, .chart-panel.filter-map .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.map.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-map {
  background: url("../../assets/images/icons/icon.map.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-map:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-map span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.heatmap .chart-adviser, .chart-panel.heatmap .viz-container.insufficient, .chart-panel.filter-heatmap .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.heatmap.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-heatmap {
  background: url("../../assets/images/icons/icon.heatmap.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-heatmap:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-heatmap span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.column .chart-adviser, .chart-panel.column .viz-container.insufficient, .chart-panel.filter-column .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-column {
  background: url("../../assets/images/icons/icon.column.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-column:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-column span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.gaugeBullet .chart-adviser, .chart-panel.gaugeBullet .viz-container.insufficient, .chart-panel.filter-gaugeBullet .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.gaugeBullet.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-gaugeBullet {
  background: url("../../assets/images/icons/icon.gaugeBullet.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-gaugeBullet:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-gaugeBullet span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.singley .chart-adviser, .chart-panel.singley .viz-container.insufficient, .chart-panel.filter-singley .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.singley.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-singley {
  background: url("../../assets/images/icons/icon.singley.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-singley:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-singley span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.dualy .chart-adviser, .chart-panel.dualy .viz-container.insufficient, .chart-panel.filter-dualy .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.dualy.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-dualy {
  background: url("../../assets/images/icons/icon.dualy.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-dualy:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-dualy span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.donut .chart-adviser, .chart-panel.donut .viz-container.insufficient, .chart-panel.filter-donut .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.donut.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-donut {
  background: url("../../assets/images/icons/icon.donut.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-donut:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-donut span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.bar .chart-adviser, .chart-panel.bar .viz-container.insufficient, .chart-panel.filter-bar .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.bar.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-bar {
  background: url("../../assets/images/icons/icon.bar.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-bar:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-bar span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.bubble .chart-adviser, .chart-panel.bubble .viz-container.insufficient, .chart-panel.filter-bubble .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.bubble.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-bubble {
  background: url("../../assets/images/icons/icon.bubble.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-bubble:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-bubble span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.scatter .chart-adviser, .chart-panel.scatter .viz-container.insufficient, .chart-panel.filter-scatter .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.scatter.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-scatter {
  background: url("../../assets/images/icons/icon.scatter.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-scatter:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-scatter span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.area .chart-adviser, .chart-panel.area .viz-container.insufficient, .chart-panel.filter-area .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.area.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-area {
  background: url("../../assets/images/icons/icon.area.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-area:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-area span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.groupedTable .chart-adviser, .chart-panel.groupedTable .viz-container.insufficient, .chart-panel.filter-groupedTable .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.groupedTable.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-groupedTable {
  background: url("../../assets/images/icons/icon.groupedTable.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-groupedTable:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-groupedTable span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.timeseries .chart-adviser, .chart-panel.timeseries .viz-container.insufficient, .chart-panel.filter-timeseries .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.timeseries.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-timeseries {
  background: url("../../assets/images/icons/icon.timeseries.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-timeseries:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-timeseries span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.pareto .chart-adviser, .chart-panel.pareto .viz-container.insufficient, .chart-panel.filter-pareto .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.pareto.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-pareto {
  background: url("../../assets/images/icons/icon.pareto.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-pareto:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-pareto span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.search-all .chart-adviser, .chart-panel.search-all .viz-container.insufficient, .chart-panel.filter-search-all .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.search-all.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-search-all {
  background: url("../../assets/images/icons/icon.search-all.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-search-all:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-search-all span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.button-bar .chart-adviser, .chart-panel.button-bar .viz-container.insufficient, .chart-panel.filter-button-bar .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.button-bar.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-button-bar {
  background: url("../../assets/images/icons/icon.button-bar.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-button-bar:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-button-bar span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.slider .chart-adviser, .chart-panel.slider .viz-container.insufficient, .chart-panel.filter-slider .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.slider.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-slider {
  background: url("../../assets/images/icons/icon.slider.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-slider:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-slider span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.rangeslider .chart-adviser, .chart-panel.rangeslider .viz-container.insufficient, .chart-panel.filter-rangeslider .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.rangeslider.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-rangeslider {
  background: url("../../assets/images/icons/icon.rangeslider.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-rangeslider:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-rangeslider span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.multi .chart-adviser, .chart-panel.multi .viz-container.insufficient, .chart-panel.filter-multi .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.multi.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-multi {
  background: url("../../assets/images/icons/icon.multi.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-multi:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-multi span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.dropdown .chart-adviser, .chart-panel.dropdown .viz-container.insufficient, .chart-panel.filter-dropdown .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.dropdown.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-dropdown {
  background: url("../../assets/images/icons/icon.dropdown.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-dropdown:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-dropdown span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.search .chart-adviser, .chart-panel.search .viz-container.insufficient, .chart-panel.filter-search .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.search.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-search {
  background: url("../../assets/images/icons/icon.search.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-search:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-search span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-selector .chart-adviser, .chart-panel.date-selector .viz-container.insufficient, .chart-panel.filter-date-selector .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-selector.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-selector {
  background: url("../../assets/images/icons/icon.date-selector.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-selector:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-selector span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-range-selector .chart-adviser, .chart-panel.date-range-selector .viz-container.insufficient, .chart-panel.filter-date-range-selector .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-range-selector.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-range-selector {
  background: url("../../assets/images/icons/icon.date-range-selector.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-range-selector:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-range-selector span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-year-slider .chart-adviser, .chart-panel.date-year-slider .viz-container.insufficient, .chart-panel.filter-date-year-slider .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-year-slider {
  background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-year-slider:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-year-slider span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-quarter-button .chart-adviser, .chart-panel.date-quarter-button .viz-container.insufficient, .chart-panel.filter-date-quarter-button .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-quarter-button.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-quarter-button {
  background: url("../../assets/images/icons/icon.date-quarter-button.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-quarter-button:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-quarter-button span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-year-slider .chart-adviser, .chart-panel.date-year-slider .viz-container.insufficient, .chart-panel.filter-date-year-slider .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-year-slider {
  background: url("../../assets/images/icons/icon.date-year-slider.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-year-slider:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-year-slider span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.date-month-button .chart-adviser, .chart-panel.date-month-button .viz-container.insufficient, .chart-panel.filter-date-month-button .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.date-month-button.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-date-month-button {
  background: url("../../assets/images/icons/icon.date-month-button.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-date-month-button:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-date-month-button span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.location-search .chart-adviser, .chart-panel.location-search .viz-container.insufficient, .chart-panel.filter-location-search .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.location-search.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-location-search {
  background: url("../../assets/images/icons/icon.location-search.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-location-search:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-location-search span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.campaignLine .chart-adviser, .chart-panel.campaignLine .viz-container.insufficient, .chart-panel.filter-campaignLine .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.campaignLine.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-campaignLine {
  background: url("../../assets/images/icons/icon.campaignLine.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-campaignLine:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-campaignLine span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.rollingList .chart-adviser, .chart-panel.rollingList .viz-container.insufficient, .chart-panel.filter-rollingList .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.rollingList.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-rollingList {
  background: url("../../assets/images/icons/icon.rollingList.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-rollingList:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-rollingList span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.funnel .chart-adviser, .chart-panel.funnel .viz-container.insufficient, .chart-panel.filter-funnel .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.funnel.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-funnel {
  background: url("../../assets/images/icons/icon.funnel.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-funnel:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-funnel span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.pipeline .chart-adviser, .chart-panel.pipeline .viz-container.insufficient, .chart-panel.filter-pipeline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.pipeline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-pipeline {
  background: url("../../assets/images/icons/icon.pipeline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-pipeline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-pipeline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.radar .chart-adviser, .chart-panel.radar .viz-container.insufficient, .chart-panel.filter-radar .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.radar.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-radar {
  background: url("../../assets/images/icons/icon.radar.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-radar:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-radar span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.treemap .chart-adviser, .chart-panel.treemap .viz-container.insufficient, .chart-panel.filter-treemap .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.treemap.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-treemap {
  background: url("../../assets/images/icons/icon.treemap.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-treemap:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-treemap span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.sunburst .chart-adviser, .chart-panel.sunburst .viz-container.insufficient, .chart-panel.filter-sunburst .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.sunburst.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-sunburst {
  background: url("../../assets/images/icons/icon.sunburst.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-sunburst:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-sunburst span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.multitabtrend .chart-adviser, .chart-panel.multitabtrend .viz-container.insufficient, .chart-panel.filter-multitabtrend .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.multitabtrend.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-multitabtrend {
  background: url("../../assets/images/icons/icon.multitabtrend.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-multitabtrend:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-multitabtrend span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.circularheadline .chart-adviser, .chart-panel.circularheadline .viz-container.insufficient, .chart-panel.filter-circularheadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.circularheadline.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-circularheadline {
  background: url("../../assets/images/icons/icon.circularheadline.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-circularheadline:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-circularheadline span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.geoMap .chart-adviser, .chart-panel.geoMap .viz-container.insufficient, .chart-panel.filter-geoMap .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.geoMap.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-geoMap {
  background: url("../../assets/images/icons/icon.geoMap.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-geoMap:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-geoMap span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.insufficient .viz-inner-container.calendarHeatmap .chart-adviser, .chart-panel.calendarHeatmap .viz-container.insufficient, .chart-panel.filter-calendarHeatmap .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.calendarHeatmap.neutral.svg") no-repeat center;
  background-size: 55% 55%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  background-size: 80% 80% !important;
  opacity: 0.8; }

.sub-button-group .visual-calendarHeatmap {
  background: url("../../assets/images/icons/icon.calendarHeatmap.neutral.svg") no-repeat center;
  overflow: hidden;
  height: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  background-size: 60% 60%; }

.sub-button-group .visual-calendarHeatmap:hover {
  background-size: 65% 65%; }

.sub-button-group .visual-calendarHeatmap span {
  position: absolute;
  bottom: 5px;
  width: 100%;
  left: 0;
  font-weight: 700;
  color: #707886; }

.show-field-symbol .icon-field-type {
  float: none !important;
  color: rgba(255, 255, 255, 0.63);
  font-family: "Font Awesome 5 Pro"; }
.show-field-symbol .numeric-field:before, .show-field-symbol .int-field:before, .show-field-symbol .numeric-field:before, .show-field-symbol .interval-field:before {
  content: "\f292"; }
.show-field-symbol .text-field:before {
  content: "\f031"; }
.show-field-symbol .date-field:before, .show-field-symbol .datetime-field:before {
  content: "\f073"; }

.sub-button-group {
  position: absolute;
  top: 300px;
  width: 100%;
  left: 0px;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out,ease-in-out;
  animation-delay: 1.5s; }

/**.chart-panel.filter-search .viz-container.insufficient{
  background: inherit !important;
}

.chart-panel.filter-search.active-edit .viz-container.insufficient{
  background: rgb(255, 255, 255) !important;
}**/
/*************************************************
*
* Sidemenu Layout -- Nucleus Setting/Admin Layout
*
*************************************************/
.side-menu {
  width: 240px;
  top: 60px;
  bottom: 0;
  left: 0;
  position: fixed;
  margin-top: 0;
  border-right: 1px solid #e6e6e6;
  padding: 0 10px;
  overflow: hidden;
  z-index: 10;
  background: #fff;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1010; }
  .side-menu__content {
    height: 100%;
    width: 100%; }
  .side-menu__menu {
    height: 100%; }
    .side-menu__menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-left: -10px;
      margin-right: -10px;
      position: relative; }
      .side-menu__menu ul li a {
        font-family: "proxima-nova", sans-serif;
        font-size: 16px;
        color: #747474;
        position: relative;
        padding: 20px 20px;
        display: block;
        max-height: 60px; }
        .side-menu__menu ul li a.active {
          color: #67539B;
          background: white;
          font-weight: bold; }
          .side-menu__menu ul li a.active:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            background: #67539B;
            width: 5px;
            height: 100%; }
        .side-menu__menu ul li a:hover, .side-menu__menu ul li a:focus {
          text-decoration: none;
          color: #67539B;
          background: white; }
      .side-menu__menu ul li.active a {
        color: #67539B;
        background: white;
        /* font-weight: bold;  */ }
        .side-menu__menu ul li.active a:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          background: #67539B;
          width: 5px;
          height: 100%; }
  .side-menu__subnav {
    background-color: rgba(201, 201, 201, 0.15);
    padding-left: 10px; }
  .side-menu__sub-link {
    border-bottom: none !important;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0px 20px !important;
    transition: height 0.4s cubic-bezier(0.23, 1, 0.32, 1), width 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1); }
    .side-menu__sub-link.visible {
      height: 40px;
      opacity: 1;
      padding: 20px 20px !important; }
    .side-menu__sub-link .nucleus-letter-icon {
      font-style: normal;
      font-weight: 700;
      display: inline-block;
      position: absolute;
      top: 9px; }
  .side-menu__angle {
    opacity: 1;
    margin: 0 !important;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: all .1s linear;
    position: absolute; }
  .side-menu__menu-bottom {
    height: auto;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0; }
    .side-menu__menu-bottom ul {
      margin-left: 0;
      margin-right: 0; }
    .side-menu__menu-bottom ul li {
      text-align: center; }
    .side-menu__menu-bottom ul li a {
      text-align: left;
      padding: 10px 25px !important; }
    .side-menu__menu-bottom--exit-group {
      bottom: 60px; }
      .side-menu__menu-bottom--exit-group ul li {
        text-align: left; }
  .side-menu__collapse-toggle {
    padding-left: 0px;
    padding-top: 0px;
    border-top: 1px solid #EAEAEB;
    margin-left: 0px;
    margin-right: 0px; }
    .side-menu__collapse-toggle a:hover, .side-menu__collapse-toggle a:focus {
      background: transparent !important; }
  .side-menu__option-label {
    display: inline-block !important;
    position: absolute;
    opacity: 1;
    transition: width 0.1s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: .4s; }
    .side-menu__option-label--sub {
      padding-left: 32px;
      /* font-weight: 500; */
      font-size: 15px;
      top: 50%;
      transform: translateY(-50%); }
      .side-menu__option-label--sub a {
        border-bottom: none !important; }

.side-menu--collapsed {
  overflow: visible;
  width: 65px; }
  .side-menu--collapsed .side-menu__option-label {
    transition: all 0s linear;
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none; }
  .side-menu--collapsed .side-menu__menu-bottom ul li {
    text-align: left; }
  .side-menu--collapsed .side-menu__menu-bottom ul li a {
    text-align: center; }
  .side-menu--collapsed .side-menu__angle {
    transition: all .1s linear;
    opacity: 0; }
  .side-menu--collapsed .side-menu__sub-link {
    height: 0px;
    opacity: 0;
    padding: 0px 20px !important; }
    .side-menu--collapsed .side-menu__sub-link .side-menu__option-label--sub {
      opacity: 0;
      transition: width 0.1s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.1s cubic-bezier(0.23, 1, 0.32, 1);
      overflow: hidden;
      display: inline-block;
      width: 0; }
    .side-menu--collapsed .side-menu__sub-link.visible {
      height: 40px;
      opacity: 1;
      padding: 20px 20px !important; }
      .side-menu--collapsed .side-menu__sub-link.visible .side-menu__option-label--sub {
        opacity: 1;
        overflow: hidden;
        display: inline-block;
        width: calc( 100% - 42px); }
  .side-menu--collapsed:hover {
        /**
        width: $side-bar-width;


        .side-menu__option-label{
            opacity: 1; 
            transition: all .1s linear;  
        }

        .side-menu__menu-bottom ul li {
            //text-align: initial;           
        }




       ul li{
            &.active{

                  a.nucleus-dropdown{
                        &:before{
                            //content: none;
                            opacity: 0;
                        }  
                    }

            }
        }


      .side-menu__angle{
            opacity: 1;
            display: inline-block;
            transition: all .1s linear;  
        }

        .side-menu__sub-link{
            border-bottom: none !important;  
            opacity: 0; 
            height: 0;
            overflow: hidden;
            transition: height .2s $ease-out-quint, padding .2s $ease-out-quint, opacity .3s $ease-out-quint .2s;
            padding: 0px 20px !important; 


            &.visible{
                height: 40px; 
                opacity: 1;
                padding: 20px 20px !important;
            }

        }**/ }

.side-menu__menu--group ul li a.active {
  color: #56CCCC;
  background: #fbfefe; }
  .side-menu__menu--group ul li a.active:before {
    background: #56CCCC; }
.side-menu__menu--group ul li a:hover, .side-menu__menu--group ul li a:focus {
  text-decoration: none;
  color: #56CCCC;
  background: #fbfefe; }
.side-menu__menu--group ul li.active a {
  color: #56CCCC !important;
  background: #fbfefe; }
  .side-menu__menu--group ul li.active a:before {
    background: #56CCCC !important; }

.main-content {
  height: calc(100vh - 60px);
  left: 0;
  right: 0px;
  top: 60px;
  position: absolute;
  overflow-y: auto; }
  .main-content__container {
    display: flex; }
  .main-content__content {
    flex-grow: 1;
    position: relative;
    padding: 20px; }
  .main-content__section-header {
    padding: 40px 15px;
    font-family: "proxima-nova", sans-serif;
    /* font-weight: 700; */
    min-height: 107px;
    color: #114d72;
    border-bottom: 1px solid #9B9B9B;
    min-height: 120px; }
    .main-content__section-header .section-header {
      margin: 0px;
      text-transform: uppercase;
      font-size: 35px;
      font-family: "proxima-nova", sans-serif; }
    .main-content__section-header h1, .main-content__section-header h2, .main-content__section-header h3, .main-content__section-header h4, .main-content__section-header h5, .main-content__section-header h6 {
      margin: 0; }
  .main-content--collapsed {
    position: absolute;
    right: 0;
    margin: 0 !important;
    top: 60px;
    width: auto; }

.inner-sidemenu {
  width: 240px;
  height: 100%;
  border-right: 1px solid #e6e6e6;
  padding: 10px;
  background: #fff;
  flex-grow: 0;
  flex-basis: 240px; }
  .inner-sidemenu__menu {
    height: 100%; }
    .inner-sidemenu__menu ul {
      list-style: none;
      margin: 0;
      padding: 0;
      margin-left: -10px;
      margin-right: -10px;
      position: relative; }
      .inner-sidemenu__menu ul li a {
        font-family: "proxima-nova", sans-serif;
        font-size: 18px;
        color: #747474;
        position: relative;
        padding: 15px 20px;
        display: block; }
        .inner-sidemenu__menu ul li a.active {
          color: #56CCCC;
          /* background: lighten($new-color-2, 41%); */ }
        .inner-sidemenu__menu ul li a:hover, .inner-sidemenu__menu ul li a:focus {
          text-decoration: none;
          color: #56CCCC;
          /* background: lighten($new-color-2, 41%); */ }
      .inner-sidemenu__menu ul li.active {
        position: relative; }
        .inner-sidemenu__menu ul li.active a {
          color: #56CCCC;
          /* background: lighten($new-color-2, 41%); */ }
          .inner-sidemenu__menu ul li.active a:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            background: #56CCCC;
            width: 5px;
            height: 100%;
            opacity: 1;
            transition: opacity .5s linear .5; }

.main-content__section-header + .main-content__container {
  height: calc(100% - 90px) !important;
  min-height: auto !important; }

.main-content__section-header--with-tabs + .main-content__container {
  height: calc(100% - 110px) !important; }

.main-content__content .main-content {
  top: 0;
  height: calc(100%); }

.container--scroll.container--admin-select {
  height: calc(100vh - 60px - 80px - 50px - 211px);
  overflow-y: auto; }

@keyframes closeMenu {
  0% {
    width: 240px; }
  100% {
    width: 65px; } }
@keyframes removeLabels {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.dropdown-toggle--group {
  background-color: #fcfcfc;
  border-bottom: 1px solid #e6e6e6; }
  .dropdown-toggle--group .dropdown-menu {
    min-width: 250px; }

.group-dropdown {
  width: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-size: 16px;
  margin-top: 5px;
  text-indent: 5px; }

.container--filter {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6; }

/**
 * Integrations Manager Styles
 */
.standard-color {
  color: #F5A623;
  background-color: #fef5e6; }

.periodic-color {
  color: #21979F;
  background-color: #f5fcfd; }

.rolling-color {
  color: #B5394E;
  background-color: #efcbd1; }

.campaign-color {
  color: #6678D8;
  background-color: #f4f6fc; }

.snapshot-color {
  color: #225988;
  background-color: #f4f9fc; }

.alert-color {
  color: #F6505D;
  background-color: #fef5f6; }

.report-color {
  color: #4C4C4C;
  background-color: #efefef; }

.green {
  color: #48d2a0 !important; }

.green-bg {
  background-color: #cff3e6 !important; }
  .green-bg:hover {
    background-color: #c7f1e2 !important; }

.red {
  color: #F95355 !important; }

.red-bg {
  background-color: #fff6f6 !important; }
  .red-bg:hover {
    background-color: #feecec !important; }

.blue {
  color: #3A84C5 !important; }

.blue-bg {
  background-color: #bcd5eb !important; }
  .blue-bg:hover {
    background-color: #b4d0e9 !important; }

.gray {
  color: #37B3D3 !important; }

.gray-bg {
  background-color: #c1e7f1 !important; }
  .gray-bg:hover {
    background-color: #b9e4f0 !important; }

.integrations-manager {
  /* background: #F2F4FB; */
  background-size: cover;
  position: absolute;
  overflow-y: auto;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0px;
  overflow: visible; }
  .integrations-manager__heading {
    padding: 25px 20px;
    color: #114d72;
    font-size: 3em;
    font-family: "proxima-nova", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff; }
    .integrations-manager__heading h2 {
      text-transform: uppercase; }
    .integrations-manager__heading--available {
      border-bottom: 4px solid #e6e6e6; }
    .integrations-manager__heading--used {
      border-bottom: 4px solid #e6e6e6; }
  .integrations-manager__column {
    position: absolute;
    top: 0;
    padding-left: 0;
    padding-right: 0; }
    .integrations-manager__column--available {
      width: 50%;
      left: 0; }
    .integrations-manager__column--used {
      left: initial;
      right: 0;
      width: 50%; }

.integrations-manager .integrations-manager-panel {
  position: relative;
  top: 0px;
  right: 0px;
  margin-bottom: 20px;
  color: #fff; }

.integrations-manager .integrations-manager-panel h2 {
  margin-top: 0; }

.integrations-manager .dataset-item-list .table {
  margin-bottom: 0px; }

.integrations-manager .dataset-item-list .table > tbody > tr {
  background-color: rgba(255, 255, 255, 0.2); }

.integrations-manager .dataset-item-list .table .connection-heading {
  background-color: rgba(255, 255, 255, 0.5);
  color: #3c3c3c; }

.integrations-manager .dataset-item-list .dataset-item {
  /*border-bottom: 1px dotted #b3b3b3;*/ }

.integrations-manager .dataset-item-list .dataset-item.used {
  background-color: rgba(255, 255, 255, 0.1); }

.integrations-manager .dataset-item-list .dataset-item h3 {
  margin-top: 0px;
  margin-left: 15px; }

.integrations-manager .dataset-item-list .dataset-item h3 .button {
  margin-right: 10px; }

.dataset-item-list {
  padding-right: 15px;
  padding-left: 15px; }

.dataset-item {
  /*   &:hover{
      &:before{
        content: '';
        position: absolute;
        height: 4px;
        width: 100%;
        background: $new-color-2;
        bottom: 0;
        left: 0;
      }
    } */ }
  .dataset-item h3 {
    color: #3A84C5;
    font-size: 1em;
    text-transform: uppercase;
    font-family: "proxima-nova", sans-serif !important; }
  .dataset-item__source {
    padding-left: 32px !important; }
  .dataset-item__dataset-name {
    width: 100%;
    border-bottom: 2px solid #a4e4e4; }

.storyboard-creator-nav {
  border-top: 1px solid #ccc;
  background: #fff; }

/**
 * Storyboard Creator Styles
 */
.storyboard-creator {
  padding: 20px;
  overflow-y: auto;
  height: calc(100% - 50px - 117px); }

/*
.storyboard-creator .storyboard-layout-select {
  position: relative;
  padding: 0px;
  top: 0px;
  right: 0px;
  margin-bottom: 20px;
  background: rgba(123, 65, 85, 0.75);
  box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.59);
}
*/
.storyboard-layout-select {
  color: #747474; }
  .storyboard-layout-select h2 {
    color: #114d72 !important; }

/* .storyboard-editor, .storyboard-viewer {
  background: white !important; 
} */
.storyboard-creator .storyboard-creator-panel,
.dataset-configurer .dataset-configurer-panel {
  position: relative;
  padding: 15px;
  top: 0px;
  right: 0px;
  margin-bottom: 20px;
  color: #5e5e5e; }

.storyboard-creator .storyboard-creator-panel,
.storyboard-creator .dataset-configurer-panel {
  background: #fff; }

.storyboard-creator .storyboard-creator-panel h2 {
  margin-top: 0; }

.storyboard-creator .storyboard-creator-panel .form-label,
.dataset-configurer .dataset-configurer-panel .form-label {
  color: white;
  font-size: 1.5em;
  font-weight: normal; }

.storyboard-creator-heading.page-heading {
  background: #EFEFEF;
  color: #545454; }

.storyboard-creator-nav {
  background: #fff;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 20px;
  border-top: 1px solid #e6e6e6; }

.storyboard-creator .dataset-item-list .dataset-item,
.dataset-configurer .dataset-item-list .dataset-item {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 10px 0 0 0;
  margin-top: 15px;
  /*border-bottom: 1px dotted #b3b3b3;*/ }

.storyboard-creator .dataset-item-list .dataset-item.used,
.dataset-configurer .dataset-item-list .dataset-item.used {
  background-color: rgba(255, 255, 255, 0.1); }

.storyboard-creator .dataset-item-list .dataset-item h3,
.dataset-configurer .dataset-item-list .dataset-item h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 15px; }

.storyboard-creator .dataset-item-list .dataset-item h3 .button,
.dataset-configurer .dataset-item-list .dataset-item h3 .button {
  margin-right: 10px; }

.page-heading-backlink:hover {
  cursor: pointer; }

.storyboard-creator .dataset-item-list .table,
.dataset-configurer .dataset-item-list .table {
  margin-bottom: 0px; }

.storyboard-creator .dataset-item-list .table td,
.dataset-configurer .dataset-item-list .table td {
  padding-left: 15px; }

.storyboard-creator .dataset-item-list .table > tbody > tr,
.dataset-configurer .dataset-item-list .table > tbody > tr {
  background-color: rgba(255, 255, 255, 0.2); }

.storyboard-creator .dataset-item-list .table .connection-heading,
.dataset-configurer .dataset-item-list .table .connection-heading {
  background-color: rgba(255, 255, 255, 0.5);
  color: #3c3c3c; }

.dataset-configurer .row .breadcrumb {
  padding: 8px 0px;
  background-color: #fff;
  margin-bottom: 0px; }

.storyboard-box {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(240, 235, 235, 0.7);
  width: 50%;
  bottom: 20%;
  height: 45%;
  width: 70%;
  border-radius: 5px; }
  .storyboard-box.med {
    bottom: 12%;
    height: 45%;
    width: 65%; }
  .storyboard-box--standard {
    background: transparent url("../../../assets/images/image-illustration/standard-image.png") no-repeat center;
    background-size: contain; }
  .storyboard-box--periodic {
    background: transparent url("../../../assets/images/image-illustration/periodic-image.png") no-repeat center;
    background-size: contain; }
  .storyboard-box--rolling {
    background: transparent url("../../../assets/images/image-illustration/rolling-image.png") no-repeat center;
    background-size: contain; }
  .storyboard-box--campaign {
    background: transparent url("../../../assets/images/image-illustration/campaign-image.png") no-repeat center;
    background-size: contain; }
  .storyboard-box--empty-datasets {
    background: transparent url("../../../assets/images/image-illustration/emptydataset-image.png") no-repeat center;
    background-size: contain;
    height: 70%;
    top: 140px; }

.storyboard-creator-container {
  height: 100%;
  margin-left: 0px !important;
  margin-right: 0px !important; }

.storyboard-type-box {
  text-align: center;
  height: 100%;
  padding-left: 0px;
  padding-right: 0px;
  border-right: 1px solid #e6e6e6;
  /* .selectedTemplateInfo{
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    right: 17%;
    bottom: 7%;
    position: absolute;
  }  */ }
  .storyboard-type-box--standard {
    background: transparent url("../../../assets/images/gradientBackground/standard.png") no-repeat center bottom;
    background-size: 100% auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay; }
    .storyboard-type-box--standard.med {
      background: transparent url("../../../assets/images/gradientBackground/standard-med.png") no-repeat center bottom;
      background-color: rgba(255, 255, 255, 0.85);
      background-blend-mode: overlay;
      background-size: 101% auto; }
    .storyboard-type-box--standard:hover {
      box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.08);
      z-index: 1000; }
      .storyboard-type-box--standard:hover .button {
        display: inline-block; }
  .storyboard-type-box--periodic {
    background: transparent url("../../../assets/images/gradientBackground/periodic.png") no-repeat center bottom;
    background-size: 101% auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay; }
    .storyboard-type-box--periodic.med {
      background: transparent url("../../../assets/images/gradientBackground/periodic-med.png") no-repeat center bottom;
      background-color: rgba(255, 255, 255, 0.85);
      background-blend-mode: overlay;
      background-size: 101% auto; }
    .storyboard-type-box--periodic:hover {
      box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.08);
      z-index: 1000; }
  .storyboard-type-box--rolling {
    background: transparent url("../../../assets/images/gradientBackground/rolling.png") no-repeat center bottom;
    background-size: 101% auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay; }
    .storyboard-type-box--rolling.med {
      background: transparent url("../../../assets/images/gradientBackground/rolling-med.png") no-repeat center bottom;
      background-color: rgba(255, 255, 255, 0.85);
      background-blend-mode: overlay;
      background-size: 101% auto; }
    .storyboard-type-box--rolling:hover {
      box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.08);
      z-index: 1000; }
  .storyboard-type-box--campaign {
    background: transparent url("../../../assets/images/gradientBackground/campaign.png") no-repeat center bottom;
    background-size: 100% auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-blend-mode: overlay; }
    .storyboard-type-box--campaign.med {
      background: transparent url("../../../assets/images/gradientBackground/campaign-med.png") no-repeat center bottom;
      background-color: rgba(255, 255, 255, 0.85);
      background-blend-mode: overlay;
      background-size: 101% auto; }
    .storyboard-type-box--campaign:hover {
      box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.08);
      z-index: 1000; }
  .storyboard-type-box .layout-container {
    /* width: 65%; */
    left: 0px;
    right: 0px;
    margin: auto;
    /* margin-top: 5%; */ }
  .storyboard-type-box h2 {
    margin-top: 15%; }
    .storyboard-type-box h2.fixed-top {
      margin-top: 50px;
      color: #114d72; }
    .storyboard-type-box h2.med {
      font-size: 35px !important; }
    .storyboard-type-box h2.standard {
      color: #F5A623 !important;
      margin-top: 9% !important; }
    .storyboard-type-box h2.periodic {
      color: #21979F !important;
      margin-top: 9% !important; }
    .storyboard-type-box h2.rolling {
      color: #B5394E !important;
      margin-top: 9% !important; }
    .storyboard-type-box h2.campaign {
      color: #6678D8 !important;
      margin-top: 9% !important; }
  .storyboard-type-box button.button-bottom {
    position: absolute !important;
    bottom: 10% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important; }
  .storyboard-type-box .group-btn {
    margin-top: 5%; }
    .storyboard-type-box .group-btn button {
      width: 65%;
      margin: auto;
      padding: 0;
      border-collapse: separate;
      border-radius: 5px;
      display: block;
      /* background-color: white; */ }
    .storyboard-type-box .group-btn .button-giant {
      font-size: 22px !important;
      width: 100%; }
  .storyboard-type-box .form-group {
    text-align: left !important; }
    .storyboard-type-box .form-group .label-setting {
      font-weight: normal !important;
      color: #9B9B9B !important; }
  .storyboard-type-box .info {
    font-size: 12px;
    margin-top: 5%;
    margin-left: 18%;
    margin-right: 18%;
    color: #5e5e5e; }
    .storyboard-type-box .info.med {
      font-size: 14px !important;
      margin-top: 4% !important; }
      .storyboard-type-box .info.med.layout {
        margin-left: 3% !important;
        margin-right: 3% !important; }
  .storyboard-type-box .selectedTemplateInfo {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    right: 17%;
    bottom: 7%;
    position: absolute;
    /* The finishing CSS styles for the enter animation */ }
    .storyboard-type-box .selectedTemplateInfo.not-fade {
      transition: 0.5s linear all;
      opacity: 0; }
    .storyboard-type-box .selectedTemplateInfo.fade {
      opacity: 1; }
  .storyboard-type-box .dataset-avatar-container {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    transition: 0.5s ease-in-out all;
    opacity: 1;
    /* The finishing CSS styles for the enter animation */ }
    .storyboard-type-box .dataset-avatar-container.fade {
      left: 20% !important;
      bottom: 6% !important;
      transform: none !important; }
    .storyboard-type-box .dataset-avatar-container--template-selected {
      left: 20% !important;
      bottom: 6% !important;
      transform: none !important; }
  .storyboard-type-box .dataset-avatar.storyboard {
    box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.35);
    margin-right: 0px !important;
    height: 30px !important;
    width: 30px !important;
    margin-left: -9px !important; }
    .storyboard-type-box .dataset-avatar.storyboard::first-of-type {
      margin-left: 0; }

/****************************************
 * Intelligent Agent - Layout and styles
 ****************************************/
.agent-edit {
  position: absolute;
  top: 80px;
  height: calc(100vh - 80px - 60px); }
  .intelligent-agent-dialog .agent-edit {
    position: relative;
    top: 0; }
  .agent-edit--editing {
    border-right: 1px solid #e6e6e6;
    left: 0;
    overflow-y: auto;
    height: calc(100vh - 80px - 60px - 71px); }
    .agent-edit--editing .card-form.card-form--borderless {
      height: calc(100vh - 60px - 80px - 91px); }
  .agent-edit--preview {
    right: 0;
    overflow-y: auto;
    height: calc(100vh - 80px - 60px - 71px); }

.intelligent-agent-dialog .agent-message--navigation {
  position: fixed;
  bottom: initial;
  left: 2px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e6e6e6;
  background: #fff;
  right: calc(33.33333333% - 78px);
  border-right: 1px solid #e6e6e6;
  right: 1px; }

.agent-message--navigation {
  position: fixed;
  bottom: 0;
  left: 240px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e6e6e6;
  background: #fff;
  right: calc(33.33333333% - 78px);
  border-right: 1px solid #e6e6e6; }

.collapsed .agent-message--navigation {
  left: 65px;
  right: calc(33.33333333% - 21px); }

.card-body .message-body {
  min-height: 200px;
  padding: 20px 35px; }

.card-form--alert {
  background: url("../../assets/images/icons/icon.agent-alert.png") no-repeat right bottom;
  background-size: 160px auto; }

.card-form--report {
  background: url("../../assets/images/icons/icon.agent-report.png") no-repeat right bottom;
  background-size: 160px auto; }

.card-form--snapshot {
  background: url("../../assets/images/icons/icon.agent-snapshot.png") no-repeat right bottom;
  background-size: 160px auto; }

.agent-message .message-inline-storyboard-preview {
  background: transparent url("../../assets/images/layouts/layout-default-dark.svg") no-repeat center center;
  background-size: 65% auto;
  position: relative; }
  .agent-message .message-inline-storyboard-preview .storyboard-title {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: #868686; }

.agent-message .message-inline-visual-preview {
  background: transparent url("../../assets/images/layouts/layout-visual-dark.svg") no-repeat center center;
  background-size: 65% auto;
  position: relative; }
  .agent-message .message-inline-visual-preview .visual-title {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: #868686; }

.message-button {
  border-radius: 200px;
  background-color: transparent;
  border: 1px solid  #3a96e6;
  color: #2e6a9e;
  display: inline-block;
  max-width: 80%;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  padding: 0 30px; }
  .message-button:hover, .message-button:focus {
    background-color: #3a96e6;
    color: #fff; }

.message-inline-storyboard {
  width: 100%;
  min-width: 100%; }

/**
 * Storyboard Creator Thumbnails Styles
 */
.st0, .st1, .st2, .st3, .st4, .st5, .st6, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6 {
  fill: #101010 !important; }

.cls-1, .cls-2, .cls-3 {
  stroke: #5e5e5e !important; }

.cls-6 {
  fill: #5e5e5e !important; }

.ia-attachment {
  display: flex;
  align-items: center;
  border: 1px solid #3A84C5;
  color: #3A84C5;
  width: 100%;
  gap: 15px;
  font-size: 1.2em;
  border-radius: 8px;
  padding: 8px 16px; }

.insert-attribute-container--embed {
  border-radius: 5px;
  background: #F5F5F5;
  padding: .5em 1em !important; }
  .insert-attribute-container--embed .menu-container .nav {
    border-bottom: 1px solid #D9D9D9;
    margin-left: -1em;
    margin-right: -1em;
    padding-left: 1em;
    padding-right: 1em;
    margin-bottom: 1em; }
.insert-attribute-container .selectmeasureStyle__footer {
  margin-left: -1em;
  margin-right: -1em;
  padding-left: 1em;
  padding-right: 1em; }

/*****************************************************
*
* Wizard Layout Thumbnails
*
*****************************************************/
.agent-section > div > label {
  padding-top: 8px; }

/** Custom Widget Elements **/
.widget-element.badge {
  background-color: #C6ECF5 !important;
  color: #3A84C5;
  padding: 6px 6px;
  border-radius: 6px;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap; }

.cke_widget_wrapper:hover > .cke_widget_element, .cke_widget_wrapper:focus > .cke_widget_element {
  outline: 2px solid #3A84C5; }

.widget-element.badge #deleteWidget {
  background: transparent;
  color: inherit;
  font-weight: 700;
  margin-left: 8px;
  border: none;
  box-shadow: none;
  font-size: .6em;
  opacity: .8; }

.widget-element.badge #deleteWidget:hover, .widget-element.badge #deleteWidget:focus {
  opacity: 1; }

/*****************************************************
*
* Wizard Layout Thumbnails
*
*****************************************************/
.storyboard-type-box--none .button, .storyboard-type-box--periodic .button, .storyboard-type-box--rolling .button, .storyboard-type-box--campaign .button, .storyboard-type-box--standard .button {
  display: none; }
.storyboard-type-box--none:hover .button, .storyboard-type-box--periodic:hover .button, .storyboard-type-box--rolling:hover .button, .storyboard-type-box--campaign:hover .button, .storyboard-type-box--standard:hover .button {
  display: inline-block; }
.storyboard-type-box.none .layout-thumbnail--overlay {
  transition: all .6s ease-in-out;
  padding-top: 10px; }
  .storyboard-type-box.none .layout-thumbnail--overlay:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.35);
    z-index: 3; }
  .storyboard-type-box.none .layout-thumbnail--overlay.selected {
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 5px 0 rgba(245, 166, 35, 0.4);
    background: rgba(255, 255, 255, 0.5); }
    .storyboard-type-box.none .layout-thumbnail--overlay.selected::after {
      content: '';
      position: absolute;
      border-radius: 2px;
      border: 2px solid rgba(245, 166, 35, 0.5);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .storyboard-type-box.none .layout-thumbnail--overlay.selected .layout-thumbnail--title {
      color: #bc985d;
      font-weight: 600; }
.storyboard-type-box.none .layout-thumbnail--title {
  text-transform: uppercase; }
.storyboard-type-box.none .group-btn {
  margin-top: 5%; }
  .storyboard-type-box.none .group-btn button.button-template {
    color: #F5A623;
    background-color: #f7f7f7; }
    .storyboard-type-box.none .group-btn button.button-template:hover {
      background-color: #fff; }
.storyboard-type-box.periodic .layout-thumbnail--overlay {
  transition: all .6s ease-in-out;
  padding-top: 10px; }
  .storyboard-type-box.periodic .layout-thumbnail--overlay:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.35);
    z-index: 3; }
  .storyboard-type-box.periodic .layout-thumbnail--overlay.selected {
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 5px 0 rgba(33, 151, 159, 0.4);
    background: rgba(255, 255, 255, 0.5); }
    .storyboard-type-box.periodic .layout-thumbnail--overlay.selected::after {
      content: '';
      position: absolute;
      border-radius: 2px;
      border: 2px solid rgba(33, 151, 159, 0.5);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .storyboard-type-box.periodic .layout-thumbnail--overlay.selected .layout-thumbnail--title {
      color: #516d6f;
      font-weight: 600; }
.storyboard-type-box.periodic .layout-thumbnail--title {
  text-transform: uppercase; }
.storyboard-type-box.periodic .group-btn {
  margin-top: 5%; }
  .storyboard-type-box.periodic .group-btn button.button-template {
    color: #21979F;
    background-color: #f7f7f7; }
    .storyboard-type-box.periodic .group-btn button.button-template:hover {
      background-color: #fff; }
.storyboard-type-box.rolling .layout-thumbnail--overlay {
  transition: all .6s ease-in-out;
  padding-top: 10px; }
  .storyboard-type-box.rolling .layout-thumbnail--overlay:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.35);
    z-index: 3; }
  .storyboard-type-box.rolling .layout-thumbnail--overlay.selected {
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 5px 0 rgba(181, 57, 78, 0.4);
    background: rgba(255, 255, 255, 0.5); }
    .storyboard-type-box.rolling .layout-thumbnail--overlay.selected::after {
      content: '';
      position: absolute;
      border-radius: 2px;
      border: 2px solid rgba(181, 57, 78, 0.5);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .storyboard-type-box.rolling .layout-thumbnail--overlay.selected .layout-thumbnail--title {
      color: #7a7575;
      font-weight: 600; }
.storyboard-type-box.rolling .layout-thumbnail--title {
  text-transform: uppercase; }
.storyboard-type-box.rolling .group-btn {
  margin-top: 5%; }
  .storyboard-type-box.rolling .group-btn button.button-template {
    color: #B5394E;
    background-color: #f7f7f7; }
    .storyboard-type-box.rolling .group-btn button.button-template:hover {
      background-color: #fff; }
.storyboard-type-box.campaign .layout-thumbnail--overlay {
  transition: all .6s ease-in-out;
  padding-top: 10px; }
  .storyboard-type-box.campaign .layout-thumbnail--overlay:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.35);
    z-index: 3; }
  .storyboard-type-box.campaign .layout-thumbnail--overlay.selected {
    border-radius: 2px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 0px 5px 0 rgba(102, 120, 216, 0.4);
    background: rgba(255, 255, 255, 0.5); }
    .storyboard-type-box.campaign .layout-thumbnail--overlay.selected::after {
      content: '';
      position: absolute;
      border-radius: 2px;
      border: 2px solid rgba(102, 120, 216, 0.5);
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .storyboard-type-box.campaign .layout-thumbnail--overlay.selected .layout-thumbnail--title {
      color: #9699a8;
      font-weight: 600; }
.storyboard-type-box.campaign .layout-thumbnail--title {
  text-transform: uppercase; }
.storyboard-type-box.campaign .group-btn {
  margin-top: 5%; }
  .storyboard-type-box.campaign .group-btn button.button-template {
    color: #6678D8;
    background-color: #f7f7f7; }
    .storyboard-type-box.campaign .group-btn button.button-template:hover {
      background-color: #fff; }

.toast-top-right {
  top: 75px; }
.toast-top-left {
  top: 75px; }
.toast-success {
  background-color: #67539B; }
.toast-error {
  background-color: #FF4351; }
.toast-info {
  background-color: #3A84C5; }
.toast-warning {
  background-color: #FEAE1B; }

.sweet-alert p {
  word-break: break-word; }

.nucleus-checkbox-sm {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.nucleus-checkbox-sm label {
  margin-bottom: 0;
  vertical-align: middle; }

/* Hide the browser's default checkbox */
.nucleus-checkbox-sm input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0; }

/* Create a custom checkbox */
.nucleus-checkbox-sm .checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  cursor: pointer;
  border: 1px solid #aaa;
  background: #fff;
  border-radius: 4px; }

/* On mouse-over, add a grey background color */
.nucleus-checkbox-sm:hover input ~ .checkmark {
  background-color: #aaa;
  border: none; }

/* When the checkbox is checked, add a blue background */
.nucleus-checkbox-sm input:checked ~ .checkmark {
  background-color: #2196F3;
  border: none; }

/* Create the checkmark/indicator (hidden when not checked) */
.nucleus-checkbox-sm .checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.nucleus-checkbox-sm input:checked ~ .checkmark:after,
.nucleus-checkbox-sm:hover .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.nucleus-checkbox-sm .checkmark:after {
  left: 7px;
  top: 3px;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

/************************************************************
*
* Visual slideshow style
*
*************************************************************/
.slick-list {
  width: 100%;
  height: 100%; }

.slick-track {
  height: 100%;
  position: relative; }

.slick-prev {
  left: 15px !important;
  z-index: 1; }

.slick-next {
  right: 15px !important; }

.grid-stack-item .slick-next, .grid-stack-item .slick-prev {
  display: none;
  opacity: 0;
  transition: opacity .2s ease-in;
  transition-delay: .2s; }
.grid-stack-item:hover .slick-next, .grid-stack-item:hover .slick-prev {
  opacity: 1;
  display: inline-block; }

.editable .slick-slider,
.editable .slick-next,
.editable .slick-prev {
  pointer-events: none; }

.slick-prev:before,
.slick-next:before {
  color: #666; }

.dataset-icon {
  padding-top: 0px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #fff;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat; }

.dataset-icon--small {
  padding-top: 0px;
  height: 30px !important;
  width: 30px !important;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #fff;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat; }

.dataset-icon--menu {
  padding-top: 0px;
  height: 30px !important;
  width: 30px !important;
  border-radius: 50%;
  background: #d6d6d6;
  border: 0px solid #fff;
  margin-right: 6px;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto; }

.dataset-icon--active, .dataset-avatar {
  padding-top: 0px;
  height: 30px !important;
  width: 30px !important;
  border-radius: 50%;
  background: #fff;
  border: 0px solid #fff;
  margin-right: 6px;
  display: inline-block;
  background-size: contain;
  background-color: transparent;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat; }

.chart-type-jumpin .chart-icon-timeseries {
  background-image: url("../../assets/images/chart_icon_large/timeseries.png"); }

.viz-inner-container .timeseries-container, .viz-inner-container .xyplot-container {
  margin: 10px;
  bottom: 0px;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px; }

.viz-container .rawTable .table-title,
.viz-container .groupedTable .table-title {
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-family: Verdana, sans;
  font-size: 22px; }

.viz-container .rawTable .table-container,
.viz-container .groupedTable .table-container {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px; }

.viz-container .rawTable .table-container.with-title,
.viz-container .groupedTable .table-container.with-title {
  top: 35px; }

.format-example-box {
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #E7E7E7;
  font-size: 24px; }
  .format-example-box i.fa {
    color: #C7C7C7; }

jh-alert {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  width: 50%; }

jh-alert .alert {
  box-shadow: 0px 0px 3px #888;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 600;
  text-align: center; }

jh-alert .alert .close {
  right: 0px; }

.animate-repeat.ng-move,
.animate-repeat.ng-enter,
.animate-repeat.ng-leave {
  transition: all .5s ease-in-out;
  position: relative;
  bottom: 0; }

.animate-repeat.ng-leave.ng-leave-active,
.animate-repeat.ng-move,
.animate-repeat.ng-enter {
  opacity: 0;
  bottom: -15px; }

.animate-repeat.ng-leave,
.animate-repeat.ng-move.ng-move-active,
.animate-repeat.ng-enter.ng-enter-active {
  opacity: 1;
  bottom: 0px; }

.div-outer-div {
  display: inline-block;
  height: 100%;
  width: 100%; }

.div-percent-bar {
  display: inline-block;
  height: 100%;
  position: absolute; }

.div-percent-value {
  position: absolute;
  padding-left: 4px;
  font-weight: bold;
  font-size: 13px;
  color: #000000;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.91);
  margin-top: 4px;
  border-radius: 50px;
  padding: 0px 4px;
  margin-left: 6px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.08) inset;
  font-style: normal;
  line-height: 18px; }

.groupedTable .ag-theme-fresh .ag-cell {
  padding-left: 0px;
  padding-right: 0px; }

.bar-graph-type,
.bar-graph-num {
  margin-bottom: 8px; }

.bar-graph-field {
  margin: 15px 0px; }

.bar-range label {
  font-weight: normal;
  font-size: 12px; }

.bar-graph-field select,
.bar-graph-type select,
.bar-graph-num select {
  height: 32px;
  padding: 4px 12px; }

.bar-range input {
  height: 28px; }

.bar-graph-ranges .minicolors {
  display: inline;
  height: 29px;
  width: 29px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 3px;
  margin-left: 3px; }

.bar-graph-ranges .minicolors-panel {
  position: absolute;
  left: 0px;
  top: 30px; }

.bar-range {
  margin-bottom: 5px; }

.bar-graph-ranges .ng-invalid-pattern,
.bar-graph-ranges .ng-invalid-number {
  background: #ffdddd;
  border: 2px solid #C00000; }

.non-numeric .measure-label {
  pointer-events: none; }

.grouped-table-config .btn-config, .non-numeric .btn-config {
  display: none; }

.aspect .btn-filter {
  background: url("../../assets/images/icons/icon.filter.svg") no-repeat top center;
  background-size: 16px 16px;
  display: inline-block;
  height: 16px;
  width: 16px;
  vertical-align: middle; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

filter > .viz-container > [id^=filterEditor], [id^=filterEditor] {
  width: 225px !important;
  height: auto !important;
  top: -50px !important;
  right: -10px;
  background: #fff;
  border-radius: 5px;
  padding: 5px 20px 5px 5px;
  position: absolute !important; }
  filter > .viz-container > [id^=filterEditor]:before, [id^=filterEditor]:before {
    content: '';
    bottom: -30px;
    right: 15px;
    position: absolute;
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 15px;
    border-top-color: #fff;
    pointer-events: none; }

.filter-exclude-label {
  position: absolute !important;
  width: auto !important;
  left: 0px;
  top: -10px;
  color: #c21f1f;
  pointer-events: none; }

.grid-stack > .grid-stack-item {
  padding: 0px   10px;
  /**&:focus, &:focus-within,&:hover, &:active{
    z-index: 100000; 
  }  **/ }
  .grid-stack > .grid-stack-item:focus-within, .grid-stack > .grid-stack-item:focus {
    z-index: 1000000; }

/* .grid-stack-item.header {
  background: url("../images/icons/icon.section-heading.svg") no-repeat center;
  background-size: 80% 80% !important;
} */
/**.grid-stack .grid-stack-placeholder > .placeholder-content {
  border: 1px dashed #fff;
  margin: 0;
  position: absolute;
  top: 0;
  left: 20px !important;
  right: 10px !important;
  bottom: 0;
  width: auto;
  z-index: 0 !important;
  text-align: center;
}**/
.grid-stack > .grid-stack-item > .grid-stack-item-content {
  border-radius: 0px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.46);
  position: relative;
  box-shadow: none;
  left: 0;
  z-index: inherit !important;
  color: #333; }

.grid-stack > .grid-stack-item > .grid-stack-item-content .chart-panel {
  height: 100% !important;
  width: 100% !important;
  display: block !important;
  margin: 0px; }

.content-type-selector {
  /*background: rgba(0, 255, 0, 0.1);*/
  /*height: 150px;*/
  /*padding: 25px 0;*/
  text-align: center; }

.storyboard .popover {
  z-index: 100001; }

.open .popover {
  display: none !important; }

.storyboard-bottom-edge {
  display: none;
  background-color: rgba(76, 76, 76, 0.5);
  color: white;
  text-align: center; }

.cke_reset_all, .cke_dialog {
  z-index: 100005 !important; }

div[class^="cke_editor_editor"] {
  z-index: 100005 !important;
  position: relative !important; }

.filter-by-type .filter-loading {
  display: none; }

.ui-draggable .webcontent-inner {
  pointer-events: none; }

.editor__description:focus,
.viewer__description:focus,
.preview__description:focus {
  border: none;
  box-shadow: none; }

.editor__tags,
.viewer__tags,
.preview__tags {
  border-bottom: dotted 1px #ccc;
  display: inline-block;
  border-top: 20px;
  border-left: none;
  border-right: none;
  border-bottom: 20px;
  font-family: "Lato", sans-serif;
  font-weight: 200;
  font-size: 18px;
  width: 100%;
  background: transparent;
  margin-bottom: 10px;
  color: #484848; }

.editor__tags:focus,
.viewer__tags:focus,
.preview__tags:focus {
  border: none;
  box-shadow: none; }

.two-column .content-type-selector {
  display: inline-block;
  width: 44%;
  position: relative;
  margin: 2%; }

.two-column .content-type-selector .grid-stack-item {
  width: 100% !important;
  padding-top: 17%; }

.two-column .grid-stack-item {
  min-width: 0px; }

.sb-search {
  position: relative;
  width: 0%;
  min-width: 40px;
  height: 40px;
  float: right;
  overflow: hidden;
  border: 1px solid #416a7b;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden; }

.sb-search-input {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background: #fff;
  width: 300px;
  height: 40px;
  margin: 0;
  z-index: 10;
  padding: 10px 40px 10px 10px;
  font-family: inherit;
  font-size: 20px;
  color: #2c3e50; }

input[type="search"].sb-search-input {
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

.sb-search .search-delete {
  position: absolute;
  right: 40px;
  z-index: 0;
  font-size: 20px;
  padding: 10px; }

.sb-search-open .search-delete {
  z-index: 90; }

.sb-icon-search,
.sb-search-submit {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  margin: 0;
  text-align: center;
  cursor: pointer; }

.sb-search-submit {
  background: #fff;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1; }

.sb-icon-search {
  color: #fff;
  background: #416A7B;
  z-index: 90;
  outline: none;
  font-size: 24px !important; }

.sb-search.sb-search-open,
.no-js .sb-search {
  width: 300px; }

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  z-index: 11; }

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  z-index: 90; }

.button-measure.button-disabled,
.button-grouping.button-disabled {
  pointer-events: none;
  background-color: #ccc;
  color: #999; }

.viz-inner-container .timeseries-container {
  top: 25px; }

.timeseries-title {
  text-align: center;
  color: #555555;
  font-family: Lato, sans-serif;
  font-size: 22px;
  font-weight: bold; }

.date-rangefilter .visual-axislimit-input {
  display: none; }

.no-animate {
  -webkit-transition: none !important;
  transition: none !important; }

/* Tooltips should always be on top. */
.tooltip {
  z-index: 99999999; }

.measure-label .fa-info-circle {
  color: #8197a0; }

.combo-renderas {
  display: none; }

.single-series-combo .combo-renderas {
  display: inline-block; }

.bootstrap-datetimepicker-widget.dropdown-menu {
  width: auto; }

.as-sortable-dragging {
  z-index: 1000000;
  border-radius: 0px;
  margin: 0px;
  padding: 0px;
  box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.51); }

.as-sortable-dragging .aspect {
  margin: 0px;
  border-radius: 0px; }

.as-sortable-dragging .aspect__selected {
  background-color: rgba(60, 76, 84, 0.48) !important;
  color: #fff;
  margin-bottom: 2px;
  padding-left: 20px;
  padding: 7px 10px 0px; }

.as-sortable-dragging .btn-container--right {
  display: none; }

.chart-effect-menu, .option-menu, .field-config-container {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: auto;
  left: 0px;
  padding: 10px;
  z-index: 1000;
  padding-left: 20px;
  padding-right: 25px;
  background-color: #fafafa;
  /* @extend %sidebar-gradient; */ }

.chart-effect-item {
  width: 100%;
  height: 150px;
  background: #8badbe;
  padding: 10px;
  margin-bottom: 20px;
  cursor: pointer; }

.chart-effect-item .item-innter {
  height: 100%;
  width: 100%; }

.trendline-item {
  background: #80a7c4;
  margin: 5px;
  padding: 10px; }

.trendline-label,
.trendline-value {
  color: #000;
  display: inline-block;
  width: 85%; }

.trendline-color {
  display: inline-block;
  width: 100%;
  border: 0px solid #fff;
  border-radius: 2px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); }

.trendline-value.ng-invalid {
  background: #ff0000; }

.none-chart-effect {
  text-align: center;
  font-size: 16px;
  padding: 20px; }

.counts-effects {
  color: #67539B;
  position: absolute;
  font-size: 11px;
  top: 12px;
  left: 40px; }

.field-config-container {
  position: absolute;
  left: 0px;
  width: 100%;
  top: 10px;
  bottom: 0px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 25px; }

/*
 * Make sure sweet alerts always appear on top.
 */
.sweet-overlay {
  z-index: 10000998; }

.sweet-alert {
  z-index: 10000999; }

.visual-conversation-follow.mobile-follow {
  height: 100%;
  padding: 5px;
  vertical-align: middle;
  color: #39757d;
  border-radius: 0px;
  width: 100% !important;
  display: inline-block; }
  .visual-conversation-follow.mobile-follow--followed {
    background: #16a1af;
    color: #fff;
    height: 100%;
    padding: 5px;
    vertical-align: middle;
    border-radius: 0px;
    width: 100% !important;
    display: inline-block; }

.sb-headline span.units-text {
  text-align: right !important;
  opacity: 0.8;
  position: relative !important;
  font-size: 0.5em;
  padding: 0 5px !important;
  margin: 0 !important;
  font-weight: 500;
  height: 100%;
  vertical-align: top;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2); }

.div-cell-value.text-match {
  position: absolute;
  margin: 3px -3px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700; }

.sb-static-header {
  padding: 0px !important; }

.sb-static-header .sb-sh-title {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  text-align: left;
  padding-left: 10px;
  padding-top: 20px; }

.sb-static-header .sb-sh-headings {
  display: inline-block;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  padding: 0px !important; }

.sb-static-header .sb-sh-headings .sb-sh-heading {
  text-align: center;
  font-size: 20px;
  display: inline-block;
  width: 33%;
  height: 100%;
  position: absolute;
  padding: 20px 0 0 0 !important;
  border-left: 1px dashed rgba(255, 255, 255, 0.4); }

.sb-static-header .sb-sh-headings .sb-sh-heading:nth-child(1) {
  left: 0;
  width: 34%; }

.sb-static-header .sb-sh-headings .sb-sh-heading:nth-child(2) {
  left: 34%; }

.sb-static-header .sb-sh-headings .sb-sh-heading:nth-child(3) {
  left: 67%; }

.viz-rolling-headline {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.viz-rolling-headline .viz-rh-title {
  display: inline-block;
  width: 25%;
  color: white;
  height: 100%;
  position: absolute;
  left: 0;
  text-align: left;
  padding-left: 10px;
  padding-top: 20px;
  font-size: 20px;
  background: #C0C0C0; }

.viz-rolling-headline .viz-rh-trend {
  display: inline-block;
  width: 25%;
  color: black;
  height: 100%;
  position: absolute;
  top: 0px;
  bottom: 10px;
  left: 25%;
  background: #C0C0C0; }

.viz-rolling-headline .viz-rh-values {
  display: inline-block;
  width: 50%;
  color: black;
  height: 100%;
  position: absolute;
  left: 50%; }

.viz-rolling-headline .viz-rh-values .viz-rh-value {
  text-align: center;
  font-size: 20px;
  padding-top: 20px;
  display: inline-block;
  width: 33%;
  color: black;
  height: 100%;
  position: absolute; }

.viz-rolling-headline .viz-rh-values .viz-rh-value:nth-child(1) {
  left: 0;
  width: 34%;
  background-color: rgba(255, 255, 255, 0.6); }

.viz-rolling-headline .viz-rh-values .viz-rh-value:nth-child(2) {
  left: 34%;
  background-color: rgba(255, 255, 255, 0.5); }

.viz-rolling-headline .viz-rh-values .viz-rh-value:nth-child(3) {
  left: 67%;
  background-color: rgba(255, 255, 255, 0.4); }

/* .grid-stack-item.rollingHeadline {
  background: url("../images/icons/icon.rollingHeadline.svg") no-repeat center;
  background-size: 80% 80% !important;
} */
.insufficient .viz-inner-container.rollingHeadline .chart-adviser, .chart-panel.rollingHeadline .viz-container.insufficient, .chart-panel.filter-rollingHeadline .viz-container.insufficient {
  background: url("../../assets/images/icons/icon.rollingHeadline.neutral.svg") no-repeat center;
  background-size: 80% 80% !important;
  background-color: rgba(255, 255, 255, 0.9) !important; }

.storyboard-period-filter .filter-period-range {
  font-size: 13px; }

.period-range {
  display: block;
  position: relative;
  padding: 0px 0; }
  .period-range, .period-range label {
    color: #545454;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500; }
  .period-range--campaign {
    font-weight: 700; }
    .period-range--campaign:after {
      content: '';
      top: 0;
      right: -10px;
      height: 75%;
      width: 2px;
      background: #dcdcdc;
      position: absolute;
      display: inline-block; }

.viz-container.editableTitle .viz-inner-container.rollingHeadline {
  top: 0px; }

.viz-rolling-headline .viz-rh-values .viz-rh-value .percentage-change {
  position: absolute;
  font-size: 10px;
  right: 0px;
  top: 10px;
  position: absolute; }

.viz-rolling-headline .viz-rh-values .viz-rh-value .percentage-change .positive {
  color: lightgreen; }

.viz-rolling-headline .viz-rh-values .viz-rh-value .percentage-change .negative {
  color: red; }

.storyboard .sb-headline .headline .headline-value span .percentage-change {
  position: absolute;
  font-size: 0.5em;
  text-align: right;
  right: 1em;
  top: 1em; }

.storyboard .sb-headline .headline .headline-value span .percentage-change .positive {
  color: lightgreen;
  text-align: right; }

.storyboard .sb-headline .headline .headline-value span .percentage-change .negative {
  color: #fb5858;
  /* light red */
  text-align: right; }

.inner-sidemenu {
  padding-top: 0px !important; }

.inner-sidemenu__menu ul li a {
  height: 60px !important; }

.page-navigator-query.collapsed, [class*='page-agents'].collapsed, .page-subscription.collapsed, .page-dataExport.collapsed, .page-dataverse-explore.collapsed, .page-dataverse-visualize.collapsed, .page-dataverse-customDataset-measures.collapsed, .page-dataverse-explore.collapsed, .page-dataverse-dataset-settings.collapsed, .page-dataverse-customDataset-measures.collapsed, .page-dataverse-dataset-fields.collapsed, .page-dataverse-dataset-measures.collapsed, .page-dataverse-dataset-preview.collapsed, .page-dataverse-dataset-publish.collapsed, .page-dataverse-dataset-datasource.collapsed, .page-storyboards.collapsed, .page-navigator.collapsed, .page-login.collapsed, [class*='page-manage'].collapsed, .page-organization-settings.collapsed {
  left: 65px; }

.page-storyboards, .page-navigator, [class*='page-agents'], .page-subscription .page-dataExport, .page-dataverse-explore, .page-dataverse-visualize, .page-dataverse-customDataset-measures, .page-dataExport, .page-dataverse-explore, .page-dataverse, .page-dataverse-visualize, .page-dataverse-dataset-settings, .page-dataverse-customDataset-measures, .page-dataverse-dataset-fields, .page-dataverse-dataset-measures, .page-dataverse-dataset-datasource, .page-dataverse-dataset-preview, .page-dataverse-dataset-publish, .page-navigator-query, [class*='page-manage'], .page-organization-settings {
  left: 240px;
  right: 0;
  position: absolute; }

.nucleus-modal .group-container {
  max-height: 300px;
  overflow-x: hidden; }
.nucleus-modal .modal-body {
  position: relative;
  background-color: #F9F9FB;
  min-height: 520px;
  border-top: 1px solid #e6e6e6; }
.nucleus-modal .email-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 0px 0px; }
.nucleus-modal .group-container {
  max-height: 300px;
  overflow-x: hidden; }
.nucleus-modal .email-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 0px 0px; }
.nucleus-modal .input-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 5px 10px;
  color: #747474;
  margin-bottom: 10px; }
.nucleus-modal .group-tab, .nucleus-modal .link-tab, .nucleus-modal .email-tab {
  padding: 20px 20px;
  min-height: 500px; }
.nucleus-modal .email-edit-tab {
  padding: 20px 20px;
  height: 630px; }
.nucleus-modal .group-container .group-item,
.nucleus-modal .email-container .email-item {
  padding: 5px;
  display: inline-block;
  /*CNG*/ }
.nucleus-modal .group-container .group-item-avatar {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-size: cover;
  vertical-align: bottom;
  margin-right: 5px; }
.nucleus-modal .group-container .group-item-name {
  font-size: 14px;
  color: #2b698e; }
.nucleus-modal .email-container .email-item-name {
  font-size: 14px;
  color: #2b698e;
  margin: 5px;
  /* cursor: pointer; */
  /* margin: 0 3px 3px 0; */
  padding: 5px 10px;
  background: #e9ecef;
  /* color: #495057; */
  border: 0 solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
  font-weight: 400; }
.nucleus-modal .group-container .group-item-delete, .nucleus-modal .group-container .group-item-delete {
  float: right; }
.nucleus-modal .group-tab-label {
  color: #666;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  height: 50px;
  /*margin-bottom: 10px;*/ }
.nucleus-modal .dialog-title, .nucleus-modal .dialog-label {
  color: #0d3f69;
  text-align: center; }
.nucleus-modal .group-list-container {
  position: relative; }

.modal.in + .modal.in {
  z-index: 100003 !important; }

/****************************
*
* Permissions
*
****************************/
.permission-table__column {
  padding: 0 15px; }
.permission-table__item {
  position: relative;
  display: block; }
  .permission-table__item.expanded:after {
    content: '';
    position: absolute;
    left: 33px;
    background: #dcdbdb;
    top: 40px;
    bottom: 59px;
    width: 2px; }
  .permission-table__item.expanded .permission-table__item.expanded:after {
    left: 43px; }
  .list-group:last-of-type .permission-table__item:last-of-type:before {
    content: "";
    top: 32px;
    bottom: 0;
    left: 17px;
    width: 3px;
    background: #fff;
    position: absolute;
    z-index: 2; }
.permission-table__row {
  position: relative;
  padding-right: 0 !important;
  flex-wrap: nowrap !important; }
  .permission-table__row:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 21px;
    width: 8px;
    height: 2px;
    background: #dcdbdb; }
  .permission-table__row {
    padding-left: 15px !important; }
  .permission-table__item .permission-table__item .permission-table__item .permission-table__row:before {
    content: '';
    left: 30px; }
.permission-table__title, .permission-table__badge {
  margin-top: 5px;
  margin-bottom: 5px; }
.permission-table__list-group-item {
  padding-right: 0; }

/****************************
*
* IA Measure Select Modal
*
****************************/
.selectmeasureStyle__container {
  display: flex;
  flex-direction: column;
  width: 100%; }
.selectmeasureStyle__header {
  display: flex;
  padding: 1em;
  gap: 1em;
  justify-content: space-around;
  align-items: center; }
  .selectmeasureStyle__header > div {
    flex-grow: 1; }
.selectmeasureStyle__body {
  display: flex;
  background: #EBEBEB;
  flex-grow: 1;
  max-height: 400px;
  overflow: auto; }
  .selectmeasureStyle__body > div {
    flex-grow: 1;
    flex-shrink: 0; }
.selectmeasureStyle__search-container {
  border: none; }
  .selectmeasureStyle__search-container td {
    border-bottom: 1px solid #CCCCCC;
    padding: .8em 1em; }
.selectmeasureStyle__footer {
  display: flex;
  padding: 1em;
  border-top: 1px solid #CCCCCC; }
  .selectmeasureStyle__footer > div {
    flex-grow: 1; }

/****************************
*
* IA Element Add Edit Modal
*
****************************/
.addElementIA__container {
  padding: 0; }
  .addElementIA__container .menu-tabs {
    border-bottom: 1px solid #D8D8D8 !important; }
.addElementIA__header {
  padding: 0; }
  .addElementIA__header h2 {
    color: #2e6a9e;
    font-weight: 700;
    font-size: 1.5em; }
  .addElementIA__header small {
    font-size: .6em;
    color: #4B4B4B;
    font-weight: 500; }
.addElementIA__footer {
  padding: 1em;
  border-top: 1px solid #D8D8D8; }
.addElementIA__body {
  padding: 1em; }

/****************************
*
* Intelligent Agent Answers
*
****************************/
.group-tab__content {
  overflow: initial; }

.intelligent-feeback {
  overflow: auto;
  flex-grow: initial;
  /**&--expand{
    max-height: 450px;   
  }**/ }
  .intelligent-feeback * {
    font-family: "proxima-nova", sans-serif;
    color: #656565; }
  .intelligent-feeback h1, .intelligent-feeback h2, .intelligent-feeback h3, .intelligent-feeback h4, .intelligent-feeback h5, .intelligent-feeback h6 {
    font-weight: 700; }
  .intelligent-feeback p {
    font-size: 1.5rem; }
  .intelligent-feeback .feedback-content {
    font-size: 1.5rem;
    font-weight: 500;
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
    width: 100%;
    padding: 0;
    resize: none; }
    .intelligent-feeback .feedback-content h1 {
      font-size: 20px; }
    .intelligent-feeback .feedback-content h2 {
      font-size: 16px; }
    .intelligent-feeback .feedback-content h3 {
      font-size: 15px; }
    .intelligent-feeback .feedback-content h5 {
      font-size: 14px;
      font-weight: 500; }
    .intelligent-feeback .feedback-content--loader {
      background: url("../../assets/images/loader/simple-skeleton-loader.svg") no-repeat top center;
      background-size: contain;
      margin-top: .5rem;
      min-height: 275px; }

#slideout-intelligent .group-tab__content {
  min-width: 0;
  overflow: initial; }
#slideout-intelligent .sticky-footer {
  position: sticky;
  bottom: 0;
  background: #F9F9FB; }

.group-tab__footer .button-borderless {
  font-size: 16px; }
.group-tab__footer .fal.active, .group-tab__footer .fas.active, .group-tab__footer .far.active {
  color: #56CCCC; }

.faux-input {
  padding: 1rem 1rem .5rem 1rem;
  background: #fff;
  border: 1px solid #CBCBCB;
  border-radius: 16px;
  margin-top: .5rem; }
  .faux-input--expanded {
    min-height: 300px; }
  .faux-input input {
    border: 0;
    background: transparent;
    font-weight: 1rem;
    box-shadow: none;
    padding: 6px 110px 6px 12px; }
  .faux-input textarea {
    border: 0;
    background: transparent;
    font-weight: 1rem;
    box-shadow: none;
    padding: 6px 110px 6px 12px;
    height: 100%;
    resize: none; }
    .faux-input textarea:focus {
      outline: none;
      box-shadow: none; }
  .faux-input input:focus {
    outline: none;
    box-shadow: none; }
  .faux-input .input-overlay {
    position: relative; }
    .faux-input .input-overlay .overlay-button {
      position: absolute;
      top: 4px !important;
      right: -16px; }
  .faux-input .button-row {
    margin-top: .5rem; }

/** Regular Modal Dialog **/
.modal-dialog .menu-tabs {
  border-bottom: 1px solid #D8D8D8 !important; }
.modal-dialog .modal-title--color {
  color: #2e6a9e;
  font-weight: 700;
  font-size: 2.5rem; }

/**
* Styles for sharing modal.
*/
/**.storyboard-share-dialog .group-container,
.Dataset-share-dialog .group-container,
.visual-share-dialog .group-container {
    max-height:300px;
    overflow-x:hidden;
}**/
.slideout--intelligent-agent-answers {
  background: #fff;
  position: absolute;
  top: 51px;
  right: -500px;
  bottom: -20px;
  width: 500px;
  opacity: 0;
  border-left: 1px solid #e6e6e6;
  background: #F9F9FB; }
  .slideout--intelligent-agent-answers.active {
    overflow-y: auto;
    overflow-x: initial;
    right: -300px;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: ai-slidein;
    animation-timing-function: ease-in-out; }

.storyboard-share-dialog .group-container, .visual-share-dialog .group-container, .Dataset-share-dialog .group-container, .slideout--intelligent-agent-answers .group-container {
  max-height: 300px;
  overflow-x: hidden; }
.storyboard-share-dialog .email-container, .visual-share-dialog .email-container, .Dataset-share-dialog .email-container, .slideout--intelligent-agent-answers .email-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  padding: 0px 0px; }
.storyboard-share-dialog .input-container, .visual-share-dialog .input-container, .Dataset-share-dialog .input-container, .slideout--intelligent-agent-answers .input-container {
  max-height: 125px;
  min-height: 35px;
  overflow-x: hidden;
  border-radius: 3px;
  border: 1px solid rgba(0, 40, 100, 0.12);
  /* CNG*/
  padding: 5px 10px;
  color: #747474;
  margin-bottom: 10px; }
.storyboard-share-dialog .input-container input, .visual-share-dialog .input-container input, .Dataset-share-dialog .input-container input, .slideout--intelligent-agent-answers .input-container input {
  width: 100%; }
.storyboard-share-dialog .group-tab, .storyboard-share-dialog .link-tab, .storyboard-share-dialog .email-tab, .visual-share-dialog .group-tab, .visual-share-dialog .link-tab, .visual-share-dialog .email-tab, .Dataset-share-dialog .group-tab, .Dataset-share-dialog .link-tab, .Dataset-share-dialog .email-tab, .slideout--intelligent-agent-answers .group-tab, .slideout--intelligent-agent-answers .link-tab, .slideout--intelligent-agent-answers .email-tab {
  padding: 20px 20px;
  min-height: 500px; }
.storyboard-share-dialog .email-edit-tab, .visual-share-dialog .email-edit-tab, .Dataset-share-dialog .email-edit-tab, .slideout--intelligent-agent-answers .email-edit-tab {
  padding: 20px 20px;
  height: 630px; }
.storyboard-share-dialog .group-container .group-item, .storyboard-share-dialog .email-container .email-item, .visual-share-dialog .group-container .group-item, .visual-share-dialog .email-container .email-item, .Dataset-share-dialog .group-container .group-item, .Dataset-share-dialog .email-container .email-item, .slideout--intelligent-agent-answers .group-container .group-item, .slideout--intelligent-agent-answers .email-container .email-item {
  padding: 5px;
  display: inline-block; }
.storyboard-share-dialog .group-container .group-item-avatar, .storyboard-share-dialog .group-container .group-item-name, .storyboard-share-dialog .group-container .group-item-delete, .storyboard-share-dialog .email-container .email-item-name, .visual-share-dialog .group-container .group-item-avatar, .visual-share-dialog .group-container .group-item-name, .visual-share-dialog .group-container .group-item-delete, .visual-share-dialog .email-container .email-item-name, .Dataset-share-dialog .group-container .group-item-avatar, .Dataset-share-dialog .group-container .group-item-name, .Dataset-share-dialog .group-container .group-item-delete, .Dataset-share-dialog .email-container .email-item-name, .slideout--intelligent-agent-answers .group-container .group-item-avatar, .slideout--intelligent-agent-answers .group-container .group-item-name, .slideout--intelligent-agent-answers .group-container .group-item-delete, .slideout--intelligent-agent-answers .email-container .email-item-name {
  display: inline-block; }
.storyboard-share-dialog .group-container .group-item-avatar, .visual-share-dialog .group-container .group-item-avatar, .Dataset-share-dialog .group-container .group-item-avatar, .slideout--intelligent-agent-answers .group-container .group-item-avatar {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-size: cover;
  vertical-align: bottom;
  margin-right: 5px; }
.storyboard-share-dialog .group-container .group-item-name, .visual-share-dialog .group-container .group-item-name, .Dataset-share-dialog .group-container .group-item-name, .slideout--intelligent-agent-answers .group-container .group-item-name {
  font-size: 14px;
  color: #2b698e; }
.storyboard-share-dialog .email-container .email-item-name, .visual-share-dialog .email-container .email-item-name, .Dataset-share-dialog .email-container .email-item-name, .slideout--intelligent-agent-answers .email-container .email-item-name {
  font-size: 14px;
  color: #2b698e;
  margin: 5px;
  /* cursor: pointer; */
  /* margin: 0 3px 3px 0; */
  padding: 5px 10px;
  background: #e9ecef;
  /* color: #495057; */
  border: 0 solid rgba(0, 40, 100, 0.12);
  border-radius: 3px;
  font-weight: 400; }
.storyboard-share-dialog .group-container .group-item-delete, .storyboard-share-dialog .group-container .email-item-delete, .storyboard-share-dialog .group-container .email-item-delete, .visual-share-dialog .group-container .group-item-delete, .visual-share-dialog .group-container .email-item-delete, .visual-share-dialog .group-container .email-item-delete, .Dataset-share-dialog .group-container .group-item-delete, .Dataset-share-dialog .group-container .email-item-delete, .Dataset-share-dialog .group-container .email-item-delete, .slideout--intelligent-agent-answers .group-container .group-item-delete, .slideout--intelligent-agent-answers .group-container .email-item-delete, .slideout--intelligent-agent-answers .group-container .email-item-delete {
  float: right; }
.storyboard-share-dialog .group-tab-label, .visual-share-dialog .group-tab-label, .Dataset-share-dialog .group-tab-label, .slideout--intelligent-agent-answers .group-tab-label {
  color: #666;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  height: 50px;
  /*margin-bottom: 10px;*/ }
.storyboard-share-dialog .dialog-title, .storyboard-share-dialog .dialog-label, .visual-share-dialog .dialog-title, .visual-share-dialog .dialog-label, .Dataset-share-dialog .dialog-title, .Dataset-share-dialog .dialog-label, .slideout--intelligent-agent-answers .dialog-title, .slideout--intelligent-agent-answers .dialog-label {
  color: #0d3f69;
  text-align: center; }
.storyboard-share-dialog .label-group, .storyboard-share-dialog .label-email, .visual-share-dialog .label-group, .visual-share-dialog .label-email, .Dataset-share-dialog .label-group, .Dataset-share-dialog .label-email, .slideout--intelligent-agent-answers .label-group, .slideout--intelligent-agent-answers .label-email {
  cursor: pointer;
  padding: 15px; }
  .storyboard-share-dialog .label-group:hover, .storyboard-share-dialog .label-group.active, .storyboard-share-dialog .label-email:hover, .storyboard-share-dialog .label-email.active, .visual-share-dialog .label-group:hover, .visual-share-dialog .label-group.active, .visual-share-dialog .label-email:hover, .visual-share-dialog .label-email.active, .Dataset-share-dialog .label-group:hover, .Dataset-share-dialog .label-group.active, .Dataset-share-dialog .label-email:hover, .Dataset-share-dialog .label-email.active, .slideout--intelligent-agent-answers .label-group:hover, .slideout--intelligent-agent-answers .label-group.active, .slideout--intelligent-agent-answers .label-email:hover, .slideout--intelligent-agent-answers .label-email.active {
    color: #16a1af; }
    .storyboard-share-dialog .label-group:hover a:before, .storyboard-share-dialog .label-group.active a:before, .storyboard-share-dialog .label-email:hover a:before, .storyboard-share-dialog .label-email.active a:before, .visual-share-dialog .label-group:hover a:before, .visual-share-dialog .label-group.active a:before, .visual-share-dialog .label-email:hover a:before, .visual-share-dialog .label-email.active a:before, .Dataset-share-dialog .label-group:hover a:before, .Dataset-share-dialog .label-group.active a:before, .Dataset-share-dialog .label-email:hover a:before, .Dataset-share-dialog .label-email.active a:before, .slideout--intelligent-agent-answers .label-group:hover a:before, .slideout--intelligent-agent-answers .label-group.active a:before, .slideout--intelligent-agent-answers .label-email:hover a:before, .slideout--intelligent-agent-answers .label-email.active a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 50%;
      height: 4px;
      background: #48d2a0; }
.storyboard-share-dialog .email-toggles .toggle-item label, .visual-share-dialog .email-toggles .toggle-item label, .Dataset-share-dialog .email-toggles .toggle-item label, .slideout--intelligent-agent-answers .email-toggles .toggle-item label {
  position: absolute;
  right: 0px; }
.storyboard-share-dialog .email-toggles, .visual-share-dialog .email-toggles, .Dataset-share-dialog .email-toggles, .slideout--intelligent-agent-answers .email-toggles {
  margin-top: 10px; }
.storyboard-share-dialog .email-toggles .toggle-item, .visual-share-dialog .email-toggles .toggle-item, .Dataset-share-dialog .email-toggles .toggle-item, .slideout--intelligent-agent-answers .email-toggles .toggle-item {
  width: 100%;
  margin: 15px 0px;
  color: #666; }
.storyboard-share-dialog .email-tab .send-button, .visual-share-dialog .email-tab .send-button, .Dataset-share-dialog .email-tab .send-button, .slideout--intelligent-agent-answers .email-tab .send-button {
  align-content: space-between;
  border-color: #48d2a0 !important;
  font-size: 14px !important;
  text-align: center;
  margin-top: 20px;
  display: block;
  text-align: center; }
.storyboard-share-dialog .live-link, .visual-share-dialog .live-link, .Dataset-share-dialog .live-link, .slideout--intelligent-agent-answers .live-link {
  color: #48d2a0;
  cursor: pointer; }
  .storyboard-share-dialog .live-link:hover, .visual-share-dialog .live-link:hover, .Dataset-share-dialog .live-link:hover, .slideout--intelligent-agent-answers .live-link:hover {
    color: #2b9de4; }
.storyboard-share-dialog .live-link-box, .visual-share-dialog .live-link-box, .Dataset-share-dialog .live-link-box, .slideout--intelligent-agent-answers .live-link-box {
  height: 30px;
  overflow: hidden;
  font-size: 12px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  color: #2388c7;
  border: 1px solid #e5e5e5 !important;
  padding-right: 0px !important;
  padding-left: 0px !important; }
.storyboard-share-dialog .live-link-button, .visual-share-dialog .live-link-button, .Dataset-share-dialog .live-link-button, .slideout--intelligent-agent-answers .live-link-button {
  margin-left: 10px;
  padding: 5px;
  border-radius: 15px; }

.share-group-dropdown .ui-select-toggle {
  border: none !important;
  font-size: 14px !important;
  height: 45px;
  padding: 12px;
  font-weight: normal; }
.share-group-dropdown .ui-select-container {
  border-radius: 5px;
  padding: 0px;
  height: 45px; }
.share-group-dropdown .share-group-dropdown .ui-select-search {
  height: 45px; }

.share-email-input input {
  width: 100%;
  height: 45px;
  margin-bottom: 10px;
  padding: 10px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: none;
  border: 1px solid #E1E1E1; }

.well {
  min-height: 20px;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #fff; }

/*****************************************************
*
* Storyboard Loader
*
****************************************************/
.storyboard-loading-mask {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
  width: auto;
  bottom: 0;
  right: 0; }
  .storyboard-loading-mask__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent url("data:image/gif;base64,R0lGODlhLAEsAcQfAPYgG+xvB/rcBK4RBPn49+6cBJ2XqdLO0+KZkepyaRAANfTkjCocTVtQdevFu/ztOvSoTIiBmXNqifw9OfTtx8O/x0M2YbGsuchSQMA0DuDa2+vo6aiVHlcCJGpWJf///yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZEODM2Q0M1OUZENjExRTc5Q0U0OTVDMDhBM0QzRDVDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZEODM2Q0M2OUZENjExRTc5Q0U0OTVDMDhBM0QzRDVDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkQ4MzZDQzM5RkQ2MTFFNzlDRTQ5NUMwOEEzRDNENUMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkQ4MzZDQzQ5RkQ2MTFFNzlDRTQ5NUMwOEEzRDNENUMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94Onht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");
    background-size: contain;
    height: 175px;
    width: 175px;
    filter: grayscale(30%); }
    .storyboard-loading-mask__image img {
      height: 100%;
      width: 100%; }
  .storyboard-loading-mask__text {
    color: #114d72;
    font-family: "proxima-nova", sans-serif;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute; }

.app-loading-mask {
  background: #fff;
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: 0px;
  left: 0px;
  z-index: 100000; }
  .app-loading-mask__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent url("data:image/gif;base64,R0lGODlhLAEsAcQfAPYgG+xvB/rcBK4RBPn49+6cBJ2XqdLO0+KZkepyaRAANfTkjCocTVtQdevFu/ztOvSoTIiBmXNqifw9OfTtx8O/x0M2YbGsuchSQMA0DuDa2+vo6aiVHlcCJGpWJf///yH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjZEODM2Q0M1OUZENjExRTc5Q0U0OTVDMDhBM0QzRDVDIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjZEODM2Q0M2OUZENjExRTc5Q0U0OTVDMDhBM0QzRDVDIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NkQ4MzZDQzM5RkQ2MTFFNzlDRTQ5NUMwOEEzRDNENUMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NkQ4MzZDQzQ5RkQ2MTFFNzlDRTQ5NUMwOEEzRDNENUMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94Onht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") no-repeat center center;
    background-size: contain;
    height: 175px;
    width: 175px;
    filter: grayscale(100%);
    opacity: .7; }
    .app-loading-mask__image img {
      height: 100%;
      width: 100%; }
  .app-loading-mask__text {
    color: #114d72;
    font-family: "proxima-nova", sans-serif;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    position: absolute; }

.ai-skeleton-loader {
  background: url("../../assets/images/loader/simple-skeleton-loader.svg") no-repeat top center;
  background-size: contain;
  animation-name: 'skeleton-pulse';
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: ease-out; }

@keyframes skeleton-pulse {
  0% {
    opacity: 40%; }
  50% {
    opacity: 100%; }
  100% {
    opacity: 45%; } }
/*************************************************************
 *
 * Intro JS
 * 
*************************************************************/
.introjs-tooltip {
  background-color: #fff;
  border-radius: 0;
  color: #2a63a9;
  padding: 20px; }
  .introjs-tooltip:after {
    content: '';
    display: inline-block;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    width: 8px;
    background: #2a63a9; }
  .introjs-tooltipbuttons {
    margin-top: 10px; }
  .introjs-tooltip .introjs-button {
    border-radius: 14px;
    color: #fff;
    border: none;
    font-size: 12px;
    margin-left: 3px;
    margin-right: 3px;
    text-transform: uppercase;
    padding: 4px 8px; }
  .introjs-tooltip .introjs-skipbutton {
    color: #7d7d7d;
    background: transparent;
    float: left;
    border-radius: 14px;
    margin-left: 0; }
  .introjs-tooltip .introjs-prevbutton {
    background: #fff;
    color: #2a63a9;
    border: 1px solid #2a63a9; }
  .introjs-tooltip .introjs-nextbutton, .introjs-tooltip .introjs-donebutton {
    background: #2a63a9;
    color: #fff;
    box-shadow: 4px 4px 11px 0 rgba(0, 0, 0, 0.29);
    margin-right: 0; }

.introjs-bottom-left-aligned:after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 6px;
  width: 100%;
  left: 0;
  top: 0;
  background: #2a63a9; }

/*************************************************************
 *
 *  Media Queries
 * 
*************************************************************/
.show-mobile {
  display: none; }

@media only screen and (min-width: 1480px) {
  .visable-xl {
    display: inline-block !important; }

  .hidden-xl {
    display: none !important; } }
/* Custom, IPhone 6 screen and up */
@media only screen and (max-width: 990px) {
  .login-block, .onboarding-block {
    margin: 0 !important; }

  .login-block-container {
    padding: 16px; }

  .card__details, .visual-tile__details {
    padding: 10px 20px; }

  .card__description-title, .visual-tile__description-title {
    font-size: 1.0em;
    font-weight: 700; }

  .storyboard-cover__pages {
    background: #56CCCC; }

  .bottom-bar {
    width: 100% !important;
    bottom: 0px;
    left: 0;
    position: fixed !important;
    display: flex !important;
    flex-direction: row;
    background: #fff;
    margin: 0px !important;
    /* box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.5); */
    z-index: 99999; }
    .bottom-bar__content {
      display: flex !important; }
    .bottom-bar--navoption {
      flex-grow: 1;
      display: block; }
    .bottom-bar > div {
      flex-grow: 1;
      display: inline-block;
      border-left: 1px solid #EEEEEE;
      z-index: 2; }
      .bottom-bar > div :last-of-type {
        border-left: none; }
    .bottom-bar button {
      margin: 0 !important;
      padding: 3px 0 !important;
      color: #114d72 !important;
      height: auto; }

  .mobile-button-bottom {
    position: fixed;
    bottom: 60px;
    border-top: none;
    width: 100%;
    left: 0;
    padding: 10px 15px; }

  .main-content__container .main-content__content {
    padding-top: 0px !important; }

  .share-visual-popup {
    width: 300px; }

  .page-nav__dot {
    border: 1px solid #747474 !important; }

  .page-nav__dot.active {
    background: #4AE2C1 !important;
    border: 1px solid #4AE2C1 !important; }

  .hamburger-pages {
    position: relative;
    top: 2px;
    color: #747474; }

  .storyboard-mobile-header h2 {
    border-bottom: 1px solid #e6e6e6;
    background-color: white; }

  .storyboard-mobile-pageheader {
    color: #747474 !important; }
    .storyboard-mobile-pageheader__pages {
      font-size: 12px !important;
      font-weight: 500 !important;
      margin-top: 5px;
      padding-left: 20px; }

  .storyboard-viewer.mobile-view {
    margin-top: 60px !important; }

  .visual-conversation-follow.mobile-follow {
    padding: 10px !important;
    color: #67539B !important; }
    .visual-conversation-follow.mobile-follow:active {
      color: #56CCCC !important; }
    .visual-conversation-follow.mobile-follow--followed {
      padding: 10px !important;
      color: #4AE2C1 !important;
      background: #fff !important; }

  .storyboard-slideout {
    top: 60px !important; }
    .storyboard-slideout__header {
      color: #3A84C5 !important;
      background: #fff !important;
      text-align: center;
      border-bottom: 1px solid #ececec;
      padding: 15px 20px !important; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(1) {
      z-index: 20; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(2) {
      z-index: 19; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(3) {
      z-index: 18; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(4) {
      z-index: 17; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(5) {
      z-index: 16; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(6) {
      z-index: 15; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(7) {
      z-index: 14; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(8) {
      z-index: 13; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(9) {
      z-index: 12; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(10) {
      z-index: 11; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(11) {
      z-index: 10; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(12) {
      z-index: 9; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(13) {
      z-index: 8; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(14) {
      z-index: 7; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(15) {
      z-index: 6; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(16) {
      z-index: 5; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(17) {
      z-index: 4; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(18) {
      z-index: 3; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(19) {
      z-index: 2; }
    .storyboard-slideout .storyboard-filter-row filter:nth-of-type(20) {
      z-index: 1; }

  .mobile-pages {
    padding: 10px 0 !important; }

  .storyboard-section {
    margin-top: 10px; }

  .page-nav--dots {
    margin-top: 0px !important;
    top: 15px !important;
    z-index: 1000003;
    padding: 0px !important;
    right: 15px !important; }

  .visual-tile__image {
    width: 50% !important; }

  .results-preview {
    width: 100%; }
    .results-preview__header-actions {
      background: #fafafa; }
      .results-preview__header-actions h3 {
        color: #3A84C5 !important; }
      .results-preview__header-actions a {
        color: #747474 !important; }

  .dataset-cover__title {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-family: "proxima-nova", sans-serif;
    position: relative;
    width: 80%;
    bottom: initial;
    padding: none;
    background: transparent;
    border-radius: 10px;
    text-shadow: none;
    color: #3A84C5 !important; }

  .nucleus-tabs--tab.active {
    color: #3A84C5; }

  .page-storyboards, .page-navigator, .page-dataExport, .page-dataverse-explore, .page-navigator-query, .page-home, [class*='page-manage'], .page-organization-settings {
    left: 0px !important;
    right: 0;
    position: absolute; }

  .page-navigator-query.collapsed, .page-dataExport.collapsed, .page-dataverse-explore.collapsed, .page-storyboards.collapsed, .page-navigator.collapsed, .page-login.collapsed, [class*='page-manage'].collapsed, .page-organization-settings.collapsed {
    left: 0px !important; }

  .side-menu {
    display: none; }

  .page-heading.is-mobile {
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.85) !important;
    height: 60px !important;
    padding: 15px !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e6e6e6; }

  .bottom-bar {
    bottom: 0;
    left: 0;
    background-color: #fff;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    z-index: 100002;
    width: 100%;
    border-top: 1px solid #e6e6e6; }
    .bottom-bar__content {
      /* transform: translateY(-25%); */ }

  .datasource-select {
    height: calc(100% - 30px) !important; }

  /****************************************
  *
  * Storyboard Navigator
  *
  ****************************************/
  .navigation-tiles-container {
    text-align: center; }

  /****************************************
  *
  * Mobile Tabs
  *
  ****************************************/
  .menu-tabs .nav {
    display: flex; }
  .menu-tabs .nav-item {
    flex-grow: 1;
    text-align: center; }

  /* .container-fluid {
    padding-bottom: 55px !important;
  } */
  .navbar-brand .navbar-nav {
    z-index: 100003  !important; }

  .dropdown-toggle .organization-name {
    width: 100px !important; }

  .avatar-thumbnail--active-group {
    height: 30px !important;
    width: 30px !important;
    margin-left: 0px !important;
    margin-right: 0px !important; }

  .dropdown-toggle--group {
    background-color: rgba(247, 247, 247, 0);
    border-bottom: none; }

  .group-dropdown {
    font-size: 14px !important;
    line-height: 20px !important; }

  /****************************
  *
  * Onboarding 
  *
  *****************************/
  .onboarding-block .register-level-option__icon-container {
    vertical-align: top;
    font-size: 2em; }

  .ui-select-choices.ui-select-choices-content {
    top: 0 !important; }

  .onboarding-block-branding {
    height: 100px; }

  .brand-icon--full {
    background-position: center center;
    margin-top: 10px; } }
/* Custom, Ipad Pro */
@media only screen and (max-width: 1024px) {
  /* CNG */
  .on-ipad {
    display: none; }

  .card {
    height: 300px;
    width: 330px;
    margin: 10px 10px 10px 0px;
    transform: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
    .embed-storyboard-list-folders .card {
      height: 200px;
      width: 250px; }
    .card--new {
      display: none; }
    .card__inner {
      height: 300px;
      width: 330px;
      padding: 2px;
      transition: none; }
    .embed-storyboard-list-folders .card__inner {
      height: 200px;
      width: 250px; }
    .card__inner--container {
      height: 300px;
      width: 330px; }
    .embed-storyboard-list-folders .card__inner--container {
      height: 200px;
      width: 250px; }
    .card__inner--overlay {
      height: 330px;
      width: 330px;
      transition: none; }
    .embed-storyboard-list-folders .card__inner--overlay {
      height: 200px;
      width: 250px; }

  .dropup, .dropdown {
    position: relative; }

  .option-action .button-34 {
    padding-right: 20px;
    padding-left: 20px; }

  .hide-mobile {
    display: none; }

  .show-mobile {
    display: inline-block; }

  .viewer__board {
    padding: 10px 90px; }

  .visual-edit-button .visual-edit-button-text {
    display: none; }

  .visual-follow-button .visual-follow-button-text {
    display: none; }

  .dataset-container {
    background: none !important;
    padding-top: 80px !important;
    padding-bottom: 55px !important; }

  .storyboard-cover__layout {
    -webkit-box-shadow: 0px 0px 10px #9f9f9f !important;
    box-shadow: 0px 0px 10px #9f9f9f !important;
    background-color: #fff !important;
    width: 60% !important;
    height: 60% !important;
    left: 50% !important;
    transform: translate(-50%, 0%) !important; }

  .storyboard-cover__title {
    color: #3A84C5 !important; }

  .storyboard-cover__button-row .row-button {
    color: #3A84C5 !important; }

  .storyboard-cover__heading, .storyboard-cover__info, .storyboard-cover__link, .dataset-row {
    color: #747474 !important; }

  .storyboard-cover__top {
    height: 40%; }
    .storyboard-cover__top:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fafafa; }

  .storyboard-cover__pages {
    background: #eee; }

  .storyboard-cover__content-body {
    height: 60% !important;
    background-color: #fff !important;
    box-shadow: none !important; }

  .avatar-thumbnail--active-group {
    height: 30px !important;
    width: 30px !important; }

  .inner-sidemenu {
    padding-top: 0px !important;
    border-right: 1px solid #e6e6e6 !important;
    min-height: 100% !important;
    width: 150px !important;
    flex-basis: 150px !important; }

  .inner-sidemenu__content {
    width: 150px !important; }

  .inner-sidemenu__menu ul li a {
    height: 60px !important;
    flex-basis: 150px !important;
    width: 150px !important;
    font-size: 14px !important; }

  .side-menu {
    width: 200px !important; }
    .side-menu--collapsed {
      width: 65px !important; }
    .side-menu--collapsed:hover {
      width: 200px !important; }

  .avatar-thumbnail {
    padding: 0px !important;
    height: 30px !important;
    width: 30px !important;
    /*             &--active-group {
                    height: 35px !important;
                    width: 35px !important;
                }  */ }

  .nucleus-size-25:before {
    font-size: 23px !important; }

  .group-dropdown {
    font-size: 14px !important;
    line-height: 14px !important; }

  .side-menu__menu ul li a {
    font-size: 14px !important; }

  .side-menu__option-label--sub {
    font-size: 12px !important; }

  .page-storyboards, .page-navigator, .page-dataExport, .page-dataverse-explore, .page-navigator-query, .page-home, [class*='page-manage'], .page-organization-settings {
    right: 0;
    position: absolute; }

  .storyboard-viewer:not(.fixed-ratio-view) .storyboard-page-body {
    padding: 30px 16px;
    margin-top: 0;
    overflow-x: hidden; }
  .storyboard-viewer:not(.fixed-ratio-view) .viz-mode-indicator {
    background-color: transparent !important;
    top: 5px !important;
    right: -55px !important;
    transform: none !important; }
  .storyboard-viewer:not(.fixed-ratio-view) .storyboard-slideout {
    top: 95px !important; }
  .storyboard-viewer:not(.fixed-ratio-view) .bottom-bar {
    height: 40px;
    display: block !important; }
    .storyboard-viewer:not(.fixed-ratio-view) .bottom-bar > div + div {
      display: none; }

  .storyboard-slideout {
    top: 60px !important; }
    .storyboard-slideout__header {
      color: #3A84C5 !important;
      background: #fff !important;
      text-align: center;
      border-bottom: 1px solid #ececec;
      padding: 15px 20px !important; }

  /*         .avatar-thumbnail {
              height: 120px !important;
              width: 120px !important;
          } */ }
/* Small Devices, Tablets */
@media only screen and (max-width: 813px) {
  html, body {
    /* padding-top: 25px; */ }

  .edit_link, .create-dateset-button, .on-desktop {
    display: none !important; }

  .main-content {
    top: 0; }

  .list-table-status--danger td {
    background: #FFE6E6; }
  .list-table-status--danger .avatar-thumbnail {
    position: relative; }
    .list-table-status--danger .avatar-thumbnail:after {
      content: "";
      position: absolute;
      top: -5px;
      left: -1px;
      background: #ff0000;
      height: 10px;
      width: 10px;
      border-radius: 100%; }
  .list-table-status--warning td {
    background: #fffde6; }
  .list-table-status--warning .avatar-thumbnail {
    position: relative; }
    .list-table-status--warning .avatar-thumbnail:after {
      content: "";
      position: absolute;
      top: -5px;
      left: -1px;
      background: #f0ad4e;
      height: 10px;
      width: 10px;
      border-radius: 100%; }

  /* Bottom Bar Navigation */
  .bottom-bar {
    height: 55px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 100002;
    width: 100%;
    border-top: 1px solid #e6e6e6;
    bottom: 0px;
    left: 0;
    position: fixed !important;
    display: flex !important;
    flex-direction: row;
    background: #fff;
    margin: 0px !important;
    /* box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.5); */
    z-index: 100000;
    transform: translateZ(10px); }
    .bottom-bar > div {
      flex-grow: 1;
      display: inline-block;
      border-left: 1px solid #EEEEEE;
      z-index: 2; }
      .bottom-bar > div :last-of-type {
        border-left: none; }
    .bottom-bar button {
      margin: 0 !important;
      padding: 3px 0 !important;
      color: #114d72 !important;
      height: auto; }
    .bottom-bar--navoption {
      text-align: center; }
    .bottom-bar .option-icon {
      display: block;
      width: 100%; }
    .bottom-bar .side-menu__option-label {
      display: block !important;
      width: 100%;
      text-align: center;
      font-size: 10px;
      position: relative;
      padding-left: 0;
      padding-right: 0;
      margin-top: 3px; }

  .storyboard-usergroup-select select {
    width: 100px !important; }

  .btn-separator {
    width: 1px; }

  .visual-edit-button, .button-comment, .button-share, .button-export {
    display: none; }

  .button-follow {
    margin-right: 15px !important; }

  .side-menu__option-label--sub {
    display: none; }

  .setting-table .avatar-thumbnail {
    margin-top: 5px; }

  .datasource-title {
    font-size: 12px;
    width: calc(100% - 30%);
    margin-left: 35px; }

  /*********************************
  *
  * Page Position Reset
  *
  ********************************/
  .page-wrapper {
    left: 0px !important;
    top: 0px;
    bottom: 120px; }

  .storyboard--list.is-mobile {
    position: fixed;
    padding-top: 0px !important;
    top: 60px !important;
    bottom: 55px; }

  .page-storyboards, .page-navigator, .page-dataExport, .page-dataverse-explore, .page-navigator-query, .page-home, [class*='page-manage'], .page-organization-settings {
    left: 0px !important;
    right: 0;
    position: absolute; }

  .page-navigator-query.collapsed, .page-dataExport.collapsed, .page-dataverse-explore.collapsed, .page-storyboards.collapsed, .page-navigator.collapsed, .page-login.collapsed, [class*='page-manage'].collapsed, .page-organization-settings.collapsed {
    left: 0px !important; }

  .side-menu {
    display: none; }

  .page-heading {
    margin-top: 0; }

  .storyboard--list {
    top: 0; }

  /* .side-menu__menu a{
      padding: 15px 15px !important;
  } */
  .navbar-default {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed; }

  .navbar-brand {
    margin: 10 0 0px 5px !important;
    width: 250px; }

  .navbar-config {
    display: none; }

  .storyboard-section, .storyboard-row, .storyboard-column, .storyboard-filter-row, .storyboard.no-filter-section {
    flex-direction: column !important;
    height: auto !important; }

  .editor__footer {
    position: relative;
    display: inline-block; }

  .editor__board {
    height: auto; }

  .storyboard-editor {
    left: 0;
    z-index: 2;
    padding: 0; }
    .storyboard-editor.open {
      left: 250px;
      right: -250px; }

  .storyboard-sidebar {
    z-index: 1; }

  .storyboard-viewer .storyboard-header .title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 60%;
    display: inline-block;
    font-size: 22px; }

  .viewer__board, .editor {
    padding: 10px 60px; }

  .sidebar .measure-list.simple, .sidebar .field-list.simple, .sidebar .filter-field-list.simple {
    left: 0; }

  .chart-panel.sb-headline {
    flex-basis: initial;
    flex-shrink: 1;
    height: 150px; }
  .chart-panel.sb-visual {
    flex-basis: initial;
    flex-shrink: 1;
    height: 300px !important; }
  .chart-panel.sb-table {
    flex-basis: initial;
    flex-shrink: 1;
    height: 300px !important; }

  .visual-tile--new {
    display: none; }

  .editor__footer, .viewer__footer, .preview__footer {
    position: relative; }

  .btn-fullscreen {
    display: none; }

  .headline-value {
    font-size: 2.2em; }

  .headline-caption {
    font-size: 1.5em; }

  .storyboard-list-mobile-header h2, .storyboard-mobile-header h2 {
    color: #5d5d5d;
    top: -10px;
    left: 60px;
    font-size: 23px; }

  .storyboard-mobile-header h2 {
    color: #5d5d5d;
    top: 0px;
    left: 60px;
    font-size: 23px; }

  .page-heading > .col-xs-12 {
    position: static; }
  .page-heading .form-control {
    /* position: absolute; */
    top: 0;
    left: 0;
    right: 0;
    height: 30px !important;
    /* border: none;
    border-radius: 0px;  */
    background-color: #f9f9fb;
    font-size: 14px;
    transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    /* border: none; */
    border-radius: 15px;
    border-box: 0;
    border: 0px solid white;
    color: #555; }
    .page-heading .form-control:active, .page-heading .form-control:focus {
      background-color: #f9f9fb;
      color: #393939; }
      .page-heading .form-control:active::-webkit-input-placeholder, .page-heading .form-control:focus::-webkit-input-placeholder {
        color: #555;
        font-size: 14px;
        font-weight: 500; }
    .page-heading .form-control::-webkit-input-placeholder {
      color: #555;
      font-size: 14px;
      font-weight: 500;
      background-color: #f9f9fb; }

  .option-action .button-34 {
    padding-right: 20px;
    padding-left: 20px; }

  .storyboard-nested .storyboard-mobile-header h2 {
    display: none; }
  .storyboard-nested .storyboard-mobile-header--nested h2 {
    display: block;
    font-size: 12px;
    top: 0;
    width: calc(100%);
    height: 52px;
    box-sizing: border-box;
    margin: 0;
    line-height: 50px;
    padding-right: 15px;
    color: #fff;
    left: 0;
    text-align: left;
    padding: 0px 15px;
    background: rgba(0, 0, 0, 0.12);
    word-break: keep-all;
    overflow-x: hidden;
    text-overflow: ellipsis; }
    .storyboard-nested .storyboard-mobile-header--nested h2 i.fa {
      font-size: 16px; }
  .storyboard-nested .storyboard-mobile-header--nested .nested-back-link {
    margin-right: 10px;
    padding: 18px 15px 18px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.29); }
  .storyboard-nested .nested-page-nav {
    display: none; }
  .storyboard-nested .storyboard-mobile-pageheader {
    font-size: 15px;
    line-height: 25px;
    text-align: left;
    background-color: #5ba2bf;
    color: #fff;
    top: 0px;
    z-index: 100050;
    width: 100%;
    padding: 5px 15px;
    line-height: 130px;
    height: 88px; }
    .storyboard-nested .storyboard-mobile-pageheader .filtered-by {
      font-size: 10px;
      vertical-align: super; }

  .storyboard-mobile-pageheader {
    padding-left: 42px;
    padding-right: 42px; }

  .page-arrow-left {
    position: fixed;
    left: -7px;
    top: 50%;
    font-size: 40px;
    text-align: left;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 100px;
    min-width: 40px;
    height: 100%;
    opacity: 0;
    z-index: 100; }
    .page-arrow-left.swiped {
      opacity: 1;
      background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
      background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
      background: linear, to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%;
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 ); }
    .page-arrow-left span {
      position: absolute;
      left: 1px;
      top: 50%;
      transform: translateY(-50%); }

  .page-arrow-right {
    position: fixed;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    text-align: right;
    color: rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 100px;
    min-width: 40px;
    height: 100%;
    opacity: 0;
    z-index: 100; }
    .page-arrow-right.swiped {
      opacity: 1;
      background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
      background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
      background: linear, to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%;
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 ); }
    .page-arrow-right span {
      position: absolute;
      right: 1px;
      top: 50%;
      transform: translateY(-50%); }

  .page-nav--dots {
    right: 30px; } }
/* Extra Small Devices, Phones */
@media only screen and (max-width: 813px) {
  .page-storyboards, .page-navigator, .page-navigator-query {
    background-attachment: scroll; }

  .navbar-nav .open .dropdown-menu {
    overflow-y: scroll;
    max-height: 500px;
    min-width: 65vw !important;
    background-color: #fff;
    position: absolute; }
    .navbar-nav .open .dropdown-menu li > a {
      padding: 10px 10px !important; }

  .page-heading h2 {
    display: inline-block;
    font-size: 1.6rem;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle; }

  .card__details, .visual-tile__details {
    padding: 10px 20px; }

  .card__description-title, .visual-tile__description-title {
    font-size: 1.0em;
    font-weight: 700; }

  .card {
    height: 230px;
    width: 260px;
    margin: 10px 10px 10px 0px;
    transform: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
    .card--new {
      display: none; }
    .card__inner {
      height: 230px;
      width: 260px;
      padding: 2px;
      transition: none; }
    .card__inner--container {
      height: 230px;
      width: 260px; }
    .card__inner--overlay {
      height: 230px;
      width: 260px;
      transition: none; }
    .card--group, .card--group .card__inner--group {
      height: 120px;
      width: 120px;
      font-size: 14px; }
    .card__title {
      top: 3px;
      font-size: 12px; }
      .card__title--group {
        top: 50%;
        font-size: 1.2em; }
    .card:not(.card--new) .card__inner {
      top: 0px; }
    .card:not(.card--new) .card__dataset {
      bottom: 0px; }
    .card__dataset span {
      height: 20px;
      width: 20px; }
    .card:active, .card:focus {
      animation-name: card-scale;
      animation-duration: .45s;
      animation-fill-mode: forward;
      animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .card .animation-container {
      width: 100%; }

  /***********************************
  **
  * Storyboard Creatation Wizard 
  **
  ***********************************/
  .main-content__section-header {
    margin-top: 60px; }

  .breadcrumb {
    padding-left: 0; }

  /**.storyboard-creator-nav{
      display: none;  
  }*/
  .storyboard-creator {
    padding: 20px;
    overflow-y: auto;
    height: calc(100% - 50px - 155px) !important; }

  .empty-state-image {
    max-width: 200px;
    max-height: 200px; }

  .storyboard-type-box > .container-fluid {
    width: 100% !important; }
  .storyboard-type-box.med {
    display: none; }

  .board-lane {
    min-height: 200px; }
    .board-lane__header {
      font-size: 1.6em; }
    .board-lane__header--info {
      display: block;
      float: none !important;
      font-size: 13px;
      font-weight: 500;
      margin-top: 5px; }
    .board-lane__header-link {
      display: inline-block;
      pointer-events: initial;
      margin-left: 0;
      opacity: 1; }
    .board-lane--sub {
      -webkit-animation: revealLane--mobile 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      -moz-animation: revealLane--mobile 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      animation: revealLane--mobile 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      animation-fill-mode: forwards;
      animation-delay: .2s;
      position: relative; }

  .alert-board-lane {
    font-size: 18px;
    font-weight: 300; }

  .button-create-new, .button-edit, .button-present {
    display: none; }

  .viewer__board {
    padding-left: 0px !important;
    padding-right: 35px !important; }

  .last-updated {
    display: none; }

  .storyboard .sb-headline {
    min-height: 85px; }
  .storyboard .sb-trending-headline {
    min-height: 195px; }

  .timeseries-title {
    font-size: 1em !important; }

  .storyboard-header {
    padding: 10px !important; }
    .storyboard-header h2, .storyboard-header .title {
      font-size: 20px !important;
      vertical-align: bottom; }
    .storyboard-header h2 {
      margin-top: 5px; }
    .storyboard-header .title {
      width: 90% !important; }
    .storyboard-header__description {
      left: initial;
      top: 65px; }

  .viewer__board {
    padding: 0 !important; }
    .viewer__board .storyboard-header {
      min-height: 115px;
      margin-left: -10px;
      margin-right: -10px; }

  .nucleus-back {
    position: absolute;
    left: 15px; }

  .storyboard-mobile-pageheader__pages {
    padding-left: 0; }

  .storyboard-viewer {
    padding: 0;
    /*             padding-top: 10px;    */ }

  /****************************
  *
  * Periodic Filter Bar
  *
  ***************************/
  .view-filter {
    text-align: center;
    padding: 0; }

  .storyboard-preview-modal {
    bottom: 70px; }

  .storyboard-actions {
    width: 100% !important;
    top: 60px;
    left: 0;
    position: fixed !important;
    display: flex !important;
    flex-direction: row;
    background: #fff;
    margin: 0px !important;
    /* box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.5); */
    z-index: 99999;
    height: 35px;
    padding: 0 15px; }
    .storyboard-actions .filter-body {
      margin-top: 0 !important; }
    .storyboard-actions--filterbar {
      display: none !important; }
    .storyboard-actions .storyboard-period-filter {
      margin-left: 0;
      width: 320px;
      margin-left: -3px; }
    .storyboard-actions .storyboard-period-filter .ui-select-container .btn-default {
      border: none !important;
      font-weight: 500;
      overflow: visible; }
      .storyboard-actions .storyboard-period-filter .ui-select-container .btn-default:before {
        content: '\f073';
        position: absolute;
        top: 4px;
        font-family: "Font Awesome 5 Pro";
        display: inline-block;
        height: 20px;
        left: -6px;
        font-weight: 300; }
      .storyboard-actions .storyboard-period-filter .ui-select-container .btn-default i {
        color: #3A84C5 !important; }
    .storyboard-actions button {
      margin: 0 !important;
      padding: 3px 0 !important;
      color: #114d72 !important;
      height: auto; }

  .filter-label {
    color: #4B4B4B !important; }

  .filter-body {
    margin-top: 20px !important; }

  .chart-panel.sb-filter, .chart-panel .c-filter {
    max-height: 80px !important; }

  .rz-bubble {
    color: #4B4B4B !important; }

  .side-menu__angle {
    right: 0px; }

  .page-nav--dots {
    margin-top: 10px;
    padding: 0px 8px;
    top: 46px; }
  .page-nav__dot {
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    border: 1px solid #fff; }
    .page-nav__dot.active {
      background: #fff; }

  .storyboard-mobile-header h2, .subpage-mobile-header h2 {
    top: 0px;
    left: 0px;
    font-size: 1.25em;
    height: 60px;
    background: #fff;
    width: 100%;
    padding: 0 15px;
    margin-top: 0;
    padding-top: 15px;
    text-align: center;
    text-transform: none !important;
    color: #747474 !important;
    border-bottom: 1px solid #e6e6e6 !important; }
    .storyboard-mobile-header h2 .title, .subpage-mobile-header h2 .title {
      color: #3A84C5 !important; }

  body.animatedCoverEntry {
    right: initial; }

  /***************************************
  * Group Mobile Group Selector
  ***************************************/
  .storyboard-usergroup-select--mobile {
    display: inline-block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: calc(100% - 58px);
    background: #fff;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000002; }
    .storyboard-usergroup-select--mobile .usergroup-view-select {
      color: #fff;
      border-bottom: none;
      text-indent: 2px;
      background-color: transparent;
      pointer-events: none; }
    .storyboard-usergroup-select--mobile .header {
      background: rgba(164, 200, 57, 0.95);
      padding: 3px 10px;
      text-align: center;
      color: #fff; }
    .storyboard-usergroup-select--mobile .list {
      background: #fff;
      margin: 0px -10px -3px;
      height: 100%; }
    .storyboard-usergroup-select--mobile .usergroup-list-item {
      text-align: center;
      font-size: 16px;
      color: #A4C839;
      padding: 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
      transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
      opacity: 0; }
      .storyboard-usergroup-select--mobile .usergroup-list-item.active {
        background-color: white; }
    .storyboard-usergroup-select--mobile.active {
      top: 53px;
      bottom: 0; }
      .storyboard-usergroup-select--mobile.active .usergroup-list-item {
        opacity: 1; } }
/* Phones */
@media only screen and (max-width: 420px) {
  .is-phone {
    display: none; }

  .mobile-center {
    text-align: center !important; }

  .mobile-left {
    text-align: left !important; }

  .mobile-right {
    text-align: right !important; }

  .navigation-tiles-container {
    text-align: left; }

  .popover.right {
    right: initial !important;
    left: -100px !important;
    top: 30px !important; }

  .popover .arrow {
    display: none !important; }

  .card__details, .visual-tile__details {
    padding: 10px 20px; }

  .card__description-title, .visual-tile__description-title {
    font-size: 1.0em;
    font-weight: 700; }

  .card {
    height: 130px;
    width: 140px;
    margin: 10px 10px 10px 0px;
    transform: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
    .card--new {
      display: none; }
    .card__inner {
      height: 130px;
      width: 140px;
      padding: 2px;
      transition: none; }
    .card__inner--container {
      height: 130px;
      width: 140px; }
    .card__inner--overlay {
      height: 130px;
      width: 140px;
      transition: none; }
    .card__content {
      width: 140px; }
    .card--group, .card--group .card__inner--group {
      height: 120px;
      width: 120px;
      font-size: 14px; }
    .card__title {
      top: 3px;
      font-size: 12px; }
      .card__title--group {
        top: 50%;
        font-size: 1.2em; }
    .card:not(.card--new) .card__inner {
      top: 0px; }
    .card:not(.card--new) .card__dataset {
      bottom: -8px; }
    .card:hover:not(.card--new) .card__dataset, .card:focus:not(.card--new) .card__dataset {
      bottom: 117px; }
    .card__dataset span {
      height: 20px;
      width: 20px; }
    .card:active, .card:focus {
      animation-name: card-scale;
      animation-duration: .45s;
      animation-fill-mode: forward;
      animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
    .card .animation-container {
      width: 100%; }

  .card__dataset .avatar-icon, .visual-tile__dataset .avatar-icon {
    max-width: 15px !important; }

  .card__dataset .dataset-avatars, .visual-tile__dataset .dataset-avatars {
    height: 15px;
    width: 15px; }

  .visual-tile {
    height: 130px !important;
    width: 140px !important; }
    .visual-tile .visual-tile__inner--container, .visual-tile .visual-tile__inner {
      height: 130px !important; }
    .visual-tile:hover:not(.card--new) .card__dataset, .visual-tile:focus:not(.card--new) .card__dataset {
      bottom: 117px; }

  .storyboard-type .ui-select-choices.ui-select-choices-content {
    top: 50% !important;
    transform: translateY(-50%); }

  .storyboard-viewer:not(.fixed-ratio-view) .storyboard-page-body {
    padding: 30px 16px;
    margin-top: 0;
    overflow-x: hidden; }
  .storyboard-viewer:not(.fixed-ratio-view) .viz-mode-indicator {
    background-color: transparent !important;
    top: 5px !important;
    right: -55px !important;
    transform: none !important; }
  .storyboard-viewer:not(.fixed-ratio-view) .storyboard-slideout {
    top: 95px !important; }
  .storyboard-viewer:not(.fixed-ratio-view) .bottom-bar {
    height: 40px; }
    .storyboard-viewer:not(.fixed-ratio-view) .bottom-bar > div + div {
      display: none; }

  .storyboard-viewer.fixed-ratio-view .storyboard-page-body {
    top: 0; }

  .fixed-ratio-view .storyboard-container {
    height: calc(100% - 35px) !important; }

  .introjs-fixedTooltip {
    top: initial !important;
    bottom: 4px; } }
/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  .storyboard-section, .storyboard-row, .storyboard-column, .storyboard-filter-row, .storyboard.no-filter-section {
    flex-direction: column !important;
    height: auto !important; }

  .editor {
    padding-left: 60px;
    padding-right: 60px; }

  .editor__footer {
    position: relative;
    display: inline-block; }

  .editor__board {
    height: auto; }

  .storyboard-viewer .storyboard-header .title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: auto;
    display: inline-block;
    font-size: 22px; }

  .info-bar {
    right: 88px;
    font-size: 12px; }

  .viewer__board .storyboard-page-nav {
    left: 55px; }

  .chart-panel.sb-headline {
    flex-basis: initial;
    height: 150px; }
  .chart-panel.sb-visual {
    flex-basis: initial;
    height: 350px !important; }
  .chart-panel.sb-table {
    flex-basis: initial;
    height: 250px; }

  .editor__footer, .viewer__footer, .preview__footer {
    position: relative; }

  .headline-value {
    font-size: 2.8em; }

  .headline-caption {
    font-size: 1.4em; } }
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1650px) {
  .form-horizontal .control-label {
    font-size: 12px; } }
/* Large Devices, Wide Screens */
/* Small Screen Height Fixes */
@media only screen and (max-height: 551px) {
  .storyboard {
    flex-wrap: nowrap; }
    .storyboard .flex-row {
      display: inline-block; }
    .storyboard .sb-table, .storyboard .sb-visual, .storyboard .storyboard-filter-block {
      height: 21vw;
      flex-basis: auto; }
    .storyboard .sb-visual.has-filters {
      height: 25vw; }
    .storyboard .storyboard-filter-block--lg {
      height: 25vw; }
    .storyboard .sb-table {
      height: 25vw; }
    .storyboard .storyboard-row--headline {
      height: auto; }
    .storyboard .sb-headline {
      height: 8vw; } }
/*************************************************************
 *
 * Login Page
 * 
*************************************************************/
.login-block, .onboarding-block {
  border-radius: 0;
  -ms-border-radius: .login-block, .onboarding-block radius;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  /* box-shadow: 0px 0px 6px #000; */
  border: 1px solid #eeeeee;
  box-shadow: 3px 3px 17px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
  display: inline-block;
  max-width: 450px;
  width: 100%;
  padding: 30px 45px;
  margin-bottom: 10px; }
  .login-block-container, .onboarding-block-container {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2; }
  .login-block--lg, .onboarding-block--lg {
    max-width: 1400px; }
  .login-block--fluid, .onboarding-block--fluid {
    max-width: 0px;
    width: 90%; }
  .login-block-branding, .onboarding-block-branding {
    display: inline-block;
    height: 175px;
    width: 235px;
    margin-bottom: 10px; }
  .login-block h1,
  .login-block h2,
  .login-block h3,
  .login-block h4,
  .login-block h5, .onboarding-block h1,
  .onboarding-block h2,
  .onboarding-block h3,
  .onboarding-block h4,
  .onboarding-block h5 {
    color: #707070;
    font-weight: 700; }
  .login-block h1, .onboarding-block h1 {
    margin-top: 35px;
    margin-bottom: 35px;
    font-size: 28px; }
  .login-block a, .onboarding-block a {
    font-weight: 500; }
  .modal .login-block, .modal .onboarding-block {
    background: rgba(255, 255, 255, 0.3);
    background: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.4) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.4) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear, 135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.4) 100%;
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* IE6-9 fallback on horizontal gradient */
    margin-top: 100%; }
  .login-block label, .onboarding-block label {
    color: #707070;
    font-weight: 500 !important; }
  .login-block #strength, .onboarding-block #strength {
    text-align: center;
    color: #707070; }
  .login-block .button-giant, .onboarding-block .button-giant {
    padding: 0; }
  .login-block .button.disabled, .login-block .button.is-disabled, .login-block .button:disabled, .onboarding-block .button.disabled, .onboarding-block .button.is-disabled, .onboarding-block .button:disabled {
    background: #d1d1d1 !important;
    border: #d1d1d1  !important;
    text-shadow: none !important;
    color: #8e8e8e !important; }
  .login-block .group-btn, .onboarding-block .group-btn {
    width: 100%; }
  .login-block .group-btn, .onboarding-block .group-btn {
    overflow: hidden; }
    .login-block .group-btn .button-giant, .onboarding-block .group-btn .button-giant {
      padding: 5px 15px;
      position: relative;
      display: block;
      margin: 0;
      background: #eee;
      text-align: left; }
    .login-block .group-btn h3, .login-block .group-btn h4, .login-block .group-btn p, .login-block .group-btn i, .onboarding-block .group-btn h3, .onboarding-block .group-btn h4, .onboarding-block .group-btn p, .onboarding-block .group-btn i {
      z-index: 2;
      position: relative; }
    .login-block .group-btn input + .group-btn__status, .onboarding-block .group-btn input + .group-btn__status {
      background: transparent;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      transition: all .4s ease-in; }
    .login-block .group-btn input:checked + .group-btn__status, .onboarding-block .group-btn input:checked + .group-btn__status {
      background: #fbfbfb;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1; }
  .login-block .group-btn--icon, .onboarding-block .group-btn--icon {
    font-size: 50px;
    display: block;
    height: auto;
    padding: 15px;
    width: 100%; }

.social-signon {
  text-align: center; }
  .social-signon li {
    display: inline-block;
    width: 30%;
    list-style: none; }

.jh-btn-social {
  border-radius: 200px; }

.login-block .button-block, .onboarding-block .button-block {
  line-height: 0em !important;
  font-size: 16px !important;
  font-weight: 700 !important; }

.login-block label, .onboarding-block label {
  color: #707070;
  font-weight: 500 !important; }
.login-block a, .onboarding-block a {
  font-weight: 500 !important; }

/** 
*
* New Editor Styles 
*
**/
.sidebar-label {
  color: #2e6a9e; }

/*************************************************************
*
* Storyboard Board Pages
*
*************************************************************/
.page-header {
  display: inline-block;
  float: left; }

.page-header.page-previous {
  position: relative;
  float: left;
  padding: 5px 30px;
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }

.page-header.page-next {
  position: relative;
  float: left;
  padding: 5px 30px;
  margin-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd; }

.page-header:hover {
  z-index: 3;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd; }

.page-header.add-link {
  background-color: #4AE2C1 !important;
  color: white;
  border: 1px solid #4AE2C1;
  position: relative;
  float: left;
  padding: 5px 10px; }

.page-header.page-nav-dropdown {
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  position: relative;
  float: left;
  padding: 5px 10px; }
  .page-header.page-nav-dropdown:hover, .page-header.page-nav-dropdown:focus, .page-header.page-nav-dropdown:active {
    z-index: 3;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd; }

.page-header.add-link:hover {
  background-color: #22d7af !important;
  border: 1px solid #22d7af; }

.storyboard-actions__navigation .page-header:last-of-type {
  border-radius: 0 5px 5px 0; }

#page-container {
  display: inline-block;
  float: left; }

#page-container .as-sortable-item,
#page-container .as-sortable-placeholder,
#page-container .page-title {
  display: inline-block;
  height: 32px;
  float: left;
  margin-top: -5px;
  text-align: center;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer; }

#page-container .as-sortable-item:first-of-type,
#page-container .as-sortable-placeholder:first-of-type,
#page-container .page-title:first-of-type {
  border-radius: 5px 0 0 5px; }

#page-container .as-sortable-item:hover,
#page-container .page-title:hover {
  z-index: 3;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd; }

#page-container .as-sortable-item.active,
#page-container .page-title.active,
#page-container .as-sortable-placeholder.active {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border: 1px solid #337ab7; }

#page-container .as-sortable-item.input-open {
  border: none; }

.page-title .delete-link {
  display: inline-block;
  margin-right: -1px;
  transform: translateY(-11px); }

.page-title .delete-link .delete-button {
  background-color: #2e6a9e !important;
  color: white;
  border: 1px solid #2e6a9e;
  margin-top: -6px;
  height: 32px;
  width: 32px;
  text-align: center;
  padding: 5px; }

.as-sortable-item .delete-link .delete-button:hover {
  background-color: #F95355 !important;
  border: 1px solid #F95355; }

#page-container .page-input .input-box {
  overflow: hidden; }

#page-container .page-input .input-box input {
  height: 32px;
  min-width: 100px; }

.page-title .as-sortable-item-handle,
.page-title .page-title-inner {
  display: inline-block;
  padding: 5px 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 140px;
  /* height: 1.2em; */
  white-space: nowrap; }

/*************************************************************
*
* Storyboard Action and Navigation
*
*************************************************************/
.storyboard-actions__pagination {
  padding: 0 30px; }
.page-storyboards-view .storyboard-actions__pagination {
  left: 0px; }
.storyboard-actions__navigation {
  position: relative;
  top: -30px;
  width: 100%; }
.storyboard-actions__title {
  color: #757575; }
  .storyboard-actions__title h2 {
    vertical-align: middle;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    margin: 0;
    max-width: 100%;
    width: auto;
    display: flex;
    flex-wrap: nowrap; }
  .storyboard-actions__title .editor__title {
    border-bottom: 2px dotted #AFD3EF !important; }

.freeform--editor-beta, .page-viz-edit {
  /*************************************************************
   *
   * Storyboard Editor, Viewer, Sidebar, and Footer Styles
   * 
  *************************************************************/
  /*************************************************************
   *
   * Freeform Layout Styles
   * 
  *************************************************************/
  /**.storyboard-global-options{
  
      button{
           font-size: 14px;
  
      }
  
  }**/
  /*************************************************************
  *
  * Visual Types
  *
  *************************************************************/
  /*************************************************************
  *
  * Sidebar Styles
  *
  *************************************************************/
  /*************************************************************
   *
   * Editor and Viewer Blocks
   * 
  *************************************************************/
  /*************************************************************
   *
   * Storyboard Flexbox Styles - Chart Panels
   * 
  *************************************************************/
  /**.insufficient .viz-inner-container.header .chart-adviser, .chart-panel.header .viz-container.insufficient, .chart-panel.filter-headerL .viz-container.insufficient {
    background: url("../images/icons/icon.headline.neutral.svg") no-repeat center;
    background-size: 80% 80% !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
  }
  .insufficient .viz-inner-container.sparkcolumn .chart-adviser, .chart-panel.sparkcolumn .viz-container.insufficient, .chart-panel.filter-sparkcolumn .viz-container.insufficient {
    background: url("../images/icons/icon.sparkcolumn.neutral.svg") no-repeat center;
    background-size: 80% 80% !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
  }
  .insufficient .viz-inner-container.sparkline .chart-adviser, .chart-panel.sparkline .viz-container.insufficient, .chart-panel.filter-sparkline .viz-container.insufficient {
    background: url("../images/icons/icon.sparkline.neutral.svg") no-repeat center;
    background-size: 80% 80% !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
  }
  .insufficient .viz-inner-container.trendheadline .chart-adviser, .chart-panel.trendheadline .viz-container.insufficient, .chart-panel.filter-trendheadline .viz-container.insufficient {
    background: url("../images/icons/icon.trendheadline.neutral.svg") no-repeat center;
    background-size: 80% 80% !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
  }**/
  /**.viz-container:hover, .viz-container:focus {
      outline: 1px solid $accent-color;
  }**/
  /*******************************
  *
  * Sidebar Option Container
  *
  *******************************/
  /*******************************
  *
  * Visual Action Bar
  * 
  *******************************/ }
  .freeform--editor-beta .old-storyboard-element, .page-viz-edit .old-storyboard-element {
    display: none; }
  .freeform--editor-beta .main-content, .page-viz-edit .main-content {
    /* background: $background-grey; */
    background: #fff !important;
    height: calc(100vh - 60px);
    left: 0;
    right: 0px;
    top: 60px;
    position: absolute;
    overflow-y: auto; }
    .freeform--editor-beta .main-content__container, .page-viz-edit .main-content__container {
      display: flex;
      height: auto !important;
      min-height: calc(100%); }
    .freeform--editor-beta .main-content__content, .page-viz-edit .main-content__content {
      flex-grow: 1;
      position: relative;
      padding: 25px 0px !important; }
    .freeform--editor-beta .main-content__section-header, .page-viz-edit .main-content__section-header {
      padding: 20px 15px;
      background: #fff;
      font-family: "proxima-nova", sans-serif;
      /* font-weight: 500; */
      border-bottom: 4px solid #56CCCC;
      min-height: 80px !important;
      color: #114d72; }
      .freeform--editor-beta .main-content__section-header--with-tabs, .page-viz-edit .main-content__section-header--with-tabs {
        padding: 20px 15px 0px 15px !important; }
      .freeform--editor-beta .main-content__section-header .sub-title, .page-viz-edit .main-content__section-header .sub-title {
        padding-top: 10px;
        font-weight: normal;
        color: #666; }
    .freeform--editor-beta .main-content--collapsed, .page-viz-edit .main-content--collapsed {
      position: absolute;
      right: 0;
      margin: 0 !important;
      top: 60px;
      width: auto; }
  .freeform--editor-beta .filter-label, .page-viz-edit .filter-label {
    left: 15px;
    transform: none; }
    .freeform--editor-beta .filter-label--slider, .page-viz-edit .filter-label--slider {
      left: 50%;
      transform: translateX(-50%); }
  .freeform--editor-beta .button-dropdown, .page-viz-edit .button-dropdown {
    position: relative; }
  .freeform--editor-beta .button-dropdown, .freeform--editor-beta .button-dropdown div, .page-viz-edit .button-dropdown, .page-viz-edit .button-dropdown div {
    font-size: 18px;
    font-family: "proxima-nova", sans-serif !important;
    color: #929292;
    vertical-align: bottom;
    border: none;
    box-shadow: none;
    background: transparent;
    display: inline-block;
    width: auto;
    position: relative; }
    .freeform--editor-beta .button-dropdown span, .freeform--editor-beta .button-dropdown div span, .page-viz-edit .button-dropdown span, .page-viz-edit .button-dropdown div span {
      border: none !important;
      box-shadow: none !important;
      font-size: 18px;
      color: #929292;
      font-weight: 500;
      background: transparent;
      width: auto !important;
      height: auto !important;
      padding-right: 10px;
      padding-top: 0;
      padding-bottom: 0; }
    .freeform--editor-beta .button-dropdown .usergroup-view-select, .freeform--editor-beta .button-dropdown div .usergroup-view-select, .page-viz-edit .button-dropdown .usergroup-view-select, .page-viz-edit .button-dropdown div .usergroup-view-select {
      border: none;
      box-shadow: none;
      border-radius: 5px;
      cursor: pointer;
      width: auto;
      height: auto;
      padding: 0;
      color: #929292;
      appearance: menulist; }
    .freeform--editor-beta .button-dropdown:hover, .freeform--editor-beta .button-dropdown div:hover, .page-viz-edit .button-dropdown:hover, .page-viz-edit .button-dropdown div:hover {
      color: #929292; }
  .freeform--editor-beta .dropdown-menu .dropdown-header, .page-viz-edit .dropdown-menu .dropdown-header {
    color: #AEAEAE;
    font-weight: 700;
    padding: 0px 10px 0px 10px; }
  .freeform--editor-beta .dropdown-menu .dropdown-item, .page-viz-edit .dropdown-menu .dropdown-item {
    color: #757575;
    font-weight: 500;
    padding: 0px 10px 0px 10px;
    border-top: 1px solid #D1D1D1; }
  .freeform--editor-beta .menu-tabs, .page-viz-edit .menu-tabs {
    display: flex; }
    .freeform--editor-beta .menu-tabs .nav, .page-viz-edit .menu-tabs .nav {
      border-bottom: 0 solid transparent; }
    .freeform--editor-beta .menu-tabs .nav-link, .page-viz-edit .menu-tabs .nav-link {
      font-weight: 500;
      padding: 10px 15px; }
    .freeform--editor-beta .menu-tabs .nav > li > a .mark, .page-viz-edit .menu-tabs .nav > li > a .mark {
      color: #114d72;
      background: #114d72;
      color: #fff; }
    .freeform--editor-beta .menu-tabs .nav > li > a:hover, .freeform--editor-beta .menu-tabs .nav > li > a:focus, .page-viz-edit .menu-tabs .nav > li > a:hover, .page-viz-edit .menu-tabs .nav > li > a:focus {
      background-color: transparent;
      color: #56CCCC;
      border-top: 0 solid transparent !important;
      border-left: 0 solid transparent !important;
      border-right: 0 solid transparent !important;
      border-bottom: 0 solid transparent !important; }
      .freeform--editor-beta .menu-tabs .nav > li > a:hover .mark, .freeform--editor-beta .menu-tabs .nav > li > a:focus .mark, .page-viz-edit .menu-tabs .nav > li > a:hover .mark, .page-viz-edit .menu-tabs .nav > li > a:focus .mark {
        background: #56CCCC;
        color: #fff; }
    .freeform--editor-beta .menu-tabs .nav-pills > li.active > a, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:hover, .freeform--editor-beta .menu-tabs .nav-pills > li.active, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:focus, .page-viz-edit .menu-tabs .nav-pills > li.active > a, .page-viz-edit .menu-tabs .nav-pills > li.active > a:hover, .page-viz-edit .menu-tabs .nav-pills > li.active, .page-viz-edit .menu-tabs .nav-pills > li.active > a:focus {
      background-color: transparent;
      color: #56CCCC;
      border-top: 0 solid transparent !important;
      border-left: 0 solid transparent !important;
      border-right: 0 solid transparent !important;
      border-bottom: 0 solid transparent !important; }
      .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:before, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:hover:before, .freeform--editor-beta .menu-tabs .nav-pills > li.active:before, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:focus:before, .page-viz-edit .menu-tabs .nav-pills > li.active > a:before, .page-viz-edit .menu-tabs .nav-pills > li.active > a:hover:before, .page-viz-edit .menu-tabs .nav-pills > li.active:before, .page-viz-edit .menu-tabs .nav-pills > li.active > a:focus:before {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        background: #56CCCC;
        width: 100%;
        height: 3px;
        opacity: 1; }
      .freeform--editor-beta .menu-tabs .nav-pills > li.active > a .mark, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:hover .mark, .freeform--editor-beta .menu-tabs .nav-pills > li.active .mark, .freeform--editor-beta .menu-tabs .nav-pills > li.active > a:focus .mark, .page-viz-edit .menu-tabs .nav-pills > li.active > a .mark, .page-viz-edit .menu-tabs .nav-pills > li.active > a:hover .mark, .page-viz-edit .menu-tabs .nav-pills > li.active .mark, .page-viz-edit .menu-tabs .nav-pills > li.active > a:focus .mark {
        background: #56CCCC;
        color: #fff; }
  .freeform--editor-beta .tab-content, .page-viz-edit .tab-content {
    position: absolute;
    left: 0px;
    right: 0;
    padding-right: 10px;
    bottom: 30px;
    top: 105px;
    overflow: visible;
    padding-left: 10px;
    padding-bottom: 40px; }
    .freeform--editor-beta .tab-content #customize.active, .page-viz-edit .tab-content #customize.active {
      position: relative;
      margin-left: -10px;
      margin-right: -10px;
      padding-bottom: 150px; }
  .freeform--editor-beta .storyboard-actions__pagination, .page-viz-edit .storyboard-actions__pagination {
    top: 110px !important;
    z-index: 502 !important; }
  .freeform--editor-beta .storyboard-page-navigation, .page-viz-edit .storyboard-page-navigation {
    text-align: center; }
  .freeform--editor-beta #page-container, .page-viz-edit #page-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    float: none !important;
    height: 100%;
    display: inline-block;
    float: left; }
  .freeform--editor-beta #page-container .as-sortable-item,
  .freeform--editor-beta #page-container .as-sortable-placeholder,
  .freeform--editor-beta #page-container .page-title, .page-viz-edit #page-container .as-sortable-item,
  .page-viz-edit #page-container .as-sortable-placeholder,
  .page-viz-edit #page-container .page-title {
    display: inline-block;
    height: 32px;
    float: left;
    margin-top: initial;
    text-align: center;
    line-height: 1.42857143;
    color: #114D72;
    text-decoration: none;
    background-color: transparent;
    border: none;
    font-size: 16px;
    min-width: 130px;
    max-width: 250px;
    flex-grow: 1;
    position: relative;
    margin: 0 4px; }
    .freeform--editor-beta #page-container .as-sortable-item:before,
    .freeform--editor-beta #page-container .as-sortable-placeholder:before,
    .freeform--editor-beta #page-container .page-title:before, .page-viz-edit #page-container .as-sortable-item:before,
    .page-viz-edit #page-container .as-sortable-placeholder:before,
    .page-viz-edit #page-container .page-title:before {
      content: '';
      background: #56CCCC;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 0px;
      transition: all .4s ease-out; }
  .freeform--editor-beta #page-container .as-sortable-item:first-of-type,
  .freeform--editor-beta #page-container .as-sortable-placeholder:first-of-type,
  .freeform--editor-beta #page-container .page-title:first-of-type, .page-viz-edit #page-container .as-sortable-item:first-of-type,
  .page-viz-edit #page-container .as-sortable-placeholder:first-of-type,
  .page-viz-edit #page-container .page-title:first-of-type {
    border: 0; }
  .freeform--editor-beta #page-container .as-sortable-item:hover:before,
  .freeform--editor-beta #page-container .page-title:hover:before, .page-viz-edit #page-container .as-sortable-item:hover:before,
  .page-viz-edit #page-container .page-title:hover:before {
    content: '';
    background: #56CCCC;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px; }
  .freeform--editor-beta #page-container .as-sortable-item.active,
  .freeform--editor-beta #page-container .page-title.active,
  .freeform--editor-beta #page-container .as-sortable-placeholder.active, .page-viz-edit #page-container .as-sortable-item.active,
  .page-viz-edit #page-container .page-title.active,
  .page-viz-edit #page-container .as-sortable-placeholder.active {
    z-index: 2;
    color: #56CCCC;
    cursor: default;
    background-color: transparent;
    border: none;
    position: relative; }
    .freeform--editor-beta #page-container .as-sortable-item.active:before,
    .freeform--editor-beta #page-container .page-title.active:before,
    .freeform--editor-beta #page-container .as-sortable-placeholder.active:before, .page-viz-edit #page-container .as-sortable-item.active:before,
    .page-viz-edit #page-container .page-title.active:before,
    .page-viz-edit #page-container .as-sortable-placeholder.active:before {
      content: '';
      background: #56CCCC;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px; }
  .freeform--editor-beta #page-container .as-sortable-item.input-open, .page-viz-edit #page-container .as-sortable-item.input-open {
    border: none; }
  .freeform--editor-beta .storyboard-page-navigation .page-tabs-container, .page-viz-edit .storyboard-page-navigation .page-tabs-container {
    text-align: center;
    display: flex;
    justify-content: center; }
  .freeform--editor-beta .page-tabs-container, .freeform--editor-beta .page-title, .freeform--editor-beta .page-title .as-sortable-item-handle, .freeform--editor-beta .page-title .page-title-inner, .page-viz-edit .page-tabs-container, .page-viz-edit .page-title, .page-viz-edit .page-title .as-sortable-item-handle, .page-viz-edit .page-title .page-title-inner {
    height: 50px !important;
    padding: 0; }
  .freeform--editor-beta .page-title .delete-link, .page-viz-edit .page-title .delete-link {
    display: inline-block;
    margin-right: -1px;
    transform: translateY(-20px); }
  .freeform--editor-beta .page-title .delete-link .delete-button, .page-viz-edit .page-title .delete-link .delete-button {
    background-color: transparent !important;
    color: #F95355;
    border: none;
    margin-top: -6px;
    height: 32px;
    width: 32px;
    text-align: center;
    padding: 5px; }
  .freeform--editor-beta .as-sortable-item .delete-link .delete-button:hover, .page-viz-edit .as-sortable-item .delete-link .delete-button:hover {
    background-color: transparent !important;
    border: none; }
  .freeform--editor-beta #page-container .page-input .input-box, .page-viz-edit #page-container .page-input .input-box {
    overflow: hidden; }
  .freeform--editor-beta #page-container .page-input .input-box input, .page-viz-edit #page-container .page-input .input-box input {
    height: 32px;
    min-width: 100px; }
  .freeform--editor-beta .page-title .as-sortable-item-handle,
  .freeform--editor-beta .page-title .page-title-inner, .page-viz-edit .page-title .as-sortable-item-handle,
  .page-viz-edit .page-title .page-title-inner {
    display: inline-block;
    padding: 15px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 140px;
    /* height: 1.2em; */
    white-space: nowrap;
    font-size: 16px !important;
    position: relative; }
  .freeform--editor-beta .storyboard-actions__pagination .add-link, .page-viz-edit .storyboard-actions__pagination .add-link {
    top: -18px;
    position: relative;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-radius: 100% !important; }
  .freeform--editor-beta .grid-stack-item, .page-viz-edit .grid-stack-item {
    z-index: 1; }
    .freeform--editor-beta .grid-stack-item:hover, .freeform--editor-beta .grid-stack-item:focus, .freeform--editor-beta .grid-stack-item:focus-within, .page-viz-edit .grid-stack-item:hover, .page-viz-edit .grid-stack-item:focus, .page-viz-edit .grid-stack-item:focus-within {
      z-index: 10; }
    .freeform--editor-beta .grid-stack-item.active, .freeform--editor-beta .grid-stack-item.active:hover, .freeform--editor-beta .grid-stack-item.active:focus, .freeform--editor-beta .grid-stack-item.active:focus-within, .page-viz-edit .grid-stack-item.active, .page-viz-edit .grid-stack-item.active:hover, .page-viz-edit .grid-stack-item.active:focus, .page-viz-edit .grid-stack-item.active:focus-within {
      z-index: 10001; }
  .freeform--editor-beta .grid-stack-item-content--sidebar, .page-viz-edit .grid-stack-item-content--sidebar {
    text-align: center; }
    .freeform--editor-beta .grid-stack-item-content--sidebar .visual-tile, .page-viz-edit .grid-stack-item-content--sidebar .visual-tile {
      margin: 2rem 0 0; }
    .freeform--editor-beta .grid-stack-item-content--sidebar .visual-tile, .freeform--editor-beta .grid-stack-item-content--sidebar .visual-tile__inner, .freeform--editor-beta .grid-stack-item-content--sidebar .animation-container, .freeform--editor-beta .grid-stack-item-content--sidebar .visual-tile__inner--container, .page-viz-edit .grid-stack-item-content--sidebar .visual-tile, .page-viz-edit .grid-stack-item-content--sidebar .visual-tile__inner, .page-viz-edit .grid-stack-item-content--sidebar .animation-container, .page-viz-edit .grid-stack-item-content--sidebar .visual-tile__inner--container {
      height: 80px !important; }
  .freeform--editor-beta .gray-out, .freeform--editor-beta .storyboard-editor.open .storyboard-actions__pagination, .page-viz-edit .gray-out, .page-viz-edit .storyboard-editor.open .storyboard-actions__pagination {
    pointer-events: none;
    opacity: 1; }
    .freeform--editor-beta .gray-out:before, .freeform--editor-beta .storyboard-editor.open .storyboard-actions__pagination:before, .page-viz-edit .gray-out:before, .page-viz-edit .storyboard-editor.open .storyboard-actions__pagination:before {
      content: '';
      height: 100%;
      background: #fff;
      position: absolute;
      top: 0;
      left: 60px;
      opacity: 0.4;
      z-index: 300; }
  .freeform--editor-beta .storyboard-editor.open .storyboard-actions__pagination .page-title, .freeform--editor-beta .storyboard-editor.open .storyboard-actions__pagination .page-header, .freeform--editor-beta .storyboard-editor.open .storyboard-actions__pagination .button, .page-viz-edit .storyboard-editor.open .storyboard-actions__pagination .page-title, .page-viz-edit .storyboard-editor.open .storyboard-actions__pagination .page-header, .page-viz-edit .storyboard-editor.open .storyboard-actions__pagination .button {
    pointer-events: none; }
  .freeform--editor-beta .storyboard-actions__pagination, .page-viz-edit .storyboard-actions__pagination {
    z-index: 10000; }
  .freeform--editor-beta .option-action .button-borderless.button-inverse, .page-viz-edit .option-action .button-borderless.button-inverse {
    color: #3A84C5; }
  .freeform--editor-beta .pagination, .page-viz-edit .pagination {
    margin: 0px !important;
    transform: translateY(25%); }
    .freeform--editor-beta .pagination li > a.delete-link, .page-viz-edit .pagination li > a.delete-link {
      padding-left: 10px;
      padding-right: 10px;
      background-color: #3A84C5 !important;
      color: white;
      border: 1px solid #3A84C5; }
    .freeform--editor-beta .pagination li > a.delete-link:hover, .page-viz-edit .pagination li > a.delete-link:hover {
      background-color: #F95355 !important;
      border: 1px solid #F95355; }
    .freeform--editor-beta .pagination li > a.add-link, .page-viz-edit .pagination li > a.add-link {
      padding-left: 15px;
      padding-right: 15px;
      background-color: #4AE2C1 !important;
      color: white;
      border: 1px solid #4AE2C1; }
  .freeform--editor-beta .pagination li > a.add-link:hover, .page-viz-edit .pagination li > a.add-link:hover {
    background-color: #22d7af !important;
    border: 1px solid #22d7af; }
  .freeform--editor-beta .pagination > li > a, .freeform--editor-beta .pagination > li > span, .page-viz-edit .pagination > li > a, .page-viz-edit .pagination > li > span {
    padding: 5px 30px; }
  .freeform--editor-beta .storyboard, .page-viz-edit .storyboard {
    height: 100%;
    display: block;
    position: relative; }
    .freeform--editor-beta .storyboard-page-body, .page-viz-edit .storyboard-page-body {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap; }
    .freeform--editor-beta .storyboard__title, .page-viz-edit .storyboard__title {
      border-bottom: dotted 1px #ccc;
      display: inline-block; }
    .freeform--editor-beta .storyboard-sidebar, .page-viz-edit .storyboard-sidebar {
      background-color: #191919;
      bottom: 0;
      box-sizing: border-box;
      color: #fff;
      left: 0;
      overflow-x: hidden;
      overflow-y: auto;
      padding: 0px 15px 20px;
      position: fixed;
      top: 60px;
      width: 60px;
      z-index: 100001;
      border-right: 1px solid #e6e6e6;
      /* box-shadow: 0 4px 8px 0 rgba(244, 244, 244, 0.09), 0 0px 35px 0 rgba(148, 146, 146, 0.34) */ }
      .freeform--editor-beta .storyboard-sidebar h1,
      .freeform--editor-beta .storyboard-sidebar h2,
      .freeform--editor-beta .storyboard-sidebar h3,
      .freeform--editor-beta .storyboard-sidebar h4,
      .freeform--editor-beta .storyboard-sidebar h5, .page-viz-edit .storyboard-sidebar h1,
      .page-viz-edit .storyboard-sidebar h2,
      .page-viz-edit .storyboard-sidebar h3,
      .page-viz-edit .storyboard-sidebar h4,
      .page-viz-edit .storyboard-sidebar h5 {
        margin: 0px; }
      .freeform--editor-beta .storyboard-sidebar.edit, .page-viz-edit .storyboard-sidebar.edit {
        overflow-y: initial;
        overflow-x: hidden; }
      .freeform--editor-beta .storyboard-sidebar.edit .sidebar__title, .page-viz-edit .storyboard-sidebar.edit .sidebar__title {
        display: none; }
    .freeform--editor-beta .storyboard-editor, .page-viz-edit .storyboard-editor {
      position: absolute;
      padding: 0 0 0px;
      background: #F1F1F1;
      left: 60px;
      margin-top: 160px;
      bottom: 0;
      right: 0;
      padding-right: 0;
      transition: all .4s ease-in-out;
      z-index: 3000;
      top: 0; }
    .freeform--editor-beta .storyboard-header, .page-viz-edit .storyboard-header {
      min-height: 0px;
      padding: 5px 10px;
      background: transparent;
      position: fixed; }
      .freeform--editor-beta .storyboard-header h2, .page-viz-edit .storyboard-header h2 {
        padding-bottom: 6px;
        /* border-bottom: 1px solid $light-grey; */ }
        .freeform--editor-beta .storyboard-header h2 #title, .page-viz-edit .storyboard-header h2 #title {
          color: #3A84C5;
          font-size: 32px; }
        .freeform--editor-beta .storyboard-header h2 #sub-title, .page-viz-edit .storyboard-header h2 #sub-title {
          color: #3A84C5;
          font-size: 25px;
          font-weight: 400;
          text-transform: capitalize;
          text-align: right; }
      .freeform--editor-beta .storyboard-header__description, .page-viz-edit .storyboard-header__description {
        display: block;
        font-size: 13px;
        position: absolute;
        top: 84px;
        /* left: 20px; */
        font-style: italic; }
      .freeform--editor-beta .storyboard-header__follow, .page-viz-edit .storyboard-header__follow {
        display: inline-block;
        color: #dcdcdc;
        font-weight: 300; }
        .freeform--editor-beta .storyboard-header__follow .button, .page-viz-edit .storyboard-header__follow .button {
          margin-bottom: 5px; }
    .freeform--editor-beta .storyboard-actions, .page-viz-edit .storyboard-actions {
      width: 100%;
      background: #fff;
      border-bottom: 1px solid #e6e6e6;
      position: fixed;
      top: 0px;
      left: 0px;
      z-index: 30000;
      padding: 7px 0px;
      height: 60px; }
      .freeform--editor-beta .storyboard-actions.editing, .page-viz-edit .storyboard-actions.editing {
        background: #2e6a9e; }
        .freeform--editor-beta .storyboard-actions.editing .btn-separator, .page-viz-edit .storyboard-actions.editing .btn-separator {
          background: #3A84C5; }
        .freeform--editor-beta .storyboard-actions.editing .button-green, .page-viz-edit .storyboard-actions.editing .button-green {
          color: #00ffff; }
        .freeform--editor-beta .storyboard-actions.editing .storyboard-usergroup-select, .page-viz-edit .storyboard-actions.editing .storyboard-usergroup-select {
          color: white; }
          .freeform--editor-beta .storyboard-actions.editing .storyboard-usergroup-select .usergroup-view-select, .page-viz-edit .storyboard-actions.editing .storyboard-usergroup-select .usergroup-view-select {
            background: #fafafa; }
      .freeform--editor-beta .storyboard-actions.shadow, .page-viz-edit .storyboard-actions.shadow {
        box-shadow: 0 4px 8px 0 rgba(244, 244, 244, 0.09), 0 0px 35px 0 rgba(148, 146, 146, 0.34); }
      .freeform--editor-beta .storyboard-actions__pagination, .freeform--editor-beta .storyboard-actions__main-title, .page-viz-edit .storyboard-actions__pagination, .page-viz-edit .storyboard-actions__main-title {
        height: 50px;
        background: #fff;
        border-bottom: 1px solid #e6e6e6;
        top: 60px;
        left: 60px;
        right: 0;
        position: fixed;
        z-index: 100;
        box-shadow: 0 4px 8px 0 rgba(244, 244, 244, 0.09), 0 0px 35px 0 rgba(148, 146, 146, 0.34); }
        .freeform--editor-beta .storyboard-actions__pagination.presentation, .freeform--editor-beta .storyboard-actions__main-title.presentation, .page-viz-edit .storyboard-actions__pagination.presentation, .page-viz-edit .storyboard-actions__main-title.presentation {
          display: none; }
        .freeform--editor-beta .storyboard-actions__pagination.editing, .freeform--editor-beta .storyboard-actions__main-title.editing, .page-viz-edit .storyboard-actions__pagination.editing, .page-viz-edit .storyboard-actions__main-title.editing {
          background: #191919; }
    .freeform--editor-beta .storyboard-viewer, .page-viz-edit .storyboard-viewer {
      position: absolute;
      padding: 0 10px 10px;
      background: #F1F1F1;
      left: 0;
      top: 110px;
      bottom: 0;
      right: 0;
      z-index: 300; }
    .freeform--editor-beta .storyboard-viewer.onepage, .page-viz-edit .storyboard-viewer.onepage {
      position: absolute;
      padding: 0 10px 10px;
      /* background: transparent; */
      left: 0;
      top: 60px;
      bottom: 0;
      right: 0; }
    .freeform--editor-beta .storyboard-viewer.presentation, .page-viz-edit .storyboard-viewer.presentation {
      position: absolute;
      top: 60px;
      /*         bottom: 58px;
              right: 0px; */
      left: 0; }
      .freeform--editor-beta .storyboard-viewer.presentation.one-page, .page-viz-edit .storyboard-viewer.presentation.one-page {
        top: 0px; }
    .freeform--editor-beta .storyboard-usergroup-select, .page-viz-edit .storyboard-usergroup-select {
      position: relative;
      z-index: 100;
      display: inline-block;
      padding-left: 15px !important;
      padding-right: 15px !important;
      align-self: center; }
      .freeform--editor-beta .storyboard-usergroup-select--toggle, .page-viz-edit .storyboard-usergroup-select--toggle {
        font-weight: 700;
        color: #A4C839;
        border-bottom: 1px dotted #A4C839; }
      .freeform--editor-beta .storyboard-usergroup-select--mobile, .page-viz-edit .storyboard-usergroup-select--mobile {
        display: none; }
    .freeform--editor-beta .storyboard-usergroup-select select, .page-viz-edit .storyboard-usergroup-select select {
      height: 30px;
      padding: 5px 10px;
      width: 150px;
      display: inline-block; }
    .freeform--editor-beta .storyboard-nested, .page-viz-edit .storyboard-nested {
      /**.storyboard-header{
          display: none;
      }**/ }
    .freeform--editor-beta .storyboard-container, .page-viz-edit .storyboard-container {
      height: 100%;
      width: 100%;
      display: inline-block; }
    .freeform--editor-beta .storyboard-section, .page-viz-edit .storyboard-section {
      border-radius: 10px;
      -ms-border-radius: .freeform--editor-beta .storyboard-section, .page-viz-edit .storyboard-section radius;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      display: flex;
      flex-grow: 1;
      flex-shrink: 0;
      justify-content: flex-start;
      padding: 5px 5px; }
    .freeform--editor-beta .storyboard-row, .page-viz-edit .storyboard-row {
      flex-direction: row;
      box-sizing: border-box; }
      .freeform--editor-beta .storyboard-row--2x, .page-viz-edit .storyboard-row--2x {
        flex-direction: row; }
      .freeform--editor-beta .storyboard-row--3x, .page-viz-edit .storyboard-row--3x {
        flex-direction: row; }
      .freeform--editor-beta .storyboard-row--headline, .page-viz-edit .storyboard-row--headline {
        height: 20%;
        width: 100%;
        flex-grow: 0; }
    .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-row, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-row, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-row, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-row {
      flex-direction: row;
      box-sizing: border-box; }
      .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-row--2x, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-row--2x, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-row--2x, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-row--2x {
        flex-direction: row; }
      .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-row--3x, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-row--3x, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-row--3x, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-row--3x {
        flex-direction: row; }
    .freeform--editor-beta .storyboard-filter-row, .page-viz-edit .storyboard-filter-row {
      height: 16.66%;
      height: calc(80px);
      flex-direction: row;
      box-sizing: border-box;
      flex-grow: 0; }
    .freeform--editor-beta .storyboard-filter-column, .page-viz-edit .storyboard-filter-column {
      height: 37.50%;
      flex-direction: column;
      box-sizing: border-box; }
      .freeform--editor-beta .storyboard-filter-column--2x, .page-viz-edit .storyboard-filter-column--2x {
        height: 74.99%;
        flex-direction: column; }
      .freeform--editor-beta .storyboard-filter-column--3x, .page-viz-edit .storyboard-filter-column--3x {
        height: 99.99%;
        flex-direction: column; }
    .freeform--editor-beta .storyboard-filter-block, .page-viz-edit .storyboard-filter-block {
      flex-direction: row;
      box-sizing: border-box;
      flex-wrap: wrap; }
      .freeform--editor-beta .storyboard-filter-block--2x, .page-viz-edit .storyboard-filter-block--2x {
        flex-direction: row;
        flex-wrap: wrap; }
      .freeform--editor-beta .storyboard-filter-block--3x, .page-viz-edit .storyboard-filter-block--3x {
        flex-direction: row;
        flex-wrap: wrap; }
    .freeform--editor-beta .storyboard-column, .page-viz-edit .storyboard-column {
      flex-direction: column; }
      .freeform--editor-beta .storyboard-column--15x, .page-viz-edit .storyboard-column--15x {
        flex-direction: column; }
      .freeform--editor-beta .storyboard-column--2x, .page-viz-edit .storyboard-column--2x {
        flex-direction: column; }
      .freeform--editor-beta .storyboard-column--3x, .page-viz-edit .storyboard-column--3x {
        flex-direction: column; }
    .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-column, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-column, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-column, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-column {
      flex-direction: column; }
      .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--15x, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--15x, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-column--15x, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-column--15x {
        flex-direction: column; }
      .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--2x, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--2x, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-column--2x, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-column--2x {
        flex-direction: column; }
      .freeform--editor-beta .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--3x, .page-viz-edit .storyboard.no-filter-section .freeform--editor-beta .storyboard-column--3x, .freeform--editor-beta .storyboard.no-filter-section .page-viz-edit .storyboard-column--3x, .page-viz-edit .storyboard.no-filter-section .page-viz-edit .storyboard-column--3x {
        flex-direction: column; }
    .freeform--editor-beta .storyboard-page-nav, .page-viz-edit .storyboard-page-nav {
      /*         float: right;
              position: absolute;
              top: -51px;
              left: 10px;
              z-index: 2; 
              border-radius: 20px;
              padding: 2px 0px 0px 0px; */ }
    .freeform--editor-beta .storyboard.scrollable, .page-viz-edit .storyboard.scrollable {
      flex-wrap: nowrap;
      /**.flex-row{
          display: inline-block;  
      }**/ }
      .freeform--editor-beta .storyboard.scrollable .sb-table, .freeform--editor-beta .storyboard.scrollable .sb-visual, .freeform--editor-beta .storyboard.scrollable .storyboard-filter-block, .page-viz-edit .storyboard.scrollable .sb-table, .page-viz-edit .storyboard.scrollable .sb-visual, .page-viz-edit .storyboard.scrollable .storyboard-filter-block {
        height: 21vw;
        flex-basis: auto; }
      .freeform--editor-beta .storyboard.scrollable .sb-visual.has-filters, .page-viz-edit .storyboard.scrollable .sb-visual.has-filters {
        height: 25vw; }
      .freeform--editor-beta .storyboard.scrollable .storyboard-filter-block--lg, .page-viz-edit .storyboard.scrollable .storyboard-filter-block--lg {
        height: 25vw; }
      .freeform--editor-beta .storyboard.scrollable .sb-table, .page-viz-edit .storyboard.scrollable .sb-table {
        height: 25vw; }
      .freeform--editor-beta .storyboard.scrollable .storyboard-row--headline, .page-viz-edit .storyboard.scrollable .storyboard-row--headline {
        height: auto; }
      .freeform--editor-beta .storyboard.scrollable .sb-headline, .page-viz-edit .storyboard.scrollable .sb-headline {
        height: 8vw; }
    .freeform--editor-beta .storyboard-layout-select, .page-viz-edit .storyboard-layout-select {
      background: rgba(253, 250, 250, 0.9);
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 500000;
      padding: 40px;
      color: #fff; }
      .freeform--editor-beta .storyboard-layout-select .layout-thumbnail--overlay:hover, .page-viz-edit .storyboard-layout-select .layout-thumbnail--overlay:hover {
        border-radius: 8px; }
      .freeform--editor-beta .storyboard-layout-select .layout-thumbnail--image, .page-viz-edit .storyboard-layout-select .layout-thumbnail--image {
        border-radius: 2px;
        transition: all 0.4s ease-in-out; }
        .freeform--editor-beta .storyboard-layout-select .layout-thumbnail--image.selected, .page-viz-edit .storyboard-layout-select .layout-thumbnail--image.selected {
          background-color: white; }
      .freeform--editor-beta .storyboard-layout-select .layout-thumbnail--image:hover, .page-viz-edit .storyboard-layout-select .layout-thumbnail--image:hover {
        background-color: white; }
    .freeform--editor-beta .storyboard--list, .page-viz-edit .storyboard--list {
      margin-left: -15px;
      margin-right: -15px;
      top: 140px;
      padding-top: 120px; }
      .freeform--editor-beta .storyboard--list .slick-slider .slick-arrow.slick-disabled, .page-viz-edit .storyboard--list .slick-slider .slick-arrow.slick-disabled {
        display: none; }
    .freeform--editor-beta .storyboard-slideout, .page-viz-edit .storyboard-slideout {
      position: fixed;
      top: 52px;
      width: 100%;
      height: 100%;
      background: #fff;
      left: 100%;
      padding: 20px;
      z-index: 3000;
      animation-name: none;
      animation-duration: .2s;
      animation-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
      animation-fill-mode: forwards;
      box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
      padding-top: 55px; }
      .freeform--editor-beta .storyboard-slideout__mask, .page-viz-edit .storyboard-slideout__mask {
        left: -10%;
        opacity: .4;
        z-index: 1;
        display: block;
        background-color: rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px; }
      .freeform--editor-beta .storyboard-slideout__header, .page-viz-edit .storyboard-slideout__header {
        padding: 10px 20px;
        font-size: 18px;
        font-weight: 500;
        display: block;
        color: #fff;
        background: #191919;
        top: 0px;
        position: absolute;
        left: 0px;
        right: 0px; }
  .freeform--editor-beta .storyboard.editing, .page-viz-edit .storyboard.editing {
    height: 100% !important; }
  .freeform--editor-beta .page-dataExport, .freeform--editor-beta .page-password, .freeform--editor-beta .page-settings, .page-viz-edit .page-dataExport, .page-viz-edit .page-password, .page-viz-edit .page-settings {
    margin-top: 60px; }
  .freeform--editor-beta .mobile-pages, .page-viz-edit .mobile-pages {
    font-size: 1.6rem;
    text-align: center;
    padding: 15px 0;
    margin-left: -25px;
    margin-right: -25px;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #7d7d7d; }
    .freeform--editor-beta .mobile-pages:last-of-type, .page-viz-edit .mobile-pages:last-of-type {
      border-bottom: 0px solid transparent; }
  .freeform--editor-beta .mobile-close, .page-viz-edit .mobile-close {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; }
  .freeform--editor-beta .pagination li > a.add-link:hover, .page-viz-edit .pagination li > a.add-link:hover {
    background-color: #22d7af !important;
    border: 1px solid #22d7af; }
  .freeform--editor-beta .pagination > li > a, .freeform--editor-beta .pagination > li > span, .page-viz-edit .pagination > li > a, .page-viz-edit .pagination > li > span {
    padding: 5px 30px; }
  .freeform--editor-beta .layout-freeform, .page-viz-edit .layout-freeform {
    margin-top: 40px;
    height: auto; }
  .freeform--editor-beta .layout-thumbnail--overlay, .page-viz-edit .layout-thumbnail--overlay {
    transition: all .4s ease-in;
    padding-left: 10px;
    padding-right: 5px; }
  .freeform--editor-beta .layout-thumbnail--image, .page-viz-edit .layout-thumbnail--image {
    width: auto;
    text-align: left;
    margin-bottom: 5px;
    margin-top: 10px; }
    .freeform--editor-beta .layout-thumbnail--image svg, .page-viz-edit .layout-thumbnail--image svg {
      max-height: 120px;
      max-width: 160px; }
    .freeform--editor-beta .layout-thumbnail--image:active, .page-viz-edit .layout-thumbnail--image:active {
      background-color: #f2f3f7;
      font-weight: bold; }
  .freeform--editor-beta .layout-thumbnail--title, .page-viz-edit .layout-thumbnail--title {
    color: #114d72;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    top: -5px;
    font-size: 12px; }
    .freeform--editor-beta .layout-thumbnail--title:active, .page-viz-edit .layout-thumbnail--title:active {
      font-weight: bold; }
  .freeform--editor-beta .storyboard-sidebar--2tier, .page-viz-edit .storyboard-sidebar--2tier {
    /* @extend %sidebar-gradient; */
    border-right: 1px solid #e6e6e6;
    background-color: #fafafa;
    bottom: 0;
    box-sizing: border-box;
    color: #747474;
    left: initial;
    right: -300px;
    overflow-x: visible;
    overflow-y: auto;
    padding: 0px 15px 20px;
    position: fixed;
    top: 60px;
    width: 300px;
    z-index: 100000;
    /* box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.59); */
    opacity: 0;
    animation-delay: .0s;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: chart-config-slidein;
    animation-timing-function: ease-in-out; }
    .freeform--editor-beta .storyboard-sidebar--2tier h1,
    .freeform--editor-beta .storyboard-sidebar--2tier h2,
    .freeform--editor-beta .storyboard-sidebar--2tier h3,
    .freeform--editor-beta .storyboard-sidebar--2tier h4,
    .freeform--editor-beta .storyboard-sidebar--2tier h5, .page-viz-edit .storyboard-sidebar--2tier h1,
    .page-viz-edit .storyboard-sidebar--2tier h2,
    .page-viz-edit .storyboard-sidebar--2tier h3,
    .page-viz-edit .storyboard-sidebar--2tier h4,
    .page-viz-edit .storyboard-sidebar--2tier h5 {
      margin: 0px; }
    .freeform--editor-beta .storyboard-sidebar--2tier.left-sidebar, .page-viz-edit .storyboard-sidebar--2tier.left-sidebar {
      left: -300px;
      right: initial;
      animation-name: slidein; }
      .freeform--editor-beta .storyboard-sidebar--2tier.left-sidebar.ng-animate.ng-hide, .page-viz-edit .storyboard-sidebar--2tier.left-sidebar.ng-animate.ng-hide {
        opacity: 1;
        animation-delay: .0s;
        animation-duration: .4s;
        animation-fill-mode: forwards;
        animation-name: menu-slideout;
        animation-timing-function: ease-in-out; }
    .freeform--editor-beta .storyboard-sidebar--2tier.edit, .page-viz-edit .storyboard-sidebar--2tier.edit {
      overflow-y: auto;
      overflow-x: initial;
      right: -300px;
      border-left: 1px solid #C1C1C1;
      animation-delay: .0s;
      animation-duration: .4s;
      animation-fill-mode: forwards;
      animation-name: chart-config-slidein;
      animation-timing-function: ease-in-out;
      padding-top: 20px; }
    .freeform--editor-beta .storyboard-sidebar--2tier.left-sidebar.edit, .page-viz-edit .storyboard-sidebar--2tier.left-sidebar.edit {
      left: -300px;
      right: initial;
      animation-name: slidein; }
    .freeform--editor-beta .storyboard-sidebar--2tier.datasets-sidebar, .page-viz-edit .storyboard-sidebar--2tier.datasets-sidebar {
      width: 95%; }
    .freeform--editor-beta .storyboard-sidebar--2tier.edit .sidebar__title, .page-viz-edit .storyboard-sidebar--2tier.edit .sidebar__title {
      display: none; }
    .freeform--editor-beta .storyboard-sidebar--2tier.ng-animate.ng-hide, .page-viz-edit .storyboard-sidebar--2tier.ng-animate.ng-hide {
      opacity: 0; }
    .freeform--editor-beta .storyboard-sidebar--2tier h4, .page-viz-edit .storyboard-sidebar--2tier h4 {
      font-weight: 500;
      color: #3A84C5;
      padding-bottom: 15px; }
  .freeform--editor-beta .visual-axislimit, .page-viz-edit .visual-axislimit {
    padding: 10px 0 0; }
    .freeform--editor-beta .visual-axislimit-input, .page-viz-edit .visual-axislimit-input {
      margin: 10px; }
    .freeform--editor-beta .visual-axislimit-input input, .page-viz-edit .visual-axislimit-input input {
      color: #000;
      width: 40%;
      border-radius: 4px;
      border: none;
      padding: 5px 5px;
      margin: 5px 5px; }
  .freeform--editor-beta .visual-gauge-range .minicolors-position-left .minicolors-panel, .page-viz-edit .visual-gauge-range .minicolors-position-left .minicolors-panel {
    left: 0;
    right: initial; }
  .freeform--editor-beta .minicolors-position-left .minicolors-panel, .page-viz-edit .minicolors-position-left .minicolors-panel {
    left: -5px; }
  .freeform--editor-beta .viz-toolbar .visual-axislimit, .page-viz-edit .viz-toolbar .visual-axislimit {
    padding: 10px 0 0; }
    .freeform--editor-beta .viz-toolbar .visual-axislimit-input, .page-viz-edit .viz-toolbar .visual-axislimit-input {
      margin: 0px;
      float: right;
      display: inline-block; }
    .freeform--editor-beta .viz-toolbar .visual-axislimit-input input, .page-viz-edit .viz-toolbar .visual-axislimit-input input {
      color: #000;
      padding-left: 2px;
      padding-right: 2px;
      width: initial; }
  .freeform--editor-beta .sb-visual__option-menu, .page-viz-edit .sb-visual__option-menu {
    position: absolute;
    z-index: 1;
    right: 2px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 10px;
    top: 2px;
    border-radius: 100%;
    color: #555555;
    outline: none;
    transition: all .4s ease-in; }
    .freeform--editor-beta .sb-visual__option-menu.active, .freeform--editor-beta .sb-visual__option-menu.active:hover, .page-viz-edit .sb-visual__option-menu.active, .page-viz-edit .sb-visual__option-menu.active:hover {
      background: #8E8E8E;
      color: #fff; }
    .storyboard.editing .freeform--editor-beta .sb-visual__option-menu, .storyboard.editing .page-viz-edit .sb-visual__option-menu {
      display: none !important; }
  .freeform--editor-beta .main-button-group, .page-viz-edit .main-button-group {
    position: absolute;
    top: 30%;
    left: 0px;
    width: 100%;
    padding: 0;
    margin: 0; }
    .freeform--editor-beta .main-button-group ul, .page-viz-edit .main-button-group ul {
      display: flex;
      flex-direction: row;
      padding: 0;
      margin: 0; }
      .freeform--editor-beta .main-button-group ul li, .page-viz-edit .main-button-group ul li {
        flex-grow: 1; }
    .freeform--editor-beta .main-button-group.shift-up, .page-viz-edit .main-button-group.shift-up {
      animation: shift-up 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
      top: 5%; }
  .freeform--editor-beta .sub-button-group ul, .page-viz-edit .sub-button-group ul {
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    margin: 0; }
    .freeform--editor-beta .sub-button-group ul > li, .page-viz-edit .sub-button-group ul > li {
      flex-grow: 1;
      flex-basis: 150px; }
  .freeform--editor-beta .table-view-all, .page-viz-edit .table-view-all {
    display: flex;
    border-top: 1px solid #ccc; }
    .freeform--editor-beta .table-view-all button, .page-viz-edit .table-view-all button {
      flex-grow: 1;
      border: 0px;
      background: transparent;
      padding: 5px 0;
      font-size: 11px;
      border-right: 1px solid #ccc; }
      .freeform--editor-beta .table-view-all button:last-of-type, .page-viz-edit .table-view-all button:last-of-type {
        border-right: none; }
  .freeform--editor-beta .label-filter, .page-viz-edit .label-filter {
    margin-left: 0px;
    padding-left: 0px;
    background: transparent;
    color: #fff;
    display: inline-block;
    text-align: left;
    vertical-align: middle !important; }
  .freeform--editor-beta .sidebar, .page-viz-edit .sidebar {
    /*****************************************************
    * Storyboard banner buttons
    *****************************************************/
    /*****************************************************
    * Chart buttons
    *****************************************************/ }
    .freeform--editor-beta .sidebar.left-sidebar .measure-list.simple,
    .freeform--editor-beta .sidebar.left-sidebar .field-list.simple,
    .freeform--editor-beta .sidebar.left-sidebar .filter-field-list.simple,
    .freeform--editor-beta .sidebar.left-sidebar .dataset-list.simple, .page-viz-edit .sidebar.left-sidebar .measure-list.simple,
    .page-viz-edit .sidebar.left-sidebar .field-list.simple,
    .page-viz-edit .sidebar.left-sidebar .filter-field-list.simple,
    .page-viz-edit .sidebar.left-sidebar .dataset-list.simple {
      animation-delay: 0s, .2s;
      animation-duration: .4s, .4s;
      animation-fill-mode: forwards,forwards;
      animation-name: slidein;
      animation-timing-function: ease-in-out,ease-in-out;
      left: -300px;
      right: initial; }
      .freeform--editor-beta .sidebar.left-sidebar .measure-list.simple.multi-tabs,
      .freeform--editor-beta .sidebar.left-sidebar .field-list.simple.multi-tabs,
      .freeform--editor-beta .sidebar.left-sidebar .filter-field-list.simple.multi-tabs,
      .freeform--editor-beta .sidebar.left-sidebar .dataset-list.simple.multi-tabs, .page-viz-edit .sidebar.left-sidebar .measure-list.simple.multi-tabs,
      .page-viz-edit .sidebar.left-sidebar .field-list.simple.multi-tabs,
      .page-viz-edit .sidebar.left-sidebar .filter-field-list.simple.multi-tabs,
      .page-viz-edit .sidebar.left-sidebar .dataset-list.simple.multi-tabs {
        bottom: 30px !important; }
    .freeform--editor-beta .sidebar.left-sidebar .dialog-search:after, .page-viz-edit .sidebar.left-sidebar .dialog-search:after {
      right: 50px; }
    .freeform--editor-beta .sidebar.left-sidebar .dialog-search input, .page-viz-edit .sidebar.left-sidebar .dialog-search input {
      float: left; }
    .freeform--editor-beta .sidebar.left-sidebar .dialog-search .dialog-container__close, .page-viz-edit .sidebar.left-sidebar .dialog-search .dialog-container__close {
      left: 220px; }
    .freeform--editor-beta .sidebar__header, .page-viz-edit .sidebar__header {
      border-bottom: 1px solid #E7E8E8; }
    .freeform--editor-beta .sidebar__footer-sticky, .page-viz-edit .sidebar__footer-sticky {
      position: sticky;
      bottom: -20px;
      padding-bottom: 15px;
      background: #FAFAFA; }
      .freeform--editor-beta .sidebar__footer-sticky hr, .page-viz-edit .sidebar__footer-sticky hr {
        margin-bottom: 15px; }
    .freeform--editor-beta .sidebar__section, .page-viz-edit .sidebar__section {
      padding: 15px 10px;
      border-top: 1px solid #E7E8E8;
      border-bottom: 1px solid #E7E8E8; }
    .freeform--editor-beta .sidebar__panel-tabs, .page-viz-edit .sidebar__panel-tabs {
      position: absolute;
      left: 15px;
      width: 100%;
      top: 154px;
      bottom: 0px; }
    .freeform--editor-beta .sidebar__close, .page-viz-edit .sidebar__close {
      color: #FF4351 !important;
      font-size: 16px; }
    .freeform--editor-beta .sidebar__filter-item-header, .page-viz-edit .sidebar__filter-item-header {
      background: #fff;
      position: relative;
      padding-top: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #E7E8E8;
      margin-bottom: 15px; }
    .freeform--editor-beta .sidebar__filter-item, .page-viz-edit .sidebar__filter-item {
      padding-top: 0px; }
    .freeform--editor-beta .sidebar__title, .page-viz-edit .sidebar__title {
      position: sticky;
      top: -20px;
      left: 0;
      background: #fafafa;
      z-index: 1000;
      padding: 10px 0 0; }
    .freeform--editor-beta .sidebar__option-headlines, .page-viz-edit .sidebar__option-headlines {
      -webkit-transition: all 0.2s ease-in;
      -moz-transition: all 0.2s ease-in;
      transition: all 0.2s ease-in;
      color: #3A84C5;
      margin-left: 0px !important;
      margin-right: 0px !important;
      text-align: left;
      font-size: 1.3em;
      font-weight: 500;
      position: relative;
      display: block;
      text-align: center;
      padding: 20px 15px; }
      .freeform--editor-beta .sidebar__option-headlines:hover, .page-viz-edit .sidebar__option-headlines:hover {
        background: rgba(58, 132, 197, 0.1) !important;
        color: #3A84C5; }
      .freeform--editor-beta .sidebar__option-headlines:focus, .freeform--editor-beta .sidebar__option-headlines:active, .page-viz-edit .sidebar__option-headlines:focus, .page-viz-edit .sidebar__option-headlines:active {
        color: #3A84C5;
        outline: none;
        background: rgba(58, 132, 197, 0.1) !important; }
    .freeform--editor-beta .sidebar .layout-thumbnail, .page-viz-edit .sidebar .layout-thumbnail {
      width: auto;
      height: 145px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
      margin: 10px;
      border: 2px solid rgba(58, 132, 197, 0.4);
      border-radius: 8px;
      padding: 20px;
      margin-top: 20px; }
      .freeform--editor-beta .sidebar .layout-thumbnail--title, .page-viz-edit .sidebar .layout-thumbnail--title {
        padding-top: 10px; }
      .freeform--editor-beta .sidebar .layout-thumbnail svg, .page-viz-edit .sidebar .layout-thumbnail svg {
        pointer-events: none; }
        .freeform--editor-beta .sidebar .layout-thumbnail svg rect, .page-viz-edit .sidebar .layout-thumbnail svg rect {
          fill: transparent;
          -webkit-transition: all 0.2s ease-in;
          -moz-transition: all 0.2s ease-in;
          transition: all 0.2s ease-in; }
      .freeform--editor-beta .sidebar .layout-thumbnail:hover, .page-viz-edit .sidebar .layout-thumbnail:hover {
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, 0.9); }
        .freeform--editor-beta .sidebar .layout-thumbnail:hover svg, .page-viz-edit .sidebar .layout-thumbnail:hover svg {
          pointer-events: none; }
          .freeform--editor-beta .sidebar .layout-thumbnail:hover svg rect, .page-viz-edit .sidebar .layout-thumbnail:hover svg rect {
            fill: #fff; }
    .freeform--editor-beta .sidebar .theme-thumbnail, .page-viz-edit .sidebar .theme-thumbnail {
      border-radius: 8px;
      overflow: hidden;
      width: 183px;
      height: 150px; }
    .freeform--editor-beta .sidebar .theme-item, .page-viz-edit .sidebar .theme-item {
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid #e6e6e6; }
      .freeform--editor-beta .sidebar .theme-item.selected, .page-viz-edit .sidebar .theme-item.selected {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.22); }
        .freeform--editor-beta .sidebar .theme-item.selected span, .page-viz-edit .sidebar .theme-item.selected span {
          font-weight: 500; }
      .freeform--editor-beta .sidebar .theme-item:last-of-type, .page-viz-edit .sidebar .theme-item:last-of-type {
        border-bottom: none; }
    .freeform--editor-beta .sidebar .font-item, .page-viz-edit .sidebar .font-item {
      padding: 10px 0;
      font-size: 1.2em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.22); }
      .freeform--editor-beta .sidebar .font-item.selected, .page-viz-edit .sidebar .font-item.selected {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.22); }
        .freeform--editor-beta .sidebar .font-item.selected span, .page-viz-edit .sidebar .font-item.selected span {
          font-weight: 500; }
      .freeform--editor-beta .sidebar .font-item:last-of-type, .page-viz-edit .sidebar .font-item:last-of-type {
        border-bottom: none; }
    .freeform--editor-beta .sidebar .palette-item, .page-viz-edit .sidebar .palette-item {
      padding: 15px 0;
      font-size: 1.2em;
      border-bottom: 1px solid #e6e6e6;
      transition: all .2 ease-in; }
      .freeform--editor-beta .sidebar .palette-item span, .page-viz-edit .sidebar .palette-item span {
        padding: 3px 10px;
        color: #747474 !important;
        display: inline-block;
        border-radius: 10px; }
      .freeform--editor-beta .sidebar .palette-item:last-of-type, .page-viz-edit .sidebar .palette-item:last-of-type {
        border-bottom: none; }
      .freeform--editor-beta .sidebar .palette-item.selected, .page-viz-edit .sidebar .palette-item.selected {
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.22); }
        .freeform--editor-beta .sidebar .palette-item.selected span, .page-viz-edit .sidebar .palette-item.selected span {
          font-weight: 500; }
      .freeform--editor-beta .sidebar .palette-item:hover .color-palette, .page-viz-edit .sidebar .palette-item:hover .color-palette {
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); }
    .freeform--editor-beta .sidebar .color-palette, .page-viz-edit .sidebar .color-palette {
      border-radius: 4px;
      height: 32px;
      list-style: none;
      overflow: hidden;
      padding: 0px;
      width: auto;
      display: inline-block;
      transition: all .2 ease-in; }
      .freeform--editor-beta .sidebar .color-palette--swatches, .page-viz-edit .sidebar .color-palette--swatches {
        width: 32px;
        height: 32px;
        display: inline-block; }
        .freeform--editor-beta .sidebar .color-palette--swatches:first-of-type, .page-viz-edit .sidebar .color-palette--swatches:first-of-type {
          border-radius: 4px 0px 0px 4px; }
        .freeform--editor-beta .sidebar .color-palette--swatches:last-of-type, .page-viz-edit .sidebar .color-palette--swatches:last-of-type {
          border-radius: 0px 4px 4px 0px; }
    .freeform--editor-beta .sidebar__current-layout, .page-viz-edit .sidebar__current-layout {
      background: rgba(225, 225, 225, 0.2);
      height: 150px;
      margin-left: -20px;
      margin-right: -20px;
      position: absolute;
      bottom: 0px;
      width: 100%;
      background-size: 50%;
      background-repeat: no-repeat;
      background-position: center 30%;
      font-family: "proxima-nova", sans-serif;
      font-weight: 500;
      animation-fill-mode: forwards; }
      .freeform--editor-beta .sidebar__current-layout span, .page-viz-edit .sidebar__current-layout span {
        position: absolute;
        bottom: 5px;
        left: 0;
        display: inline-block;
        width: 100%; }
    .freeform--editor-beta .sidebar a, .page-viz-edit .sidebar a {
      color: #747474; }
      .freeform--editor-beta .sidebar a:hover, .page-viz-edit .sidebar a:hover {
        text-decoration: none; }
    .freeform--editor-beta .sidebar .theme-thumbnail, .page-viz-edit .sidebar .theme-thumbnail {
      width: auto;
      height: 150px; }
    .freeform--editor-beta .sidebar .nav-stacked > li + li, .page-viz-edit .sidebar .nav-stacked > li + li {
      margin-top: 0; }
    .freeform--editor-beta .sidebar .nav-stacked > li > a, .freeform--editor-beta .sidebar .nav-stacked span li a, .page-viz-edit .sidebar .nav-stacked > li > a, .page-viz-edit .sidebar .nav-stacked span li a {
      border-bottom: 1px solid #eee; }
    .freeform--editor-beta .sidebar .dialog-container__close, .page-viz-edit .sidebar .dialog-container__close {
      animation-delay: .4s;
      animation-duration: .4s;
      animation-fill-mode: forwards;
      animation-name: fadein;
      animation-timing-function: ease-in-out,ease-in-out;
      display: inline-block;
      font-size: 18.2px;
      position: absolute;
      top: 14px;
      z-index: 100000;
      opacity: 0; }
    .freeform--editor-beta .sidebar .dialog-search, .page-viz-edit .sidebar .dialog-search {
      padding: 10px 5px;
      overflow: hidden;
      opacity: 0;
      animation-name: fadein;
      animation-duration: .4s;
      animation-fill-mode: forwards;
      animation-timing-function: ease-in-out,ease-in-out;
      animation-delay: .4s;
      font-size: 12px;
      /**position: absolute;
      height: 40px; 
      width: 98%;**/
      border-bottom: 1px solid rgba(255, 255, 255, 0.6);
      text-indent: 25px;
      z-index: 2; }
      .freeform--editor-beta .sidebar .dialog-search .dialog-search, .page-viz-edit .sidebar .dialog-search .dialog-search {
        border-bottom: none; }
      .freeform--editor-beta .sidebar .dialog-search:after, .page-viz-edit .sidebar .dialog-search:after {
        font-size: 15px;
        top: 14px;
        right: initial;
        left: 15px;
        text-indent: 0; }
      .freeform--editor-beta .sidebar .dialog-search input, .page-viz-edit .sidebar .dialog-search input {
        height: 30px;
        width: 100%;
        float: right; }
      .freeform--editor-beta .sidebar .dialog-search--full input, .page-viz-edit .sidebar .dialog-search--full input {
        width: 100% !important; }
      .freeform--editor-beta .sidebar .dialog-search--full:after, .page-viz-edit .sidebar .dialog-search--full:after {
        font-size: 18px;
        top: 11px;
        right: 20px; }
    .freeform--editor-beta .sidebar .dialog-group, .page-viz-edit .sidebar .dialog-group {
      margin-bottom: 10px;
      padding: 0 5px; }
    .freeform--editor-beta .sidebar .measure-list.simple,
    .freeform--editor-beta .sidebar .field-list.simple,
    .freeform--editor-beta .sidebar .filter-field-list.simple,
    .freeform--editor-beta .sidebar .dataset-list.simple, .page-viz-edit .sidebar .measure-list.simple,
    .page-viz-edit .sidebar .field-list.simple,
    .page-viz-edit .sidebar .filter-field-list.simple,
    .page-viz-edit .sidebar .dataset-list.simple {
      animation-delay: 0s, .2s;
      animation-duration: .4s, .4s;
      animation-fill-mode: forwards,forwards;
      animation-name: chart-config-slidein;
      animation-timing-function: ease-in-out,ease-in-out;
      /* @extend %sidebar-gradient;  */
      background-color: #fafafa;
      border-bottom-left-radius: 0px;
      border-radius: 0;
      border-top-left-radius: 0px;
      border: none;
      bottom: 0;
      box-shadow: 5px 0 10px rgba(0, 0, 0, 0.25);
      box-shadow: none;
      margin-top: 0;
      padding: 0;
      position: fixed;
      left: initial;
      top: 110px;
      width: 300px;
      z-index: 10000; }
      .freeform--editor-beta .sidebar .measure-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .freeform--editor-beta .sidebar .field-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .freeform--editor-beta .sidebar .filter-field-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .freeform--editor-beta .sidebar .dataset-list.simple .freeform--editor-beta .sidebar .dialog-container__close, .page-viz-edit .sidebar .measure-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .page-viz-edit .sidebar .field-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .page-viz-edit .sidebar .filter-field-list.simple .freeform--editor-beta .sidebar .dialog-container__close,
      .page-viz-edit .sidebar .dataset-list.simple .freeform--editor-beta .sidebar .dialog-container__close {
        left: 10px; }
    .freeform--editor-beta .sidebar .maincontent-options, .freeform--editor-beta .sidebar .dialog-multiselect, .page-viz-edit .sidebar .maincontent-options, .page-viz-edit .sidebar .dialog-multiselect {
      margin-top: 0;
      padding-bottom: 0;
      padding-top: 0;
      padding-left: 0px;
      padding-right: 0px;
      padding-bottom: 10px; }
      .freeform--editor-beta .sidebar .maincontent-options__title, .freeform--editor-beta .sidebar .dialog-multiselect__title, .page-viz-edit .sidebar .maincontent-options__title, .page-viz-edit .sidebar .dialog-multiselect__title {
        text-align: center;
        font-size: 18px;
        /* box-shadow: 0px 3px 2px #000;  */
        font-style: italic;
        color: #3A84C5; }
      .freeform--editor-beta .sidebar .maincontent-options__back, .freeform--editor-beta .sidebar .dialog-multiselect__back, .page-viz-edit .sidebar .maincontent-options__back, .page-viz-edit .sidebar .dialog-multiselect__back {
        background: transparent;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
      .freeform--editor-beta .sidebar .maincontent-options .ui-selected, .freeform--editor-beta .sidebar .dialog-multiselect .ui-selected, .page-viz-edit .sidebar .maincontent-options .ui-selected, .page-viz-edit .sidebar .dialog-multiselect .ui-selected {
        background: #56CCCC !important; }
        .freeform--editor-beta .sidebar .maincontent-options .ui-selected *, .freeform--editor-beta .sidebar .dialog-multiselect .ui-selected *, .page-viz-edit .sidebar .maincontent-options .ui-selected *, .page-viz-edit .sidebar .dialog-multiselect .ui-selected * {
          color: #fff !important; }
      .freeform--editor-beta .sidebar .maincontent-options li:nth-of-type(even), .freeform--editor-beta .sidebar .dialog-multiselect li:nth-of-type(even), .page-viz-edit .sidebar .maincontent-options li:nth-of-type(even), .page-viz-edit .sidebar .dialog-multiselect li:nth-of-type(even) {
        background: rgba(255, 255, 255, 0.2); }
      .freeform--editor-beta .sidebar .maincontent-options li, .freeform--editor-beta .sidebar .dialog-multiselect li, .page-viz-edit .sidebar .maincontent-options li, .page-viz-edit .sidebar .dialog-multiselect li {
        background: rgba(255, 255, 255, 0.4); }
      .freeform--editor-beta .sidebar .maincontent-options li a, .freeform--editor-beta .sidebar .dialog-multiselect li a, .page-viz-edit .sidebar .maincontent-options li a, .page-viz-edit .sidebar .dialog-multiselect li a {
        color: #fff;
        display: block;
        padding: 5px 10px; }
      .freeform--editor-beta .sidebar .maincontent-options .remove-field, .freeform--editor-beta .sidebar .dialog-multiselect .remove-field, .page-viz-edit .sidebar .maincontent-options .remove-field, .page-viz-edit .sidebar .dialog-multiselect .remove-field {
        float: right; }
    .freeform--editor-beta .sidebar .dialog-container-inner, .page-viz-edit .sidebar .dialog-container-inner {
      border-right: 1px solid #e6e6e6;
      background: #fafafa;
      /* border-bottom: #5C6163 1px solid; */
      /* border-radius: 0;
      border-top: #5C6163 1px solid;
      border: none; */
      bottom: 0;
      left: 0;
      opacity: 1;
      overflow-x: hidden;
      overflow-y: auto;
      right: 0;
      top: 0px; }
      .freeform--editor-beta .sidebar .dialog-container-inner li a, .page-viz-edit .sidebar .dialog-container-inner li a {
        color: #747474;
        font-size: 1.2em;
        padding-top: 5px;
        padding-bottom: 5px;
        display: inline-block; }
        .freeform--editor-beta .sidebar .dialog-container-inner li a svg.svg-inline--fa, .page-viz-edit .sidebar .dialog-container-inner li a svg.svg-inline--fa {
          display: inline-block;
          float: right; }
    .freeform--editor-beta .sidebar .dialog-selected, .page-viz-edit .sidebar .dialog-selected {
      animation-delay: .4s;
      animation-duration: .4s;
      animation-fill-mode: forwards;
      animation-name: selected-slidein;
      animation-timing-function: ease-in-out;
      background: #626365;
      box-shadow: 5px 0 10px rgba(0, 0, 0, 0.4);
      height: 100%;
      left: 300px;
      opacity: 0;
      padding-top: 0px;
      position: absolute;
      top: 0;
      width: 250px;
      z-index: 10001; }
    .freeform--editor-beta .sidebar .dialog-maincontent, .page-viz-edit .sidebar .dialog-maincontent {
      height: auto !important; }
    .freeform--editor-beta .sidebar .dataset-list.simple .dialog-search ~ .dialog-container-inner,
    .freeform--editor-beta .sidebar .measure-list.simple .dialog-search ~ .dialog-container-inner,
    .freeform--editor-beta .sidebar .field-list.simple .dialog-search ~ .dialog-container-inner, .page-viz-edit .sidebar .dataset-list.simple .dialog-search ~ .dialog-container-inner,
    .page-viz-edit .sidebar .measure-list.simple .dialog-search ~ .dialog-container-inner,
    .page-viz-edit .sidebar .field-list.simple .dialog-search ~ .dialog-container-inner {
      top: 56px; }
    .freeform--editor-beta .sidebar .form-vertical-container__group-title, .page-viz-edit .sidebar .form-vertical-container__group-title {
      padding-left: 0px;
      padding-bottom: 5px;
      border: none;
      color: #747474; }
    .freeform--editor-beta .sidebar .dialog-multiselect, .page-viz-edit .sidebar .dialog-multiselect {
      margin-bottom: 0px;
      padding-top: 0px; }
    .freeform--editor-beta .sidebar .dialog-pane-date, .page-viz-edit .sidebar .dialog-pane-date {
      border: none !important;
      height: auto; }
      .freeform--editor-beta .sidebar .dialog-pane-date li, .freeform--editor-beta .sidebar .dialog-pane-date li label, .page-viz-edit .sidebar .dialog-pane-date li, .page-viz-edit .sidebar .dialog-pane-date li label {
        color: #747474 !important;
        font-size: 1em !important;
        font-weight: 500 !important; }
      .freeform--editor-beta .sidebar .dialog-pane-date li:hover, .page-viz-edit .sidebar .dialog-pane-date li:hover {
        background-color: #5de3c8 !important; }
    .freeform--editor-beta .sidebar .aspect, .page-viz-edit .sidebar .aspect {
      margin: 0px;
      border-radius: 0;
      position: relative;
      border-radius: 0px; }
      .freeform--editor-beta .sidebar .aspect:hover, .page-viz-edit .sidebar .aspect:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }
      .freeform--editor-beta .sidebar .aspect:active, .freeform--editor-beta .sidebar .aspect:hover, .freeform--editor-beta .sidebar .aspect:focus, .page-viz-edit .sidebar .aspect:active, .page-viz-edit .sidebar .aspect:hover, .page-viz-edit .sidebar .aspect:focus {
        position: relative; }
      .freeform--editor-beta .sidebar .aspect--button, .page-viz-edit .sidebar .aspect--button {
        position: relative;
        z-index: 1; }
      .freeform--editor-beta .sidebar .aspect__header, .page-viz-edit .sidebar .aspect__header {
        margin-bottom: 5px; }
      .freeform--editor-beta .sidebar .aspect.bar-chart-active .aspect__selected, .page-viz-edit .sidebar .aspect.bar-chart-active .aspect__selected {
        background-image: url("../../assets/images/icons/icon.bar-charts-h.svg");
        background-repeat: repeat-x;
        background-position: 60px bottom;
        background-size: auto 25px;
        background-color: rgba(43, 88, 146, 0.78) !important; }
      .freeform--editor-beta .sidebar .aspect__config-menu, .page-viz-edit .sidebar .aspect__config-menu {
        display: inline-block;
        width: 100%;
        padding: 3px 0;
        background: #4ae2c1;
        margin-bottom: -5px;
        margin-top: 6px; }
        .freeform--editor-beta .sidebar .aspect__config-menu:hover, .page-viz-edit .sidebar .aspect__config-menu:hover {
          background: cyan; }
        .freeform--editor-beta .sidebar .aspect__config-menu--expressions, .page-viz-edit .sidebar .aspect__config-menu--expressions {
          display: inline-block;
          width: 100%;
          padding: 3px 0;
          margin-bottom: -5px;
          margin-top: 6px;
          background: #2e6a9e;
          color: #fff; }
          .freeform--editor-beta .sidebar .aspect__config-menu--expressions a, .page-viz-edit .sidebar .aspect__config-menu--expressions a {
            color: #fff; }
          .freeform--editor-beta .sidebar .aspect__config-menu--expressions:hover, .freeform--editor-beta .sidebar .aspect__config-menu--expressions:focus, .page-viz-edit .sidebar .aspect__config-menu--expressions:hover, .page-viz-edit .sidebar .aspect__config-menu--expressions:focus {
            background: #0b2d4b !important; }
      .freeform--editor-beta .sidebar .aspect__selected, .page-viz-edit .sidebar .aspect__selected {
        background-color: #fff !important;
        /**box-shadow: 0px 0px 5px rgba(53, 53, 53, 0.51);**/
        color: #747474;
        margin-bottom: 2px;
        padding-left: 20px;
        padding: 7px 10px 0px;
        position: relative;
        border-radius: 0px; }
        .freeform--editor-beta .sidebar .aspect__selected:hover, .page-viz-edit .sidebar .aspect__selected:hover {
          box-shadow: 0px 0px 10px rgba(53, 53, 53, 0.3); }
        .freeform--editor-beta .sidebar .aspect__selected.bar-chart-active, .page-viz-edit .sidebar .aspect__selected.bar-chart-active {
          background-image: url("../../assets/images/icons/icon.bar-charts-h.svg");
          background-repeat: repeat-x;
          background-position: 60px bottom;
          background-size: auto 25px;
          background-color: rgba(43, 88, 146, 0.78) !important; }
        .freeform--editor-beta .sidebar .aspect__selected.measure_link > span, .page-viz-edit .sidebar .aspect__selected.measure_link > span {
          padding-bottom: 3px;
          color: #747474; }
        .freeform--editor-beta .sidebar .aspect__selected > span, .page-viz-edit .sidebar .aspect__selected > span {
          width: 147px;
          text-overflow: ellipsis;
          display: inline-block;
          overflow: hidden;
          white-space: nowrap; }
        .freeform--editor-beta .sidebar .aspect__selected.filter, .page-viz-edit .sidebar .aspect__selected.filter {
          padding-bottom: 7px; }
        .freeform--editor-beta .sidebar .aspect__selected .measure-metric, .page-viz-edit .sidebar .aspect__selected .measure-metric {
          background: rgba(74, 133, 221, 0.9);
          color: #fff;
          font-weight: 500;
          height: 100%;
          left: 0;
          padding-right: 3px;
          padding: 7px 3px;
          position: absolute;
          text-align: center;
          text-overflow: ellipsis;
          overflow: hidden;
          white-space: nowrap;
          top: 0;
          transition: all .4s ease-in;
          width: 60px;
          cursor: pointer; }
          .freeform--editor-beta .sidebar .aspect__selected .measure-metric:hover, .page-viz-edit .sidebar .aspect__selected .measure-metric:hover {
            background: rgba(6, 207, 255, 0.8); }
          .freeform--editor-beta .sidebar .aspect__selected .measure-metric i, .page-viz-edit .sidebar .aspect__selected .measure-metric i {
            font-size: 18px; }
        .freeform--editor-beta .sidebar .aspect__selected .measure-metric + .measure-label, .page-viz-edit .sidebar .aspect__selected .measure-metric + .measure-label {
          margin-left: 55px; }
        .freeform--editor-beta .sidebar .aspect__selected:hover, .page-viz-edit .sidebar .aspect__selected:hover {
          box-shadow: none !important; }
        .freeform--editor-beta .sidebar .aspect__selected--add, .page-viz-edit .sidebar .aspect__selected--add {
          margin-top: 5px;
          background: transparent !important;
          border: 1px dotted #fff;
          border: 1px dashed #fff;
          text-align: center;
          padding-top: 5px;
          padding-bottom: 5px; }
          .freeform--editor-beta .sidebar .aspect__selected--add span, .page-viz-edit .sidebar .aspect__selected--add span {
            font-size: 13px;
            font-weight: 500; }
        .freeform--editor-beta .sidebar .aspect__selected--filter, .page-viz-edit .sidebar .aspect__selected--filter {
          padding: 7px 10px; }
        .freeform--editor-beta .sidebar .aspect__selected--padded, .page-viz-edit .sidebar .aspect__selected--padded {
          padding: 10px;
          color: #fff; }
        .freeform--editor-beta .sidebar .aspect__selected--button, .page-viz-edit .sidebar .aspect__selected--button {
          width: 100%;
          height: 140px;
          padding: 10px;
          margin-bottom: 20px;
          cursor: pointer; }
        .freeform--editor-beta .sidebar .aspect__selected .label, .page-viz-edit .sidebar .aspect__selected .label {
          color: #fff;
          display: block; }
    .freeform--editor-beta .sidebar .sidebar-menu-button__image, .page-viz-edit .sidebar .sidebar-menu-button__image {
      min-height: 70px;
      width: 100%;
      display: inline-block; }
    .freeform--editor-beta .sidebar .chart-image, .page-viz-edit .sidebar .chart-image {
      background: transparent url("../../assets/images/icons/icon.axis-limits.dark.svg") no-repeat center center;
      background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--axis-limit, .page-viz-edit .sidebar .chart-image--axis-limit {
        background: transparent url("../../assets/images/icons/icon.axis-limits.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--trend-lines-avg, .page-viz-edit .sidebar .chart-image--trend-lines-avg {
        background: transparent url("../../assets/images/icons/icon.trend-lines-avg.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--trend-lines-value, .page-viz-edit .sidebar .chart-image--trend-lines-value {
        background: transparent url("../../assets/images/icons/icon.trend-lines-val.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--trend-zone, .page-viz-edit .sidebar .chart-image--trend-zone {
        background: transparent url("../../assets/images/icons/icon.trend-zone.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--quadrant-labels, .page-viz-edit .sidebar .chart-image--quadrant-labels {
        background: transparent url("../../assets/images/icons/icon.quadrant-labels.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--highlight, .page-viz-edit .sidebar .chart-image--highlight {
        background: transparent url("../../assets/images/icons/icon.cell-highlight.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--text-highlight, .page-viz-edit .sidebar .chart-image--text-highlight {
        background: transparent url("../../assets/images/icons/icon.text-highlight.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--date-highlight, .page-viz-edit .sidebar .chart-image--date-highlight {
        background: transparent url("../../assets/images/icons/icon.date-highlight.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--bar-graph, .page-viz-edit .sidebar .chart-image--bar-graph {
        background: transparent url("../../assets/images/icons/icon.chart-graph.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--actionable-link, .page-viz-edit .sidebar .chart-image--actionable-link {
        background: transparent url("../../assets/images/icons/icon.actionable-link.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--storyboard-link, .page-viz-edit .sidebar .chart-image--storyboard-link {
        background: transparent url("../../assets/images/icons/icon.storyboard-link.dark.svg") no-repeat center center;
        background-size: contain; }
      .freeform--editor-beta .sidebar .chart-image--visual-popup, .page-viz-edit .sidebar .chart-image--visual-popup {
        background: transparent url("../../assets/images/icons/icon.storyboard-popup.dark.svg") no-repeat center center;
        background-size: contain; }
    .freeform--editor-beta .sidebar field:nth-of-type(1) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(1), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(1), .page-viz-edit .sidebar field:nth-of-type(1) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(1), .page-viz-edit .sidebar .sidebar-group:nth-of-type(1) {
      z-index: 20;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(2) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(2), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(2), .page-viz-edit .sidebar field:nth-of-type(2) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(2), .page-viz-edit .sidebar .sidebar-group:nth-of-type(2) {
      z-index: 19;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(3) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(3), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(3), .page-viz-edit .sidebar field:nth-of-type(3) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(3), .page-viz-edit .sidebar .sidebar-group:nth-of-type(3) {
      z-index: 18;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(4) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(4), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(4), .page-viz-edit .sidebar field:nth-of-type(4) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(4), .page-viz-edit .sidebar .sidebar-group:nth-of-type(4) {
      z-index: 17;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(5) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(5), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(5), .page-viz-edit .sidebar field:nth-of-type(5) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(5), .page-viz-edit .sidebar .sidebar-group:nth-of-type(5) {
      z-index: 16;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(6) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(6), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(6), .page-viz-edit .sidebar field:nth-of-type(6) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(6), .page-viz-edit .sidebar .sidebar-group:nth-of-type(6) {
      z-index: 15;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(7) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(7), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(7), .page-viz-edit .sidebar field:nth-of-type(7) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(7), .page-viz-edit .sidebar .sidebar-group:nth-of-type(7) {
      z-index: 14;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(8) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(8), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(8), .page-viz-edit .sidebar field:nth-of-type(8) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(8), .page-viz-edit .sidebar .sidebar-group:nth-of-type(8) {
      z-index: 13;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(9) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(9), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(9), .page-viz-edit .sidebar field:nth-of-type(9) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(9), .page-viz-edit .sidebar .sidebar-group:nth-of-type(9) {
      z-index: 12;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(10) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(10), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(10), .page-viz-edit .sidebar field:nth-of-type(10) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(10), .page-viz-edit .sidebar .sidebar-group:nth-of-type(10) {
      z-index: 11;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(11) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(11), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(11), .page-viz-edit .sidebar field:nth-of-type(11) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(11), .page-viz-edit .sidebar .sidebar-group:nth-of-type(11) {
      z-index: 10;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(12) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(12), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(12), .page-viz-edit .sidebar field:nth-of-type(12) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(12), .page-viz-edit .sidebar .sidebar-group:nth-of-type(12) {
      z-index: 9;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(13) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(13), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(13), .page-viz-edit .sidebar field:nth-of-type(13) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(13), .page-viz-edit .sidebar .sidebar-group:nth-of-type(13) {
      z-index: 8;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(14) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(14), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(14), .page-viz-edit .sidebar field:nth-of-type(14) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(14), .page-viz-edit .sidebar .sidebar-group:nth-of-type(14) {
      z-index: 7;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(15) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(15), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(15), .page-viz-edit .sidebar field:nth-of-type(15) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(15), .page-viz-edit .sidebar .sidebar-group:nth-of-type(15) {
      z-index: 6;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(16) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(16), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(16), .page-viz-edit .sidebar field:nth-of-type(16) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(16), .page-viz-edit .sidebar .sidebar-group:nth-of-type(16) {
      z-index: 5;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(17) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(17), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(17), .page-viz-edit .sidebar field:nth-of-type(17) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(17), .page-viz-edit .sidebar .sidebar-group:nth-of-type(17) {
      z-index: 4;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(18) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(18), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(18), .page-viz-edit .sidebar field:nth-of-type(18) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(18), .page-viz-edit .sidebar .sidebar-group:nth-of-type(18) {
      z-index: 3;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(19) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(19), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(19), .page-viz-edit .sidebar field:nth-of-type(19) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(19), .page-viz-edit .sidebar .sidebar-group:nth-of-type(19) {
      z-index: 2;
      position: relative; }
    .freeform--editor-beta .sidebar field:nth-of-type(20) .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item:nth-of-type(20), .freeform--editor-beta .sidebar .sidebar-group:nth-of-type(20), .page-viz-edit .sidebar field:nth-of-type(20) .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item:nth-of-type(20), .page-viz-edit .sidebar .sidebar-group:nth-of-type(20) {
      z-index: 1;
      position: relative; }
    .freeform--editor-beta .sidebar .sidebar-group, .freeform--editor-beta .sidebar field .aspect, .freeform--editor-beta .sidebar .aspect .as-sortable-item, .page-viz-edit .sidebar .sidebar-group, .page-viz-edit .sidebar field .aspect, .page-viz-edit .sidebar .aspect .as-sortable-item {
      z-index: auto  !important;
      position: static !important; }
    .freeform--editor-beta .sidebar .btn-close, .page-viz-edit .sidebar .btn-close {
      background: transparent;
      border: none !important; }
    .freeform--editor-beta .sidebar .addfield-button, .page-viz-edit .sidebar .addfield-button {
      opacity: 0;
      animation-delay: .4s;
      animation-duration: .4s;
      animation-fill-mode: forwards,forwards;
      animation-name: fadein;
      animation-timing-function: ease-in-out;
      transition: all .2s ease-in-out; }
    .freeform--editor-beta .sidebar .sidebar-group, .page-viz-edit .sidebar .sidebar-group {
      border-bottom: 1px solid #e0e0e0;
      padding: 7px 0 25px; }
    .freeform--editor-beta .sidebar .sidebar-line, .page-viz-edit .sidebar .sidebar-line {
      border-bottom: 1px solid #e0e0e0;
      height: 1px;
      width: 100%;
      margin: 5px 0;
      clear: both; }
  .freeform--editor-beta .sidebar--modal .dialog-container-inner, .freeform--editor-beta .sidebar--modal .dialog-container, .page-viz-edit .sidebar--modal .dialog-container-inner, .page-viz-edit .sidebar--modal .dialog-container {
    opacity: 1;
    animation: none;
    left: 0;
    top: 0;
    animation: none; }
  .freeform--editor-beta .sidebar--modal .dialog-group, .page-viz-edit .sidebar--modal .dialog-group {
    display: none;
    animation: none; }
  .freeform--editor-beta .sidebar--modal .field-list.simple, .freeform--editor-beta .sidebar--modal .dataset-list.simple, .page-viz-edit .sidebar--modal .field-list.simple, .page-viz-edit .sidebar--modal .dataset-list.simple {
    left: 0 !important;
    top: 0px !important;
    bottom: 0px;
    width: 250px !important;
    position: absolute;
    animation: none;
    opacity: 1;
    width: 100%;
    height: initial;
    animation: none;
    background: #537289;
    box-shadow: 1px 0px 3px rgba(0, 0, 0, 0.7); }
  .freeform--editor-beta .sidebar--modal.slide-in .field-list.simple, .freeform--editor-beta .sidebar--modal.slide-in .dataset-list.simple, .page-viz-edit .sidebar--modal.slide-in .field-list.simple, .page-viz-edit .sidebar--modal.slide-in .dataset-list.simple {
    left: 0 !important;
    top: -90px !important;
    bottom: 0px;
    width: 100% !important;
    position: absolute;
    animation: none;
    opacity: 1;
    width: 100%;
    height: initial;
    animation: none;
    background: #537289;
    transform: translateY(-100%); }
  .freeform--editor-beta .sidebar--modal.show .field-list.simple, .freeform--editor-beta .sidebar--modal.show .dataset-list.simple, .page-viz-edit .sidebar--modal.show .field-list.simple, .page-viz-edit .sidebar--modal.show .dataset-list.simple {
    animation-delay: .0s;
    animation-duration: .4s;
    animation-fill-mode: forwards;
    animation-name: translate-down;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .freeform--editor-beta .sidebar--modal .dataset-list.simple, .page-viz-edit .sidebar--modal .dataset-list.simple {
    width: 100%; }
  .freeform--editor-beta .sidebar--modal .dialog-search, .page-viz-edit .sidebar--modal .dialog-search {
    animation: none;
    opacity: 1; }
  .freeform--editor-beta .sidebar--modal .dialog-search:after, .page-viz-edit .sidebar--modal .dialog-search:after {
    font-size: 18px;
    top: 12px;
    right: 17px; }
  .freeform--editor-beta .sidebar--modal .dialog-search input, .page-viz-edit .sidebar--modal .dialog-search input {
    width: 100%; }
  .freeform--editor-beta .sidebar--modal .dialog-container__close, .page-viz-edit .sidebar--modal .dialog-container__close {
    display: none; }
  .freeform--editor-beta .info-bar, .page-viz-edit .info-bar {
    /*    top: 55px;
     right: 150px;
     position: absolute;  */
    padding: 5px 10px;
    margin-bottom: 30px; }
  .freeform--editor-beta .last-updated, .page-viz-edit .last-updated {
    display: inline-block;
    font-weight: 500;
    border-radius: 15px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.58);
    padding: 2px 0px;
    color: #fff;
    margin-right: 10px;
    margin-top: 5px;
    color: #656565;
    box-shadow: none;
    color: #656565;
    box-shadow: none;
    border: none;
    font-size: 12px; }
    .storyboard-viewer .freeform--editor-beta .last-updated, .storyboard-viewer .page-viz-edit .last-updated {
      top: 75px; }
      .storyboard-viewer .freeform--editor-beta .last-updated.presentation, .storyboard-viewer .page-viz-edit .last-updated.presentation {
        display: none; }
  .freeform--editor-beta .date-part-dialog, .page-viz-edit .date-part-dialog {
    background: #516D7A;
    border: none !important;
    height: auto;
    margin-top: 0;
    position: absolute;
    transition: all .4s ease-out;
    z-index: 1000001;
    transition: none; }
    .freeform--editor-beta .date-part-dialog li, .page-viz-edit .date-part-dialog li {
      padding-top: 5px;
      padding-bottom: 5px; }
    .freeform--editor-beta .date-part-dialog li, .freeform--editor-beta .date-part-dialog li label, .page-viz-edit .date-part-dialog li, .page-viz-edit .date-part-dialog li label {
      color: #fff !important;
      font-size: 1em !important;
      font-weight: 500 !important; }
    .freeform--editor-beta .date-part-dialog li:hover, .page-viz-edit .date-part-dialog li:hover {
      background-color: #5de3c8 !important; }
    .freeform--editor-beta .date-part-dialog li input, .page-viz-edit .date-part-dialog li input {
      vertical-align: sub;
      margin-right: 10px;
      margin-left: 10px; }
    .freeform--editor-beta .date-part-dialog .btn-back, .page-viz-edit .date-part-dialog .btn-back {
      color: #4a4a4a;
      font-weight: 500;
      transition: all .4s; }
    .freeform--editor-beta .date-part-dialog .btn-apply, .page-viz-edit .date-part-dialog .btn-apply {
      background: #5ac0e7;
      color: #fff;
      font-weight: 500;
      transition: all .4s; }
    .freeform--editor-beta .date-part-dialog li input.active:before, .freeform--editor-beta .date-part-dialog li input.selected:before, .page-viz-edit .date-part-dialog li input.active:before, .page-viz-edit .date-part-dialog li input.selected:before {
      /**font-family: 'FontAwesome';
      font-size: 16px;
      color: #1F9DCF;
      content: "\f00c";
      position: relative;
      top: -4px;
      left: -2px;**/ }
    .freeform--editor-beta .date-part-dialog:before, .page-viz-edit .date-part-dialog:before {
      content: '';
      position: absolute;
      top: -20px;
      left: 30px;
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 10px;
      border-bottom-color: #516D7A; }
    .freeform--editor-beta .date-part-dialog.arrow-bottom:before, .page-viz-edit .date-part-dialog.arrow-bottom:before {
      content: '';
      position: absolute;
      top: initial;
      bottom: -20px;
      left: 30px;
      height: 0;
      width: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 10px;
      border-top-color: #516D7A; }
  .freeform--editor-beta .nucleus-tabs, .page-viz-edit .nucleus-tabs {
    display: flex;
    list-style: none;
    flex-direction: row;
    margin: 0 -25px;
    padding: 0;
    font-family: "proxima-nova", sans-serif; }
    .freeform--editor-beta .nucleus-tabs--tab, .page-viz-edit .nucleus-tabs--tab {
      flex-grow: 1;
      text-align: center;
      padding: 15px 0;
      border-right: 1px solid #EBEBEB;
      border-bottom: 1px solid #EBEBEB;
      position: relative;
      transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
      font-weight: 900; }
      .freeform--editor-beta .nucleus-tabs--tab:before, .page-viz-edit .nucleus-tabs--tab:before {
        /* CNG */
        /*             content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 4px;
                    background: transparent;
                    transition: all .8s $ease-out-quint; */ }
      .freeform--editor-beta .nucleus-tabs--tab:last-of-type, .page-viz-edit .nucleus-tabs--tab:last-of-type {
        border-right: none; }
      .freeform--editor-beta .nucleus-tabs--tab.active, .page-viz-edit .nucleus-tabs--tab.active {
        color: #416A7B; }
        .freeform--editor-beta .nucleus-tabs--tab.active:before, .page-viz-edit .nucleus-tabs--tab.active:before {
          background: #416A7B; }
      .freeform--editor-beta .nucleus-tabs--tab:hover, .page-viz-edit .nucleus-tabs--tab:hover {
        background: white; }
        .freeform--editor-beta .nucleus-tabs--tab:hover:before, .page-viz-edit .nucleus-tabs--tab:hover:before {
          background: #E4E4E4; }
      .freeform--editor-beta .nucleus-tabs--tab:focus, .page-viz-edit .nucleus-tabs--tab:focus {
        outline: none; }
  .freeform--editor-beta .sidebar-tabs, .page-viz-edit .sidebar-tabs {
    margin-left: -15px;
    margin-right: -15px; }
    .freeform--editor-beta .sidebar-tabs--edit-visual, .page-viz-edit .sidebar-tabs--edit-visual {
      display: flex; }
      .freeform--editor-beta .sidebar-tabs--edit-visual li, .page-viz-edit .sidebar-tabs--edit-visual li {
        flex-grow: 1; }
        .freeform--editor-beta .sidebar-tabs--edit-visual li a, .page-viz-edit .sidebar-tabs--edit-visual li a {
          padding: 5px 7px 1px !important; }
    .freeform--editor-beta .sidebar-tabs .highlighted i, .page-viz-edit .sidebar-tabs .highlighted i {
      position: relative; }
      .freeform--editor-beta .sidebar-tabs .highlighted i:after, .page-viz-edit .sidebar-tabs .highlighted i:after {
        content: '';
        position: absolute;
        top: -8px;
        right: -8px;
        height: 10px;
        width: 10px;
        border-radius: 100%;
        background: #56CCCC;
        display: inline-block;
        box-shadow: 0 0 0 5px rgba(86, 204, 204, 0.3);
        animation: highlight-pulse ease-out 3s infinite;
        animation-fill-mode: forwards; }
    .freeform--editor-beta .sidebar-tabs li.active, .page-viz-edit .sidebar-tabs li.active {
      /*       &:before{
              background:  #3c7ece;
              border-bottom: 1px solid #eee; 
              content: '';
              display: block;
              display: inline-block;
              height: 5px;
              left: 0;
              position: absolute;
              top: 0;
              width: 100%;
            }  */
      /**&:after{
        @include triangle(20px, rgba(#fff, .3), down); 
        bottom: -20px;
        content: '';
        left: 50%;
        margin-left: -10px; 
        position: absolute;
        text-align: center;
      }**/ }
      .freeform--editor-beta .sidebar-tabs li.active a, .page-viz-edit .sidebar-tabs li.active a {
        background: rgba(58, 132, 197, 0.1) !important;
        border: none !important;
        color: #3A84C5; }
      .freeform--editor-beta .sidebar-tabs li.active a:focus, .freeform--editor-beta .sidebar-tabs li.active a:hover, .page-viz-edit .sidebar-tabs li.active a:focus, .page-viz-edit .sidebar-tabs li.active a:hover {
        background: rgba(58, 132, 197, 0.1);
        color: #3A84C5; }
    .freeform--editor-beta .sidebar-tabs li, .page-viz-edit .sidebar-tabs li {
      /* border-left: 1px solid #61728e; */
      position: relative; }
      .freeform--editor-beta .sidebar-tabs li:first-of-type, .page-viz-edit .sidebar-tabs li:first-of-type {
        border-top: 1px solid rgba(255, 255, 255, 0.5); }
      .freeform--editor-beta .sidebar-tabs li a, .page-viz-edit .sidebar-tabs li a {
        border-radius: 0px !important;
        border-bottom: 1px solid #eee;
        color: #3A84C5;
        margin: 0;
        padding: 15px 7px;
        position: relative;
        transition: all .4s ease-in; }
        .freeform--editor-beta .sidebar-tabs li a:hover, .page-viz-edit .sidebar-tabs li a:hover {
          background: transparent;
          background: rgba(255, 255, 255, 0.1); }
    .freeform--editor-beta .sidebar-tabs .option--data, .page-viz-edit .sidebar-tabs .option--data {
      background: url("../../assets/images/icons/icon.data.svg") no-repeat top center;
      background-size: 20px 20px;
      display: inline-block;
      float: left;
      height: 25px;
      width: 26px; }
    .freeform--editor-beta .sidebar-tabs .option--filter, .page-viz-edit .sidebar-tabs .option--filter {
      background: url("../../assets/images/icons/icon.filter.svg") no-repeat top center;
      background-size: 20px 20px;
      display: inline-block;
      float: left;
      height: 25px;
      width: 26px; }
    .freeform--editor-beta .sidebar-tabs .option--customize, .page-viz-edit .sidebar-tabs .option--customize {
      background: url("../../assets/images/icons/icon.customize.svg") no-repeat top center;
      background-size: 20px 20px;
      display: inline-block;
      float: left;
      height: 25px;
      width: 26px; }
    .freeform--editor-beta .sidebar-tabs--bottom, .page-viz-edit .sidebar-tabs--bottom {
      bottom: 0px;
      position: absolute;
      left: 12px;
      width: 60px; }
  .freeform--editor-beta .field-display, .page-viz-edit .field-display {
    padding: 11px 5px;
    color: #537289;
    background-color: #F4F4F4;
    border-color: #e6e6e6;
    font-size: 1.4em;
    font-weight: 500; }
    .freeform--editor-beta .field-display--metric, .page-viz-edit .field-display--metric {
      background: #537289;
      height: 49px;
      margin-top: -10px;
      margin-bottom: -17px;
      margin-left: -4px;
      position: relative;
      width: 185px;
      display: inline-block;
      text-align: center; }
      .freeform--editor-beta .field-display--metric .dropup, .freeform--editor-beta .field-display--metric .dropdown, .page-viz-edit .field-display--metric .dropup, .page-viz-edit .field-display--metric .dropdown {
        position: absolute;
        top: 0px;
        height: 49px;
        padding: 10px 0;
        width: 100%;
        color: #fff;
        text-decoration: dotted;
        transition: all .4s ease-in;
        background: transparent;
        box-shadow: 1px 0px 4px rgba(0, 0, 0, 0.44); }
        .freeform--editor-beta .field-display--metric .dropup:hover, .freeform--editor-beta .field-display--metric .dropdown:hover, .page-viz-edit .field-display--metric .dropup:hover, .page-viz-edit .field-display--metric .dropdown:hover {
          background: #4996d2; }
    .freeform--editor-beta .field-display--title, .page-viz-edit .field-display--title {
      display: inline-block;
      padding-left: 5px; }
    .freeform--editor-beta .field-display--actions, .page-viz-edit .field-display--actions {
      float: right; }
    .freeform--editor-beta .field-display .fa-stack, .page-viz-edit .field-display .fa-stack {
      font-size: 0.6em; }
  .freeform--editor-beta .editor-initial-guide, .page-viz-edit .editor-initial-guide {
    padding: 8px 16px; }
    .freeform--editor-beta .editor-initial-guide h4, .page-viz-edit .editor-initial-guide h4 {
      font-weight: 400; }
  .freeform--editor-beta .editor-initial-guide .editor-highlight, .page-viz-edit .editor-initial-guide .editor-highlight {
    color: #56CCCC;
    position: relative; }
    .freeform--editor-beta .editor-initial-guide .editor-highlight:after, .page-viz-edit .editor-initial-guide .editor-highlight:after {
      content: '';
      position: absolute;
      top: -8px;
      left: -8px;
      height: 10px;
      width: 10px;
      border-radius: 100%;
      background: #56CCCC;
      display: inline-block;
      box-shadow: 0 0 0 5px rgba(86, 204, 204, 0.3); }
    .freeform--editor-beta .editor-initial-guide .editor-highlight i, .page-viz-edit .editor-initial-guide .editor-highlight i {
      display: none; }
  .freeform--editor-beta .editor,
  .freeform--editor-beta .viewer,
  .freeform--editor-beta .preview, .page-viz-edit .editor,
  .page-viz-edit .viewer,
  .page-viz-edit .preview {
    position: static;
    height: 100%;
    overflow-y: auto; }
    .freeform--editor-beta .editor__footer,
    .freeform--editor-beta .viewer__footer,
    .freeform--editor-beta .preview__footer, .page-viz-edit .editor__footer,
    .page-viz-edit .viewer__footer,
    .page-viz-edit .preview__footer {
      position: absolute;
      width: 100%;
      bottom: 0;
      left: 0;
      min-height: 70px; }
    .freeform--editor-beta .editor__board,
    .freeform--editor-beta .viewer__board,
    .freeform--editor-beta .preview__board, .page-viz-edit .editor__board,
    .page-viz-edit .viewer__board,
    .page-viz-edit .preview__board {
      height: 80%;
      height: 100%;
      padding: 0; }
    .freeform--editor-beta .editor__description,
    .freeform--editor-beta .viewer__description,
    .freeform--editor-beta .preview__description, .page-viz-edit .editor__description,
    .page-viz-edit .viewer__description,
    .page-viz-edit .preview__description {
      margin: 0 0 6px 0;
      height: 50px;
      max-height: 50px;
      overflow-y: auto;
      padding: 0 0 0 5px; }
    .freeform--editor-beta .editor__title, .freeform--editor-beta .editor__subtitle,
    .freeform--editor-beta .viewer__title,
    .freeform--editor-beta .viewer__subtitle,
    .freeform--editor-beta .preview__title,
    .freeform--editor-beta .preview__subtitle, .page-viz-edit .editor__title, .page-viz-edit .editor__subtitle,
    .page-viz-edit .viewer__title,
    .page-viz-edit .viewer__subtitle,
    .page-viz-edit .preview__title,
    .page-viz-edit .preview__subtitle {
      color: #3A84C5;
      font-size: 30px;
      border-bottom: none;
      display: inline-block;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: "proxima-nova", sans-serif;
      font-weight: 500;
      width: 100%;
      background: transparent; }
      .freeform--editor-beta .editor__title:focus, .freeform--editor-beta .editor__subtitle:focus,
      .freeform--editor-beta .viewer__title:focus,
      .freeform--editor-beta .viewer__subtitle:focus,
      .freeform--editor-beta .preview__title:focus,
      .freeform--editor-beta .preview__subtitle:focus, .page-viz-edit .editor__title:focus, .page-viz-edit .editor__subtitle:focus,
      .page-viz-edit .viewer__title:focus,
      .page-viz-edit .viewer__subtitle:focus,
      .page-viz-edit .preview__title:focus,
      .page-viz-edit .preview__subtitle:focus {
        border: none;
        box-shadow: none; }
    .freeform--editor-beta .editor__subtitle,
    .freeform--editor-beta .viewer__subtitle,
    .freeform--editor-beta .preview__subtitle, .page-viz-edit .editor__subtitle,
    .page-viz-edit .viewer__subtitle,
    .page-viz-edit .preview__subtitle {
      color: #3A84C5;
      font-size: 25px;
      border-bottom: none;
      /* border-bottom: dotted 1px #ccc; */
      display: inline-block;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: "proxima-nova", sans-serif;
      font-weight: 400;
      /* font-size: 24px; */
      width: 100%;
      text-align: right;
      background: transparent; }
      .freeform--editor-beta .editor__subtitle:focus,
      .freeform--editor-beta .viewer__subtitle:focus,
      .freeform--editor-beta .preview__subtitle:focus, .page-viz-edit .editor__subtitle:focus,
      .page-viz-edit .viewer__subtitle:focus,
      .page-viz-edit .preview__subtitle:focus {
        border: none;
        box-shadow: none; }
  .freeform--editor-beta .viewer__board, .page-viz-edit .viewer__board {
    height: 100%;
    padding: 10px 125px; }
    .freeform--editor-beta .viewer__board .storyboard-header, .freeform--editor-beta .viewer__board .nested-page-nav, .page-viz-edit .viewer__board .storyboard-header, .page-viz-edit .viewer__board .nested-page-nav {
      min-height: 100px;
      padding-top: 0;
      padding: 20px 20px 10px;
      border-radius: 5px;
      /* margin: 0 10px; */
      /* background-color: rgba(255, 255, 255, 0.9); */
      background-color: transparent; }
    .freeform--editor-beta .viewer__board .nested-page-nav, .page-viz-edit .viewer__board .nested-page-nav {
      background-color: rgba(255, 255, 255, 0.9);
      border-bottom: 0 transparent !important;
      top: 79px;
      left: 50px;
      right: 0;
      margin-top: 40px !important;
      max-width: 1290px;
      margin: auto;
      height: auto;
      min-height: 0; }
    .freeform--editor-beta .viewer__board .storyboard-page-nav, .page-viz-edit .viewer__board .storyboard-page-nav {
      /*             top: 115px;
                  left: 150px; */ }
  .freeform--editor-beta .viewer__footer, .page-viz-edit .viewer__footer {
    padding: 20px; }
  .freeform--editor-beta .editor, .page-viz-edit .editor {
    background: transparent;
    padding-bottom: 30px;
    padding-top: 0px;
    padding-left: 150px;
    padding-right: 150px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .freeform--editor-beta .editor .info-bar, .page-viz-edit .editor .info-bar {
      top: -45px;
      right: 15px; }
    .freeform--editor-beta .editor__board .storyboard-header, .freeform--editor-beta .editor__board .nested-page-nav, .page-viz-edit .editor__board .storyboard-header, .page-viz-edit .editor__board .nested-page-nav {
      min-height: 0px;
      padding: 5px 10px;
      background: transparent;
      position: fixed;
      z-index: 100000; }
      .freeform--editor-beta .editor__board .storyboard-header #sub-title, .freeform--editor-beta .editor__board .nested-page-nav #sub-title, .page-viz-edit .editor__board .storyboard-header #sub-title, .page-viz-edit .editor__board .nested-page-nav #sub-title {
        color: #3A84C5;
        font-size: 25px;
        font-weight: 400;
        text-transform: capitalize;
        text-align: right; }
    .freeform--editor-beta .editor__board .storyboard-header, .page-viz-edit .editor__board .storyboard-header {
      position: fixed; }
    .freeform--editor-beta .editor__board .nested-page-nav, .page-viz-edit .editor__board .nested-page-nav {
      background-color: rgba(255, 255, 255, 0.9);
      border: 2px solid #fff;
      top: 79px;
      left: 50px;
      right: 0; }
    .freeform--editor-beta .editor .grid-outer-container, .page-viz-edit .editor .grid-outer-container {
      top: 0; }
  .freeform--editor-beta .chart-panel, .page-viz-edit .chart-panel {
    position: relative;
    background: #fff url("../../assets/images/icons/icon.plus.svg") no-repeat center;
    background-color: #fff;
    background-size: 50% 50%;
    flex: 1 0 auto;
    flex-basis: auto;
    margin: 5px 5px;
    box-shadow: 0 0 6px #BFBFBF;
    flex-basis: 100px;
    -webkit-transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
    transition: background-color 0.2s ease-in, border-radius 0.2s ease-in;
    /**&.fullscreen {
      position: fixed;
      transform: translateY(0) !important; 
      animation-delay: 0s; 
      animation-duration: .2s; 
      animation-fill-mode: forwards;
      animation-name: fullscreen; 
      animation-timing-function: ease-in-out;    
    } **/ }
    .freeform--editor-beta .chart-panel:hover, .page-viz-edit .chart-panel:hover {
      background-color: #DCDCDC; }
      .freeform--editor-beta .chart-panel:hover:after, .page-viz-edit .chart-panel:hover:after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.3) url("../../assets/images/icons/icon.plus.svg") no-repeat center;
        background-size: 50% 50%;
        z-index: 2;
        pointer-events: none; }
      .preview .freeform--editor-beta .chart-panel:hover, .preview .page-viz-edit .chart-panel:hover {
        background-color: #fff; }
    .freeform--editor-beta .chart-panel:active, .freeform--editor-beta .chart-panel:focus, .page-viz-edit .chart-panel:active, .page-viz-edit .chart-panel:focus {
      outline: none; }
    .freeform--editor-beta .chart-panel.sb-visual, .page-viz-edit .chart-panel.sb-visual {
      cursor: pointer !important; }
    .freeform--editor-beta .chart-panel.sb-filter, .freeform--editor-beta .chart-panel .c-filter, .page-viz-edit .chart-panel.sb-filter, .page-viz-edit .chart-panel .c-filter {
      box-shadow: none;
      max-height: 100%;
      background: transparent !important; }
      .storyboard-filter-block .freeform--editor-beta .chart-panel.sb-filter, .storyboard-filter-block .freeform--editor-beta .chart-panel .c-filter, .storyboard-filter-block .page-viz-edit .chart-panel.sb-filter, .storyboard-filter-block .page-viz-edit .chart-panel .c-filter {
        min-width: 47%; }
      .freeform--editor-beta .chart-panel.sb-filter range-slider-filter, .freeform--editor-beta .chart-panel.sb-filter fix-min-slider, .freeform--editor-beta .chart-panel .c-filter range-slider-filter, .freeform--editor-beta .chart-panel .c-filter fix-min-slider, .page-viz-edit .chart-panel.sb-filter range-slider-filter, .page-viz-edit .chart-panel.sb-filter fix-min-slider, .page-viz-edit .chart-panel .c-filter range-slider-filter, .page-viz-edit .chart-panel .c-filter fix-min-slider {
        z-index: 998; }
      .freeform--editor-beta .chart-panel.sb-filter .filter-dropdown, .freeform--editor-beta .chart-panel.sb-filter .filter-search, .freeform--editor-beta .chart-panel .c-filter .filter-dropdown, .freeform--editor-beta .chart-panel .c-filter .filter-search, .page-viz-edit .chart-panel.sb-filter .filter-dropdown, .page-viz-edit .chart-panel.sb-filter .filter-search, .page-viz-edit .chart-panel .c-filter .filter-dropdown, .page-viz-edit .chart-panel .c-filter .filter-search {
        transform: translateY(-30%);
        z-index: 999; }
      .freeform--editor-beta .chart-panel.sb-filter .filter-body, .freeform--editor-beta .chart-panel .c-filter .filter-body, .page-viz-edit .chart-panel.sb-filter .filter-body, .page-viz-edit .chart-panel .c-filter .filter-body {
        height: 100%; }
      .freeform--editor-beta .chart-panel.sb-filter.active-edit .editable .filter-body, .freeform--editor-beta .chart-panel .c-filter.active-edit .editable .filter-body, .page-viz-edit .chart-panel.sb-filter.active-edit .editable .filter-body, .page-viz-edit .chart-panel .c-filter.active-edit .editable .filter-body {
        pointer-events: all; }
      .freeform--editor-beta .chart-panel.sb-filter .editable .filter-body, .freeform--editor-beta .chart-panel .c-filter .editable .filter-body, .page-viz-edit .chart-panel.sb-filter .editable .filter-body, .page-viz-edit .chart-panel .c-filter .editable .filter-body {
        pointer-events: none; }
      .freeform--editor-beta .chart-panel.sb-filter .viz-container, .freeform--editor-beta .chart-panel .c-filter .viz-container, .page-viz-edit .chart-panel.sb-filter .viz-container, .page-viz-edit .chart-panel .c-filter .viz-container {
        overflow: visible; }
      .freeform--editor-beta .chart-panel.sb-filter .viz-container > div, .freeform--editor-beta .chart-panel .c-filter .viz-container > div, .page-viz-edit .chart-panel.sb-filter .viz-container > div, .page-viz-edit .chart-panel .c-filter .viz-container > div {
        height: 100%; }
    .freeform--editor-beta .chart-panel.sb-filter .filter-dropdown, .freeform--editor-beta .chart-panel.sb-filter .filter-search, .page-viz-edit .chart-panel.sb-filter .filter-dropdown, .page-viz-edit .chart-panel.sb-filter .filter-search {
      padding: 0 10px; }
    .freeform--editor-beta .chart-panel .c-filter .viz-container, .page-viz-edit .chart-panel .c-filter .viz-container {
      box-shadow: none !important; }
    .preview .freeform--editor-beta .chart-panel > .viz-container, .preview .page-viz-edit .chart-panel > .viz-container {
      cursor: default !important; }
    .preview .freeform--editor-beta .chart-panel:hover:after, .preview .page-viz-edit .chart-panel:hover:after {
      content: none !important; }
    .freeform--editor-beta .chart-panel.placed-chart:hover:after, .page-viz-edit .chart-panel.placed-chart:hover:after {
      background: rgba(255, 255, 255, 0.3) url("../../assets/images/icons/icon.tool.svg") no-repeat center;
      background-size: 50% 50%;
      cursor: pointer !important; }
    .viewer__board .freeform--editor-beta .chart-panel, .freeform--editor-beta .chart-panel.placed-chart, .viewer__board .page-viz-edit .chart-panel, .page-viz-edit .chart-panel.placed-chart {
      background: #fff; }
    .viewer__board .freeform--editor-beta .chart-panel:hover:after, .viewer__board .page-viz-edit .chart-panel:hover:after {
      content: none; }
    .viewer__board .freeform--editor-beta .chart-panel:hover:after, .viewer__board .page-viz-edit .chart-panel:hover:after {
      background: transparent; }
    .storyboard-filter-row .freeform--editor-beta .chart-panel, .storyboard-filter-row .page-viz-edit .chart-panel {
      background: #ada3c9 url("../../assets/images/icons/icon.filter-white.svg") no-repeat center;
      background-size: 600% 60%;
      border-radius: 10px;
      box-shadow: none;
      z-index: 999; }
      .storyboard-filter-row .freeform--editor-beta .chart-panel > div, .storyboard-filter-row .page-viz-edit .chart-panel > div {
        overflow: visible; }
      .storyboard-filter-row .freeform--editor-beta .chart-panel .angucomplete-dropdown, .storyboard-filter-row .page-viz-edit .chart-panel .angucomplete-dropdown {
        top: 40px;
        max-height: 250px;
        overflow-y: auto; }
      .storyboard-filter-row .freeform--editor-beta .chart-panel:hover, .storyboard-filter-row .page-viz-edit .chart-panel:hover {
        background-color: #9083b6; }
      .storyboard-filter-row .freeform--editor-beta .chart-panel.placed-chart, .storyboard-filter-row .page-viz-edit .chart-panel.placed-chart {
        background: #fff; }
    .viewer__board .storyboard-filter-row .freeform--editor-beta .chart-panel, .viewer__board .storyboard-filter-row .page-viz-edit .chart-panel {
      background: none;
      box-shadow: none; }
      .viewer__board .storyboard-filter-row .freeform--editor-beta .chart-panel:hover, .viewer__board .storyboard-filter-row .page-viz-edit .chart-panel:hover {
        background: none; }
    .freeform--editor-beta .chart-panel.active-edit, .page-viz-edit .chart-panel.active-edit {
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0) !important;
      border: none !important;
      box-shadow: none !important;
      background-image: none;
      pointer-events: none; }
      @media only screen and (max-width: 1350px) {
        .freeform--editor-beta .chart-panel.active-edit.sb-filter, .freeform--editor-beta .chart-panel.active-edit.sb-headline, .page-viz-edit .chart-panel.active-edit.sb-filter, .page-viz-edit .chart-panel.active-edit.sb-headline {
          flex: 8 0 auto; } }
      .freeform--editor-beta .chart-panel.active-edit:hover:after, .page-viz-edit .chart-panel.active-edit:hover:after {
        position: absolute;
        content: none;
        background: transparent; }
      .freeform--editor-beta .chart-panel.active-edit .viz-container, .page-viz-edit .chart-panel.active-edit .viz-container {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: #fff;
        overflow: visible;
        pointer-events: auto;
        border: 1px solid #56CCCC; }
      .freeform--editor-beta .chart-panel.active-edit .viz-container, .freeform--editor-beta .chart-panel.active-edit .viz-category-selector, .page-viz-edit .chart-panel.active-edit .viz-container, .page-viz-edit .chart-panel.active-edit .viz-category-selector {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 0px;
        transform: none;
        width: 100%;
        background: #fff;
        z-index: auto;
        pointer-events: auto;
        height: 100%;
        min-height: 0; }
      .freeform--editor-beta .chart-panel.active-edit.sb-headline .viz-container, .page-viz-edit .chart-panel.active-edit.sb-headline .viz-container {
        width: 100%;
        min-width: 30%;
        height: initial;
        min-height: 140px;
        top: 0;
        bottom: 0;
        left: 0;
        position: absolute;
        right: 0; }
      .freeform--editor-beta .chart-panel.active-edit.sb-filter .viz-container, .page-viz-edit .chart-panel.active-edit.sb-filter .viz-container {
        width: 100%;
        min-width: 0%;
        height: 100%;
        min-height: 0%;
        position: absolute; }
      .freeform--editor-beta .chart-panel.active-edit.sb-filter .viz-toolbar, .page-viz-edit .chart-panel.active-edit.sb-filter .viz-toolbar {
        left: 0; }
      .freeform--editor-beta .chart-panel.active-edit .viz-category-selector, .page-viz-edit .chart-panel.active-edit .viz-category-selector {
        z-index: 1000001;
        overflow-y: auto; }
      .freeform--editor-beta .chart-panel.active-edit .alert, .page-viz-edit .chart-panel.active-edit .alert {
        margin-bottom: 0;
        font-size: 11px; }
    .freeform--editor-beta .chart-panel.board-icons, .page-viz-edit .chart-panel.board-icons {
      background-image: none; }
    .freeform--editor-beta .chart-panel.empty-chart, .freeform--editor-beta .chart-panel.empty-filter, .page-viz-edit .chart-panel.empty-chart, .page-viz-edit .chart-panel.empty-filter {
      display: none; }
    .freeform--editor-beta .chart-panel .message-item, .page-viz-edit .chart-panel .message-item {
      display: none; }
  .freeform--editor-beta .hidden-filter-overlay, .page-viz-edit .hidden-filter-overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 100%;
    background: repeating-linear-gradient(45deg, rgba(255, 109, 109, 0.1), rgba(195, 61, 61, 0.1) 10px, rgba(255, 66, 66, 0.15) 10px, rgba(226, 226, 226, 0.15) 20px);
    pointer-events: none;
    border-radius: 10px; }
  .freeform--editor-beta .hide-filter .filter-container, .page-viz-edit .hide-filter .filter-container {
    pointer-events: auto !important; }
  .freeform--editor-beta .editor date-selector, .page-viz-edit .editor date-selector {
    display: none; }
  .freeform--editor-beta .hide-filter date-selector, .page-viz-edit .hide-filter date-selector {
    display: block; }
  .freeform--editor-beta .visual-close, .page-viz-edit .visual-close {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;
    font-size: 22px;
    color: #9B9B9B; }
    .freeform--editor-beta .visual-close:hover, .page-viz-edit .visual-close:hover {
      color: #9B9B9B; }
  .freeform--editor-beta .visual-fullscreen, .page-viz-edit .visual-fullscreen {
    position: absolute;
    z-index: 3;
    top: 19px;
    right: 20px; }
  .freeform--editor-beta .visual-type, .page-viz-edit .visual-type {
    padding: 0;
    margin: 0;
    height: 100%; }
    .freeform--editor-beta .visual-type li, .page-viz-edit .visual-type li {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: center;
      height: 100%;
      position: relative; }
    .freeform--editor-beta .visual-type__raw-table, .freeform--editor-beta .visual-type__grouped-table, .freeform--editor-beta .visual-type__chart, .page-viz-edit .visual-type__raw-table, .page-viz-edit .visual-type__grouped-table, .page-viz-edit .visual-type__chart {
      overflow: hidden;
      animation-delay: 0s;
      animation-duration: .4s;
      animation-fill-mode: forwards,forwards;
      animation-name: fadein;
      animation-timing-function: ease-in-out;
      transition: all .2s ease-in-out; }
      .freeform--editor-beta .visual-type__raw-table a, .freeform--editor-beta .visual-type__grouped-table a, .freeform--editor-beta .visual-type__chart a, .page-viz-edit .visual-type__raw-table a, .page-viz-edit .visual-type__grouped-table a, .page-viz-edit .visual-type__chart a {
        position: absolute;
        bottom: 5px;
        width: 100%;
        left: 0;
        font-weight: 500;
        color: #707886; }
        .freeform--editor-beta .visual-type__raw-table a:hover, .freeform--editor-beta .visual-type__grouped-table a:hover, .freeform--editor-beta .visual-type__chart a:hover, .page-viz-edit .visual-type__raw-table a:hover, .page-viz-edit .visual-type__grouped-table a:hover, .page-viz-edit .visual-type__chart a:hover {
          text-decoration: none; }
      .freeform--editor-beta .visual-type__raw-table:hover, .freeform--editor-beta .visual-type__grouped-table:hover, .freeform--editor-beta .visual-type__chart:hover, .page-viz-edit .visual-type__raw-table:hover, .page-viz-edit .visual-type__grouped-table:hover, .page-viz-edit .visual-type__chart:hover {
        background-size: 65% 65%; }
    .freeform--editor-beta .visual-type__raw-table, .page-viz-edit .visual-type__raw-table {
      background: url("../../assets/images/icons/icon.raw-table.svg") no-repeat center;
      background-size: 60% 60%; }
    .freeform--editor-beta .visual-type__grouped-table, .page-viz-edit .visual-type__grouped-table {
      background: url("../../assets/images/icons/icon.grouped-table.svg") no-repeat center;
      background-size: 60% 60%; }
    .freeform--editor-beta .visual-type__chart, .page-viz-edit .visual-type__chart {
      background: url("../../assets/images/icons/icon.chart.svg") no-repeat center;
      background-size: 60% 60%; }
  .freeform--editor-beta .viz-topbar, .page-viz-edit .viz-topbar {
    width: 100%;
    position: absolute;
    top: -30px;
    height: 30px;
    display: none; }
  .freeform--editor-beta .viz-bottombar, .page-viz-edit .viz-bottombar {
    position: absolute;
    bottom: -85px;
    width: 100%;
    color: #fff;
    pointer-events: auto; }
    .has-filters .freeform--editor-beta .viz-bottombar, .has-filters .page-viz-edit .viz-bottombar {
      bottom: -135px; }
    .freeform--editor-beta .viz-bottombar.no-toolbar, .page-viz-edit .viz-bottombar.no-toolbar {
      bottom: -39px; }
  .freeform--editor-beta .viz-toolbar, .page-viz-edit .viz-toolbar {
    height: 45px;
    padding: 10px 15px;
    background: #fff;
    position: fixed;
    left: 360px;
    bottom: 0;
    right: 0;
    z-index: 2;
    color: #747474;
    z-index: 3000000;
    pointer-events: auto;
    display: none; }
    .freeform--editor-beta .viz-toolbar .h-divider, .page-viz-edit .viz-toolbar .h-divider {
      border-left: 1px solid #BFBDBD;
      margin-left: 3px;
      margin-right: 3px;
      height: 18px;
      display: inline-block;
      width: 1px;
      position: relative;
      top: 4px; }
  .freeform--editor-beta .viz-buttons, .page-viz-edit .viz-buttons {
    background-color: transparent;
    text-align: center;
    color: #3F4652;
    position: fixed;
    width: 310px;
    left: initial;
    right: -11px;
    bottom: -0px;
    height: initial !important;
    pointer-events: auto;
    z-index: 1000;
    display: flex;
    background: #FAFAFA;
    padding: 0; }
    .freeform--editor-beta .viz-buttons--button, .page-viz-edit .viz-buttons--button {
      flex-grow: 1;
      border: 1px #000 solid;
      padding: 5px 0;
      border: 1px solid #C1C1C1; }
    .freeform--editor-beta .viz-buttons--delete, .page-viz-edit .viz-buttons--delete {
      border-left: none;
      border-right: none;
      border-bottom: none;
      color: #F6505D; }
    .freeform--editor-beta .viz-buttons--undo, .page-viz-edit .viz-buttons--undo {
      flex-grow: 3;
      border-bottom: none;
      border-right: none; }
    .freeform--editor-beta .viz-buttons.small-space .btn-chart-actions span, .page-viz-edit .viz-buttons.small-space .btn-chart-actions span {
      display: none; }
    .freeform--editor-beta .viz-buttons__group, .page-viz-edit .viz-buttons__group {
      text-align: right; }
      .freeform--editor-beta .viz-buttons__group--sorting, .page-viz-edit .viz-buttons__group--sorting {
        text-align: left;
        width: auto;
        display: inline-block; }
  .freeform--editor-beta .viz-filters, .page-viz-edit .viz-filters {
    z-index: 3;
    position: absolute;
    bottom: 0px;
    display: flex;
    height: 55px;
    left: 10px;
    right: 10px; }
    .active-edit .freeform--editor-beta .viz-filters, .active-edit .page-viz-edit .viz-filters {
      bottom: -50px;
      background: #fff;
      left: 0px;
      right: 0px;
      padding-left: 5px;
      padding-right: 5px;
      display: none; }
    .freeform--editor-beta .viz-filters > div, .page-viz-edit .viz-filters > div {
      flex-grow: 1;
      flex-shrink: 1;
      flex-basis: auto;
      display: block;
      position: relative;
      margin-left: 5px;
      margin-right: 5px; }
    .freeform--editor-beta .viz-filters .viz-container, .page-viz-edit .viz-filters .viz-container {
      overflow: visible; }
  .freeform--editor-beta .viz-compatibility-overlay, .page-viz-edit .viz-compatibility-overlay {
    position: fixed;
    bottom: 45px;
    height: 50px;
    background-color: #a6c4d2;
    padding: 10px;
    left: 360px;
    right: 0px;
    color: white; }
  .freeform--editor-beta .viz-mode-indicator, .page-viz-edit .viz-mode-indicator {
    background-color: #67539B;
    height: 60px;
    width: 78px;
    position: absolute;
    top: -34px;
    right: -55px;
    transform: rotate(-40deg); }
    .freeform--editor-beta .viz-mode-indicator i.fa, .page-viz-edit .viz-mode-indicator i.fa {
      color: #fff;
      position: absolute;
      display: inline-block;
      font-size: 14px;
      z-index: 4;
      position: bottom;
      left: 4px;
      transform: rotate(40deg);
      bottom: 28px; }
  .freeform--editor-beta .viz-container--edit-button, .page-viz-edit .viz-container--edit-button {
    height: 100%;
    height: 100%; }
  .freeform--editor-beta .active-edit range-slider-filter, .freeform--editor-beta .active-edit fix-min-slider, .page-viz-edit .active-edit range-slider-filter, .page-viz-edit .active-edit fix-min-slider {
    margin-top: 30px; }
  .freeform--editor-beta .viz-suggestions, .freeform--editor-beta .edit-group-label, .page-viz-edit .viz-suggestions, .page-viz-edit .edit-group-label {
    background-color: #ededed;
    height: 100%;
    left: 360px;
    overflow: hidden;
    padding: 5px 70px 5px 10px;
    position: fixed;
    text-align: left;
    top: initial;
    transition: all .3s ease-in;
    right: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease-in;
    bottom: 0;
    height: 45px;
    z-index: 3000001; }
    .freeform--editor-beta .viz-suggestions button, .freeform--editor-beta .edit-group-label button, .page-viz-edit .viz-suggestions button, .page-viz-edit .edit-group-label button {
      margin-left: 3px;
      margin-right: 3px; }
    .freeform--editor-beta .viz-suggestions.active, .freeform--editor-beta .edit-group-label.active, .page-viz-edit .viz-suggestions.active, .page-viz-edit .edit-group-label.active {
      opacity: 1;
      pointer-events: initial; }
  .freeform--editor-beta .edit-group-label, .page-viz-edit .edit-group-label {
    height: 45px; }
  .freeform--editor-beta .suggestion-image, .page-viz-edit .suggestion-image {
    height: 15px;
    width: 15px; }
  .freeform--editor-beta .suggestion-row, .page-viz-edit .suggestion-row {
    transition: all .4s ease-in;
    min-width: 50px;
    margin-top: 3px;
    display: block;
    widows: 100%; }
    .freeform--editor-beta .suggestion-row:hover, .freeform--editor-beta .suggestion-row.active, .freeform--editor-beta .suggestion-row.focus, .page-viz-edit .suggestion-row:hover, .page-viz-edit .suggestion-row.active, .page-viz-edit .suggestion-row.focus {
      background: rgba(255, 255, 255, 0.2);
      outline: none; }
  .freeform--editor-beta .suggestion-button, .page-viz-edit .suggestion-button {
    display: inline-block;
    margin-left: 2px;
    margin-right: 2px;
    padding: 4px 10px;
    transition: all .4s ease-in-out;
    font-size: 1.3vh;
    display: block;
    width: 100%;
    text-align: left;
    margin-top: 8px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #eee;
    border: 1px solid #dedede; }
    .freeform--editor-beta .suggestion-button:focus, .freeform--editor-beta .suggestion-button:active, .page-viz-edit .suggestion-button:focus, .page-viz-edit .suggestion-button:active {
      outline: none; }
    .freeform--editor-beta .suggestion-button img, .page-viz-edit .suggestion-button img {
      height: 18px;
      width: 18px; }
  .freeform--editor-beta .btn-fullscreen, .page-viz-edit .btn-fullscreen {
    background: transparent;
    color: #fff; }
  .freeform--editor-beta .viz-category-selector, .page-viz-edit .viz-category-selector {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2%;
    z-index: 1; }
  .freeform--editor-beta .viz-container, .page-viz-edit .viz-container {
    /**position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;**/
    height: 100%;
    overflow: visible; }
    .freeform--editor-beta .viz-container:focus, .page-viz-edit .viz-container:focus {
      outline: none; }
    .sidebar .freeform--editor-beta .viz-container, .sidebar .page-viz-edit .viz-container {
      overflow: visible;
      position: relative; }
    .freeform--editor-beta .viz-container .chart-adviser, .page-viz-edit .viz-container .chart-adviser {
      background-color: #fff;
      top: 0px;
      bottom: 1px;
      left: 1px;
      right: 1px;
      padding: 30px; }
      .freeform--editor-beta .viz-container .chart-adviser .message, .page-viz-edit .viz-container .chart-adviser .message {
        position: relative;
        display: block;
        width: 100%;
        font-weight: 300;
        text-align: center;
        font-size: 2rem;
        color: #858585; }
      .freeform--editor-beta .viz-container .chart-adviser .message-item, .page-viz-edit .viz-container .chart-adviser .message-item {
        position: relative;
        display: block;
        width: 100%;
        font-weight: 500;
        text-align: center;
        font-size: 1.5rem;
        color: #52a0d0;
        border: 1px solid rgba(177, 192, 201, 0.14);
        padding: 10px 0;
        margin-top: 3px;
        border-radius: 8px; }
    .freeform--editor-beta .viz-container .headline .chart-adviser .message-item, .page-viz-edit .viz-container .headline .chart-adviser .message-item {
      display: none; }
    .freeform--editor-beta .viz-container .chart-adviser .message-item:before, .page-viz-edit .viz-container .chart-adviser .message-item:before {
      font-family: FontAwesome;
      content: "\f069";
      margin-right: 5px; }
    .freeform--editor-beta .viz-container .chart-adviser, .page-viz-edit .viz-container .chart-adviser {
      position: absolute; }
    .freeform--editor-beta .viz-container .list-container-vertical .table > tr > th, .page-viz-edit .viz-container .list-container-vertical .table > tr > th {
      padding-top: 0 !important; }
  .freeform--editor-beta .viz-container .viz-inner-container, .page-viz-edit .viz-container .viz-inner-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .freeform--editor-beta .viz-container.editableTitle .viz-inner-container, .page-viz-edit .viz-container.editableTitle .viz-inner-container {
    top: 40px; }
  .freeform--editor-beta .viz-container.has-visible-filters, .page-viz-edit .viz-container.has-visible-filters {
    bottom: 55px;
    height: auto;
    outline: none; }
  .freeform--editor-beta .viz-container .loading-indicator, .page-viz-edit .viz-container .loading-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    vertical-align: middle;
    text-align: center; }
  .freeform--editor-beta .viz-indicators, .page-viz-edit .viz-indicators {
    color: #fff;
    padding: 0;
    margin: 0;
    width: auto;
    vertical-align: middle; }
    .freeform--editor-beta .viz-indicators > div, .page-viz-edit .viz-indicators > div {
      display: inline-block;
      margin-bottom: -15px !important; }
  .freeform--editor-beta .viz-action-container, .page-viz-edit .viz-action-container {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    border-top: 1px solid #e8e8e8;
    width: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
    .sb-visual:hover .freeform--editor-beta .viz-action-container, .sb-visual:hover .page-viz-edit .viz-action-container {
      opacity: 1; }
    .freeform--editor-beta .viz-action-container__action, .page-viz-edit .viz-action-container__action {
      flex-grow: 1;
      padding: 5px 5px;
      font-size: 12px;
      color: #fff; }
  .freeform--editor-beta .record-limit, .page-viz-edit .record-limit {
    font-size: 13px; }
    .freeform--editor-beta .record-limit__input, .page-viz-edit .record-limit__input {
      border: none;
      font-size: 12px;
      border-radius: 0;
      padding: 2px;
      height: auto;
      font-weight: 500;
      width: 40px;
      display: inline;
      box-shadow: none;
      text-align: center;
      border-bottom: 1px solid #fff;
      background: transparent; }
      .freeform--editor-beta .record-limit__input:focus, .freeform--editor-beta .record-limit__input:hover, .page-viz-edit .record-limit__input:focus, .page-viz-edit .record-limit__input:hover {
        box-shadow: none;
        font-weight: 500; }
      .freeform--editor-beta .record-limit__input:hover, .page-viz-edit .record-limit__input:hover {
        background: #F8F8F8;
        box-shadow: none;
        font-weight: 500; }
  .freeform--editor-beta .viz-buttons-overlay, .page-viz-edit .viz-buttons-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1; }
  .freeform--editor-beta .viz-title-editor, .page-viz-edit .viz-title-editor {
    width: 100%;
    height: 40px;
    cursor: text;
    font-size: 22px;
    container-type: inline-size; }
  @supports (font-size: 1cqi) {
    .freeform--editor-beta .viz-title-editor input, .page-viz-edit .viz-title-editor input {
      font-size: clamp(0.8rem, 4cqi, 1.5rem) !important; } }
  .freeform--editor-beta .viz-title-editor input, .page-viz-edit .viz-title-editor input {
    width: 100%;
    text-align: center;
    display: inline-block;
    border: none;
    font-family: Verdana, sans;
    font-size: 22px;
    line-height: 40px;
    height: 40px;
    background: inherit;
    padding: 0px;
    margin: 0px; }
  .freeform--editor-beta .active-edit .viz-title-editor input, .page-viz-edit .active-edit .viz-title-editor input {
    border-bottom: 2px inset; }
  .freeform--editor-beta .active-edit .viz-title-editor:hover input, .page-viz-edit .active-edit .viz-title-editor:hover input {
    border-bottom: dotted 2px #A0A0A0;
    background-color: rgba(0, 0, 0, 0.03); }
  .freeform--editor-beta .active-edit .viz-title-editor input:focus, .page-viz-edit .active-edit .viz-title-editor input:focus {
    border-bottom: dotted 2px #808080;
    background-color: rgba(0, 0, 0, 0.1); }
  .freeform--editor-beta .storyboard-filter-submit-row, .page-viz-edit .storyboard-filter-submit-row {
    text-align: center;
    padding: 20px;
    z-index: 2; }
  .freeform--editor-beta .storybaord-filter-row .viz-container, .page-viz-edit .storybaord-filter-row .viz-container {
    min-height: 60px; }
  .freeform--editor-beta .storyboard-filter-row .viz-container > div, .page-viz-edit .storyboard-filter-row .viz-container > div {
    position: absolute;
    width: 100%; }
  .freeform--editor-beta .storyboard-filter-row .active-edit .viz-container > div, .page-viz-edit .storyboard-filter-row .active-edit .viz-container > div {
    top: initial !important;
    transform: none !important;
    position: absolute;
    width: 100%; }
  .freeform--editor-beta .storyboard-filter-row .viz-container > div .viz-container.editable:hover, .page-viz-edit .storyboard-filter-row .viz-container > div .viz-container.editable:hover {
    cursor: pointer !important; }
  .freeform--editor-beta .edit-mask, .page-viz-edit .edit-mask {
    display: block;
    background: transparent;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 500; }
  .freeform--editor-beta .storyboard-editor.open .edit-mask, .page-viz-edit .storyboard-editor.open .edit-mask {
    display: block;
    background: transparent; }
  .freeform--editor-beta visual.active-edit, .page-viz-edit visual.active-edit {
    /** Old Edit Mask Active State 
    **
    **

    .edit-mask{ 
        display: block;
    }

    **/ }
    .freeform--editor-beta visual.active-edit .viz-container, .page-viz-edit visual.active-edit .viz-container {
      position: relative;
      z-index: 2; }
  .freeform--editor-beta .active-edit, .freeform--editor-beta .chart-panel.active-edit, .page-viz-edit .active-edit, .page-viz-edit .chart-panel.active-edit {
    box-shadow: 0px 0px 15px #666666;
    z-index: auto; }
  .freeform--editor-beta .viz-container.editable:before, .page-viz-edit .viz-container.editable:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    cursor: pointer;
    pointer-events: none; }
  .freeform--editor-beta .option-container, .page-viz-edit .option-container {
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea; }
  .freeform--editor-beta .gridstack-item--chart-options, .page-viz-edit .gridstack-item--chart-options {
    bottom: -40px;
    left: 0px;
    right: 0px;
    border-radius: 0px 0px 8px 8px;
    background: rgba(86, 204, 204, 0.9); }
    .freeform--editor-beta .gridstack-item--chart-options:hover, .freeform--editor-beta .gridstack-item--chart-options:focus, .page-viz-edit .gridstack-item--chart-options:hover, .page-viz-edit .gridstack-item--chart-options:focus {
      background: #56cccc; }
  .freeform--editor-beta .grid-stack-locked .gridstack-item--chart-options, .page-viz-edit .grid-stack-locked .gridstack-item--chart-options {
    background: #5e5e5e;
    left: -4px;
    right: -4px; }
  .freeform--editor-beta .gridstack-item--chart-options .dropdown li, .page-viz-edit .gridstack-item--chart-options .dropdown li {
    color: #272727; }
  .freeform--editor-beta .gridstack-item--chart-options a, .freeform--editor-beta .gridstack-item--chart-options span, .page-viz-edit .gridstack-item--chart-options a, .page-viz-edit .gridstack-item--chart-options span {
    padding: 0; }
  .freeform--editor-beta .filter-type-icon, .page-viz-edit .filter-type-icon {
    display: none; }
  .freeform--editor-beta .storyboard-editor.freeform .storyboard.editing .grid, .page-viz-edit .storyboard-editor.freeform .storyboard.editing .grid {
    top: 0px; }

.has-subtitle .viz-inner-container {
  top: 62px !important; }

.has-subtitle .viz-inner-container.headline {
  top: 0px !important; }

/** Fixed Ratio Grid **/
.grid-outer-container {
  position: relative;
  width: 100%;
  height: 100% !important; }

#gridBackdrop, #gridCanvas {
  position: relative;
  top: 0 !important;
  height: 450px !important;
  z-index: 10000; }

#gridCanvas.editing[style*="4200px"] {
  max-height: 3360px !important;
  min-height: 3360px !important;
  border: 3px dashed #FF4351;
  position: relative; }
  #gridCanvas.editing[style*="4200px"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 100000; }

.grid-stack-placeholder[data-gs-y="48"] {
  display: none !important; }

/******************************
*
* Drag Handles
*
*****************************/
.grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-se, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-sw, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-ne, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-nw, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-e, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-w, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-n, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-s {
  background: #47b3b3;
  border-radius: 100%;
  z-index: 300000 !important;
  height: 10px;
  width: 10px; }
.grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-n, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-s {
  left: 50%;
  transform: translateX(-50%); }
.grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-e, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-w {
  top: 50%;
  transform: translateY(-50%); }
.grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-ne, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-se, .grid-stack > .grid-stack-item > .ui-resizable-handle.ui-resizable-e {
  right: 0 !important; }

.grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-se, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-sw, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-ne, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-nw, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-e, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-w, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-n, .grid-stack > .grid-stack-item.grid-stack-locked > .ui-resizable-handle.ui-resizable-s {
  display: none !important; }

/*******************************
*
* Old Editor Styles
* 
*******************************/
.button-top-config {
  color: #fff; }
  .button-top-config .icon-label {
    display: none; }

@media only screen and (max-width: 1250px) {
  .button-top-config .text-label {
    display: none; }
  .button-top-config .icon-label {
    display: inline-block; } }
/*******************************
*
* General Sidebar Styles View Slideout
* 
*******************************/
.sidebar-items {
  padding: 0 10px; }
.sidebar__header {
  border-bottom: 1px solid #E7E8E8;
  position: relative; }
  .sidebar__header h4 {
    font-weight: 500;
    color: #3A84C5;
    padding-bottom: 15px;
    margin: 0; }
.sidebar__filter-reset {
  position: absolute;
  top: -4px;
  border-radius: 20px;
  left: 75px;
  padding: 0 12px; }
.sidebar__footer-sticky {
  position: sticky;
  bottom: -20px;
  padding-bottom: 15px;
  background: #FAFAFA; }
  .sidebar__footer-sticky hr {
    margin-bottom: 15px; }
.sidebar__section {
  padding: 15px 10px;
  border-top: 1px solid #E7E8E8;
  border-bottom: 1px solid #E7E8E8; }
.sidebar__panel-tabs {
  position: absolute;
  left: 0px;
  width: 100%;
  top: 154px;
  bottom: 0px; }
.sidebar__close {
  color: #FF4351;
  font-size: 16px; }
.sidebar__filter-item-header {
  background: #fff;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E7E8E8;
  margin-bottom: 15px; }
.sidebar__filter-item {
  padding-top: 0px; }

.page-storyboards-edit .dialog-maincontent.has-integration {
  top: 20px;
  padding: 0 10px; }

/*******************************
*
* Storyboard View Slideout
* 
*******************************/
body:has(.page-storyboards-view) {
  overflow-x: hidden; }
.page-storyboards-view .slide-out-filter {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 15px 20px 15px;
  border-right: 1px solid #ddd;
  background: #fff;
  z-index: 300000; }
  .page-storyboards-view .slide-out-filter .viz-container {
    position: relative;
    overflow: visible; }
.page-storyboards-view .storyboard-outer-container {
  position: absolute;
  right: 0px;
  display: inline-block;
  left: 0px;
  top: 0px;
  bottom: 20px; }
.page-storyboards-view .hasFilterSlide .storyboard-outer-container {
  left: 350px;
  position: absolute;
  right: 0px;
  display: inline-block;
  top: 0px;
  bottom: 20px; }
.page-storyboards-view .filter-outer-container {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px; }
.page-storyboards-view .storyboard-filter-list .filter-rangeslider .filter-body {
  height: 50px !important; }
.page-storyboards-view .slide-out-filter .filter-editor-panel {
  top: 93px !important; }
.page-storyboards-view .slide-out-filter .filter-count-label {
  display: inline-block;
  position: absolute; }

/**.hasFilterSlide .storyboard-actions__pagination{
    left: $filter-slide-out;
                 
}**/
.fixed-ratio-view .storyboard-container {
  height: calc(100% - 130px); }

.storyboard-viewer.fixed-ratio-view.onepage .storyboard-page-body {
  top: 70px; }
.storyboard-viewer.fixed-ratio-view.onepage .storyboard-container {
  height: calc(100% - 85px); }

.page-embeddedStoryboard .fixed-ratio-view .storyboard-container {
  height: 100%;
  width: 100%; }

/***********************************************************************
*
* Storyboard Viewer
*
**********************************************************************/
.storyboard-fixed-ratio-container {
  pointer-events: all; }

.fixed-ratio-view .button-dropdown {
  position: relative; }
.fixed-ratio-view .button-dropdown, .fixed-ratio-view .button-dropdown div {
  font-size: 18px;
  font-family: "proxima-nova", sans-serif !important;
  color: #929292;
  vertical-align: bottom;
  border: none;
  box-shadow: none;
  background: transparent;
  display: inline-block;
  width: auto;
  position: relative; }
  .fixed-ratio-view .button-dropdown span, .fixed-ratio-view .button-dropdown div span {
    border: none !important;
    box-shadow: none !important;
    font-size: 18px;
    color: #929292;
    font-weight: 500;
    background: transparent;
    width: auto !important;
    height: auto !important;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0; }
  .fixed-ratio-view .button-dropdown .usergroup-view-select, .fixed-ratio-view .button-dropdown div .usergroup-view-select {
    border: none;
    box-shadow: none;
    border-radius: 5px;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 0;
    color: #929292;
    appearance: menulist; }
  .fixed-ratio-view .button-dropdown:hover, .fixed-ratio-view .button-dropdown div:hover {
    color: #929292; }
.fixed-ratio-view #page-container {
  display: inline-block;
  text-align: center; }
.fixed-ratio-view .storyboard-actions__main-title {
  position: fixed !important;
  top: 60px;
  left: 0px !important;
  right: 0 !important;
  border-bottom: 1px solid #e6e6e6;
  background: #fcfcfc;
  z-index: 301; }
.fixed-ratio-view .storyboard-actions__pagination {
  position: fixed !important;
  left: 60px !important;
  right: 0 !important;
  background: transparent;
  background: #fff;
  z-index: 300; }
.fixed-ratio-view:not(.storyboard-embedded) .storyboard-actions__pagination {
  top: 110px !important;
  z-index: 502 !important; }
.fixed-ratio-view.storyboard-embedded .storyboard-actions__pagination {
  top: 50px !important; }
.fixed-ratio-view .storyboard-page-navigation {
  text-align: center; }
.fixed-ratio-view #page-container {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  float: none !important;
  height: 100%;
  display: flex;
  justify-content: center;
  float: left; }
.fixed-ratio-view #page-container .as-sortable-item,
.fixed-ratio-view #page-container .as-sortable-placeholder,
.fixed-ratio-view #page-container .page-title {
  display: inline-block;
  height: 32px;
  float: left;
  margin-top: initial;
  text-align: center;
  line-height: 1.42857143;
  color: #114D72;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 16px;
  min-width: 130px;
  max-width: 250px;
  flex-grow: 1;
  position: relative;
  margin: 0 4px;
  cursor: pointer; }
  .fixed-ratio-view #page-container .as-sortable-item:before,
  .fixed-ratio-view #page-container .as-sortable-placeholder:before,
  .fixed-ratio-view #page-container .page-title:before {
    content: '';
    background: #56CCCC;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0px;
    transition: all .2s ease-out; }
.fixed-ratio-view #page-container .as-sortable-item:first-of-type,
.fixed-ratio-view #page-container .as-sortable-placeholder:first-of-type,
.fixed-ratio-view #page-container .page-title:first-of-type {
  border: 0; }
.fixed-ratio-view #page-container .as-sortable-item:hover:before,
.fixed-ratio-view #page-container .page-title:hover:before {
  content: '';
  background: #56CCCC;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px; }
.fixed-ratio-view #page-container .as-sortable-item.active,
.fixed-ratio-view #page-container .page-title.active,
.fixed-ratio-view #page-container .as-sortable-placeholder.active {
  z-index: 2;
  color: #56CCCC;
  cursor: default;
  background-color: transparent;
  border: none;
  position: relative; }
  .fixed-ratio-view #page-container .as-sortable-item.active:before,
  .fixed-ratio-view #page-container .page-title.active:before,
  .fixed-ratio-view #page-container .as-sortable-placeholder.active:before {
    content: '';
    background: #56CCCC;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px; }
.fixed-ratio-view #page-container .as-sortable-item.input-open {
  border: none; }
.fixed-ratio-view .page-tabs-container, .fixed-ratio-view .page-title, .fixed-ratio-view .page-title .as-sortable-item-handle, .fixed-ratio-view .page-title .page-title-inner {
  height: 100% !important;
  padding: 0; }
.fixed-ratio-view .page-title .delete-link {
  display: inline-block;
  margin-right: -1px;
  transform: translateY(-16px); }
.fixed-ratio-view .page-title .delete-link .delete-button {
  background-color: transparent !important;
  color: #F95355;
  border: none;
  margin-top: -6px;
  height: 32px;
  width: 32px;
  text-align: center;
  padding: 5px; }
.fixed-ratio-view .as-sortable-item .delete-link .delete-button:hover {
  background-color: transparent !important;
  border: none; }
.fixed-ratio-view #page-container .page-input .input-box {
  overflow: hidden; }
.fixed-ratio-view #page-container .page-input .input-box input {
  height: 32px;
  min-width: 100px; }
.fixed-ratio-view .page-title .as-sortable-item-handle,
.fixed-ratio-view .page-title .page-title-inner {
  display: inline-block;
  padding: 5px 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  /* height: 1.2em; */
  white-space: nowrap;
  font-size: 16px !important;
  position: relative; }
.fixed-ratio-view .storyboard-actions__pagination .add-link {
  top: -15px;
  position: relative;
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 100%; }
.fixed-ratio-view .old-storyboard-element {
  display: none; }
.fixed-ratio-view.view-mode--stretch .storyboard-actions__container, .fixed-ratio-view.view-mode--fitWidth .storyboard-actions__container, .fixed-ratio-view.view-mode--fitScreen .storyboard-actions__container {
  max-width: 100%; }
.fixed-ratio-view .storyboard-actions__pagination.editing .storyboard-page-navigation {
  right: 30px; }
.fixed-ratio-view .storyboard-page-navigation {
  height: 50px;
  position: absolute;
  left: 0px;
  right: 0px; }
.fixed-ratio-view .storyboard-page-navigation .page-tabs-container {
  width: auto;
  padding-top: 10px;
  text-align: center;
  display: flex;
  justify-content: center; }
.fixed-ratio-view .storyboard-page-navigation .page-link {
  border-radius: 1px;
  width: 30px;
  height: 32px;
  display: inline-block;
  text-align: center;
  font-size: 24px;
  margin-top: 7px;
  cursor: pointer;
  color: #2283c0;
  background: #fff;
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1; }
.fixed-ratio-view .storyboard-page-navigation .page-link:hover {
  background: #2283c0;
  color: #fff;
  border: none; }
.fixed-ratio-view .storyboard-page-navigation .page-link.disabled {
  color: #ddd;
  pointer-events: none; }
.fixed-ratio-view .storyboard-actions__pagination.editing .page-nav-dropdown {
  border-radius: 1px !important; }
.fixed-ratio-view .storyboard-page-navigation .page-link.disabled:hover {
  pointer-events: none; }
.fixed-ratio-view .storyboard-actions__pagination .add-link {
  width: 30px;
  display: inline-block;
  text-align: center;
  height: 32px;
  padding-top: 3px;
  margin-top: 7px;
  font-size: 26px;
  border-radius: 2px; }
.fixed-ratio-view .required-filters--active .grid-stack-item:not(.type-filter) {
  background: #f7f7f7;
  filter: blur(2px);
  opacity: 0.5; }
.fixed-ratio-view .required-filters--active .required-missing .ui-select-container .btn-default {
  border: 1px solid #bf6565; }
.fixed-ratio-view .required-filters--active .required-missing .filter-label, .fixed-ratio-view .required-filters--active .required-missing .ui-select-container .btn-default i, .fixed-ratio-view .required-filters--active .required-missing .ui-select-container .btn-default .text-muted, .fixed-ratio-view .required-filters--active .required-missing .fa-ellipsis-h.filter-editor {
  color: #d83939; }
.fixed-ratio-view .storybaord__message-overlay {
  margin-top: 20px;
  position: absolute;
  width: 100%;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  text-align: center;
  z-index: 10001;
  pointer-events: none; }
.fixed-ratio-view .popover {
  min-width: 200px; }
.fixed-ratio-view .viewer,
.fixed-ratio-view .preview {
  position: static;
  height: 100%;
  overflow-y: auto; }
  .fixed-ratio-view .viewer__footer,
  .fixed-ratio-view .preview__footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    min-height: 70px; }
  .fixed-ratio-view .viewer__board,
  .fixed-ratio-view .preview__board {
    height: 80%;
    height: 100%;
    padding: 0; }
  .fixed-ratio-view .viewer__description,
  .fixed-ratio-view .preview__description {
    margin: 0 0 6px 0;
    height: 50px;
    max-height: 50px;
    overflow-y: auto;
    padding: 0 0 0 5px; }
  .fixed-ratio-view .viewer__title, .fixed-ratio-view .viewer__subtitle,
  .fixed-ratio-view .preview__title,
  .fixed-ratio-view .preview__subtitle {
    color: #3A84C5;
    font-size: 30px;
    border-bottom: none;
    display: inline-block;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 500;
    width: 100%;
    background: transparent; }
    .fixed-ratio-view .viewer__title:focus, .fixed-ratio-view .viewer__subtitle:focus,
    .fixed-ratio-view .preview__title:focus,
    .fixed-ratio-view .preview__subtitle:focus {
      border: none;
      box-shadow: none; }
  .fixed-ratio-view .viewer__subtitle,
  .fixed-ratio-view .preview__subtitle {
    color: #3A84C5;
    font-size: 25px;
    border-bottom: none;
    /* border-bottom: dotted 1px #ccc; */
    display: inline-block;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    /* font-size: 24px; */
    width: 100%;
    text-align: right;
    background: transparent; }
    .fixed-ratio-view .viewer__subtitle:focus,
    .fixed-ratio-view .preview__subtitle:focus {
      border: none;
      box-shadow: none; }
.fixed-ratio-view .viewer__board {
  height: 100%;
  padding: 0; }
  .fixed-ratio-view .viewer__board .storyboard-header, .fixed-ratio-view .viewer__board .nested-page-nav {
    min-height: 100px;
    padding-top: 0;
    padding: 20px 20px 10px;
    border-radius: 5px;
    /* margin: 0 10px; */
    /* background-color: rgba(255, 255, 255, 0.9); */
    background-color: transparent; }
  .fixed-ratio-view .viewer__board .nested-page-nav {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #fff;
    top: 79px;
    left: 50px;
    right: 0; }
  .fixed-ratio-view .viewer__board .storyboard-page-nav {
    /*             top: 115px;
                left: 150px; */ }
.fixed-ratio-view .viewer__footer {
  padding: 20px; }
.fixed-ratio-view .storyboard-actions__periodic-filter {
  position: relative; }
.fixed-ratio-view .storyboard-period-filter {
  position: relative; }
.fixed-ratio-view .storyboard-actions__container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  transition: all .4s ease-out; }
.fixed-ratio-view .filter-label {
  left: 15px;
  transform: none; }
  .fixed-ratio-view .filter-label--slider {
    left: 50%;
    transform: translateX(-50%); }

/******************************************
*
* Modal Preview  
*
*****************************************/
.storyboard-preview-modal {
  /**.storyboard-outer-container.hasFilterSlide {
      left: $filter-slide-out;
      position:absolute;
      right:0px;
      display:inline-block;
      top:0px;
      bottom:0px;
  }**/ }
  .storyboard-preview-modal .slide-out-filter {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 15px 20px 15px;
    border-right: 1px solid #ddd;
    background: #fff;
    z-index: 300000;
    width: 351px;
    pointer-events: none; }
    .storyboard-preview-modal .slide-out-filter .viz-container {
      position: relative;
      overflow: visible; }
  .storyboard-preview-modal .storyboard-outer-container {
    position: absolute;
    right: 0px;
    display: inline-block;
    left: 0px;
    top: 0px;
    bottom: 0px; }
  .storyboard-preview-modal .filter-outer-container {
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px; }
  .storyboard-preview-modal .storyboard-filter-list .filter-rangeslider .filter-body {
    height: 50px !important; }
  .storyboard-preview-modal .slide-out-filter .filter-editor-panel {
    top: 93px !important; }
  .storyboard-preview-modal .slide-out-filter .filter-count-label {
    display: inline-block;
    position: absolute; }
  .storyboard-preview-modal .fixed-ratio-view .storyboard-actions__pagination {
    position: absolute !important;
    top: 0 !important; }
  .storyboard-preview-modal #page-container {
    position: absolute !important;
    top: 0 !important; }

input.dialog-search {
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px 10px !important;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc !important;
  height: auto;
  overflow: visible !important; }

/***********************************
*
* Template View Styles
*
***********************************/
.template-details-panel {
  display: none; }

.storyboard-preview-modal .template-preview, .storyboard-preview-modal .info-bar {
  display: none !important; }
.storyboard-preview-modal .storyboard-actions__main-title {
  display: none; }
.storyboard-preview-modal .storyboard-viewer {
  top: 0 !important; }
.storyboard-preview-modal .storyboard-outer-container {
  right: 30%; }
.storyboard-preview-modal .info-bar {
  display: none; }
.storyboard-preview-modal .template-details-panel {
  background: #fff;
  width: 30%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e6e6e6;
  padding: 25px;
  display: block; }
  .storyboard-preview-modal .template-details-panel__close {
    position: relative;
    z-index: 10001; }

.metric-listing {
  background-color: #e6e6e6;
  color: #5e5e5e;
  border-radius: 10px;
  padding: 3px 15px;
  margin-right: 5px;
  margin-bottom: 10px; }

.btn-multiselect {
  display: flex; }
  .btn-multiselect__text {
    flex-grow: 1;
    align-self: center; }
  .btn-multiselect__selector-caret {
    align-self: center; }

/** Visual List Chart **/
.viz-container .graph-container-vertical {
  position: absolute;
  top: 0px;
  bottom: 50%; }

.viz-container .list-container-vertical.graph-type-pie,
.viz-container .list-container-vertical.graph-type-donut {
  position: absolute;
  top: 50%;
  bottom: 0px;
  overflow-x: hidden; }

.viz-container .list-container-vertical.graph-type-none {
  position: absolute;
  top: 30px;
  bottom: 25px;
  width: 100%;
  left: 0px;
  overflow-x: hidden; }

.visual-export-dropdown {
  color: rgba(0, 0, 0, 0.1);
  transition: color .3s linear;
  position: absolute;
  right: 5px;
  top: 8px;
  z-index: 1; }
  .visual-export-dropdown a.dropdown-toggle {
    color: rgba(0, 0, 0, 0.1);
    transition: color .3s linear; }
    .visual-export-dropdown a.dropdown-toggle:hover, .visual-export-dropdown a.dropdown-toggle:focus {
      color: black; }

@media (max-width: 991px) {
  .storyboard-preview-modal .template-details-panel {
    width: 100%;
    right: 0;
    top: 40%;
    border-left: none;
    border-top: 1px solid #e6e6e6;
    z-index: 10000;
    overflow: auto;
    padding-bottom: 60px; }
    .storyboard-preview-modal .template-details-panel__close {
      position: fixed;
      right: 10px;
      top: 10px;
      z-index: 10001; }
  .storyboard-preview-modal .storyboard-outer-container {
    right: 0;
    bottom: 60%; }
  .storyboard-preview-modal .storyboard-usergroup-select--mobile {
    display: none; }
  .storyboard-preview-modal .storyboard-mobile-header, .storyboard-preview-modal .storyboard-actions {
    display: none !important; } }
@media only screen and (max-width: 420px) {
  .storyboard-preview-modal .storyboard-viewer:not(.fixed-ratio-view) .storyboard-page-body {
    padding: 0px 16px;
    margin-top: 0;
    overflow-x: hidden; } }
/*************************************************************
 *
 * Onboarding Styles
 * 
*************************************************************/
/*************************************************************
 *
 *  Onboarding Messaging - Will expand out to full onboarding
 * 
*************************************************************/
.onboarding-block {
  background: rgba(255, 255, 255, 0.9); }
  .onboarding-block--two-pane {
    width: calc(100% - 32px);
    max-width: 1180px;
    display: inline-block;
    display: inline-flex;
    padding: 0;
    border-radius: 0;
    margin: 0 16px; }
  .onboarding-block__pane1, .onboarding-block__pane2 {
    flex-grow: 1;
    padding: 25px;
    flex-basis: 50%; }
  .onboarding-block__pane1 {
    background-color: #F9F9F9;
    color: #A2A2A2;
    display: inline-block;
    position: relative; }
    .onboarding-block__pane1 h1, .onboarding-block__pane1 h2, .onboarding-block__pane1 h3, .onboarding-block__pane1 h4, .onboarding-block__pane1 h5 {
      color: #0098A0; }
    .onboarding-block__pane1 p, .onboarding-block__pane1 li {
      font-size: 16px; }
    .onboarding-block__pane1 ul {
      list-style: none;
      text-align: center;
      padding-left: 0;
      margin-left: 0; }
      .onboarding-block__pane1 ul li {
        padding-bottom: 8px;
        font-weight: 700; }
    .onboarding-block__pane1:before {
      content: '';
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      position: absolute;
      display: inline-block;
      background: url("images/accent_top.png") no-repeat top right; }
    .onboarding-block__pane1:after {
      content: '';
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      position: absolute;
      display: inline-block;
      background: url("images/accent_bottom.png") no-repeat bottom left; }
  .onboarding-block__pane2 {
    text-align: left; }
    .onboarding-block__pane2 h1, .onboarding-block__pane2 h2, .onboarding-block__pane2 h3, .onboarding-block__pane2 h4, .onboarding-block__pane2 h5 {
      color: #2e6a9e; }
    .onboarding-block__pane2 .form-control, .onboarding-block__pane2 .span.btn.btn-default.form-control {
      font-family: Arial, 'Font Awesome 5 Pro';
      width: 100%;
      left: 0;
      right: 0;
      margin: auto;
      background-color: #F9F9FB;
      display: inline-block;
      border-radius: 20px;
      border-box: 0;
      height: 40px;
      border: none;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      margin-bottom: 8px !important; }
    .onboarding-block__pane2 .ui-select-container .btn-default {
      display: block;
      width: 100%;
      height: 34px;
      padding: 6px 12px;
      font-size: 14px;
      line-height: 1.42857143;
      color: #555;
      background-color: #fff !important;
      background-image: none;
      border: 1px solid #ccc !important;
      border-radius: 4px;
      -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
      -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
      -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
      transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
      margin-bottom: 0 !important; }
    .onboarding-block__pane2 .ui-select-container .btn-default {
      font-family: Arial, 'Font Awesome 5 Pro';
      width: 100%;
      left: 0;
      right: 0;
      margin: auto;
      background-color: #F9F9FB !important;
      display: inline-block;
      border-radius: 20px;
      border-box: 0;
      height: 40px;
      border: none !important;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
      margin-bottom: 8px !important; }
    .onboarding-block__pane2 .onboarding-block .ui-select-container .ui-select-placeholder, .onboarding-block__pane2 .onboarding-block .ui-select-container .ui-select-match-text {
      margin-top: 5px;
      display: inline-block; }
    .onboarding-block__pane2 #strength {
      bottom: -17px !important; }
    .onboarding-block__pane2 .password-input label.pull-left {
      position: absolute !important;
      display: inline-block;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(1px 1px 1px 1px);
      /* IE6, IE7 */
      clip: rect(1px, 1px, 1px, 1px); }
    .onboarding-block__pane2 .input-with-icon {
      height: calc(3.2rem + 12px) !important; }
  .onboarding-block__graphic {
    height: 200px;
    background: transparent url("images/tempalte_screenshot.png") no-repeat center center;
    background-size: contain;
    margin-bottom: 16px; }
  @media screen and (max-width: 700px) {
    .onboarding-block .onboarding-block__pane1 {
      display: none; } }

.onboarding-block-container {
  position: relative;
  padding-top: 25px;
  transform: translate(0);
  top: 0; }

.onboarding-block-branding {
  height: 120px; }

.onboarding-logout {
  position: absolute;
  top: 15px;
  right: 15px; }

.onboarding-logout, .onboarding-logout a {
  float: right;
  color: #ccc; }

.onboarding-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url("images/login.brown-desktop.jpg") center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  z-index: 1070;
  overflow: auto;
  padding: 25px;
  padding: 25px; }
  .onboarding-screen .login-block-container {
    position: absolute; }
  .onboarding-screen .subheading {
    color: #707070; }

.onboarding-message {
  color: #848484;
  font-weight: 500; }

.page-onboarding {
  left: 0; }

.page-onboarding .navbar-nav {
  display: none; }

.page-onboarding .sidebar-main {
  display: none; }

.page-home {
  left: 0; }

.animation-container {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 4px; }

.animation-container {
        /* .modal-open &{

             overflow:  visible;


            .card__inner--overlay{
                opacity: 0;   
            }
        } */ }

.survey-container {
  height: 345px; }

.integration-container > div {
  display: inline-block;
  position: relative; }

.integration-block,
.sources-block {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.25) !important;
  color: #fff;
  display: inline-block;
  width: 800px;
  padding: 15px; }

.onboarding-integration-tile {
  width: 30%;
  height: auto;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin: 10px;
  overflow: hidden;
  transition: all .3s ease-out; }
  .onboarding-integration-tile--wizard {
    width: calc(25% - 20px); }
  .onboarding-integration-tile__datasource {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .onboarding-integration-tile.beta:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    display: block;
    background: transparent url("../../assets/images/badges/badge.beta.svg") no-repeat top right;
    top: -1px;
    background-size: auto 60%;
    right: -1px; }
  .onboarding-integration-tile.new:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    display: block;
    background: transparent url("../../assets/images/badges/badge.new.svg") no-repeat top right;
    top: -1px;
    background-size: auto 60%;
    right: -1px; }
  .onboarding-integration-tile.sample-data:after {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    display: block;
    background: transparent url("../../assets/images/badges/badge.new.svg") no-repeat top right;
    top: -1px;
    background-size: auto 60%;
    right: -1px; }
  .onboarding-integration-tile:hover {
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 1px #56CCCC; }

.onboarding-integration-icon {
  height: 160px;
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: 60px auto;
  background-position: center center; }

.integration-label {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 2px;
  color: #718fff;
  font-size: 14px;
  background-color: #fff;
  font-weight: 700;
  display: none; }

.onboarding-integration-tile .integration-label {
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: all .2s ease-in; }

.onboarding-integration-tile:hover .integration-label {
  bottom: 0; }

.connection-heading {
  padding: 10px;
  background: #ffffff36;
  border-bottom: 1px solid #fff;
  cursor: pointer; }

/************************************************
*
*  Data Source Selector
*
************************************************/
.dataset-item__dataset-name {
  border-bottom: 0 solid transparent;
  margin-bottom: 30px; }

.connection-list-container {
  border: 1px solid #d4d4d4;
  border-radius: 15px;
  overflow: hidden; }

.onboarding-screen .connection-heading {
  background: #fff;
  color: #6d6d6d;
  border-bottom: 1px solid #d4d4d4;
  transition: all .2s ease-in-out; }
  .onboarding-screen .connection-heading:hover {
    background: #ececec; }

/*************************************************************
 *
 *  Form Styles -- Validation
 * 
*************************************************************/
.form-group {
  margin-bottom: 20px; }
  .form-group--validation {
    position: relative; }

.form-validation-message {
  position: absolute;
  bottom: -28px;
  left: 0px;
  text-align: left;
  font-weight: 700;
  font-size: 12px; }
  .form-validation-message--error {
    color: #a94442; }

.login-block #strength, .onboarding-block #strength {
  text-align: right;
  position: absolute;
  bottom: -17px;
  right: 0px;
  font-weight: 700;
  font-size: 12px; }

/************************************************
*
*  Template Selector
*
************************************************/
.templates-container ul {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  list-style: none; }

/************************************************
*
*  Account Type Select
*
************************************************/
.onboarding-block .account-type {
  min-height: 59px; }
.onboarding-block .ui-select-bootstrap > .ui-select-choices {
  max-height: 330px; }
.onboarding-block .ui-select-bootstrap .ui-select-choices-row.active > a {
  background: #dfdfdf;
  color: initial; }
.onboarding-block .ui-select-offscreen {
  visibility: hidden; }
.onboarding-block .register-level-option {
  display: 100%; }
  .onboarding-block .register-level-option__icon-container, .onboarding-block .register-level-option__content-container {
    display: inline-block; }
  .onboarding-block .register-level-option__icon-container {
    font-size: 3.5em;
    padding: 5px 15px 5px 5px; }
  .onboarding-block .register-level-option__icon-container img {
    width: auto;
    height: 74px;
    display: inline-block;
    float: left; }
  .onboarding-block .register-level-option__content-container {
    width: calc(100% - 50px);
    white-space: initial !important; }
  .onboarding-block .register-level-option__title {
    color: #707070; }
  .onboarding-block .register-level-option__desc {
    color: #707070;
    display: inline-block; }
.onboarding-block .ui-select-container .btn-default {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff !important;
  background-image: none;
  border: 1px solid #ccc !important;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; }
.onboarding-block .ui-select-placeholder.text-muted {
  color: #979797;
  font-weight: 500; }

.modal-backdrop--welcome {
  background: #fff url("images/celebration-background.png") no-repeat center center; }

.welcome-window .modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  text-align: center; }
.welcome-window .modal-content {
  background: #fff;
  border-radius: 0 !important;
  max-width: 500px;
  display: inline-block;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  border: none;
  padding-bottom: 65px;
  background: #fff url("images/welcome-background.png") no-repeat bottom center;
  background-size: cover; }
.welcome-window .modal-header h2, .welcome-window .modal-header h3 {
  color: #0098A0;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.1em;
  text-transform: uppercase; }
.welcome-window .modal-body {
  text-align: center;
  margin-bottom: 25px; }
  .welcome-window .modal-body p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #8A8A8A; }

/************************************************
*
*  Onboarding preview modal
*
************************************************/
.storyboard-preview-modal .modal-body, .storyboard-preview-modal .storyboard-outer-container {
  height: 100%; }
.storyboard-preview-modal .modal-content {
  overflow: hidden; }

.bottom-bar .action-button {
  text-align: center;
  height: 100%;
  padding: 5px;
  vertical-align: middle;
  color: #39757d;
  border-radius: 0px;
  width: 100% !important;
  display: inline-block;
  font-weight: 700 !important; }

/************************************************
*
*  Media Queries
*
************************************************/
.page-onboarding .bottom-bar {
  display: none !important; }

@media screen and (max-width: 1190px) {
  .onboarding-integration-tile {
    width: 45%; } }
@media screen and (max-width: 825px) {
  .onboarding-integration-tile {
    width: calc(50% - 10px);
    margin-right: 5px !important;
    margin-left: 5px !important; } }
@media screen and (max-width: 450px) {
  .login-block h1, .onboarding-block h1 {
    margin-top: 15px;
    margin-bottom: 25px; }

  .form-validation-message {
    position: static;
    margin: 0; }

  .page-onboarding h2 {
    font-size: 20px; }

  .onboarding-block h3 {
    font-size: 16px; }

  .onboarding-block-container {
    padding-top: 0; }

  .onboarding-block-branding {
    height: 60px; }

  .onboarding-screen {
    padding: 25px 5px; }

  .onboarding-block .navigation-tiles-container, .templates-container {
    padding-left: 0;
    padding-right: 0; }

  .brand-icon--full {
    background-image: url("images/logo.correct_vue.svg");
    background-size: 80% auto; }

  .onboarding-integration-tile {
    width: calc(50% - 10px);
    margin-right: 5px !important;
    margin-left: 5px !important; }

  .integration-container {
    overflow-x: visible !important; }

  .onboarding-integration-tile {
    margin: 10px 0; }

  .integration-label {
    display: none; }

  .onboarding-integration-icon {
    height: 73px;
    background-size: 100% auto !important; }

  .register-level-option__desc {
    font-size: 12px; }

  .visual-conversation-follow {
    display: none !important; }

  .storyboard-viewer.mobile-view {
    margin-top: 35px !important; }

  .storyboard-snapshot-header {
    font-size: 18px !important; } }
.datasource-select--file-upload {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px; }

.page-title-page {
  display: flex;
  flex-direction: row;
  position: fixed;
  height: 100%;
  width: 100%;
  height: 100vh;
  width: 100vw;
  background: #fff;
  text-align: center;
  top: 0;
  left: 0; }
  .page-title-page__container {
    width: 100%;
    align-self: center;
    text-align: center;
    z-index: 2; }
  .page-title-page__button {
    max-width: 400px;
    display: inline-block; }
    .page-title-page__button button {
      margin-left: 0 !important;
      margin-right: 0 !important; }

.storyboard-title {
  color: #114d72;
  text-align: center;
  margin-bottom: 32px; }

.page-title-page__background {
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: 1;
  width: 100%; }

.page-embeddedStoryboard .fixed-ratio-view .storyboard-container {
  height: 100%;
  width: 100%; }

/* Custom, Ipad Pro */
@media only screen and (max-width: 420px) {
  .page-title-page {
    display: flex;
    flex-direction: row;
    position: fixed;
    height: 100%;
    width: 100%;
    height: 100vh;
    width: 100vw;
    background: #fff;
    text-align: center;
    top: 0;
    left: 0; }
    .page-title-page__container {
      width: 100%;
      align-self: center;
      text-align: center;
      z-index: 2;
      margin-top: -230px; }
    .page-title-page__button {
      max-width: 400px;
      display: inline-block; }
      .page-title-page__button button {
        margin-left: 0 !important;
        margin-right: 0 !important; } }
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }
.flash {
  -webkit-animation-name: flash;
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand; }

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }
.shake {
  -webkit-animation-name: shake;
  animation-name: shake; }

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake; }

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing; }

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.tada {
  -webkit-animation-name: tada;
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble; }

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg); } }
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn; }

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown; }

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft; }

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight; }

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp; }

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut; }

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown; }

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft; }

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight; }

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig; }

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig; }

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig; }

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig; }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig; }

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig; }

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig; }

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig; }

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY; }

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn; }

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft; }

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight; }

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft; }

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight; }

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut; }

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft; }

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight; }

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft; }

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight; }

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut; }

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown; }

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft; }

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight; }

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp; }

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown; }

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft; }

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight; }

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft; }

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight; }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft; }

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight; }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

.splash {
  /********** MAIN CONFIGURATION **********/
  /********** BOOTSTRAP MODIFICATIONS **********/
  /* Navbar Tweaks */
  /* HR Tweak */
  /********** HEADER WRAP **********/
  /********** WELCOME WRAP **********/
  /********** SERVICE WRAP **********/
  /********** EXAMPLE SECTION **********/
  /********** ABOUT WRAP **********/
  /********** PROJECT WRAP **********/
  /********** PROJECT WRAP 2 **********/
  /********** PRICE WRAP **********/
  /********** FOOTER WRAP **********/
  /********** MAP SECTION **********/
  /********** MASKS **********/
  /* Services Hover */
  /* Project Image Hover */
  /********** FOUNDERS ABOUT DESIGN **********/
  /********** PROJECTS ITEMS **********/
  /********** CLIENTS LIST **********/
  /********** PRICING TABLES **********/
  /********** Boostrap Overrides **********/
  /********** Animation **********/
  /********** MEDIA QUIERIES **********/ }
  .splash .dataset-row__image img, .dataset-row__image .splash img, .splash .dataset-row__image .private, .dataset-row__image .splash .private, .splash .storyboard-filter-row .viz-container > div, .storyboard-filter-row .splash .viz-container > div, .splash .login-block-container, .splash .onboarding-block-container {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
  .splash .suggestion-picker .suggested-chart .headline .headline-value span, .suggestion-picker .suggested-chart .headline .headline-value .splash span,
  .splash .suggestion-picker .suggested-chart .headline .headline-caption span,
  .suggestion-picker .suggested-chart .headline .headline-caption .splash span, .splash .chart-panel.sb-filter range-slider-filter, .chart-panel.sb-filter .splash range-slider-filter, .splash .chart-panel.sb-filter fix-min-slider, .chart-panel.sb-filter .splash fix-min-slider, .splash .chart-panel .c-filter range-slider-filter, .chart-panel .c-filter .splash range-slider-filter, .splash .chart-panel .c-filter fix-min-slider, .chart-panel .c-filter .splash fix-min-slider, .splash .chart-panel.sb-filter .filter-dropdown, .chart-panel.sb-filter .splash .filter-dropdown, .splash .chart-panel.sb-filter .filter-search, .chart-panel.sb-filter .splash .filter-search, .splash .chart-panel .c-filter .filter-dropdown, .chart-panel .c-filter .splash .filter-dropdown, .splash .chart-panel .c-filter .filter-search, .chart-panel .c-filter .splash .filter-search, .splash .viz-container .chart-adviser .message, .viz-container .chart-adviser .splash .message, .splash .sb-headline.preview .headline .headline-value span, .sb-headline.preview .headline .headline-value .splash span, .splash .sb-headline.preview .headline .headline-caption span, .sb-headline.preview .headline .headline-caption .splash span, .splash .storyboard.standard .sb-headline .headline .headline-value span, .storyboard.standard .sb-headline .headline .headline-value .splash span, .splash .storyboard.standard .grid-stack-item .headline .headline-value span, .storyboard.standard .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.standard .sb-headline .headline .headline-value span, .storyboard-container.standard .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.standard .grid-stack-item .headline .headline-value span, .storyboard-container.standard .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.standard .sb-headline .headline .headline-caption span, .storyboard.standard .sb-headline .headline .headline-caption .splash span, .splash .storyboard.standard .grid-stack-item .headline .headline-caption span, .storyboard.standard .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.standard .sb-headline .headline .headline-caption span, .storyboard-container.standard .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.standard .grid-stack-item .headline .headline-caption span, .storyboard-container.standard .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.vibrant .sb-headline .headline .headline-value span, .storyboard.vibrant .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.vibrant .sb-headline .headline .headline-caption span,
  .storyboard.vibrant .sb-headline .headline .headline-caption .splash span, .splash .storyboard.vibrant .grid-stack-item .headline .headline-value span, .storyboard.vibrant .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.vibrant .grid-stack-item .headline .headline-caption span,
  .storyboard.vibrant .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.vibrant .sb-headline .headline .headline-value span, .storyboard-container.vibrant .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.vibrant .sb-headline .headline .headline-caption span,
  .storyboard-container.vibrant .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.vibrant .grid-stack-item .headline .headline-value span, .storyboard-container.vibrant .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.vibrant .grid-stack-item .headline .headline-caption span,
  .storyboard-container.vibrant .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.spring .sb-headline .headline .headline-value span, .storyboard.spring .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.spring .sb-headline .headline .headline-caption span,
  .storyboard.spring .sb-headline .headline .headline-caption .splash span, .splash .storyboard.spring .grid-stack-item .headline .headline-value span, .storyboard.spring .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.spring .grid-stack-item .headline .headline-caption span,
  .storyboard.spring .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.spring .sb-headline .headline .headline-value span, .storyboard-container.spring .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.spring .sb-headline .headline .headline-caption span,
  .storyboard-container.spring .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.spring .grid-stack-item .headline .headline-value span, .storyboard-container.spring .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.spring .grid-stack-item .headline .headline-caption span,
  .storyboard-container.spring .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.summer .sb-headline .headline .headline-value span, .storyboard.summer .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.summer .sb-headline .headline .headline-caption span,
  .storyboard.summer .sb-headline .headline .headline-caption .splash span, .splash .storyboard.summer .grid-stack-item .headline .headline-value span, .storyboard.summer .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.summer .grid-stack-item .headline .headline-caption span,
  .storyboard.summer .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.summer .sb-headline .headline .headline-value span, .storyboard-container.summer .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.summer .sb-headline .headline .headline-caption span,
  .storyboard-container.summer .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.summer .grid-stack-item .headline .headline-value span, .storyboard-container.summer .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.summer .grid-stack-item .headline .headline-caption span,
  .storyboard-container.summer .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.autumn .sb-headline .headline .headline-value span, .storyboard.autumn .sb-headline .headline .headline-value .splash span, .splash .storyboard.autumn .grid-stack-item .headline .headline-value span, .storyboard.autumn .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.autumn .sb-headline .headline .headline-value span, .storyboard-container.autumn .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.autumn .grid-stack-item .headline .headline-value span, .storyboard-container.autumn .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.autumn .sb-headline .headline .headline-caption span, .storyboard.autumn .sb-headline .headline .headline-caption .splash span, .splash .storyboard.autumn .grid-stack-item .headline .headline-caption span, .storyboard.autumn .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.autumn .sb-headline .headline .headline-caption span, .storyboard-container.autumn .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.autumn .grid-stack-item .headline .headline-caption span, .storyboard-container.autumn .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.winter .sb-headline .headline .headline-value span, .storyboard.winter .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.winter .sb-headline .headline .headline-caption span,
  .storyboard.winter .sb-headline .headline .headline-caption .splash span, .splash .storyboard.winter .grid-stack-item .headline .headline-value span, .storyboard.winter .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.winter .grid-stack-item .headline .headline-caption span,
  .storyboard.winter .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.winter .sb-headline .headline .headline-value span, .storyboard-container.winter .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.winter .sb-headline .headline .headline-caption span,
  .storyboard-container.winter .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.winter .grid-stack-item .headline .headline-value span, .storyboard-container.winter .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.winter .grid-stack-item .headline .headline-caption span,
  .storyboard-container.winter .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.dragon .sb-headline .headline .headline-value span, .storyboard.dragon .sb-headline .headline .headline-value .splash span, .splash .storyboard.dragon .grid-stack-item .headline .headline-value span, .storyboard.dragon .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.dragon .sb-headline .headline .headline-value span, .storyboard-container.dragon .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.dragon .grid-stack-item .headline .headline-value span, .storyboard-container.dragon .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.dragon .sb-headline .headline .headline-caption span, .storyboard.dragon .sb-headline .headline .headline-caption .splash span, .splash .storyboard.dragon .grid-stack-item .headline .headline-caption span, .storyboard.dragon .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.dragon .sb-headline .headline .headline-caption span, .storyboard-container.dragon .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.dragon .grid-stack-item .headline .headline-caption span, .storyboard-container.dragon .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.ocean .sb-headline .headline .headline-value span, .storyboard.ocean .sb-headline .headline .headline-value .splash span, .splash .storyboard.ocean .grid-stack-item .headline .headline-value span, .storyboard.ocean .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.ocean .sb-headline .headline .headline-value span, .storyboard-container.ocean .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.ocean .grid-stack-item .headline .headline-value span, .storyboard-container.ocean .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.ocean .sb-headline .headline .headline-caption span, .storyboard.ocean .sb-headline .headline .headline-caption .splash span, .splash .storyboard.ocean .grid-stack-item .headline .headline-caption span, .storyboard.ocean .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.ocean .sb-headline .headline .headline-caption span, .storyboard-container.ocean .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.ocean .grid-stack-item .headline .headline-caption span, .storyboard-container.ocean .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.mystery .sb-headline .headline .headline-value span, .storyboard.mystery .sb-headline .headline .headline-value .splash span, .splash .storyboard.mystery .grid-stack-item .headline .headline-value span, .storyboard.mystery .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.mystery .sb-headline .headline .headline-value span, .storyboard-container.mystery .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.mystery .grid-stack-item .headline .headline-value span, .storyboard-container.mystery .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.mystery .sb-headline .headline .headline-caption span, .storyboard.mystery .sb-headline .headline .headline-caption .splash span, .splash .storyboard.mystery .grid-stack-item .headline .headline-caption span, .storyboard.mystery .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.mystery .sb-headline .headline .headline-caption span, .storyboard-container.mystery .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.mystery .grid-stack-item .headline .headline-caption span, .storyboard-container.mystery .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.flower .sb-headline .headline .headline-value span, .storyboard.flower .sb-headline .headline .headline-value .splash span, .splash .storyboard.flower .grid-stack-item .headline .headline-value span, .storyboard.flower .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.flower .sb-headline .headline .headline-value span, .storyboard-container.flower .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.flower .grid-stack-item .headline .headline-value span, .storyboard-container.flower .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.flower .sb-headline .headline .headline-caption span, .storyboard.flower .sb-headline .headline .headline-caption .splash span, .splash .storyboard.flower .grid-stack-item .headline .headline-caption span, .storyboard.flower .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.flower .sb-headline .headline .headline-caption span, .storyboard-container.flower .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.flower .grid-stack-item .headline .headline-caption span, .storyboard-container.flower .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.rainbow .sb-headline .headline .headline-value span, .storyboard.rainbow .sb-headline .headline .headline-value .splash span, .splash .storyboard.rainbow .grid-stack-item .headline .headline-value span, .storyboard.rainbow .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.rainbow .sb-headline .headline .headline-value span, .storyboard-container.rainbow .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.rainbow .grid-stack-item .headline .headline-value span, .storyboard-container.rainbow .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.rainbow .sb-headline .headline .headline-caption span, .storyboard.rainbow .sb-headline .headline .headline-caption .splash span, .splash .storyboard.rainbow .grid-stack-item .headline .headline-caption span, .storyboard.rainbow .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.rainbow .sb-headline .headline .headline-caption span, .storyboard-container.rainbow .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.rainbow .grid-stack-item .headline .headline-caption span, .storyboard-container.rainbow .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.modern .sb-headline .headline .headline-value span, .storyboard.modern .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.modern .sb-headline .headline .headline-caption span,
  .storyboard.modern .sb-headline .headline .headline-caption .splash span, .splash .storyboard.modern .grid-stack-item .headline .headline-value span, .storyboard.modern .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.modern .grid-stack-item .headline .headline-caption span,
  .storyboard.modern .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.modern .sb-headline .headline .headline-value span, .storyboard-container.modern .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.modern .sb-headline .headline .headline-caption span,
  .storyboard-container.modern .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.modern .grid-stack-item .headline .headline-value span, .storyboard-container.modern .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.modern .grid-stack-item .headline .headline-caption span,
  .storyboard-container.modern .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.metal .sb-headline .headline .headline-value span, .storyboard.metal .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.metal .sb-headline .headline .headline-caption span,
  .storyboard.metal .sb-headline .headline .headline-caption .splash span, .splash .storyboard.metal .grid-stack-item .headline .headline-value span, .storyboard.metal .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.metal .grid-stack-item .headline .headline-caption span,
  .storyboard.metal .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.metal .sb-headline .headline .headline-value span, .storyboard-container.metal .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.metal .sb-headline .headline .headline-caption span,
  .storyboard-container.metal .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.metal .grid-stack-item .headline .headline-value span, .storyboard-container.metal .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.metal .grid-stack-item .headline .headline-caption span,
  .storyboard-container.metal .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.antique .sb-headline .headline .headline-value span, .storyboard.antique .sb-headline .headline .headline-value .splash span, .splash .storyboard.antique .grid-stack-item .headline .headline-value span, .storyboard.antique .grid-stack-item .headline .headline-value .splash span, .splash .storyboard-container.antique .sb-headline .headline .headline-value span, .storyboard-container.antique .sb-headline .headline .headline-value .splash span, .splash .storyboard-container.antique .grid-stack-item .headline .headline-value span, .storyboard-container.antique .grid-stack-item .headline .headline-value .splash span, .splash .storyboard.antique .sb-headline .headline .headline-caption span, .storyboard.antique .sb-headline .headline .headline-caption .splash span, .splash .storyboard.antique .grid-stack-item .headline .headline-caption span, .storyboard.antique .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.antique .sb-headline .headline .headline-caption span, .storyboard-container.antique .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.antique .grid-stack-item .headline .headline-caption span, .storyboard-container.antique .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard.pos-neg .sb-headline .headline .headline-value span, .storyboard.pos-neg .sb-headline .headline .headline-value .splash span,
  .splash .storyboard.pos-neg .sb-headline .headline .headline-caption span,
  .storyboard.pos-neg .sb-headline .headline .headline-caption .splash span, .splash .storyboard.pos-neg .grid-stack-item .headline .headline-value span, .storyboard.pos-neg .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard.pos-neg .grid-stack-item .headline .headline-caption span,
  .storyboard.pos-neg .grid-stack-item .headline .headline-caption .splash span, .splash .storyboard-container.pos-neg .sb-headline .headline .headline-value span, .storyboard-container.pos-neg .sb-headline .headline .headline-value .splash span,
  .splash .storyboard-container.pos-neg .sb-headline .headline .headline-caption span,
  .storyboard-container.pos-neg .sb-headline .headline .headline-caption .splash span, .splash .storyboard-container.pos-neg .grid-stack-item .headline .headline-value span, .storyboard-container.pos-neg .grid-stack-item .headline .headline-value .splash span,
  .splash .storyboard-container.pos-neg .grid-stack-item .headline .headline-caption span,
  .storyboard-container.pos-neg .grid-stack-item .headline .headline-caption .splash span, .splash .gaugeCylinder .chart-container, .gaugeCylinder .splash .chart-container,
  .splash .gaugeBulb .chart-container,
  .gaugeBulb .splash .chart-container,
  .splash .gaugeThermometer .chart-container,
  .gaugeThermometer .splash .chart-container,
  .splash .gaugeBullet .chart-container,
  .gaugeBullet .splash .chart-container, .splash .gaugeCylinder .chart-value, .gaugeCylinder .splash .chart-value,
  .splash .gaugeBulb .chart-value,
  .gaugeBulb .splash .chart-value,
  .splash .gaugeThermometer .chart-value,
  .gaugeThermometer .splash .chart-value,
  .splash .gaugeBullet .chart-value,
  .gaugeBullet .splash .chart-value, .splash .gauge .chart-container, .gauge .splash .chart-container,
  .splash .gaugeLinear .chart-container,
  .gaugeLinear .splash .chart-container, .splash .viz-trend-headline .compare-icon, .viz-trend-headline .splash .compare-icon, .splash .viz-multitab-trend .compare-icon, .viz-multitab-trend .splash .compare-icon, .splash .freeform--editor-beta .chart-panel.sb-filter range-slider-filter, .freeform--editor-beta .chart-panel.sb-filter .splash range-slider-filter, .splash .freeform--editor-beta .chart-panel.sb-filter fix-min-slider, .freeform--editor-beta .chart-panel.sb-filter .splash fix-min-slider, .splash .freeform--editor-beta .chart-panel .c-filter range-slider-filter, .freeform--editor-beta .chart-panel .c-filter .splash range-slider-filter, .splash .freeform--editor-beta .chart-panel .c-filter fix-min-slider, .freeform--editor-beta .chart-panel .c-filter .splash fix-min-slider, .splash .page-viz-edit .chart-panel.sb-filter range-slider-filter, .page-viz-edit .chart-panel.sb-filter .splash range-slider-filter, .splash .page-viz-edit .chart-panel.sb-filter fix-min-slider, .page-viz-edit .chart-panel.sb-filter .splash fix-min-slider, .splash .page-viz-edit .chart-panel .c-filter range-slider-filter, .page-viz-edit .chart-panel .c-filter .splash range-slider-filter, .splash .page-viz-edit .chart-panel .c-filter fix-min-slider, .page-viz-edit .chart-panel .c-filter .splash fix-min-slider, .splash .freeform--editor-beta .chart-panel.sb-filter .filter-dropdown, .freeform--editor-beta .chart-panel.sb-filter .splash .filter-dropdown, .splash .freeform--editor-beta .chart-panel.sb-filter .filter-search, .freeform--editor-beta .chart-panel.sb-filter .splash .filter-search, .splash .freeform--editor-beta .chart-panel .c-filter .filter-dropdown, .freeform--editor-beta .chart-panel .c-filter .splash .filter-dropdown, .splash .freeform--editor-beta .chart-panel .c-filter .filter-search, .freeform--editor-beta .chart-panel .c-filter .splash .filter-search, .splash .page-viz-edit .chart-panel.sb-filter .filter-dropdown, .page-viz-edit .chart-panel.sb-filter .splash .filter-dropdown, .splash .page-viz-edit .chart-panel.sb-filter .filter-search, .page-viz-edit .chart-panel.sb-filter .splash .filter-search, .splash .page-viz-edit .chart-panel .c-filter .filter-dropdown, .page-viz-edit .chart-panel .c-filter .splash .filter-dropdown, .splash .page-viz-edit .chart-panel .c-filter .filter-search, .page-viz-edit .chart-panel .c-filter .splash .filter-search, .splash .freeform--editor-beta .viz-container .chart-adviser .message, .freeform--editor-beta .viz-container .chart-adviser .splash .message, .splash .page-viz-edit .viz-container .chart-adviser .message, .page-viz-edit .viz-container .chart-adviser .splash .message {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .splash jh-alert {
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    position: relative;
    left: 50%;
    transform: translateX(-50%); }
  .splash .align-left {
    text-align: left; }
  .splash .align-center {
    text-align: center; }
  .splash .align-right {
    text-align: right; }
  .splash body {
    position: relative;
    background-color: #fff;
    font-family: 'Open Sans Condensed',sans-serif;
    font-size: 18px;
    color: #000; }
  .splash h2, .splash h3, .splash h4, .splash h5, .splash h6 {
    font-family: 'Open Sans Condensed',sans-serif;
    color: #666; }
  .splash h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 60px;
    margin-bottom: 25px; }
  .splash h2 {
    font-weight: 400;
    margin-bottom: 15px; }
  .splash h3 {
    margin-bottom: 1px; }
  .splash h5 {
    text-align: center; }
  .splash p {
    margin-bottom: 20px;
    font-family: 'Poly', serif;
    font-size: 16px; }
  .splash a {
    text-decoration: none; }
  .splash a:hover {
    text-decoration: none; }
  .splash h1 small, .splash h2 small, .splash h3 small, .splash h4 small, .splash h5 small, .splash h6 small {
    margin-left: 12px;
    font-size: 15px;
    font-style: italic;
    color: #000;
    line-height: 5px;
    letter-spacing: 0; }
  .splash .navbar-default {
    box-shadow: none;
    min-height: 0; }
  .splash .navbar-inverse .navbar-inner {
    background-color: #000;
    background-repeat: repeat-x;
    border-color: transparent;
    background-image: none;
    height: 100%;
    padding-top: 6px; }
  .splash .navbar-inverse .brand, .splash .navbar-inverse .brand--lg, .splash .navbar-inverse .brand--full, .splash .navbar-inverse .brand--md, .splash .navbar-inverse .brand--mobile--lg, .splash .navbar-inverse .brand--mobile--full, .splash .navbar-inverse .brand--mobile--md, .splash .navbar-inverse .navbar-brand,
  .splash .navbar-inverse .nav > li > a {
    font-family: 'Open Sans Condensed', sans-serif;
    color: #fff;
    background: #000;
    text-shadow: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px; }
  .splash .navbar-inverse .nav > li > a:hover,
  .splash .navbar-inverse .nav > li > a:focus {
    color: #ffffff;
    background: #000 !important; }
  .splash .navbar-inverse .brand, .splash .navbar-inverse .brand--lg, .splash .navbar-inverse .brand--full, .splash .navbar-inverse .brand--md, .splash .navbar-inverse .brand--mobile--lg, .splash .navbar-inverse .brand--mobile--full, .splash .navbar-inverse .brand--mobile--md, .splash .navbar-inverse .navbar-brand {
    color: #fff;
    height: 38px;
    width: 200px;
    margin: 0;
    padding: 0;
    background: transparent url("/themes/correctvue/images/main_logo.svg") no-repeat center center;
    overflow: hidden;
    text-indent: -1000px;
    background-size: contain;
    display: inline-block;
    margin-top: 5px; }
  .splash .navbar-inverse .navbar-text {
    color: #999999; }
  .splash .navbar-inverse .nav > li > a:focus,
  .splash .navbar-inverse .nav > li > a:hover {
    color: #ffffff;
    background-color: transparent; }
  .splash .navbar-inverse .nav .active > a,
  .splash .navbar-inverse .nav .active > a:hover,
  .splash .navbar-inverse .nav .active > a:focus {
    color: #fff;
    background-color: transparent; }
  .splash .navbar-inverse .navbar-link {
    color: #999999; }
  .splash .navbar-inverse .navbar-link:hover,
  .splash .navbar-inverse .navbar-link:focus {
    color: #ffffff; }
  .splash .navbar-fixed-top .navbar-inner,
  .splash .navbar-static-top .navbar-inner {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  .splash .navbar .nav > .active > a,
  .splash .navbar .nav > .active > a:hover,
  .splash .navbar .nav > .active > a:focus {
    color: #A5C939;
    text-decoration: none;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
  .splash hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px dashed #eeeeee;
    border-bottom: 1px dashed #bfbfbf; }
  .splash #headerwrap {
    animation: fadein .6s ease-out 1s 1 normal;
    animation-fill-mode: forwards;
    background: url("images/header.desk.jpg") no-repeat center right fixed;
    background-size: cover;
    height: 600px;
    margin-top: -60px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    text-shadow: 0px 0px 5px #000;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.72);
    width: 100%;
    padding-top: 160px; }
  .splash .parallax-mirror {
    opacity: 0;
    animation: fadein .6s ease-out 1s 1 normal;
    animation-fill-mode: forwards; }
  .splash #headerwrap h1 {
    font-family: "ff-meta-serif-web-pro";
    font-weight: 400;
    font-size: 85px;
    color: #fff;
    margin-bottom: 25px;
    line-height: normal;
    padding-right: 350px;
    line-height: 1.2em; }
  .splash #headerwrap .hero-messaging {
    top: 150px; }
    .splash #headerwrap .hero-messaging span {
      color: #A5C939;
      font-weight: 700; }
  .splash .arrow {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center; }
  .splash #welcomewrap {
    width: 100%;
    padding-bottom: 15px;
    padding-top: 15px;
    background: #fff;
    color: #424242; }
  .splash #welcomewrap .container {
    padding: 0px; }
  .splash #welcomewrap h2 {
    text-align: left;
    font-size: 30px;
    line-height: 34px; }
  .splash #welcomewrap p {
    font-size: 22px;
    line-height: 1.2em; }
  .splash #key_benefits {
    background: #fff; }
  .splash #servicewrap {
    display: block;
    text-align: center;
    background: #e8e8e8;
    padding: 50px 0; }
  .splash #servicewrap h2 {
    text-align: left;
    margin-left: 5px;
    border-left: 10px #A5C939 solid;
    padding-left: 6px; }
  .splash #servicewrap p {
    text-align: center; }
  .splash #servicewrap h4 {
    text-align: center;
    font-size: 21px;
    line-height: 25px;
    margin-left: 5px;
    padding: 15px; }
  .splash #example {
    width: 100%;
    background: #fff;
    display: block;
    text-align: center;
    margin-bottom: 0px;
    border-top: 1px gray solid; }
  .splash #example h2 {
    font-size: 42px;
    font-family: 'Open Sans Condensed',sans-serif;
    color: #666;
    line-height: 1.2em; }
  .splash .btn {
    padding: 15px;
    margin: 10px;
    font-family: 'Open Sans Condensed', sans serif;
    color: #fff;
    font-size: 25px;
    font-weight: bold; }
  .splash #aboutwrap {
    display: block;
    text-align: center; }
  .splash #aboutwrap h2 {
    text-align: left;
    margin-left: 5px;
    border-left: 10px #A5C939 solid;
    padding-left: 3px; }
  .splash #aboutwrap h3 {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 30px;
    color: #A5C939; }
  .splash #aboutwrap h4 {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 30px;
    color: #8a8a8a; }
  .splash #aboutwrap p {
    text-align: left; }
  .splash #projectwrap {
    width: 100%;
    background: url(../img/mac.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 400px;
    text-align: center; }
  .splash #projectwrap .boxcolor {
    margin-top: 150px;
    clear: both;
    opacity: 1;
    background: #A5C939; }
  .splash #projectwrap h1 {
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 60px;
    color: #fff;
    padding: 20px; }
  .splash #projectwrap_2 h2 {
    text-align: left;
    margin-left: 5px;
    border-left: 10px #A5C939 solid;
    padding-left: 3px; }
  .splash #projectwrap_2 h3 {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 30px;
    color: #A5C939;
    text-align: center; }
  .splash #pricewrap {
    text-align: center;
    display: block; }
  .splash #pricewrap h2 {
    padding: 20px; }
  .splash #footerwrap {
    width: 100%;
    background: #232121;
    padding-bottom: 45px; }
  .splash #footerwrap h2 {
    text-align: left;
    margin-left: 5px;
    border-left: 10px #A5C939 solid;
    padding-left: 3px;
    margin-bottom: 40px;
    color: #fff; }
  .splash #footerwrap h3 {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 30px;
    color: #A5C939;
    margin: 5px; }
  .splash #footerwrap h4 {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #fff;
    margin: 5px; }
  .splash #footerwrap p {
    font-family: 'Open Sans Condensed', sans serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    color: #8a8888;
    padding-top: 50px;
    margin-bottom: 10px;
    margin: 5px; }
  .splash #map {
    display: block;
    width: 100%;
    margin: 0px; }
  .splash .mask {
    display: block;
    padding: 10px;
    line-height: 20px;
    text-align: center;
    transition: all .4s ease-out;
    border-radius: 8px; }
  .splash .mask:hover {
    background-color: #fff; }
  .splash .mask2 img {
    margin: 0 auto;
    max-width: 100%;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .splash .mask2 img:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
    filter: alpha(opacity=99);
    opacity: 1; }
  .splash .about_item {
    margin: 0px 9px 19px 8.33px;
    background-color: #fff;
    min-height: 100px; }
  .splash .about_item_center {
    width: 100%;
    position: relative;
    z-index: 1; }
  .splash .about_item_center img {
    border: 0px;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #4b4646;
    border-radius: 5px 5px 0px 0px; }
  .splash .about_item_center p {
    color: #8a8a8a;
    font-size: 16px;
    text-align: left;
    margin: 5px;
    padding: 0px 0px 20px 0px; }
  .splash .project_item {
    margin: 0px 9px 19px 8.33px;
    background-color: #fff;
    min-height: 100px; }
  .splash .project_item_center {
    width: 100%;
    position: relative;
    z-index: 1; }
  .splash .project_item_center img {
    border: 0px;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #4b4646; }
  .splash .project_item h3 {
    padding: 10px; }
  .splash .clients {
    text-align: center;
    padding: 20px; }
  .splash .clients img {
    padding-bottom: 20px; }
  .splash .pricing-table-wrapper {
    margin: 10px 0;
    text-align: center; }
  .splash .pricing-table {
    display: inline-block; }
  .splash .pricing-column {
    list-style: none;
    position: relative;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s; }
  .splash .pricing-column:hover {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
    z-index: 1; }
  .splash .pricing-column:hover > .pricing-title {
    border-top: 3px solid rgba(236, 96, 47, 0.9); }
  .splash .pricing-column:hover > .pricing-button {
    background-color: #d7d7d7; }
  .splash .pricing-column li {
    white-space: nowrap;
    text-align: center;
    padding: 12px;
    background: rgba(0, 0, 0, 0.01);
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1); }
  .splash .pricing-column li:nth-child(even) {
    background: #e3e3e3; }
  .splash .pricing-column li.pricing-title {
    font-weight: 600;
    border-top: 3px solid rgba(0, 0, 0, 0.6);
    font-size: 20px; }
  .splash .pricing-column li.pricing-price {
    color: #A5C939;
    font-size: 200%;
    line-height: 120%; }
  .splash .pricing-column li.pricing-price span {
    font-size: 45%;
    line-height: 120%; }
  .splash .pricing-column .pricing-button .button {
    margin: 0 !important;
    font-size: 18px; }
  .splash .carousel-control {
    position: absolute;
    top: 50%;
    height: 50px;
    width: 50px;
    margin-top: -20px;
    font-size: 60px;
    font-weight: 100;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    background: #222222;
    border: 3px solid #ffffff;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    border-radius: 23px;
    opacity: 0.5;
    filter: alpha(opacity=50); }
  .splash .carousel-control:hover {
    cursor: pointer;
    opacity: .9; }
@keyframes fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 100; } }
  @media (max-width: 979px) {
    .splash #headerwrap {
      margin-top: -20px;
      padding-top: 160px; }
      .splash #headerwrap h1 {
        padding-right: 0; }
    .splash .align-right {
      text-align: left; } }
  .splash .stat {
    display: none; }

body.login {
  overflow: hidden; }

.login-block {
  border: 3px solid #fff;
  animation-duration: 1s;
  animation-delay: .8s;
  animation-fill-mode: both;
  animation-name: fadeInUp; }
  .login-block-container {
    position: fixed; }

.login-block-branding {
  height: 98px;
  width: 340px;
  animation-duration: 1s;
  animation-delay: .4s;
  animation-fill-mode: both;
  animation-name: fadeIn; }

.org-icon {
  display: none; }

/** Hide the default organization avatar images on login screen and navbar. */
.login-block-container img,
.organization-selector {
  display: none !important; }

.login-block .input-group input {
  background: #fff !important;
  color: #000; }

.login-block .button-block {
  width: auto !important;
  line-height: 0em !important;
  padding: 20px 50px !important;
  display: inline-block !important;
  font-size: 14px !important; }

.page-storyboards, .page-navigator, .page-navigator\.query {
  background: transparent url("images/background.listing_page.png") top center;
  background-size: auto;
  background-attachment: fixed; }

/************************************************************* 
* Used for selectively hiding generic Nucleus elements when a
* custom theme has been applied.
*************************************************************/
.hide-for-custom-theme {
  display: none !important; }

/*# sourceMappingURL=styles.css.map */
