/**
 * 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.
 */
.smsmfb-component--br, .smsmfb-component--bl, .smsmfb-component--tr, .smsmfb-component--tl {
  box-sizing: border-box;
  margin: 25px;
  position: fixed;
  white-space: nowrap;
  z-index: 9999;
  padding-left: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1em;
}
.smsmfb-component--br *, .smsmfb-component--bl *, .smsmfb-component--tr *, .smsmfb-component--tl *, .smsmfb-component--br *:before, .smsmfb-component--bl *:before, .smsmfb-component--tr *:before, .smsmfb-component--tl *:before, .smsmfb-component--br *:after, .smsmfb-component--bl *:after, .smsmfb-component--tr *:after, .smsmfb-component--tl *: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.
 */
.smsmfb-component--tl {
  left: 0;
  top: 0;
}

.smsmfb-component--tr {
  right: 0;
  top: 0;
}

.smsmfb-component--bl {
  left: 0;
  bottom: 0;
}

.smsmfb-component--br {
  right: 0;
  bottom: 0;
}

/*------------------------------------*\
    #BUTTONS | Base
\*------------------------------------*/
.smsmfb-component__button--child, .smsmfb-component__button--main {
  background-color: #113bea;
  display: inline-block;
  position: relative;
  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.
 *
 */
.smsmfb-component__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.smsmfb-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
 */
.smsmfb-component__icon, .smsmfb-component__child-icon, .smsmfb-component__main-icon--active,
.smsmfb-component__main-icon--resting {
  position: absolute;
  font-size: 18px;
  text-align: center;
  line-height: 56px;
  /*width: 100%;*/
}

.smsmfb-component__wrap {
  padding: 25px;
  margin: -25px;
}

[data-smsmfb-toggle=hover]:hover .smsmfb-component__icon, [data-smsmfb-toggle=hover]:hover .smsmfb-component__child-icon, [data-smsmfb-toggle=hover]:hover .smsmfb-component__main-icon--active,
[data-smsmfb-toggle=hover]:hover .smsmfb-component__main-icon--resting,
[data-smsmfb-state=open] .smsmfb-component__icon,
/*[data-smsmfb-state=open] .smsmfb-component__child-icon,*/
[data-smsmfb-state=open] .smsmfb-component__main-icon--active,
[data-smsmfb-state=open] .smsmfb-component__main-icon--resting {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}

/*------------------------------------*\
    #BUTTONS | Modifiers
\*------------------------------------*/
.smsmfb-component__button--main {
  height: 56px;
  width: 56px;
  z-index: 20;
}

.smsmfb-component__button--child {
  height: 56px;
  width: 56px;
}

.smsmfb-component__main-icon--active,
.smsmfb-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);
}

.smsmfb-component__child-icon,
.smsmfb-component__child-icon {
  line-height: 56px;
  font-size: 18px;
}

.smsmfb-component__main-icon--active {
  opacity: 0;
}

[data-smsmfb-toggle=hover]:hover .smsmfb-component__main-icon,
[data-smsmfb-state=open] .smsmfb-component__main-icon {
  -webkit-transform: scale(1) rotate(0deg);
  transform: scale(1) rotate(0deg);
}
[data-smsmfb-toggle=hover]:hover .smsmfb-component__main-icon--resting,
[data-smsmfb-state=open] .smsmfb-component__main-icon--resting {
  opacity: 0;
  position: absolute !important;
}
[data-smsmfb-toggle=hover]:hover .smsmfb-component__main-icon--active,
[data-smsmfb-state=open] .smsmfb-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.
 *
 */
.smsmfb-component--tl.smsmfb-slidein .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein .smsmfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li, .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li {
  opacity: 1;
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px);
  transform: translateY(210px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px);
  transform: translateY(280px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(350px);
  transform: translateY(350px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(420px);
  transform: translateY(420px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(490px);
  transform: translateY(490px);
}
.smsmfb-component--tl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--tl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(560px);
  transform: translateY(560px);
}

.smsmfb-component--bl.smsmfb-slidein .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein .smsmfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li, .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li {
  opacity: 1;
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(-350px);
  transform: translateY(-350px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(-420px);
  transform: translateY(-420px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(-490px);
  transform: translateY(-490px);
}
.smsmfb-component--bl.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--bl.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-slidein[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(-560px);
  transform: translateY(-560px);
}

/**
 * SLIDE IN SPRING
 * Same as slide-in but with a springy animation.
 *
 */
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(5) {
  transition-delay: 0.25s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(6) {
  transition-delay: 0.3s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(7) {
  transition-delay: 0.3s;
}
.smsmfb-component--tl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(8) {
  transition-delay: 0.3s;
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li, .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li {
  opacity: 1;
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(210px);
  transform: translateY(210px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(280px);
  transform: translateY(280px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  transition-delay: 0.25s;
  -webkit-transform: translateY(350px);
  transform: translateY(350px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  transition-delay: 0.3s;
  -webkit-transform: translateY(420px);
  transform: translateY(420px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  transition-delay: 0.35s;
  -webkit-transform: translateY(490px);
  transform: translateY(490px);
}
.smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--tl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  transition-delay: 0.40s;
  -webkit-transform: translateY(560px);
  transform: translateY(560px);
}

.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li {
  opacity: 0;
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(5) {
  transition-delay: 0.25s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(6) {
  transition-delay: 0.3s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(7) {
  transition-delay: 0.35s;
}
.smsmfb-component--bl.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-slidein-spring .smsmfb-component__list li:nth-child(8) {
  transition-delay: 0.40s;
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li, .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li {
  opacity: 1;
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  transition-delay: 0.05s;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  transition-delay: 0.1s;
  -webkit-transform: translateY(-140px);
  transform: translateY(-140px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  transition-delay: 0.15s;
  -webkit-transform: translateY(-210px);
  transform: translateY(-210px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  transition-delay: 0.2s;
  -webkit-transform: translateY(-280px);
  transform: translateY(-280px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  transition-delay: 0.25s;
  -webkit-transform: translateY(-350px);
  transform: translateY(-350px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  transition-delay: 0.3s;
  -webkit-transform: translateY(-420px);
  transform: translateY(-420px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  transition-delay: 0.35s;
  -webkit-transform: translateY(-490px);
  transform: translateY(-490px);
}
.smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--bl.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-slidein-spring[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  transition-delay: 0.40s;
  -webkit-transform: translateY(-560px);
  transform: translateY(-560px);
}

/**
 * ZOOM-IN
 * When hovering the main button, the child buttons grow
 * from zero to normal size.
 *
 */
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(350px) scale(0);
  transform: translateY(350px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(420px) scale(0);
  transform: translateY(420px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(490px) scale(0);
  transform: translateY(490px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-zoomin .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-zoomin .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(560px) scale(0);
  transform: translateY(560px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(350px) scale(1);
  transform: translateY(350px) scale(1);
  transition-delay: 0.25s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(420px) scale(1);
  transform: translateY(420px) scale(1);
  transition-delay: 0.3s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(490px) scale(1);
  transform: translateY(490px) scale(1);
  transition-delay: 0.35s;
}
.smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--tl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(560px) scale(1);
  transform: translateY(560px) scale(1);
  transition-delay: 0.40s;
}

.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(-350px) scale(0);
  transform: translateY(-350px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(-420px) scale(0);
  transform: translateY(-420px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(-490px) scale(0);
  transform: translateY(-490px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-zoomin .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-zoomin .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(-560px) scale(0);
  transform: translateY(-560px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(-350px) scale(1);
  transform: translateY(-350px) scale(1);
  transition-delay: 0.25s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(-420px) scale(1);
  transform: translateY(-420px) scale(1);
  transition-delay: 0.3s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(-490px) scale(1);
  transform: translateY(-490px) scale(1);
  transition-delay: 0.3s;
}
.smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--bl.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-zoomin[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(-560px) scale(1);
  transform: translateY(-560px) scale(1);
  transition-delay: 0.3s;
}

/**
 * FOUNTAIN
 * When hovering the main button the child buttons
 * jump into view from outside the viewport
 */
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li,
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(0);
  transform: translateY(-70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(0);
  transform: translateY(-140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(0);
  transform: translateY(-210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(0);
  transform: translateY(-280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(-350px) scale(0);
  transform: translateY(-350px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(-420px) scale(0);
  transform: translateY(-420px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(-490px) scale(0);
  transform: translateY(-490px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-fountain .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-fountain .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(-560px) scale(0);
  transform: translateY(-560px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(1);
  transform: translateY(70px) scale(1);
  transition-delay: 0.05s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(1);
  transform: translateY(140px) scale(1);
  transition-delay: 0.1s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(1);
  transform: translateY(210px) scale(1);
  transition-delay: 0.15s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(1);
  transform: translateY(280px) scale(1);
  transition-delay: 0.2s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(350px) scale(1);
  transform: translateY(350px) scale(1);
  transition-delay: 0.25s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(420px) scale(1);
  transform: translateY(420px) scale(1);
  transition-delay: 0.3s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(490px) scale(1);
  transform: translateY(490px) scale(1);
  transition-delay: 0.35s;
}
.smsmfb-component--tl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--tl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--tr.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(560px) scale(1);
  transform: translateY(560px) scale(1);
  transition-delay: 0.40s;
}

.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li,
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(70px) scale(0);
  transform: translateY(70px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.25s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(140px) scale(0);
  transform: translateY(140px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.2s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(210px) scale(0);
  transform: translateY(210px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.15s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(280px) scale(0);
  transform: translateY(280px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.1s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(350px) scale(0);
  transform: translateY(350px) scale(0);
  transition: all 0.5s;
  transition-delay: 0.05s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(420px) scale(0);
  transform: translateY(420px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(490px) scale(0);
  transform: translateY(490px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-fountain .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-fountain .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(560px) scale(0);
  transform: translateY(560px) scale(0);
  transition: all 0.5s;
  transition-delay: 0s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(1),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(1) {
  -webkit-transform: translateY(-70px) scale(1);
  transform: translateY(-70px) scale(1);
  transition-delay: 0.05s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(2),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(2) {
  -webkit-transform: translateY(-140px) scale(1);
  transform: translateY(-140px) scale(1);
  transition-delay: 0.1s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(3),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(3) {
  -webkit-transform: translateY(-210px) scale(1);
  transform: translateY(-210px) scale(1);
  transition-delay: 0.15s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(4),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(4) {
  -webkit-transform: translateY(-280px) scale(1);
  transform: translateY(-280px) scale(1);
  transition-delay: 0.2s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(5),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(5) {
  -webkit-transform: translateY(-350px) scale(1);
  transform: translateY(-350px) scale(1);
  transition-delay: 0.25s;
}
.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(6),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(6) {
  -webkit-transform: translateY(-420px) scale(1);
  transform: translateY(-420px) scale(1);
  transition-delay: 0.3s;
}

.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(7),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(7) {
  -webkit-transform: translateY(-490px) scale(1);
  transform: translateY(-490px) scale(1);
  transition-delay: 0.35s;
}

.smsmfb-component--bl.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8), .smsmfb-component--bl.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-toggle=hover]:hover .smsmfb-component__list li:nth-child(8),
.smsmfb-component--br.smsmfb-fountain[data-smsmfb-state=open] .smsmfb-component__list li:nth-child(8) {
  -webkit-transform: translateY(-560px) scale(1);
  transform: translateY(-560px) scale(1);
  transition-delay: 0.40s;
}
/*------------------------------------*\
    #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-smsmfb-label]:after {
  content: attr(data-smsmfb-label);
  opacity: 0;
  transition: all 0.5s;
  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-smsmfb-toggle=hover] [data-smsmfb-label]:hover:after,
[data-smsmfb-state=open] [data-smsmfb-label]:after {
  content: attr(data-smsmfb-label);
  opacity: 1;
  transition: all 0.3s;
}

/*------------------------------------*\
    #LABELS | Modifiers
\*------------------------------------*/
.smsmfb-component--br [data-smsmfb-label]:after, .smsmfb-component--tr [data-smsmfb-label]:after {
  content: attr(data-smsmfb-label);
  right: 70px;
}

.smsmfb-component--br .smsmfb-component__list [data-smsmfb-label]:after, .smsmfb-component--tr .smsmfb-component__list [data-smsmfb-label]:after {
  content: attr(data-smsmfb-label);
  right: 70px;
}

.smsmfb-component--tl [data-smsmfb-label]:after, .smsmfb-component--bl [data-smsmfb-label]:after {
  content: attr(data-smsmfb-label);
  left: 70px;
}

.smsmfb-component--tl .smsmfb-component__list [data-smsmfb-label]:after, .smsmfb-component--bl .smsmfb-component__list [data-smsmfb-label]:after {
  content: attr(data-smsmfb-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=smsh_mfb.css.map */

/**************************\
  Basic Modal Styles
\**************************/

.smsmodal {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}



.smsmodal.is-open {
  display: block;
}
        

.smsmodal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index:10000;
}

.smsmodal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 800px;
  max-height: 90%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index:10001;
}

.smsmodal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.smsmodal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 22px;
  line-height: 1.25;
  color: #333333;
  box-sizing: border-box;
}

.smsmodal__close {
  background: transparent;
  border: 0;
  font-size: 18px;
}

.smsmodal__header .smsmodal__close:before { content: "\2715"; }

.smsmodal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.smsmodal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.smsmodal__btn:focus, .smsmodal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.smsmodal__btn-primary {
  background-color: #00449e;
  color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.microsmsmodal-slide {
  display: none;
}

.microsmsmodal-slide.is-open {
  display: block;
}

.microsmsmodal-slide[aria-hidden="false"] .smsmodal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.microsmsmodal-slide[aria-hidden="false"] .smsmodal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.microsmsmodal-slide[aria-hidden="true"] .smsmodal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.microsmsmodal-slide[aria-hidden="true"] .smsmodal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.microsmsmodal-slide .smsmodal__container,
.microsmsmodal-slide .smsmodal__overlay {
  will-change: transform;
}

/*CUSTOM SMS*/
.smsmfb-component__icon, 
.smsmfb-component__child-icon, 
.smsmfb-component__main-icon--active, 
.smsmfb-component__main-icon--resting {
    margin: auto;
    top: 18px;
    position: relative;
    display: block;
}



@media only screen and (max-width: 576px) {
  .smsmodal__container {
    padding: 15px;
  }
}