/* Header Title */
ion-header-bar.bar.bar-positive {
  background-color: #159DEB;
}
/* Header Tabs */
.tabs-striped.tabs-background-positive .tabs {
  background-color: #159DEB;
}
.item-divider.p {
  color: #000000;
}
.item p {
  color: #000000;
}
.item h2 {
  color: #000000;
}

/**
 * CONTENTS
 *
 * #Introduction........Naming conventions used throughout the code.
 *
 * #SETTINGS
 * Variables............Globally-available variables and config.
 *
 * #TOOLS
 * Mixins...............Useful mixins.
 *
 * #GENERIC
 * Demo styles..........Styles for demo only (consider removing these).
 *
 * #BASE
 * Raw styles...........The very basic component wrapper.
 * Modifiers............The basic styles dependant on component placement.
 * Debuggers............The basic styles dependant on component placement.
 *
 * #BUTTONS
 * Base..................Wrapping and constraining every button.
 * Modifiers.............Styles that depends on state and settings.
 * Animations............Main animations of the component.
 * Debuggers.............Styles for development.
 *
 * #LABELS
 * Base..................Wrapping and constraining every label.
 * Modifiers.............Styles that depends on state and settings.
 * Debuggers.............Styles for development.
 *
 * #DEVELOPMENT
 * In development........These styles are in development and not yet finalised
 * Debuggers.............Helper styles and flags for development.
 */
/*------------------------------------*\
    #Introduction
\*------------------------------------*/
/**
 * The code AND the comments use naming conventions to refer to each part of
 * the UI put in place by this component. If you see that somewhere they are
 * not followed please consider a Pull Request. The naming conventions are:
 *
 * "Component" : the widget itself as a whole. This is the last time it will be
 *               called anything different than "component". So, stay away from
 *               "widget", "button" or anything else when referring to the
 *               Component in general.
 *
 * "Main Button" : the button that is always in view. Hovering or clicking on it
 *                 will reveal the child buttons.
 *
 * "Child buttons" : if you've read the previous point you know what they are.
 *                   Did you read the previous point? :)
 *
 * "Label(s)" : the tooltip that fades in when hovering over a button.

/*------------------------------------*\
    #SETTINGS | Variables
\*------------------------------------*/
/**
 * These variables are the default styles that serve as fallback and can be
 * easily customised at compile time.
 * Consider overriding them in your own style sheets rather than editing them
 * here. Refer to the docs for more info.
 */
/* COLORS ----------------------------*/
/* EFFECTS ---------------------------*/
/* SPEEDS ----------------------------*/
/* SIZES -----------------------------*/
/* SPACING ---------------------------*/
/* OTHER VARIABLES -------------------*/
/*------------------------------------*\
    #BASE | Raw styles
\*------------------------------------*/
/**
 * The very core styling of the button.
 * These styles are shared by every instance of the button.
 * Styles placed here should NOT care about placement in the screen,
 * options chosen by the user or state of the button.
 */
.mfb-component--tl,
.mfb-component--tr,
.mfb-component--bl,
.mfb-component--br {
  box-sizing: border-box;
  margin: 25px;
  position: fixed;
  white-space: nowrap;
  z-index: 30;
  padding-left: 0;
  list-style: none;
}
.mfb-component--tl *,
.mfb-component--tr *,
.mfb-component--bl *,
.mfb-component--br *,
.mfb-component--tl *:before,
.mfb-component--tr *:before,
.mfb-component--bl *:before,
.mfb-component--br *:before,
.mfb-component--tl *:after,
.mfb-component--tr *:after,
.mfb-component--bl *:after,
.mfb-component--br *:after {
  box-sizing: inherit;
}
/*------------------------------------*\
    #BASE | Modifiers
\*------------------------------------*/
/**
 * These styles depends on the placement of the button.
 * Styles can be:
 * 1. Top-left:  modified by the " --tl " suffix.
 * 2. Top-right: modified by the " --tr " suffix.
 * 3. Bottom-left:  modified by the " --bl " suffix.
 * 4. Bottom-right: modified by the " --br " suffix.
 */
.mfb-component--tl {
  left: 0;
  top: 0;
}
.mfb-component--tr {
  right: 0;
  top: 0;
}
.mfb-component--bl {
  left: 0;
  bottom: 0;
}
.mfb-component--br {
  right: 0;
  bottom: 0;
}
/*------------------------------------*\
    #BUTTONS | Base
\*------------------------------------*/
.mfb-component__button--main,
.mfb-component__button--child {
  background-color: #E40A5D;
  display: inline-block;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  outline: none;
  padding: 0;
  position: relative;
  -webkit-user-drag: none;
  color: #f1f1f1;
}
/**
 * This is the unordered list for the list items that contain
 * the child buttons.
 *
 */
.mfb-component__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mfb-component__list > li {
  display: block;
  position: absolute;
  top: 0;
  right: 1px;
  padding: 10px 0;
  margin: -10px 0;
}
/**
 * These are the basic styles for all the icons inside the main button
 */
.mfb-component__icon,
.mfb-component__main-icon--active,
.mfb-component__main-icon--resting,
.mfb-component__child-icon {
  position: absolute;
  font-size: 18px;
  text-align: center;
  line-height: 56px;
  width: 100%;
}
.mfb-component__wrap {
  padding: 25px;
  margin: -25px;
}
[data-mfb-toggle="hover"]:hover .mfb-component__icon,
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting,
[data-mfb-toggle="hover"]:hover .mfb-component__child-icon,
[data-mfb-state="open"] .mfb-component__icon,
[data-mfb-state="open"] .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__child-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
/*------------------------------------*\
    #BUTTONS | Modifiers
\*------------------------------------*/
.mfb-component__button--main {
  height: 56px;
  width: 56px;
  z-index: 20;
}
.mfb-component__button--child {
  height: 56px;
  width: 56px;
}
.mfb-component__main-icon--active,
.mfb-component__main-icon--resting {
  -webkit-transform: scale(1) rotate(360deg);
  transform: scale(1) rotate(360deg);
  -webkit-transition: -webkit-transform 150ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 150ms cubic-bezier(0.4, 0, 1, 1);
}
.mfb-component__child-icon,
.mfb-component__child-icon {
  line-height: 56px;
  font-size: 18px;
}
.mfb-component__main-icon--active {
  opacity: 0;
}
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon,
[data-mfb-state="open"] .mfb-component__main-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--resting,
[data-mfb-state="open"] .mfb-component__main-icon--resting {
  opacity: 0;
  position: absolute !important;
}
[data-mfb-toggle="hover"]:hover .mfb-component__main-icon--active,
[data-mfb-state="open"] .mfb-component__main-icon--active {
  opacity: 1;
}
/*------------------------------------*\
    #BUTTONS | Animations
\*------------------------------------*/
/**
 * SLIDE IN + FADE
 * When hovering the main button, the child buttons slide out from beneath
 * the main button while transitioning from transparent to opaque.
 *
 */
.mfb-component--tl.mfb-slidein .mfb-component__list li,
.mfb-component--tr.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
}
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1;
}
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px);
  transform: translateY(210px);
}
.mfb-component--tl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px);
  transform: translateY(280px);
}
.mfb-component--bl.mfb-slidein .mfb-component__list li,
.mfb-component--br.mfb-slidein .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
}
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1;
}
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px);
}
.mfb-component--bl.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--bl.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px);
}
/**
 * SLIDE IN SPRING
 * Same as slide-in but with a springy animation.
 *
 */
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
}
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
}
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
}
.mfb-component--tl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
}
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1;
}
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(210px);
  transform: translateY(210px);
}
.mfb-component--tl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(280px);
  transform: translateY(280px);
}
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring .mfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
}
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
}
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
}
.mfb-component--bl.mfb-slidein-spring .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
}
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li,
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li {
  opacity: 1;
}
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px);
}
.mfb-component--bl.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--bl.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-slidein-spring[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px);
}
/**
 * ZOOM-IN
 * When hovering the main button, the child buttons grow
 * from zero to normal size.
 *
 */
.mfb-component--tl.mfb-zoomin .mfb-component__list li,
.mfb-component--tr.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.mfb-component--tl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s;
}
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s;
}
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s;
}
.mfb-component--tl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s;
}
.mfb-component--bl.mfb-zoomin .mfb-component__list li,
.mfb-component--br.mfb-zoomin .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.mfb-component--bl.mfb-zoomin .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s;
}
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s;
}
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s;
}
.mfb-component--bl.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--bl.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-zoomin[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s;
}
/**
 * FOUNTAIN
 * When hovering the main button the child buttons
 * jump into view from outside the viewport
 */
.mfb-component--tl.mfb-fountain .mfb-component__list li,
.mfb-component--tr.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.mfb-component--tl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s;
}
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s;
}
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s;
}
.mfb-component--tl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--tr.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s;
}
.mfb-component--bl.mfb-fountain .mfb-component__list li,
.mfb-component--br.mfb-fountain .mfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.mfb-component--bl.mfb-fountain .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(1),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s;
}
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(2),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s;
}
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(3),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s;
}
.mfb-component--bl.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--bl.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-toggle="hover"]:hover .mfb-component__list li:nth-child(4),
.mfb-component--br.mfb-fountain[data-mfb-state="open"] .mfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s;
}
/*------------------------------------*\
    #LABELS | base
\*------------------------------------*/
/**
 * These are the labels associated to each button,
 * exposed only when hovering the related button.
 * They are called labels but are in fact data-attributes of
 * each button (an anchor tag).
 */
[data-mfb-label]:after {
  content: attr(data-mfb-label);
  opacity: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: normal;
  pointer-events: none;
  line-height: normal;
  position: absolute;
  top: 50%;
  margin-top: -11px;
  transition: all 0.5s;
}
[data-mfb-toggle="hover"] [data-mfb-label]:hover:after,
[data-mfb-state="open"] [data-mfb-label]:after {
  content: attr(data-mfb-label);
  opacity: 1;
  transition: all 0.3s;
}
/*------------------------------------*\
    #LABELS | Modifiers
\*------------------------------------*/
.mfb-component--br [data-mfb-label]:after,
.mfb-component--tr [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px;
}
.mfb-component--br .mfb-component__list [data-mfb-label]:after,
.mfb-component--tr .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  right: 70px;
}
.mfb-component--tl [data-mfb-label]:after,
.mfb-component--bl [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px;
}
.mfb-component--tl .mfb-component__list [data-mfb-label]:after,
.mfb-component--bl .mfb-component__list [data-mfb-label]:after {
  content: attr(data-mfb-label);
  left: 70px;
}
/*------------------------------------*\
    #DEVELOPMENT | In development
\*------------------------------------*/
/**
 * This part is where unfinished code should stay.
 * When a feature is ready(sh) move these styles to their proper place.
 */
/*------------------------------------*\
    #DEVELOPMENT | Debuggers
\*------------------------------------*/
/**
 * These are mainly helpers for development. They do not have to end up
 * in production but it's handy to keep them when developing.
 */
/**
 * Apply this class to the html tag when developing the slide-in button
 */
/*# sourceMappingURL=mfb.css.map */

/*
//@background: #373447;
//@background-input: #50597b;
@background-input: #373447;
@placeholder-color: #fff;
//@input-text-color: #fff;
@input-text-color: #cec8ea;
//@offtext-color: #9099b7;
@offtext-color: #666084;
@offtext-link-color: #746d97;
//@button-color: #e64c65;
@button-color: #312e3f;
*/
body,
.pane,
.scroll-content,
.list,
.logo {
  background: #159deb;
  color: #ffffff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #ffffff;
}
.button.active,
.button.activated {
  box-shadow: none !important;
}
.button.button-positive {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #159deb;
}
.button.button-positive.activated {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #159deb;
}
.button.button-assertive {
  background-color: #e74c3c;
  border-color: #e74c3c !important;
  color: #ffffff;
}
.button.button-assertive.activated {
  background-color: #e74c3c;
  border-color: #e74c3c !important;
  color: #ffffff;
}
.button.button-emphasize {
  background-color: #ff8500;
  color: #ffffff;
}
.button.button-emphasize.activated {
  background-color: #ff8500;
  color: #ffffff;
}
.scroll-refresher .ionic-refresher-content {
  color: rgba(255, 255, 255, 0.4);
}
.scroll-refresher .ionic-refresher-content .spinner {
  color: #ffffff;
}
/* Header Title */
ion-header-bar.bar.bar-positive {
  background-color: #159deb;
}
/* Header Tabs */
.tabs-striped.tabs-background-positive .tabs {
  background-color: #159deb;
}
.icon {
  font-size: 125%;
}
.item {
  background: #000000;
}
.mfb-component--br i {
  font-size: 48px;
}
.placeholder-icon {
  color: rgba(255, 255, 255, 0.4);
}
.mfb-component__button--main,
.mfb-component__button--child {
  background-color: transparent;
  box-shadow: none;
}
.popup-title,
.popup-sub-title,
.popup-body {
  color: #000000;
}
.gradient-colorrr {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #159deb), color-stop(1, #159deb));
  background-image: -o-linear-gradient(bottom, #159deb 30%, #159deb 100%);
  background-image: -moz-linear-gradient(bottom, #159deb 30%, #159deb 100%);
  background-image: -webkit-linear-gradient(bottom, #159deb 30%, #159deb 100%);
  background-image: -ms-linear-gradient(bottom, #159deb 30%, #159deb 100%);
  background-image: linear-gradient(to bottom, #159deb 30%, #159deb 100%);
}
.gradient-colorrr .list {
  background-color: transparent;
}
.gradient-colorrr .list-inset {
  background-color: transparent;
}
.gradient-colorrr img {
  background-color: transparent;
}
.login-container .forgot-password {
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  margin-right: auto;
}
.login-container .forgot-password a {
  color: rgba(255, 255, 255, 0.4);
}
.login-container {
  display: table;
}
.login-container p {
  color: #ffffff;
}
.login-container a {
  color: #746d97;
}
.login-container > div form {
  height: 100%;
}
.login-container > div form .button {
  background: #d64541;
  color: #ffffff;
  margin: 10px auto;
  border-radius: 0;
  border-width: 0;
  vertical-align: bottom;
}
.login-container .list {
  height: 90%;
}
.login-container .item,
.login-container .list {
  border-width: 0;
}
.login-container .new-account {
  display: table-row;
}
.login-container .new-account > p {
  display: table-cell;
  vertical-align: bottom;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.login-container .item-input {
  margin-bottom: 2px;
  border-bottom-width: 1px;
}
.login-container .forgot-password > p {
  display: block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}
.login-container .login-error-message {
  text-align: center;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(255, 255, 255, 0.4) !important;
}
:-moz-input-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(255, 255, 255, 0.4) !important;
}
:-moz-input-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(255, 255, 255, 0.4) !important;
}
:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(255, 255, 255, 0.4) !important;
}
input[type="text"],
input[type="password"] {
  color: #ffffff;
}
input[type="text"] :focus,
input[type="password"] :focus {
  outline: none;
  /* removes the default orange border when focus */
  border: 1px solid #11a8ab;
}
.item-radio .item-content {
  background: transparent;
  background-color: transparent;
}
.item-radio input:checked + .radio-content .item-content {
  background: transparent;
  background-color: transparent;
}
.centered-input input {
  text-align: center;
}
.input-label {
  color: #000000;
}
.button {
  border-radius: 5px;
}
.shiftapplication {
  border-left-width: 2px !important;
  border-left-color: #fff !important;
  border-radius: 0 !important;
}
.welcome {
  font-size: 150%;
}
.shift-button-manage {
  background-color: #ffffff;
  color: #159deb;
}
.shift-button-info {
  background-color: #ffffff;
  color: #159deb;
}
.shift-button-apply {
  background-color: #33cd5f;
  color: #ffffff;
  /*
    border-color: @background-light !important;
    border-left-width: 1px !important;
    border-right-width: 1px !important;
    border-left-style: solid !important;
    border-right-style: solid !important;
    */
}
.shift-button-ignore {
  background-color: #e74c3c;
  color: #ffffff;
}
.shift-button-decline {
  background-color: #e74c3c;
  color: #ffffff;
}
.square-box {
  float: left;
  position: relative;
  width: 50%;
  overflow: hidden;
}
.square-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.square-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: white;
}
.square-content .square-content-icon {
  display: table;
  width: 100%;
  height: 80%;
}
.square-content .square-content-footer {
  display: table;
  width: 100%;
  height: 20%;
}
.square-content a {
  text-decoration: none;
}
.square-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: white;
  text-decoration: none;
}
.square-content span .icon {
  font-size: 6em;
}
@media only screen and (max-width: 300px) {
  .login-container {
    height: 100%;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
  }
  .login-container .logo {
    width: 100%;
  }
  .shift-description {
    width: 100%;
  }
}
@media only screen and (min-width: 301px) and (max-width: 350px) {
  .login-container {
    height: 100%;
    margin-bottom: 10%;
    /* iPod has a small screen and a big logo pushes up against right side */
    margin-left: 2%;
    margin-right: 2%;
  }
  .login-container .logo {
    margin-top: 30%;
    margin-bottom: 10%;
    width: 100%;
  }
  .shift-description {
    width: 98%;
  }
  .square-content span .icon {
    font-size: 9em;
  }
}
@media only screen and (min-width: 351px) and (max-width: 400px) {
  /*  */
  .login-container {
    height: 100%;
    margin-bottom: 10%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .login-container .logo {
    margin-top: 30%;
    margin-bottom: 10%;
    width: 100%;
  }
  .shift-description {
    width: 97%;
  }
  .forms .form-offset .create-shift-content {
    padding-top: 30px;
  }
  .square-content span .icon {
    font-size: 10.8em;
  }
}
@media only screen and (min-width: 401px) and (max-width: 500px) {
  .login-container {
    height: 100%;
    margin-bottom: 10%;
    margin-left: 10%;
    margin-right: 10%;
  }
  .login-container .logo {
    margin-top: 30%;
    margin-bottom: 10%;
    width: 100%;
  }
  .shift-description {
    width: 80%;
  }
  .forms .form-offset .create-shift-content {
    padding-top: 60px;
  }
  .square-content span .icon {
    font-size: 12.600000000000001em;
  }
}
@media only screen and (min-width: 501px) {
  /*  */
  .login-container {
    height: 80%;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .login-container .logo {
    /* Move the logo down a little bit and set proper width */
    margin-top: 30%;
    width: 100%;
    vertical-align: 50%;
  }
  .shift-description {
    width: 80%;
  }
  .square-content span .icon {
    font-size: 18em;
  }
}
@media screen and (min-aspect-ratio: 1/1) {
  .square-box {
    width: 25%;
  }
  .square-content span .icon {
    font-size: 7.800000000000001em;
  }
}
@media all and (orientation: landscape) {
  .square-box {
    width: 25%;
  }
  .square-content span .icon {
    font-size: 7.800000000000001em;
  }
}
@media all and (min-aspect-ratio: 1/1) and (min-width: 580px) and (max-width: 1300px - 1) {
  .square-content span .icon {
    font-size: 6em;
  }
}
@media all and (orientation: landscape) and (min-width: 580px) and (max-width: 1300px - 1) {
  .square-content span .icon {
    font-size: 6em;
  }
}
@media all and (min-aspect-ratio: 1/1) and (min-width: 1300px) {
  .square-content span .icon {
    font-size: 18em;
  }
}
@media all and (orientation: landscape) and (min-width: 1300px) {
  .square-content span .icon {
    font-size: 18em;
  }
}
.calendarWrapper {
  background: #159deb;
  padding-left: 10px;
  padding-right: 10px;
}
/* A Previous button in calendar */
.calendar-month {
  display: block;
  background-color: #ffffff;
  color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-color: #ffffff;
}
.calendar-month .arrow-btn-container {
  position: relative;
}
.calendar-month .arrow-btn {
  position: absolute;
  display: block;
  width: 60px;
  -webkit-transition: background .3s;
  transition: background .3s;
}
.calendar-month .arrow-btn :hover {
  text-decoration: none;
}
.calendar-month .arrow-btn .icon {
  display: block;
  font-size: 15px;
  line-height: 35px;
  text-align: center;
}
.calendar-month .arrow-btn .calendar-back .icon {
  padding-right: 2px;
}
.calendar-month .arrow-btn.calendar-back {
  border-top-left-radius: 5px;
}
.calendar-month .arrow-btn.calendar-next {
  border-top-right-radius: 5px;
  right: 0;
  top: 0;
}
.calendar-month .titler {
  display: block;
  line-height: 35px;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.calendar-month .calendar-day {
  height: 320px;
}
.calendar-month .calendar-day .arrow-btn:hover {
  background: #16417E;
}
.calendar-month .calendar-day .the-day {
  margin: 0;
  text-align: center;
  font-size: 17px;
}
.calendar-month .add-event.button {
  background: #4fc4f6;
}
.calendar-month .add-event.button:hover {
  background: #35aadc;
}
.calendar-month .titler {
  background: #159deb;
}
.calendar-month .calendar-month .arrow-btn:hover {
  background: #1a4e95;
}
.calendar-month .calendar-week {
  background: #ffffff;
  color: #000000;
}
.calendar-month .calendar {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
}
.calendar-month .calendar a,
.calendar-month .calendar p {
  font-size: 17px;
}
.calendar-month .calendar td,
.calendar-month .calendar th {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: auto;
  margin-right: auto;
}
.calendar-month .calendar td > p {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.calendar-month .calendar .shift > span {
  display: block;
  background: #f00;
  border-radius: 100%;
  height: 5px;
  width: 5px;
  position: relative;
  top: -9.5px;
  left: 18px;
}
.calendar-month .calendar .calendar-day-othermonth > p {
  color: #d1d1d1;
}
.calendar-month .calendar .days-week {
  color: #ffffff;
  background-color: #159deb;
}
.calendar-month .calendar .calendar-day-currentmonth.calendar-day-today {
  display: block;
  background: #159deb;
  color: #ffffff;
  border-radius: 100%;
  -moz-box-shadow: 0 0 3px #159deb;
  -webkit-box-shadow: 0 0 3px #159deb;
  box-shadow: 0 0 3px #159deb;
}
.calendar-month .calendar-day-selected {
  display: block;
  background: #ff8500;
  color: #ffffff;
  border-radius: 100%;
  -moz-box-shadow: 0 0 3px #ff8500;
  -webkit-box-shadow: 0 0 3px #ff8500;
  box-shadow: 0 0 3px #ff8500;
}
.new-shift-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.shift-info-loading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.shift-info-loading .spinner svg {
  width: 50px;
  height: 50px;
  stroke: #444;
  fill: #444;
}
.greyed-out {
  color: rgba(255, 255, 255, 0.4);
}
.full-width-inputs input,
.full-width-inputs select,
.full-width-inputs textarea {
  width: 100%;
}
.bar-header {
  background-color: #159deb;
  background-image: none !important;
  color: #ffffff;
  border: 0;
}
.bar-header .button {
  color: #ffffff;
}
.validation-message .icon {
  color: #e74c3c;
}
.tabs {
  border-color: #159deb !important;
}
.tabs .tab-item.active {
  border-color: #159deb !important;
}
.list {
  background-color: #159deb;
}
.list .activated {
  background-color: rgba(255, 255, 255, 0.4);
}
.list .item-indent {
  background-color: inherit;
  border-top-width: 0;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-bottom-width: 0;
  margin: 0;
  padding-left: 20px;
}
.list .item-indent .item {
  background-color: inherit;
  padding-left: 0;
  color: #ffffff;
}
.list .item-indent .item a {
  padding-left: 0;
}
.list .item-indent.item {
  padding-left: 20px;
}
.list .item-complex .item-content {
  background-color: #159deb;
  color: #ffffff;
  padding-right: 16px;
}
.list .item-complex :after {
  content: "";
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
}
.list .item,
.list .card {
  background-color: #159deb;
  border-top-width: 0;
  border-bottom-color: rgba(255, 255, 255, 0.4);
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  color: #ffffff;
}
.list .item a,
.list .card a {
  background-color: inherit;
}
.list .shift-list .item,
.list .shift-list .card {
  background-color: #ffffff;
  color: #000000;
}
.list .divider-card {
  background-color: #159deb;
}
.list .divider-card .item,
.list .divider-card .card {
  background-color: inherit;
}
.list .divider-card .item .item-content,
.list .divider-card .card .item-content {
  background-color: inherit;
  color: rgba(255, 255, 255, 0.4);
}
.list .card .item-content {
  background-color: #ffffff;
}
.list .card .item-content .item {
  background-color: #ffffff;
  padding: 5px;
}
.list .shift-item-date {
  color: #000000;
}
.list .item-divider {
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.4);
}
.list .item-divider-bright-text h2 {
  color: #ffffff;
}
.list input[type="time"],
.list input[type="date"],
.list input[type="number"] {
  text-align: center;
  min-width: 100%;
}
.list .list-item-padding {
  padding-left: 16px;
  padding-right: 16px;
}
.list .row .list-item-padding {
  padding-left: 11px;
  padding-right: 11px;
  position: relative;
}
.list .row .list-item-padding h4 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.shift-description-character-limit {
  text-align: right;
}
.shift-description-character-limit.too-many-characters {
  color: #e74c3c;
}
.compacted-list .item-divider-bright-text {
  padding-top: 15px;
}
.shift-item p {
  color: #000000;
}
.shift-info {
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.item .shift-info .shift-right {
  padding-top: 0px;
  padding-bottom: 0px;
}
#shift-description-content {
  padding-right: 0px;
}
#shift-description-content .shift-info {
  padding-top: 0px;
}
#shift-description-content .shift-right {
  padding-top: 0px;
}
#shift-description-content .shift-desc {
  padding-left: 0px;
  padding-right: 0px;
}
.applied-to-shift {
  border-left-width: 8px !important;
  border-left-color: #33cd5f;
  border-left-style: solid;
}
.ignored-shift {
  border-left-width: 8px !important;
  border-left-color: #e74c3c;
  border-left-style: solid;
}
.pending-approval {
  border-left-width: 8px !important;
  border-left-color: #ffc900;
  border-left-style: solid;
}
.card {
  border-radius: 0;
  box-shadow: none;
}
.card .item:first-child {
  border-radius: 0;
}
.card .item:first-child .item-content {
  border-radius: 0;
}
.shift-location,
.shift-star {
  font-weight: bold;
}
.shift-left {
  display: block;
  float: left;
}
.shift-right {
  display: block;
  float: right;
}
.shift-right p {
  text-align: right;
}
.shift-duration {
  float: right;
}
.left-buttons {
  padding-left: 6px;
}
.right-buttons {
  padding-right: 6px;
}
.shift-left-icon {
  position: absolute;
  float: left;
  display: none;
  color: #d64541;
  top: 24.5px;
  left: 0px;
}
.shift-left-icon i {
  font-size: 23px;
}
.shift-bottom {
  width: 100%;
}
.shift-bottom p {
  text-align: center;
}
/*
.shift-collapsed {
    max-height: 65px;
    //transition: max-height 0.15s ease-out;
    overflow: hidden;

    .shift-info {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
*/
.shift-expanded {
  max-height: 1000px;
  overflow: hidden;
  border-bottom-width: 0;
}
.shift-expanded .shift-info p {
  overflow: visible;
  text-overflow: clip;
  text-wrap: normal;
  white-space: normal;
}
.clear-padding {
  padding: 0;
}
.list-padding {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
}
.shift-accept {
  width: 50%;
  border-radius: 0;
}
.shift-decline {
  width: 50%;
  border-radius: 0;
}
.shift-description {
  z-index: 2000;
  position: absolute;
  background: #159deb;
  max-height: 75%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  box-shadow: 4px 4px 80px #000;
  border: solid;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.4);
}
.shift-description .shift-buttons {
  background: #159deb;
}
.shift-description .scroll-content {
  top: 80px;
  bottom: 49px;
}
.ng-modal-close {
  position: absolute;
  top: 3px;
  right: 5px;
  padding: 5px;
  cursor: pointer;
  font-size: 120%;
  display: inline-block;
  font-weight: bold;
  font-family: 'arial', 'sans-serif';
}
#modal {
  background: white;
  position: fixed;
  width: 50%;
  top: 50%;
  left: 50%;
  margin: -25% 0 0 -25%;
  /* Embiggen */
  transform: scale(1.5);
  /* prefix me */
  /* Hidden */
  opacity: 0;
  pointer-events: none;
}
.mfb-component--br {
  opacity: 0.75;
}
.forms {
  height: 100% !important;
}
.unclickable {
  pointer-events: none;
}
.clickable {
  pointer-events: auto;
}
.next-button {
  margin: 15px;
  text-align: center;
  font-size: 250%;
  color: #000000;
  pointer-events: auto;
}
.create-shift-modal {
  background-color: #159deb;
}
.create-shift-modal .scroll {
  height: 100%;
  min-height: 100%;
}
.block-input {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
.forms .create-shift-content {
  height: 100%;
  width: 100%;
  position: relative;
}
.forms .create-shift-content .row {
  padding-top: 0;
  padding-bottom: 0;
}
.forms .create-shift-content .col {
  padding-bottom: 0;
}
.sub-subheader {
  color: #ffffff;
  height: 22px;
}
.create-shift-form-visible {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.create-shift-form-hide {
  opacity: 0;
}
.create-shift-nav-prev {
  margin: auto;
  display: block;
}
.create-shift-nav-next {
  width: 100%;
}
.create-shift-nav-next .button {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.create-shift-steps {
  width: 100%;
  position: absolute;
  z-index: 1000;
  bottom: 0;
  left: 0;
}
/*progressbar*/
#progressbar {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  pointer-events: none;
  /*CSS counters to number the steps*/
}
#progressbar li {
  list-style-type: none;
  text-transform: uppercase;
  font-size: 10px;
  width: 20%;
  float: left;
  position: relative;
  text-align: center;
  pointer-events: auto;
  color: #000000;
}
#progressbar li:before {
  content: "\00a0";
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: #ffffff;
  border-radius: 100%;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1;
  /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  content: none;
  /*connector not needed before the first step*/
}
/*marking active/completed steps nhlbi red*/
/*The number of the step and the connector before it = nhlbi red*/
#progressbar li.active:before,
#progressbar li.active:after {
  background: #990000;
  color: #000000;
}
#progressbar li.review:before,
#progressbar li.review:after {
  background: #009900;
  color: #000000;
}
#progressbar .locked:before {
  background: #159deb;
}
.header-extend {
  background-color: #159deb;
  height: 50px;
  position: relative;
  top: 42px;
  z-index: 1000;
  left: 0;
}
.header-extend h3 {
  color: #000000;
}
.location-selected {
  background-color: #FF0000;
}
/*
.calendarWrapper {
    margin-bottom: 30px;
}

*/
.bar.bar-dark {
  background-color: #159deb;
  border-image-width: 0;
  background-size: 0;
}
.tabs-background-dark .tabs {
  background-color: #159deb;
  color: #000000;
}
.tabs-background-dark .tabs h3 {
  color: #000000;
}
.ipBoxes {
  color: #000000;
}
.timePickerColon {
  color: #000000;
}
.row-no-padding {
  padding: 0;
}
.nowrap {
  white-space: nowrap;
}
.row .col.uniform-padding {
  padding-bottom: 5px;
  position: relative;
}
.col .sub-subheader {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#ppBody {
  font-size: 11pt;
  width: 100%;
  margin: 0 auto;
  text-align: justify;
}
#ppHeader {
  font-family: verdana;
  font-size: 21pt;
  width: 100%;
  margin: 0 auto;
}
.ppConsistencies {
  display: none;
}
